@font-face {
  font-family: Inter;
  src: url('assets/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brand: #1f5bd8;
  --brand-dark: #123ea6;
  --navy: #10192d;
  --ink: #172033;
  --muted: #556071;
  --surface: #fff;
  --canvas: #f5f7fb;
  --teal: #006b70;
  --success: #176b45;
  --line: #dce2ea;
  --line-strong: #c9d2df;
  --citron: #e6f3a8;
  --rose: #f3e3e6;
  --radius: 6px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,main,section,article,aside,div {
  min-width: 0;
}

img {
  max-width: 100%;
  display: block;
}

button,input,select,textarea {
  font: inherit;
  letter-spacing: 0;
}

button,a,input,select,textarea {
  -webkit-tap-highlight-color: transparent;
}

button,a {
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

button,input,select,textarea {
  border-radius: var(--radius);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline-offset: 2px;
}

h1,h2,h3,h4,p {
  margin: 0;
}

h1,h2,h3,h4 {
  line-height: 1.13;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  font-size: 62px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 18px;
}

p {
  color: var(--muted);
}

ul,ol {
  padding-inline-start: 22px;
}

button .icon,a .icon {
  flex: none;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 96px),var(--max));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.canvas-section {
  background: var(--canvas);
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask: var(--icon) no-repeat center / contain;
  mask: var(--icon) no-repeat center / contain;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: #fff;
  border: 2px solid var(--brand);
  padding: 12px 22px;
  z-index: 200;
}

.skip-link:focus {
  top: 12px;
}

.local-bar {
  background: #eff2f6;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.4;
}

.local-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 7px;
}

.local-bar a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.local-bar .icon {
  width: 13px;
  height: 13px;
  min-width: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fffffff5;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand:hover {
  color: var(--ink);
}

.brand strong {
  font-weight: 750;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
}

.brand-mark .icon {
  width: 29px;
  height: 29px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-header nav a {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 550;
  position: relative;
  white-space: nowrap;
}

.site-header nav a[aria-current] {
  color: var(--brand);
}

.site-header nav a[aria-current]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  transition: background .16s,color .16s,border-color .16s;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.outline {
  color: var(--ink);
  background: transparent;
  border-color: #bbc4d1;
}

.button.outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #f5f8ff;
}

.button.ghost {
  padding-inline: 8px;
  color: var(--ink);
}

.button.ghost:hover {
  color: var(--brand);
}

.button.light {
  background: #fff;
  color: var(--brand);
}

.button.light:hover {
  background: var(--citron);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 27px;
}

.header-cta {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 12px;
  flex-shrink: 0;
}

.header-cta .icon {
  width: 17px;
  height: 17px;
  min-width: 17px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0;
  flex: none;
}

.icon-button:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.menu-toggle,.site-header .mobile-contact {
  display: none;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--brand);
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 600px;
  background: #f3f3f0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.home-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,rgba(250,250,248,.7) 0%,rgba(250,250,248,.3) 38%,transparent 58%);
}

.hero-content {
  padding-block: 49px 62px;
}

.hero-content .eyebrow {
  font-size: 10px;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 84px;
  font-weight: 680;
  line-height: .99;
}

.hero-content h1 span {
  color: var(--brand);
}

.hero-promise {
  font-size: 24px;
  font-weight: 560;
  line-height: 1.38;
  color: var(--ink);
  margin-top: 23px;
  max-width: 500px;
}

.hero-copy {
  font-size: 14px;
  max-width: 452px;
  margin-top: 16px;
  line-height: 1.65;
  color: #424d5c;
}

.hero-content .button-row {
  max-width: 530px;
}

.hero-chapter {
  position: absolute;
  bottom: 24px;
  left: calc(50% + 45px);
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  color: white;
  background: #172033d9;
  padding: 12px 16px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  font-size: 12px;
  font-weight: 550;
}

.proof-strip span,.proof-strip a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-strip .icon {
  color: var(--brand);
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.proof-strip a {
  color: var(--brand);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 54px;
  margin-bottom: 42px;
}

.section-heading>div {
  max-width: 700px;
}

.section-heading>p {
  max-width: 405px;
  font-size: 15px;
}

.section-heading .text-link {
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.small-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  font-weight: 550;
  min-height: 44px;
}

.small-link .icon {
  width: 16px;
  height: 16px;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 38px;
}

.opportunity-item {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  position: relative;
}

.opportunity-item .step-label {
  color: var(--muted);
}

.opportunity-item h3 {
  margin: 27px 0 17px;
  line-height: 1.3;
}

.opportunity-item p {
  font-size: 14px;
  max-width: 320px;
  padding-right: 25px;
}

.opportunity-item>.icon {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: var(--brand);
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  position: relative;
  transition: border-color .15s;
}

.industry-card:hover {
  border-color: var(--brand);
}

.industry-icon {
  color: var(--brand);
  margin-bottom: 25px;
}

.industry-icon .icon {
  width: 29px;
  height: 29px;
}

.accent-teal .industry-icon {
  color: var(--teal);
}

.accent-rose .industry-icon {
  color: #a53b65;
}

.industry-card h3 {
  font-size: 20px;
}

.industry-card h3 a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
}

.industry-card h3 a:after {
  content: '';
  position: absolute;
  inset: 0;
}

.industry-card h3 a .icon {
  width: 19px;
  height: 19px;
}

.industry-card p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 10px;
}

.industry-foot {
  display: block;
  margin-top: 27px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}

.section-footnote {
  font-size: 13px;
  max-width: 840px;
  margin-top: 26px;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  align-items: center;
}

.teaser-grid>div>p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 24px;
  font-size: 15px;
}

.teaser-grid>div>.button {
  margin-top: 28px;
}

.revenue-example {
  padding: 32px 36px;
  background: var(--citron);
  border-radius: 6px;
}

.example-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 22px;
  border-bottom: 1px solid #bdce88;
}

.example-formula {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 27px;
  font-size: 30px;
  font-weight: 550;
  line-height: 1.2;
}

.example-formula small {
  display: block;
  font-weight: 450;
  font-size: 11px;
  margin-top: 8px;
  color: #485534;
}

.example-formula .operator {
  color: #728348;
  font-size: 22px;
}

.example-total {
  display: block;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 28px;
  font-variant-numeric: tabular-nums;
}

.example-subtitle {
  display: block;
  max-width: 330px;
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.5;
}

.example-condition {
  font-size: 11px;
  line-height: 1.65;
  border-top: 1px solid #bdce88;
  margin-top: 23px;
  padding-top: 18px;
  color: #3d4930;
}

.revenue-example .text-link {
  color: var(--ink);
  font-size: 12px;
  margin-top: 16px;
}

.software-section {
  background: #eef2f6;
}

.software-stage {
  display: grid;
  grid-template-columns: 310px minmax(0,1fr);
  gap: 68px;
  align-items: center;
}

.software-stage-copy h3 {
  font-size: 32px;
}

.software-stage-copy .eyebrow {
  font-size: 10px;
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}

.check-list .icon {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 2px;
  color: var(--success);
}

.software-stage-copy .check-list {
  margin: 26px 0;
}

.small-text {
  font-size: 12px !important;
  line-height: 1.6;
  margin-top: 18px;
}

.software-preview {
  background: white;
  border: 1px solid #d3dae4;
  border-radius: 6px;
  box-shadow: 0 12px 34px #17203308;
  overflow: hidden;
  max-width: 100%;
}

.preview-top {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-brand {
  font-size: 12px;
  font-weight: 650;
  display: flex;
  gap: 8px;
  align-items: center;
}

.preview-brand .icon {
  color: var(--brand);
}

.preview-label {
  font-size: 9px;
  color: var(--muted);
}

.preview-body {
  padding: 26px;
}

.preview-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.preview-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 8px;
}

.preview-heading h3 {
  font-size: 23px;
}

.status-chip {
  font-size: 9px;
  background: #edf1f7;
  color: #4b5d77;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 3px;
  line-height: 1.3;
  white-space: nowrap;
}

.status-chip.green {
  background: #eaf6ef;
  color: #176b45;
}

.status-chip.amber {
  background: #fff2d8;
  color: #865000;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
  margin: 28px 0;
}

.preview-metrics>div {
  border-left: 2px solid var(--line);
  padding-left: 14px;
}

.preview-metrics small,.preview-metrics span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}

.preview-metrics strong {
  font-size: 29px;
  line-height: 1.6;
  font-weight: 550;
}

.preview-table {
  font-size: 10px;
}

.preview-table>div {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr) 105px;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border-top: 1px solid #edf0f4;
}

.preview-table>div>span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}

.preview-table .icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--muted);
}

.preview-table .status-chip {
  justify-self: start;
}

.preview-table-head {
  color: var(--muted);
  font-size: 9px;
}

.preview-bottom {
  padding: 4px 20px;
  background: #f9fafc;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 9px;
  color: var(--muted);
}

.preview-bottom>span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-bottom>span .icon {
  width: 13px;
  height: 13px;
  min-width: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.price-top {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 20px;
}

.price-top .step-label {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
}

.price-card h3 {
  font-size: 24px;
}

.price {
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  margin-block: 25px 18px;
  line-height: 1.15;
  min-height: 63px;
}

.price>span {
  font-size: 12px;
  font-weight: 450;
}

.price .individual-price {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.18;
}

.price-intro {
  font-size: 13px;
  flex: 1;
}

.price-card .button {
  font-size: 12px;
  padding-inline: 12px;
  margin-top: 27px;
  gap: 8px;
}

.price-card .button .icon {
  width: 17px;
  height: 17px;
  min-width: 17px;
}

.price-card .check-list {
  margin: 25px 0;
  gap: 15px;
}

.price-limit {
  font-size: 11px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: 3px;
  min-height: 85px;
}

.price-featured {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.price-featured p,.price-featured .price-top,.price-featured .price {
  color: white;
}

.price-featured .price-top .step-label {
  border-color: #ffffff66;
}

.price-featured .check-list .icon {
  color: var(--citron);
}

.price-featured .price-limit {
  border-color: #ffffff4d;
  color: #eef3ff;
}

.pricing-note {
  font-size: 11px;
  line-height: 1.65;
  max-width: 930px;
  margin-top: 24px;
}

.process-teaser {
  background: #f6f7f6;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.process-grid .text-link {
  margin-top: 25px;
}

.compact-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-steps li {
  display: flex;
  gap: 23px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.compact-steps li:first-child {
  padding-top: 0;
}

.compact-steps li>span {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
}

.compact-steps h3 {
  font-size: 19px;
}

.compact-steps p {
  font-size: 13px;
  margin-top: 9px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
}

.faq-layout h2 {
  font-size: 35px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 64px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
}

summary::-webkit-details-marker {
  display: none;
}

summary .icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--brand);
}

details[open] summary .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px 0;
  font-size: 14px;
}

.cta-band {
  background: var(--brand);
  padding: 68px 0;
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band .eyebrow {
  color: var(--citron);
}

.cta-band h2 {
  font-size: 38px;
  max-width: 800px;
}

.cta-band p:not(.eyebrow) {
  color: #eef2ff;
  margin-top: 20px;
  max-width: 650px;
  font-size: 14px;
}

.cta-band .button {
  flex-shrink: 0;
}

.site-footer {
  padding: 65px 0 26px;
  background: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer-brand p {
  font-size: 13px;
  margin-top: 24px;
}

.footer-main>div>h2 {
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 20px;
}

.footer-main>div>a:not(.brand) {
  font-size: 12px;
  display: flex;
  min-height: 38px;
  align-items: center;
}

.footer-main .external-software {
  gap: 8px;
  color: var(--brand);
  font-size: 11px !important;
  margin-top: 10px;
}

.footer-main .external-software .icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
}

.footer-bottom {
  margin-top: 47px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  align-items: center;
}

.footer-bottom>div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
}

.footer-bottom .icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

.footer-note {
  font-size: 10px;
  max-width: 1000px;
  margin-top: 8px;
}

.footer-media-note {
  max-width: 1000px;
  margin-block-start: 16px;
  border-block-start: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
}

.footer-media-note summary {
  display: list-item;
  list-style: disclosure-closed inside;
  min-height: 44px;
  padding-block: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-media-note[open] > summary {
  list-style-type: disclosure-open;
}

.footer-media-note summary::-webkit-details-marker {
  display: revert;
}

.footer-media-note summary::marker {
  color: var(--brand);
}

.footer-media-note summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.footer-media-note p {
  max-width: 760px;
  margin: 0;
  padding-block: 0 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.page-intro {
  padding: 27px 0 68px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 46px;
}

.breadcrumbs a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs>span {
  display: inline-flex;
  align-items: center;
}

.page-intro h1 {
  max-width: 1000px;
}

.page-intro .lead {
  font-size: 19px;
  max-width: 760px;
  margin-top: 26px;
  line-height: 1.6;
}

.page-intro .eyebrow {
  margin-bottom: 18px;
}

.source-line {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 26px;
}

.source-line a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-line span {
  padding-inline: 5px;
  color: #96a0af;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-left: 3px solid var(--brand);
  background: #eff4ff;
  padding: 20px 23px;
}

.notice>.icon {
  color: var(--brand);
  margin-top: 3px;
}

.notice strong {
  font-size: 14px;
  line-height: 1.4;
  display: block;
}

.notice p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 7px;
}

.notice.warning {
  background: #fff8e9;
  border-color: #966300;
}

.notice.warning>.icon {
  color: #966300;
}

.notice.success {
  background: #eef6f0;
  border-color: var(--success);
}

.notice.success>.icon {
  color: var(--success);
}

.spaced {
  margin-top: 32px;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.text-columns p {
  font-size: 15px;
}

.text-columns p+p {
  margin-top: 19px;
}

.text-columns h2 {
  margin-bottom: 25px;
}

.text-columns h3 {
  margin-bottom: 16px;
}

.prose {
  max-width: 790px;
}

.prose h2 {
  font-size: 33px;
  margin: 45px 0 22px;
}

.prose h3 {
  font-size: 22px;
  margin: 27px 0 14px;
}

.prose p+p {
  margin-top: 19px;
}

.prose li {
  margin: 8px 0;
  color: var(--muted);
}

.prose a:not(.button) {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 290px;
  gap: 85px;
  align-items: start;
}

.contents-nav {
  position: sticky;
  top: 120px;
  border-left: 1px solid var(--line);
  padding-left: 23px;
}

.contents-nav p {
  font-size: 11px;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 15px;
}

.contents-nav a {
  display: flex;
  align-items: center;
  font-size: 12px;
  min-height: 44px;
  color: var(--muted);
}

.contents-nav a:hover {
  color: var(--brand);
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}

.eyebrow+ul {
  margin-top: 0;
}

.wide-note {
  margin-top: 45px;
}

.section-tight {
  padding: 58px 0;
}

.article-media {
  aspect-ratio: 16/8;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 34px;
}

.article-caption {
  font-size: 10px;
  margin-top: -25px;
  margin-bottom: 32px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.first-heading {
  margin-top: 0 !important;
}

.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-buttons button {
  border: 1px solid var(--line);
  background: white;
  min-height: 44px;
  padding: 10px 15px;
  font-size: 12px;
  color: var(--ink);
}

.filter-buttons button[aria-pressed=true] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-left: 4px;
  min-width: 245px;
}

.search-field .icon {
  color: var(--muted);
  width: 18px;
  height: 18px;
}

.search-field input {
  background: transparent;
  border: 0;
  min-height: 48px;
  width: 100%;
  font-size: 12px;
  min-width: 0;
}

.filter-count {
  font-size: 11px;
  margin: 21px 0;
}

.empty-state {
  padding: 50px 0;
}

.empty-state h2 {
  font-size: 25px;
}

.empty-state p {
  margin-top: 14px;
}

.idea-list {
  list-style: none;
  padding: 0 !important;
  display: grid;
  gap: 15px;
  margin-top: 22px !important;
}

.idea-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
}

.idea-list .icon {
  color: var(--teal);
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
}

.industry-example {
  border-top: 3px solid var(--brand);
  padding: 27px 0;
}

.industry-example>strong {
  font-size: 57px;
  font-weight: 600;
  line-height: 1.3;
}

.industry-example>p {
  font-size: 13px;
  margin-top: 11px;
}

.industry-example dl {
  font-size: 13px;
  margin: 25px 0;
}

.industry-example dl>div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.industry-example dd {
  font-weight: 600;
  margin: 0;
}

.calculation-checklist {
  padding: 30px;
  background: var(--citron);
  border-radius: 6px;
}

.calculation-checklist h3 {
  font-size: 27px;
}

.calculation-checklist ol {
  margin: 25px 0;
  font-size: 14px;
}

.calculation-checklist li {
  padding: 7px 0;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 40px minmax(0,1fr) minmax(0,1.7fr);
  gap: 30px;
  padding: 33px 0;
  border-bottom: 1px solid var(--line);
}

.service-row>.step-label {
  color: var(--brand);
  padding-top: 3px;
}

.service-row h3 {
  font-size: 24px;
}

.service-row p {
  font-size: 14px;
}

.service-row .deliverable {
  font-size: 12px;
  margin-top: 18px;
}

.service-row .deliverable strong {
  color: var(--ink);
  font-weight: 550;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
  line-height: 1.55;
  background: white;
}

th,td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead {
  background: #edf1f7;
}

th {
  font-weight: 600;
}

tr:last-child th,tr:last-child td {
  border-bottom: 0;
}

.comparison {
  min-width: 750px;
}

.comparison th:first-child {
  width: 25%;
}

.timeline {
  max-width: 1100px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr);
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row:first-child {
  padding-top: 0;
}

.timeline-number {
  width: 65px;
  height: 65px;
  border: 1px solid #b1c7ef;
  background: #f5f8ff;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 21px;
  border-radius: 50%;
  font-weight: 550;
}

.timeline-row h2 {
  font-size: 34px;
  max-width: 830px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 26px;
}

.responsibility-grid h3 {
  font-size: 13px;
  line-height: 1.5;
}

.responsibility-grid p {
  font-size: 13px;
  margin-top: 9px;
}

.timeframe-section {
  background: var(--citron);
}

.timeframe-section p {
  color: #425132;
}

.numbered-list {
  max-width: 1000px;
}

.numbered-list article {
  display: flex;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-list article>span {
  font-size: 13px;
  color: var(--brand);
  min-width: 25px;
}

.numbered-list h3 {
  font-size: 21px;
}

.numbered-list p {
  font-size: 14px;
  margin-top: 12px;
}

.software-intro-actions {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  margin-bottom: 34px;
}

.software-intro-actions>p {
  font-size: 20px;
  line-height: 1.5;
}

.software-intro-actions .button-row {
  margin-top: 0;
}

.software-intro>.container>.software-preview {
  max-width: 1000px;
  margin-inline: auto;
}

.software-intro .preview-body {
  padding: 40px;
}

.software-intro .preview-heading h3 {
  font-size: 31px;
}

.software-intro .preview-metrics {
  margin: 35px 0;
}

.software-intro .preview-metrics strong {
  font-size: 38px;
}

.software-intro .preview-table {
  font-size: 13px;
}

.software-intro .preview-table>div {
  min-height: 55px;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr) 140px;
}

.definition-list article {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}

.definition-list article>span {
  font-size: 12px;
  color: var(--brand);
  margin-top: 4px;
}

.definition-list h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.definition-list p {
  font-size: 14px;
}

.funding-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  margin: 28px 0;
}

.funding-paths article {
  border-top: 2px solid var(--brand);
  padding-top: 19px;
}

.funding-paths article>span {
  font-size: 11px;
  color: var(--brand);
  font-weight: 550;
}

.funding-paths h3 {
  font-size: 22px;
  margin-top: 14px;
}

.funding-paths p {
  font-size: 13px;
}

.funding-paths .text-link {
  text-decoration: none !important;
  font-size: 12px;
}

.fit-check {
  margin: 25px 0 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.fit-check legend {
  font-size: 13px;
  padding: 0 8px;
  font-weight: 550;
}

.fit-check label,.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding: 10px 0;
  font-size: 13px;
  cursor: pointer;
  line-height: 1.6;
}

input[type=checkbox],input[type=radio] {
  accent-color: var(--brand);
}

.fit-check input,.checkbox-field input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.fit-result {
  font-size: 12px !important;
  color: var(--teal);
}

.math-lines {
  padding: 4px 0 22px;
}

.math-lines>div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.math-lines span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.math-lines strong {
  display: block;
  font-size: 21px;
  margin-top: 4px;
  font-weight: 550;
  overflow-wrap: anywhere;
}

.curriculum {
  margin: 25px 0;
}

.curriculum>div {
  display: grid;
  grid-template-columns: 30px 1fr 60px;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  font-size: 12px;
  align-items: start;
}

.curriculum>div>span:first-child {
  color: var(--brand);
}

.curriculum strong {
  font-weight: 550;
}

.curriculum>div>span:last-child {
  text-align: right;
}

.article-number {
  background: var(--citron);
  padding: 30px;
  margin: 28px 0;
  border-radius: 6px;
}

.article-number>span {
  font-size: 13px;
  display: block;
}

.article-number>strong {
  display: block;
  font-size: 60px;
  line-height: 1.4;
  font-weight: 600;
}

.article-number>p {
  font-size: 12px;
  color: #425132;
  max-width: 600px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 28px;
}

.article-card-visual {
  aspect-ratio: 1.6;
  background: #eef2f7;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 6px;
}

.article-card-visual>.icon {
  width: 52px;
  height: 52px;
  color: var(--brand);
}

.article-card-visual>span:not(.icon) {
  font-size: 10px;
}

.visual-laptop {
  background: var(--citron);
}

.visual-laptop>.icon {
  color: #506623;
}

.visual-file-text {
  background: #f3e7eb;
}

.visual-file-text>.icon {
  color: #943559;
}

.article-card h2 {
  margin-top: 21px;
}

.article-card h2 .text-link {
  font-size: 23px;
  line-height: 1.25;
  color: var(--ink);
  align-items: flex-start;
}

.article-card p {
  font-size: 13px;
  margin-top: 14px;
}

.document-sample {
  max-width: 950px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px #17203308;
  padding: 30px;
  margin: auto;
}

.sample-banner {
  text-align: center;
  color: #9b350e;
  background: #fff0e8;
  padding: 9px;
  font-size: 11px;
  font-weight: 650;
}

.sample-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin: 34px 0;
}

.sample-head h2 {
  font-size: 35px;
}

.sample-head>div:last-child {
  font-size: 11px;
  text-align: right;
  color: var(--muted);
}

.document-sample table {
  min-width: 560px;
}

.document-sample>p {
  font-size: 11px;
  margin-top: 25px;
}

.source-register article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  max-width: 1000px;
}

.source-register article>span {
  font-size: 10px;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600;
}

.source-register h2 {
  font-size: 23px;
  margin: 12px 0;
}

.source-register h2 a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 44px;
}

.source-register p {
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 550;
  color: var(--ink);
  margin-bottom: 19px;
}

.field>span:first-child small {
  color: var(--muted);
  font-weight: 400;
}

.field input,.field select,.field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 47px;
  border: 1px solid #aab5c6;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  min-width: 0;
}

.field select {
  padding-right: 27px;
  white-space: normal;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field [aria-invalid=true] {
  border-color: #a62e35;
}

.field-error {
  font-size: 11px;
  font-weight: 450;
  color: #a1282e;
  line-height: 1.55;
}

.field-hint {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0 20px;
}

.input-unit {
  display: flex;
  align-items: center;
  position: relative;
}

.input-unit input {
  padding-right: 70px;
}

.input-unit>span {
  position: absolute;
  right: 12px;
  font-size: 10px;
  font-weight: 450;
  color: var(--muted);
  pointer-events: none;
}

.inline-note {
  font-size: 11px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.calculator {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.calc-models {
  display: flex;
  background: #f4f6fa;
  padding: 12px;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.calc-models label {
  display: flex;
  flex: 1;
  position: relative;
  cursor: pointer;
  min-width: 0;
}

.calc-models input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.calc-models label>span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 550;
  min-height: 47px;
  line-height: 1.4;
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 4px;
}

.calc-models input:checked+span {
  background: white;
  color: var(--brand);
  border-color: #c7d3e6;
}

.calc-models input:focus-visible+span {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.calc-surface {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
}

.calc-inputs {
  padding: 27px 34px;
}

.calc-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calc-section-heading .icon-button {
  border: 0;
  background: var(--canvas);
}

.calc-section-heading .step-label {
  color: var(--muted);
}

.rate-scope {
  font-size: 11px;
  margin-top: -10px;
  margin-bottom: 20px;
  color: var(--teal);
}

.realization-field {
  border-top: 1px solid var(--line);
  padding-top: 21px;
  margin-top: 8px;
}

.realization-field>.field {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.realization-field .input-unit {
  width: 100px;
  flex-shrink: 0;
}

.realization-field .input-unit input {
  padding-right: 31px;
}

.realization-field input[type=range] {
  width: 100%;
  accent-color: var(--brand);
  min-height: 30px;
  margin-bottom: 12px;
}

.realization-field>.field>.field-error {
  width: 100%;
}

.cost-details {
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.cost-details summary {
  font-size: 12px;
}

.cost-details>p {
  font-size: 11px;
  margin-bottom: 20px;
}

.cost-details .field {
  font-size: 11px;
}

.calc-results {
  background: #182a48;
  color: white;
  padding: 37px 32px;
  display: flex;
  flex-direction: column;
}

.calc-results p {
  color: #d7e2f1;
}

.calc-result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  margin-bottom: 30px;
}

.calc-result-heading .status-chip {
  background: #ffffff18;
  color: #e4ecd1;
  font-size: 9px;
}

.result-label {
  font-size: 12px;
  margin-bottom: 7px;
}

.result-number {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.result-period {
  font-size: 11px;
  margin-top: 10px;
}

.result-formula {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 24px;
  color: var(--citron);
  padding-bottom: 23px;
  border-bottom: 1px solid #ffffff26;
}

.result-breakdown {
  font-size: 12px;
  margin: 0;
}

.result-breakdown>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #ffffff26;
  align-items: baseline;
}

.result-breakdown dt {
  max-width: 60%;
  color: #d7e2f1;
}

.result-breakdown dd {
  margin: 0;
  font-weight: 550;
  flex-shrink: 0;
}

.balance-row {
  border-bottom: 0 !important;
  padding-top: 20px !important;
}

.balance-row dd {
  color: var(--citron);
  font-size: 19px;
}

.balance-row dd.negative {
  color: #ffbabd;
}

.result-disclaimer {
  font-size: 10px;
  line-height: 1.65;
  margin-top: 10px;
}

.capacity-result {
  border-top: 1px solid #ffffff26;
  margin-top: 23px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.capacity-result span {
  font-size: 10px;
  color: #c6d4e7;
  display: block;
}

.capacity-result strong {
  font-size: 14px;
  line-height: 1.5;
  display: block;
  margin-top: 7px;
  font-weight: 550;
}

.rounding-note {
  font-size: 10px;
  line-height: 1.65;
  margin: 22px 0 10px;
  padding: 15px 0;
  border-block: 1px solid #ffffff26;
}

.result-actions {
  margin-top: 27px;
  display: grid;
  gap: 8px;
}

.result-actions .button {
  font-size: 13px;
}

.result-download {
  background: transparent;
  border-color: #8798b3;
  color: white;
}

.result-download:hover {
  background: #ffffff12;
}

.calc-source {
  font-size: 10px;
  line-height: 1.75;
  margin-top: auto;
  padding-top: 25px;
}

.calc-source a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calc-results h2 {
  font-size: 29px;
  margin-bottom: 18px;
}

.calc-results #calc-invalid p {
  font-size: 14px;
}

.funding-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.funding-output {
  border-top: 2px solid var(--teal);
  padding: 12px 0;
}

.funding-output dl {
  font-size: 13px;
}

.funding-output dl>div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.funding-output dd {
  margin: 0;
  white-space: nowrap;
  font-weight: 600;
  color: var(--teal);
}

.funding-output dt {
  max-width: 70%;
}

.funding-output .inline-note {
  margin-top: 20px;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 80px;
}

.inquiry-aside {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  position: sticky;
  top: 120px;
}

.inquiry-aside h2 {
  font-size: 30px;
}

.inquiry-aside h3 {
  font-size: 19px;
}

.inquiry-aside ol {
  padding-left: 18px;
  font-size: 13px;
  margin: 25px 0;
}

.inquiry-aside li {
  padding: 7px 0;
  color: var(--muted);
}

.inquiry-aside>p {
  font-size: 13px;
  margin-top: 17px;
}

.inquiry-aside .text-link {
  font-size: 12px;
  display: flex;
  margin-top: 10px;
}

.inquiry-local {
  margin-bottom: 30px;
}

.form-legend {
  font-size: 10px;
  margin: 0 0 22px;
}

.form-errors {
  color: #a1282e;
  background: #fff0f1;
  padding: 16px;
  font-size: 13px;
  margin-bottom: 22px;
}

.privacy-note {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 5px;
}

.privacy-note a {
  color: var(--brand);
  text-decoration: underline;
}

.draft-panel {
  border-top: 3px solid var(--teal);
  margin-top: 45px;
  padding-top: 30px;
}

.draft-panel h2 {
  font-size: 30px;
  margin-bottom: 23px;
}

.draft-panel textarea {
  font-size: 12px;
  min-height: 250px;
}

.inquiry-context {
  font-size: 12px;
  padding: 20px;
  background: var(--citron);
  color: #36452a;
  margin-bottom: 25px;
  border-radius: 5px;
}

@media (min-width:1700px) {
  .home-hero {
    min-height: 660px;
  }
  .hero-content {
    padding-top: 64px;
  }
  .hero-image {
    object-position: center 56%;
  }
  .hero-content h1 {
    font-size: 92px;
  }
}

@media (max-width:1240px) {
  .header-inner {
    gap: 18px;
  }
  .site-header nav {
    gap: 16px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .header-cta {
    padding: 10px 12px;
  }
  .container {
    width: calc(100% - 64px);
  }
  .software-stage {
    gap: 34px;
    grid-template-columns: 280px minmax(0,1fr);
  }
  .teaser-grid {
    gap: 65px;
  }
  .hero-image {
    object-position: 46% center;
  }
  .hero-copy {
    max-width: 410px;
  }
  .hero-content h1 {
    font-size: 78px;
  }
  .hero-content .button-row {
    gap: 5px;
  }
  .hero-content .button {
    font-size: 12px;
  }
  .hero-chapter {
    display: none;
  }
  .price-card {
    padding: 23px;
  }
  .price {
    font-size: 37px;
  }
}

@media (max-width:1240px) {
  .header-inner {
    min-height: 76px;
  }
  .menu-toggle {
    display: inline-grid;
    margin-left: auto;
    order: 3;
  }
  .header-cta {
    margin-left: auto;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 32px 25px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 22px #17203310;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100dvh - 125px);
    overflow-y: auto;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    font-size: 15px;
    min-height: 46px;
  }
  .site-header .mobile-contact {
    display: flex;
    color: var(--brand);
    gap: 12px;
  }
  .menu-toggle {
    margin-left: 0;
  }
}

@media (max-width:1060px) {
  .section {
    padding: 70px 0;
  }
  h2 {
    font-size: 37px;
  }
  .section-heading {
    gap: 34px;
  }
  .section-heading>p {
    max-width: 330px;
    font-size: 14px;
  }
  .hero-image {
    object-position: 48% center;
  }
  .home-hero {
    min-height: 600px;
  }
  .hero-content h1 {
    font-size: 70px;
  }
  .hero-promise {
    font-size: 22px;
    max-width: 390px;
  }
  .hero-copy {
    max-width: 345px;
    font-size: 13px;
  }
  .hero-content .button-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .hero-content .eyebrow {
    max-width: 350px;
    font-size: 9px;
  }
  .home-hero:before {
    background: linear-gradient(90deg,rgba(250,250,248,.93) 0%,rgba(250,250,248,.45) 40%,transparent 75%);
  }
  .proof-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 20px;
    gap: 16px;
    font-size: 12px;
  }
  .industry-grid {
    gap: 14px;
  }
  .industry-card {
    padding: 22px;
  }
  .industry-card h3 {
    font-size: 18px;
  }
  .software-stage {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .software-stage-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .software-stage-copy .eyebrow,.software-stage-copy h3,.software-stage-copy>.button {
    grid-column: 1;
  }
  .software-stage-copy .check-list {
    grid-column: 2;
    grid-row: 1/4;
    margin: 0;
    align-content: center;
  }
  .software-stage-copy .small-text {
    grid-column: 1/3;
  }
  .software-stage-copy>.button {
    justify-self: start;
    margin-top: 25px;
  }
  .teaser-grid {
    gap: 40px;
  }
  .example-total {
    font-size: 49px;
  }
  .revenue-example {
    padding: 27px;
  }
  .example-formula {
    gap: 20px;
    font-size: 26px;
  }
  .pricing-grid {
    gap: 12px;
  }
  .price-card {
    padding: 22px 18px;
  }
  .price-card h3 {
    font-size: 20px;
  }
  .price {
    font-size: 35px;
  }
  .price .individual-price {
    font-size: 25px;
  }
  .price-card .button {
    font-size: 11px;
  }
  .process-grid,.faq-layout {
    gap: 45px;
  }
  .faq-layout h2 {
    font-size: 30px;
  }
  .footer-main {
    gap: 25px;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
  .cta-band h2 {
    font-size: 33px;
  }
  .content-grid {
    gap: 42px;
    grid-template-columns: minmax(0,1fr) 240px;
  }
  .text-columns {
    gap: 40px;
  }
  .page-intro h1 {
    font-size: 53px;
  }
}

@media (max-width:760px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding: 56px 0;
  }
  h1 {
    font-size: 43px;
  }
  h2 {
    font-size: 33px;
  }
  h3 {
    font-size: 22px;
  }
  .header-inner {
    min-height: 70px;
    gap: 12px;
  }
  .header-cta {
    font-size: 11px;
    min-height: 44px;
    padding: 10px 12px;
  }
  .header-cta .icon {
    display: none;
  }
  .brand {
    font-size: 17px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
  }
  .brand-mark .icon {
    width: 26px;
    height: 26px;
  }
  .brand small {
    font-size: 9px;
  }
  .local-bar {
    font-size: 9px;
  }
  .local-bar .container {
    gap: 9px;
    padding-block: 6px;
  }
  .local-bar a .icon {
    display: none;
  }
  .home-hero {
    min-height: 680px;
  }
  .hero-content {
    padding-block: 34px 255px;
  }
  .hero-content h1 {
    font-size: 66px;
  }
  .hero-promise {
    font-size: 22px;
    margin-top: 18px;
    max-width: 100%;
  }
  .hero-copy {
    font-size: 13px;
    margin-top: 13px;
    max-width: 390px;
  }
  .hero-content .eyebrow {
    font-size: 9px;
    margin-bottom: 21px;
  }
  .hero-content .button-row {
    flex-direction: row;
    align-items: center;
    margin-top: 22px;
    gap: 8px;
  }
  .hero-content .button {
    font-size: 12px;
    padding: 12px 14px;
    min-height: 47px;
  }
  .hero-image {
    height: 54%;
    top: auto;
    bottom: 0;
    object-position: 75% 58%;
    object-fit: cover;
  }
  .home-hero:before {
    background: linear-gradient(180deg,#f6f6f3 0%,#f6f6f3 50%,rgba(246,246,243,.96) 55%,rgba(246,246,243,.15) 68%,transparent 76%);
  }
  .hero-chapter {
    display: none;
  }
  .proof-strip .container {
    font-size: 10px;
    gap: 17px 12px;
    min-height: 100px;
  }
  .proof-strip .icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
  .proof-strip span,.proof-strip a {
    gap: 7px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading>p {
    max-width: 100%;
    font-size: 14px;
    margin-top: 24px;
  }
  .section-heading>.text-link {
    margin-top: 18px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .opportunity-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .opportunity-item h3 {
    margin-top: 16px;
    font-size: 23px;
  }
  .opportunity-item h3 br {
    display: none;
  }
  .opportunity-item p {
    max-width: 550px;
  }
  .industry-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
  }
  .industry-card {
    padding: 20px;
  }
  .industry-icon {
    margin-bottom: 18px;
  }
  .industry-card h3 {
    font-size: 18px;
  }
  .industry-card h3 a {
    min-height: 48px;
  }
  .industry-card h3 a>.icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
  .industry-card p {
    font-size: 12px;
  }
  .industry-foot {
    font-size: 9px;
    margin-top: 22px;
  }
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .teaser-grid>div>p:not(.eyebrow) {
    max-width: 600px;
    font-size: 14px;
  }
  .revenue-example {
    padding: 28px;
  }
  .example-total {
    font-size: 60px;
  }
  .example-formula {
    font-size: 29px;
  }
  .example-condition {
    font-size: 11px;
  }
  .software-stage-copy {
    display: block;
  }
  .software-stage-copy .check-list {
    margin: 25px 0;
  }
  .software-stage-copy .button {
    margin-top: 0;
  }
  .software-stage-copy .small-text {
    max-width: 500px;
  }
  .preview-body {
    padding: 20px;
  }
  .preview-top {
    padding: 15px 18px;
  }
  .preview-heading h3 {
    font-size: 21px;
  }
  .preview-table>div {
    grid-template-columns: minmax(0,1.3fr) minmax(0,.8fr) 100px;
  }
  .preview-table>div>span {
    overflow-wrap: anywhere;
  }
  .preview-bottom {
    display: block;
    padding: 10px 18px;
  }
  .preview-bottom .small-link {
    display: none;
  }
  .preview-label {
    font-size: 8px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price-card {
    padding: 27px;
  }
  .price-card h3 {
    font-size: 26px;
  }
  .price {
    font-size: 44px;
    min-height: 0;
  }
  .price .individual-price {
    font-size: 29px;
  }
  .price-card .button {
    font-size: 13px;
    margin-top: 23px;
  }
  .price-intro {
    font-size: 14px;
  }
  .price-limit {
    min-height: 0;
  }
  .process-grid,.faq-layout,.text-columns,.content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .compact-steps h3 {
    font-size: 19px;
  }
  .compact-steps li {
    gap: 20px;
  }
  .faq-layout h2 {
    font-size: 33px;
  }
  .cta-inner {
    display: block;
  }
  .cta-band {
    padding: 50px 0;
  }
  .cta-band h2 {
    font-size: 34px;
  }
  .cta-band .button {
    margin-top: 26px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  .footer-brand {
    grid-column: 1/3;
  }
  .footer-bottom {
    display: block;
    font-size: 10px;
    margin-top: 35px;
  }
  .footer-bottom>div {
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 8px;
  }
  .footer-note {
    margin-top: 13px;
  }
  .page-intro {
    padding: 21px 0 43px;
  }
  .page-intro h1 {
    font-size: 43px;
    overflow-wrap: anywhere;
  }
  .page-intro .lead {
    font-size: 16px;
    margin-top: 22px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
    font-size: 10px;
  }
  .notice {
    padding: 18px;
    gap: 12px;
  }
  .contents-nav {
    position: static;
    grid-row: 1;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
  }
  .contents-nav p {
    width: 100%;
    margin-bottom: 0;
  }
  .contents-nav a {
    font-size: 11px;
  }
  .prose h2 {
    font-size: 29px;
  }
  .prose p {
    font-size: 14px;
  }
  .prose li {
    font-size: 14px;
  }
  .text-columns p {
    font-size: 14px;
  }
  .section-tight {
    padding: 38px 0;
  }
}

@media (max-width:600px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    margin-left: 0;
    margin-inline-start: auto;
  }
}

@media (max-width:420px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 17px;
  }
  .home-hero {
    min-height: 710px;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 250px;
  }
  .hero-content h1 {
    font-size: 61px;
  }
  .hero-promise {
    font-size: 21px;
  }
  .hero-copy {
    max-width: 330px;
  }
  .hero-content .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    max-width: 290px;
  }
  .hero-content .button {
    min-height: 46px;
    font-size: 12px;
  }
  .hero-content .button.ghost {
    justify-content: flex-start;
    padding-left: 0;
  }
  .hero-image {
    height: 45%;
    object-position: 72% center;
  }
  .home-hero:before {
    background: linear-gradient(180deg,#f6f6f3 0%,#f6f6f3 56%,rgba(246,246,243,.8) 62%,transparent 76%);
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    padding: 23px;
  }
  .industry-card h3 a {
    min-height: 28px;
  }
  .industry-card h3 {
    font-size: 23px;
  }
  .industry-icon {
    margin-bottom: 20px;
  }
  .industry-foot {
    margin-top: 20px;
  }
  .industry-card p {
    font-size: 13px;
  }
  .featured-industries .industry-card:nth-child(n+5) {
    display: none;
  }
  .proof-strip .container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .example-total {
    font-size: 50px;
  }
  .example-formula {
    font-size: 25px;
    gap: 18px;
  }
  .revenue-example {
    padding: 24px;
  }
  .preview-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .preview-metrics {
    gap: 10px;
  }
  .preview-metrics>div {
    padding-left: 9px;
  }
  .preview-metrics small,.preview-metrics span {
    font-size: 8px;
  }
  .preview-metrics strong {
    font-size: 26px;
  }
  .preview-table>div {
    grid-template-columns: minmax(0,1fr) 96px;
    gap: 8px;
  }
  .preview-table>div>span:nth-child(2) {
    display: none;
  }
  .preview-table>div>span:first-child>.icon {
    display: none;
  }
  .preview-body {
    padding: 17px;
  }
  .page-intro h1 {
    font-size: 37px;
  }
  .local-bar a {
    max-width: 215px;
    text-align: right;
  }
  .footer-main {
    gap: 30px 18px;
  }
  .footer-main>div>a:not(.brand) {
    font-size: 11px;
  }
}

@media (max-width:1060px) {
  .filter-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .search-field {
    max-width: 420px;
  }
  .service-row {
    gap: 22px;
    grid-template-columns: 28px minmax(0,1fr) minmax(0,1.4fr);
  }
  .service-row h3 {
    font-size: 22px;
  }
  .timeline-row {
    grid-template-columns: 65px minmax(0,1fr);
    gap: 30px;
  }
  .timeline-row h2 {
    font-size: 29px;
  }
  .software-intro-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .calc-inputs {
    padding: 25px;
  }
  .calc-results {
    padding: 30px 24px;
  }
  .result-number {
    font-size: 42px;
  }
  .result-breakdown>div {
    gap: 14px;
  }
  .result-breakdown {
    font-size: 11px;
  }
  .balance-row dd {
    font-size: 17px;
  }
  .funding-calculator {
    gap: 45px;
  }
  .inquiry-layout {
    grid-template-columns: minmax(0,1fr) 260px;
    gap: 38px;
  }
  .inquiry-aside {
    padding-left: 23px;
  }
  .inquiry-aside h2 {
    font-size: 27px;
  }
  .input-grid {
    gap: 0 16px;
  }
  .calc-models label>span {
    font-size: 12px;
  }
  .article-grid {
    gap: 20px;
  }
  .article-card h2 .text-link {
    font-size: 21px;
  }
  .article-card-visual {
    padding: 22px;
  }
}

@media (max-width:760px) {
  .filter-buttons {
    gap: 8px;
  }
  .filter-buttons button {
    font-size: 11px;
    padding: 10px 13px;
  }
  .filter-toolbar {
    gap: 17px;
  }
  .search-field {
    max-width: 100%;
  }
  .industry-example>strong {
    font-size: 49px;
  }
  .calculation-checklist {
    padding: 25px;
  }
  .calculation-checklist h3 {
    font-size: 24px;
  }
  .service-row {
    grid-template-columns: 28px minmax(0,1fr);
    padding: 27px 0;
    gap: 15px;
  }
  .service-row h3 {
    font-size: 24px;
  }
  .service-row>div {
    grid-column: 2;
  }
  .service-row p {
    font-size: 13px;
  }
  .service-row .deliverable {
    font-size: 11px;
  }
  .timeline-row {
    grid-template-columns: 44px minmax(0,1fr);
    gap: 20px;
    padding: 32px 0;
  }
  .timeline-number {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  .timeline-row .eyebrow {
    font-size: 10px;
  }
  .timeline-row h2 {
    font-size: 25px;
  }
  .responsibility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .responsibility-grid p {
    font-size: 12px;
  }
  .numbered-list article {
    gap: 20px;
  }
  .numbered-list h3 {
    font-size: 20px;
  }
  .numbered-list p {
    font-size: 13px;
  }
  .software-intro-actions>p {
    font-size: 18px;
  }
  .software-intro-actions .button {
    font-size: 12px;
  }
  .software-intro .preview-body {
    padding: 22px;
  }
  .software-intro .preview-heading h3 {
    font-size: 24px;
  }
  .software-intro .preview-table {
    font-size: 11px;
  }
  .software-intro .preview-table>div {
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr) 104px;
  }
  .software-intro .preview-metrics strong {
    font-size: 29px;
  }
  .definition-list article {
    gap: 18px;
  }
  .definition-list h3 {
    font-size: 23px;
  }
  .funding-paths {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .fit-check {
    padding: 16px;
  }
  .fit-check label {
    font-size: 12px;
  }
  .math-lines strong {
    font-size: 18px;
  }
  .curriculum>div {
    grid-template-columns: 22px minmax(0,1fr) 45px;
    gap: 10px;
    font-size: 11px;
  }
  .article-number {
    padding: 23px;
  }
  .article-number>strong {
    font-size: 48px;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .article-card-visual {
    aspect-ratio: 2.2;
  }
  .article-card h2 .text-link {
    font-size: 25px;
  }
  .document-sample {
    padding: 20px;
  }
  .sample-banner {
    font-size: 9px;
  }
  .sample-head {
    gap: 20px;
    align-items: flex-start;
  }
  .sample-head h2 {
    font-size: 28px;
  }
  .sample-head>div:last-child {
    font-size: 9px;
  }
  .source-register h2 {
    font-size: 21px;
  }
  .source-register p {
    font-size: 12px;
  }
  .calc-models {
    gap: 4px;
    padding: 8px;
  }
  .calc-models label>span {
    font-size: 11px;
    padding: 9px 6px;
    gap: 6px;
    flex-direction: column;
    text-align: center;
    min-height: 67px;
  }
  .calc-models .icon {
    width: 19px;
    height: 19px;
    min-width: 19px;
  }
  .calc-surface {
    grid-template-columns: 1fr;
  }
  .calc-inputs {
    padding: 22px;
  }
  .calc-results {
    padding: 28px 25px;
  }
  .result-number {
    font-size: 47px;
  }
  .result-breakdown {
    font-size: 12px;
  }
  .balance-row dd {
    font-size: 19px;
  }
  .calc-source {
    margin-top: 12px;
  }
  .funding-calculator,.inquiry-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .funding-output dl {
    font-size: 12px;
  }
  .inquiry-aside {
    position: static;
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .inquiry-aside h2 {
    font-size: 30px;
  }
  .inquiry-aside ol {
    max-width: 480px;
  }
  .inquiry-aside>p {
    max-width: 500px;
  }
  .field {
    font-size: 12px;
  }
  .field input,.field select,.field textarea {
    font-size: 16px;
  }
  .field select {
    min-height: 56px;
    line-height: 1.35;
  }
  .inquiry-layout .input-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-local .notice p {
    font-size: 12px;
  }
  .privacy-note {
    font-size: 11px;
  }
  .draft-panel .button {
    font-size: 12px;
  }
  .calc-inputs .field {
    font-size: 11px;
  }
  .input-unit>span {
    font-size: 9px;
  }
  .input-unit input {
    padding-right: 60px;
  }
  .realization-field>.field {
    gap: 10px;
  }
  .realization-field>.field>span:first-child {
    flex: 1;
    min-width: 170px;
  }
  .calc-results #calc-invalid h2 {
    font-size: 25px;
  }
}

@media (max-width:420px) {
  .calc-inputs {
    padding: 20px 16px;
  }
  .calc-results {
    padding: 27px 20px;
  }
  .calc-inputs .input-grid {
    grid-template-columns: 1fr;
  }
  .calc-models label>span {
    font-size: 10px;
  }
  .result-number {
    font-size: 40px;
  }
  .result-breakdown>div {
    flex-wrap: wrap;
    gap: 6px;
  }
  .result-breakdown dt {
    max-width: 65%;
  }
  .result-breakdown dd {
    max-width: 100%;
    overflow-wrap: anywhere;
    flex-shrink: 1;
  }
  .capacity-result {
    gap: 18px;
  }
  .capacity-result strong {
    font-size: 12px;
  }
  .calc-result-heading {
    flex-wrap: wrap;
  }
  .software-intro .preview-body {
    padding: 17px;
  }
  .software-intro .preview-table>div {
    grid-template-columns: minmax(0,1fr) 100px;
  }
  .software-intro .preview-table>div>span:nth-child(2) {
    display: none;
  }
  .sample-head {
    flex-direction: column;
    gap: 12px;
  }
  .sample-head>div:last-child {
    text-align: left;
  }
  .sample-head h2 {
    font-size: 26px;
  }
  .document-sample {
    padding: 15px;
  }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-number {
    width: 39px;
    height: 39px;
  }
  .curriculum strong {
    overflow-wrap: anywhere;
  }
  .funding-output dl>div {
    gap: 14px;
  }
  .funding-output dt {
    max-width: 62%;
  }
  .funding-output dd {
    white-space: normal;
    text-align: right;
  }
  .article-number>strong {
    font-size: 42px;
  }
}

.founding-opening {
  display: grid;
  grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr);
  gap: 90px;
  align-items: start;
}

.founding-opening h2 {
  max-width: 500px;
}

.founding-opening>div:last-child {
  max-width: 720px;
}

.founding-opening>div:last-child p+p {
  margin-top: 18px;
}

.founding-offer-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
  margin-top: 42px;
}

.founding-offer {
  position: relative;
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
}

.founding-offer.featured {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.founding-offer .offer-index {
  position: absolute;
  inset-block-start: 24px;
  inset-inline-end: 26px;
  font-size: 12px;
  font-weight: 750;
  color: var(--brand);
}

.founding-offer.featured .offer-index,
.founding-offer.featured .eyebrow {
  color: #8ec8ff;
}

.founding-offer h3 {
  max-width: 470px;
  font-size: 29px;
  line-height: 1.16;
}

.offer-price {
  margin: 24px 0 16px;
  color: var(--brand-dark);
  font-size: 42px;
  font-weight: 760;
  line-height: 1;
}

.offer-price span,
.offer-price small {
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.founding-offer.featured .offer-price,
.founding-offer.featured p,
.founding-offer.featured .price-limit {
  color: #fff;
}

.founding-offer .check-list {
  margin: 24px 0;
}

.founding-offer .price-limit {
  min-height: 50px;
}

.software-pricing {
  background: #e8f3f1;
}

.software-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr);
  gap: 70px;
  align-items: end;
}

.software-pricing-heading>p {
  max-width: 560px;
}

.usage-price-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  margin: 44px 0 28px;
  background: #b7d4cf;
  border: 1px solid #b7d4cf;
}

.usage-price-grid article {
  min-width: 0;
  padding: 29px;
  background: #fff;
}

.usage-price-grid span {
  display: block;
  min-height: 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.usage-price-grid strong {
  display: block;
  margin: 17px 0 12px;
  color: var(--teal);
  font-size: 38px;
  line-height: 1;
}

.usage-price-grid p {
  font-size: 12px;
}

.partner-route-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
  margin: 42px 0 28px;
}

.partner-route {
  min-width: 0;
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
}

.partner-route.consultant {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.partner-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.partner-route-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--brand);
}

.partner-route-icon .icon {
  width: 25px;
  height: 25px;
}

.partner-route h3 {
  max-width: 520px;
  font-size: 31px;
  line-height: 1.16;
}

.partner-route>p {
  margin-top: 17px;
}

.partner-route .check-list {
  margin: 26px 0;
}

.partner-economics {
  min-height: 146px;
  padding-top: 24px;
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.partner-route.consultant .partner-economics {
  border-color: #ffffff38;
}

.partner-economics span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-economics strong {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 39px;
  line-height: 1.1;
}

.partner-route.consultant .partner-economics strong {
  color: #8ec8ff;
}

.partner-economics p {
  margin-top: 8px;
  font-size: 12px;
}

.partner-process {
  color: #fff;
  background: var(--navy);
}

.partner-process .container {
  display: grid;
  grid-template-columns: minmax(260px,.75fr) minmax(0,1.25fr);
  gap: 85px;
}

.partner-process .eyebrow {
  color: #8ec8ff;
}

.partner-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partner-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid #ffffff2e;
}

.partner-steps li:first-child {
  padding-top: 0;
  border-top: 0;
}

.partner-steps>li>span {
  color: #8ec8ff;
  font-size: 12px;
  font-weight: 750;
}

.partner-steps h3 {
  font-size: 22px;
}

.partner-steps p {
  margin-top: 8px;
  color: #d8deea;
}

.partner-download-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.partner-download-grid>article,
.partner-download-grid>aside {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  background: #fff;
}

.partner-download-grid>aside {
  color: #fff;
  background: var(--teal);
}

.partner-download-grid>aside .eyebrow {
  color: #c8fffa;
}

.partner-download-grid>aside h3 {
  color: #fff;
}

.partner-download-grid>aside p:not(.eyebrow) {
  color: #e7fffd;
}

.partner-download-grid h3 {
  font-size: 24px;
  line-height: 1.2;
}

.partner-download-grid p:not(.eyebrow) {
  min-height: 88px;
  margin-top: 14px;
  margin-bottom: 22px;
  font-size: 13px;
}

.partner-download-grid .button {
  width: 100%;
  margin-top: auto;
}

@media (max-width:1060px) {
  .founding-opening,
  .software-pricing-heading,
  .partner-process .container {
    gap: 45px;
  }
}

@media (max-width:900px) {
  .partner-download-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .partner-download-grid>aside {
    grid-column: auto;
  }
  .partner-download-grid p:not(.eyebrow) {
    min-height: 0;
  }
}

@media (max-width:760px) {
  .founding-opening,
  .founding-offer-grid,
  .software-pricing-heading,
  .usage-price-grid,
  .partner-route-grid,
  .partner-process .container,
  .partner-download-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .founding-opening,
  .software-pricing-heading,
  .partner-process .container {
    gap: 32px;
  }
  .founding-offer,
  .partner-route {
    padding: 27px;
  }
  .founding-offer h3,
  .partner-route h3 {
    font-size: 26px;
  }
  .offer-price,
  .partner-economics strong {
    font-size: 35px;
  }
  .founding-offer .price-limit,
  .partner-economics,
  .usage-price-grid span,
  .partner-download-grid p:not(.eyebrow) {
    min-height: 0;
  }
  .usage-price-grid {
    gap: 1px;
  }
  .partner-download-grid>aside {
    grid-column: auto;
  }
  .partner-process-intro h2 {
    font-size: 34px;
  }
}

@media (max-width:420px) {
  .founding-offer,
  .partner-route,
  .partner-download-grid>article,
  .partner-download-grid>aside,
  .usage-price-grid article {
    padding: 22px;
  }
  .partner-route-head {
    align-items: flex-start;
  }
}

@media (max-height:740px) and (max-width:760px) {
  .home-hero {
    min-height: 0;
  }
  .hero-content {
    padding-block: 24px 115px;
  }
  .hero-content h1 {
    font-size: 48px;
    line-height: 1.02;
  }
  .hero-content .eyebrow {
    margin-bottom: 15px;
  }
  .hero-promise {
    font-size: 19px;
    line-height: 1.35;
    margin-top: 14px;
  }
  .hero-copy {
    display: none;
  }
  .hero-content .button-row {
    margin-top: 16px;
  }
  .hero-image {
    height: 45%;
  }
  .home-hero:before {
    background: linear-gradient(180deg,#f6f6f3 0%,#f6f6f3 51%,rgba(246,246,243,.95) 65%,transparent 83%);
  }
}

@media (max-height:650px) and (max-width:760px) {
  .hero-content {
    padding-block: 22px 85px;
  }
  .hero-content h1 {
    font-size: 35px;
  }
  .hero-content h1 br {
    display: none;
  }
  .hero-content h1 span {
    margin-left: 8px;
  }
  .hero-promise {
    font-size: 17px;
  }
  .hero-content .eyebrow {
    font-size: 8px;
  }
  .hero-image {
    height: 40%;
  }
}

h1,h2,h3,p,li {
  overflow-wrap: break-word;
}

.brand,.local-bar a,.proof-strip a,.footer-main>div>a:not(.brand),.breadcrumbs a {
  min-height: 44px;
}

.source-line a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
}

.realization-field input[type=range] {
  min-height: 44px;
}

.button[aria-disabled=true] {
  opacity: .55;
  cursor: not-allowed;
}

.result-breakdown>div {
  flex-wrap: wrap;
}

.result-breakdown dd {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  flex-shrink: 1;
}

@media (min-width:761px) and (max-height:800px) {
  .home-hero {
    min-height: 0;
  }
  .hero-content {
    padding-block: 30px 45px;
  }
  .hero-content h1 {
    font-size: 64px;
  }
  .hero-promise {
    font-size: 22px;
  }
  .hero-copy {
    font-size: 13px;
  }
  .hero-content .eyebrow {
    margin-bottom: 16px;
  }
  .hero-content .button-row {
    margin-top: 20px;
  }
}

@media (max-width:760px) and (min-height:741px) {
  .home-hero {
    min-height: 0;
  }
  .hero-copy {
    display: none;
  }
  .hero-content {
    padding-bottom: 170px;
  }
  .hero-image {
    height: 49%;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .site-header,.local-bar,.site-footer,.cta-band,.button-row,.contents-nav,.skip-link {
    display: none !important;
  }
  .section,.page-intro {
    padding: 20px 0;
  }
  .container {
    width: 100%;
  }
  .home-hero {
    min-height: 0;
  }
  .hero-image,.home-hero:before {
    display: none;
  }
  .hero-content {
    padding: 0;
  }
  h1,h2,h3 {
    break-after: avoid;
  }
  article,.notice,.revenue-example {
    break-inside: avoid;
  }
  body {
    font-size: 11pt;
    color: #000;
  }
  .source-line a {
    word-break: break-all;
  }
}
