@font-face {
    font-family: "Geist";
    src: url("../fonts/geist/geist-latin-wght-normal.a147f99cd533.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Geist Mono";
    src: url("../fonts/geist/geist-mono-latin-wght-normal.86c701a325b5.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --paper: #f3f5f1;
    --paper-deep: #e6ebe5;
    --paper-bright: #fbfcf9;
    --ink: #11151a;
    --ink-soft: #232931;
    --muted: #606972;
    --muted-light: #a6afb6;
    --line: rgb(17 21 26 / 16%);
    --line-dark: rgb(243 245 241 / 18%);
    --signal: #1744e8;
    --signal-deep: #1133b3;
    --signal-soft: rgb(23 68 232 / 10%);
    --shell: min(1360px, calc(100% - 64px));
    --nav-height: 68px;
    --radius: 4px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Geist", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

body,
button,
a {
    letter-spacing: 0;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

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

::selection {
    color: #fff;
    background: var(--signal);
}

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

.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;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 12px 16px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.global-page {
    min-height: 100dvh;
    overflow: clip;
    background: var(--paper);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-height);
    border-bottom: 1px solid var(--line);
    background: rgb(243 245 241 / 88%);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.nav__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand img {
    width: 98px;
    height: 42px;
    object-fit: contain;
}

.brand__descriptor {
    padding-left: 12px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    line-height: 1.25;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav__links a,
.nav__language {
    position: relative;
    color: var(--muted);
    font-size: 13px;
    font-weight: 620;
    text-decoration: none;
}

.nav__language-form {
    margin: 0;
}

button.nav__language {
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.nav__links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease-out);
}

.nav__links a:hover,
.nav__language:hover {
    color: var(--ink);
}

.nav__links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.nav__menu {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.nav__menu i {
    font-size: 22px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid var(--signal);
    border-radius: var(--radius);
    color: #fff;
    background: var(--signal);
    font-size: 14px;
    font-weight: 720;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 34px rgb(23 68 232 / 16%);
    transition: color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.button:hover {
    color: #fff;
    background: var(--signal-deep);
    box-shadow: 0 18px 44px rgb(23 68 232 / 24%);
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(1px) scale(0.99);
}

.button--compact {
    min-height: 40px;
    padding-inline: 16px;
    gap: 10px;
    font-size: 12px;
}

.button--light {
    border-color: #fff;
    color: var(--ink);
    background: #fff;
    box-shadow: none;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 650;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color 180ms ease;
}

.text-link:hover {
    color: var(--signal);
}

.text-link--large {
    font-size: 15px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow span {
    color: var(--signal);
}

.hero {
    position: relative;
    min-height: clamp(680px, 88dvh, 900px);
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.hero__scene,
.hero__grid-lines,
.hero__fallback {
    position: absolute;
    inset: 0;
}

.hero__scene {
    z-index: -2;
}

#inventory-field {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 600ms ease;
}

.webgl-ready #inventory-field {
    opacity: 1;
}

.hero__fallback {
    opacity: 0.62;
    background:
        repeating-linear-gradient(90deg, transparent 0 79px, rgb(17 21 26 / 5%) 79px 80px),
        repeating-linear-gradient(0deg, transparent 0 79px, rgb(17 21 26 / 5%) 79px 80px),
        linear-gradient(110deg, transparent 0 52%, var(--signal-soft) 52% 61%, transparent 61%);
    transition: opacity 600ms ease;
}

.webgl-ready .hero__fallback {
    opacity: 0.14;
}

.hero__grid-lines {
    z-index: -1;
    width: var(--shell);
    margin-inline: auto;
    border-inline: 1px solid rgb(17 21 26 / 7%);
    background: linear-gradient(90deg, transparent 49.96%, rgb(17 21 26 / 7%) 50%, transparent 50.04%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 1fr auto;
    align-items: end;
    min-height: clamp(680px, 88dvh, 900px);
    padding: clamp(70px, 10vh, 110px) 0 42px;
}

.hero__copy {
    grid-column: 1 / 10;
    align-self: center;
    max-width: 1100px;
}

.hero h1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.18em;
    margin: 0;
    color: var(--ink);
    font-size: clamp(5.1rem, 13.2vw, 12.6rem);
    font-weight: 770;
    line-height: 0.78;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
    text-stroke: 2px var(--ink);
}

.hero__statement {
    margin: 36px 0 0;
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 560;
    line-height: 0.98;
    text-wrap: balance;
}

.hero__lead {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.62;
    text-wrap: pretty;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 30px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    list-style: none;
    text-transform: uppercase;
}

.hero__proof li {
    padding: 0 14px;
    border-left: 1px solid var(--line);
}

.hero__proof li:first-child {
    padding-left: 0;
    border-left: 0;
}

.telemetry {
    grid-column: 10 / -1;
    align-self: end;
    width: 100%;
    margin-bottom: 52px;
    border-block: 1px solid var(--line);
    background: rgb(243 245 241 / 58%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.telemetry__head,
.telemetry__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    text-transform: uppercase;
}

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

.telemetry__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.telemetry__live i {
    width: 6px;
    height: 6px;
    background: var(--signal);
    box-shadow: 0 0 0 5px var(--signal-soft);
    animation: signal-pulse 2.2s ease-in-out infinite;
}

.telemetry__metrics {
    margin: 0;
}

.telemetry__metrics > div {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
    padding: 16px 0 18px;
    border-bottom: 1px solid var(--line);
}

.telemetry dt {
    color: var(--muted);
    font-size: 11px;
}

.telemetry dd {
    margin: 0;
    font-family: "Geist Mono", monospace;
    font-size: 22px;
    font-variant-numeric: tabular-nums;
}

.telemetry dd small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 500;
}

.metric-bar {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--signal) var(--value), transparent var(--value));
}

.scroll-cue {
    grid-column: 1 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue i {
    color: var(--signal);
    animation: cue-drop 1.8s var(--ease-out) infinite;
}

.section-heading {
    margin-bottom: clamp(54px, 7vw, 96px);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(40px, 8vw, 120px);
}

.section-heading h2,
.market-fit h2,
.faq h2,
.closing h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.2rem, 7.2vw, 7.6rem);
    font-weight: 710;
    line-height: 0.9;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-heading > p,
.market-fit__intro > p:last-child,
.faq__intro > p:last-of-type {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    text-wrap: pretty;
}

.product-proof {
    padding: clamp(110px, 13vw, 190px) 0 clamp(120px, 15vw, 220px);
    background: var(--paper-bright);
}

.product-window {
    margin: 0;
    border-block: 1px solid var(--line);
}

.product-window__rail,
.product-window figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 48px;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.product-window__viewport {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #dfe4e2;
    box-shadow: 0 50px 100px rgb(35 41 49 / 14%);
}

.product-window__viewport::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgb(255 255 255 / 48%);
    pointer-events: none;
}

.product-window img {
    width: 100%;
    height: auto;
}

.product-window figcaption span:last-child {
    text-align: right;
}

.workflow {
    position: relative;
    color: var(--paper);
    background: var(--ink);
}

.workflow__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(60px, 10vw, 180px);
}

.workflow__sticky {
    position: sticky;
    top: calc(var(--nav-height) + 64px);
    align-self: start;
    min-height: calc(100dvh - var(--nav-height) - 128px);
    padding: 110px 0 70px;
}

.workflow .eyebrow,
.workflow__sticky > p:nth-of-type(2) {
    color: var(--muted-light);
}

.workflow__sticky h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(3rem, 5.5vw, 6.2rem);
    font-weight: 680;
    line-height: 0.92;
    letter-spacing: 0;
    text-wrap: balance;
}

.workflow__sticky > p:nth-of-type(2) {
    max-width: 540px;
    margin: 26px 0 0;
    font-size: 17px;
    line-height: 1.7;
}

.flow-index {
    display: grid;
    grid-template-columns: 2px 1fr;
    gap: 18px;
    max-width: 300px;
    margin-top: 72px;
}

.flow-index__track {
    position: relative;
    display: block;
    background: var(--line-dark);
}

.flow-index__track i {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: var(--flow-progress, 20%);
    background: var(--signal);
    transition: height 600ms var(--ease-out);
}

.flow-index ol {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    color: #747d86;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    list-style: none;
    text-transform: uppercase;
}

.flow-index li {
    transition: color 350ms ease, transform 350ms var(--ease-out);
}

.flow-index li.is-active {
    color: var(--paper);
    transform: translateX(6px);
}

.workflow__steps {
    min-width: 0;
}

.workflow-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    align-items: center;
    min-height: 88dvh;
    padding: 110px 0;
    border-top: 1px solid var(--line-dark);
}

.workflow-step:first-child {
    border-top: 0;
}

.workflow-step__number,
.workflow-step__verb {
    color: var(--signal);
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    font-weight: 650;
    text-transform: uppercase;
}

.workflow-step__number {
    align-self: start;
    padding-top: 9px;
}

.workflow-step__verb {
    margin: 0 0 20px;
}

.workflow-step h3 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.5rem, 4.6vw, 5.5rem);
    font-weight: 620;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.workflow-step p:not(.workflow-step__verb) {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--muted-light);
    font-size: 17px;
    line-height: 1.75;
}

.workflow-step ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 34px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--line-dark);
    color: #c9ced2;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    list-style: none;
    text-transform: uppercase;
}

.workflow-step li::before {
    content: "/";
    margin-right: 8px;
    color: var(--signal);
}

.capabilities {
    padding: clamp(120px, 15vw, 220px) 0;
    background: var(--paper);
}

.capability-ledger {
    border-top: 1px solid var(--line);
}

.capability-row {
    display: grid;
    grid-template-columns: 70px minmax(220px, 0.78fr) minmax(320px, 1.22fr) 34px;
    gap: 30px;
    align-items: center;
    min-height: 148px;
    border-bottom: 1px solid var(--line);
    transition: color 260ms ease, background-color 260ms ease, padding 320ms var(--ease-out);
}

.capability-row:hover {
    padding-inline: 18px;
    color: #fff;
    background: var(--signal);
}

.capability-row__index {
    color: var(--signal);
    font-family: "Geist Mono", monospace;
    font-size: 11px;
}

.capability-row:hover .capability-row__index,
.capability-row:hover p {
    color: rgb(255 255 255 / 78%);
}

.capability-row h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    font-weight: 630;
}

.capability-row p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.capability-row i {
    justify-self: end;
    font-size: 20px;
}

.coverage-strip {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    margin-top: 90px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.coverage-strip p {
    margin: 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.coverage-strip ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 620;
    list-style: none;
}

.coverage-strip li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    background: var(--signal);
    vertical-align: 2px;
}

.market-fit {
    padding: clamp(110px, 13vw, 190px) 0;
    border-block: 1px solid var(--line);
    background: var(--paper-deep);
}

.market-fit__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(60px, 10vw, 170px);
}

.market-fit__intro {
    align-self: start;
}

.market-fit__intro h2 {
    max-width: 620px;
    font-size: clamp(3.2rem, 5.8vw, 6.3rem);
}

.market-fit__intro > p:last-child {
    max-width: 480px;
    margin-top: 28px;
}

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

.market-list article {
    display: grid;
    grid-template-columns: 48px minmax(180px, 0.72fr) minmax(240px, 1.28fr);
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.market-list article > span {
    color: var(--signal);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
}

.market-list h3,
.market-list p {
    margin: 0;
}

.market-list h3 {
    font-size: 20px;
    line-height: 1.25;
}

.market-list p {
    color: var(--muted);
    line-height: 1.65;
}

.scope-note {
    grid-column: 2;
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.scope-note > p {
    margin: 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.scope-note div {
    display: grid;
    gap: 9px;
}

.scope-note strong {
    font-size: 13px;
}

.scope-note span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.pricing {
    padding: clamp(120px, 15vw, 220px) 0;
    background: var(--paper-bright);
}

.pricing-ledger {
    border-top: 1px solid var(--line);
}

.plan-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(220px, 0.85fr) minmax(250px, 1.2fr) minmax(160px, 0.6fr) 48px;
    gap: 28px;
    align-items: center;
    min-height: 190px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.plan-row--recommended {
    margin-inline: -24px;
    padding-inline: 24px;
    color: #fff;
    border-color: var(--signal);
    background: var(--signal);
}

.plan-row__name {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
}

.plan-row__name > span {
    padding-top: 6px;
    color: var(--signal);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
}

.plan-row--recommended .plan-row__name > span {
    color: rgb(255 255 255 / 65%);
}

.plan-row h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 680;
}

.plan-row__name small {
    color: rgb(255 255 255 / 72%);
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    text-transform: uppercase;
}

.plan-row__description {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.plan-row--recommended .plan-row__description {
    color: rgb(255 255 255 / 78%);
}

.plan-row__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 12px;
    list-style: none;
}

.plan-row__features li::before {
    content: "/";
    margin-right: 7px;
    color: var(--signal);
}

.plan-row--recommended .plan-row__features {
    color: rgb(255 255 255 / 80%);
}

.plan-row--recommended .plan-row__features li::before {
    color: #fff;
}

.plan-row__price {
    display: grid;
    gap: 3px;
    font-variant-numeric: tabular-nums;
}

.plan-row__price strong {
    font-family: "Geist Mono", monospace;
    font-size: 34px;
    line-height: 1;
}

.plan-row__price sup {
    margin-right: 3px;
    font-size: 13px;
    vertical-align: 11px;
}

.plan-row__price span,
.plan-row__price small {
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    text-transform: uppercase;
}

.plan-row--recommended .plan-row__price span,
.plan-row--recommended .plan-row__price small {
    color: rgb(255 255 255 / 70%);
}

.plan-row__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    transition: color 200ms ease, background-color 200ms ease, transform 200ms var(--ease-out);
}

.plan-row__action:hover {
    color: #fff;
    background: var(--ink);
    transform: translate(2px, -2px);
}

.plan-row--recommended .plan-row__action {
    border-color: rgb(255 255 255 / 48%);
}

.plan-row--recommended .plan-row__action:hover {
    color: var(--signal);
    background: #fff;
}

.faq {
    padding: clamp(110px, 13vw, 190px) 0;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.faq__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(60px, 10vw, 180px);
}

.faq__intro {
    align-self: start;
}

.faq__intro h2 {
    max-width: 600px;
    font-size: clamp(3.2rem, 5.8vw, 6.3rem);
}

.faq__intro .text-link {
    margin-top: 34px;
}

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

.faq__list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 28px;
    padding: 34px 0 38px;
    border-bottom: 1px solid var(--line);
}

.faq__list article > span {
    color: var(--signal);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
}

.faq__list h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 620;
    line-height: 1.25;
}

.faq__list p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.closing {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--signal);
}

.closing__grid {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background:
        linear-gradient(90deg, transparent 49.9%, rgb(255 255 255 / 25%) 50%, transparent 50.1%),
        repeating-linear-gradient(90deg, transparent 0 89px, rgb(255 255 255 / 14%) 89px 90px),
        repeating-linear-gradient(0deg, transparent 0 89px, rgb(255 255 255 / 14%) 89px 90px);
    mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.closing__inner {
    position: relative;
    padding: clamp(110px, 14vw, 210px) 0 clamp(100px, 12vw, 170px);
}

.closing .eyebrow {
    color: rgb(255 255 255 / 72%);
}

.closing .eyebrow span {
    color: #fff;
}

.closing h2 {
    max-width: 1180px;
    font-size: clamp(4.2rem, 10.5vw, 10.8rem);
}

.closing__inner > p:nth-of-type(2) {
    max-width: 650px;
    margin: 32px 0 38px;
    color: rgb(255 255 255 / 78%);
    font-size: 18px;
    line-height: 1.7;
}

.footer {
    color: var(--muted-light);
    background: var(--ink);
}

.footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 34px;
    min-height: 118px;
    font-size: 12px;
}

.footer__brand img {
    width: 98px;
    height: 42px;
}

.footer p {
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 22px;
}

.footer__links a {
    text-decoration: none;
}

.footer__links a:hover {
    color: #fff;
}

@keyframes signal-pulse {
    0%, 100% { box-shadow: 0 0 0 4px var(--signal-soft); }
    50% { box-shadow: 0 0 0 9px transparent; }
}

@keyframes cue-drop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(56px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes product-reveal {
    from {
        clip-path: inset(0 10% 18% 10%);
        transform: perspective(1600px) rotateX(7deg) translateY(80px);
    }
    to {
        clip-path: inset(0 0 0 0);
        transform: perspective(1600px) rotateX(0) translateY(0);
    }
}

@supports (animation-timeline: view()) {
    [data-reveal] {
        animation: reveal-up 1ms linear both;
        animation-timeline: view();
        animation-range: entry 5% cover 32%;
    }

    .product-window[data-reveal] {
        animation-name: product-reveal;
        animation-range: entry 0% cover 44%;
    }
}

@media (max-width: 1180px) {
    :root {
        --shell: min(100% - 44px, 1080px);
    }

    .brand__descriptor {
        display: none;
    }

    .hero__copy {
        grid-column: 1 / 9;
    }

    .telemetry {
        grid-column: 9 / -1;
    }

    .plan-row {
        grid-template-columns: minmax(150px, 0.6fr) minmax(200px, 0.8fr) minmax(220px, 1fr) minmax(140px, 0.5fr) 48px;
        gap: 20px;
    }

    .plan-row__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 940px) {
    :root {
        --nav-height: 64px;
    }

    .nav__inner {
        grid-template-columns: auto 1fr;
    }

    .nav__links {
        position: fixed;
        top: var(--nav-height);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 12px 22px 24px;
        border-bottom: 1px solid var(--line);
        background: rgb(243 245 241 / 98%);
        opacity: 0;
        transform: translateY(-16px);
        visibility: hidden;
        transition: opacity 220ms ease, transform 220ms var(--ease-out), visibility 220ms;
    }

    .nav.is-open .nav__links {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .nav__links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-size: 18px;
    }

    .nav__links a::after {
        display: none;
    }

    .nav__actions {
        grid-column: 2;
    }

    .nav__menu {
        display: inline-flex;
    }

    .hero__copy {
        grid-column: 1 / 9;
    }

    .telemetry {
        grid-column: 9 / -1;
    }

    .section-heading--split,
    .market-fit__layout,
    .faq__layout {
        grid-template-columns: 1fr;
    }

    .section-heading--split {
        align-items: start;
    }

    .section-heading--split > p {
        max-width: 620px;
    }

    .workflow__layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .workflow__sticky {
        position: relative;
        top: auto;
        min-height: auto;
        padding: 110px 0 70px;
    }

    .flow-index {
        display: none;
    }

    .workflow-step {
        min-height: auto;
        padding: 90px 0;
    }

    .scope-note {
        grid-column: 1;
    }

    .plan-row,
    .plan-row--recommended {
        grid-template-columns: 1fr auto;
        margin-inline: 0;
        padding: 32px 20px;
        column-gap: 26px;
    }

    .plan-row__name,
    .plan-row__description,
    .plan-row__features,
    .plan-row__price {
        grid-column: 1;
    }

    .plan-row__action {
        grid-column: 2;
        grid-row: 1;
    }

    .plan-row__description {
        max-width: 680px;
    }

    .plan-row__features {
        grid-template-columns: 1fr 1fr;
    }

    .footer__inner {
        grid-template-columns: auto 1fr auto;
    }

    .footer__inner > span {
        grid-column: 3;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: min(100% - 28px, 680px);
    }

    .nav__language-form {
        display: none;
    }

    .hero {
        min-height: calc(100dvh - var(--nav-height) - 200px);
    }

    .hero__inner {
        display: block;
        min-height: calc(100dvh - var(--nav-height) - 200px);
        padding: 42px 0 24px;
    }

    .hero__copy {
        max-width: 100%;
    }

    .hero h1 {
        display: block;
        font-size: clamp(4.2rem, 20.4vw, 6.5rem);
        line-height: 0.82;
    }

    .hero h1 span {
        display: block;
        margin-bottom: 0.08em;
        -webkit-text-stroke-width: 1px;
    }

    .hero__statement {
        margin-top: 20px;
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero__lead {
        margin-top: 14px;
        font-size: 16px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 18px;
    }

    .hero__proof li,
    .hero__proof li:first-child {
        padding: 0;
        border: 0;
    }

    .telemetry {
        display: none;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading h2,
    .market-fit h2,
    .faq h2 {
        font-size: clamp(2.9rem, 13vw, 4.8rem);
    }

    .section-heading--split {
        gap: 30px;
    }

    .product-window__rail,
    .product-window figcaption {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 64px;
    }

    .product-window figcaption span:last-child {
        text-align: left;
    }

    .product-window__viewport {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .product-window img {
        width: 760px;
        max-width: none;
    }

    .workflow__sticky h2 {
        font-size: clamp(2.9rem, 13vw, 4.8rem);
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 76px 0;
    }

    .workflow-step__number {
        padding: 0;
    }

    .workflow-step h3 {
        font-size: clamp(2.45rem, 11vw, 4rem);
    }

    .workflow-step p:not(.workflow-step__verb) {
        font-size: 16px;
    }

    .capability-row {
        grid-template-columns: 38px 1fr 24px;
        gap: 16px;
        padding: 28px 0;
    }

    .capability-row:hover {
        padding-inline: 10px;
    }

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

    .capability-row p {
        grid-column: 2 / -1;
    }

    .capability-row i {
        grid-column: 3;
        grid-row: 1;
    }

    .coverage-strip {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 64px;
    }

    .coverage-strip ul {
        display: grid;
        gap: 12px;
    }

    .market-list article {
        grid-template-columns: 34px 1fr;
    }

    .market-list p {
        grid-column: 2;
    }

    .scope-note {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-row__features {
        grid-template-columns: 1fr;
    }

    .faq__list article {
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .closing h2 {
        font-size: clamp(4rem, 19vw, 6.8rem);
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 36px 0;
    }

    .footer__inner > span {
        grid-column: 1;
    }
}

@media (max-width: 420px) {
    .nav__actions {
        gap: 8px;
    }

    .nav__actions .button {
        min-width: 42px;
        width: 42px;
        padding: 0;
        font-size: 0;
    }

    .nav__actions .button i {
        font-size: 14px;
    }

    .hero__proof { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal],
    .product-window[data-reveal] {
        opacity: 1;
        clip-path: none;
        transform: none;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .nav,
    .telemetry {
        background: var(--paper);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media print {
    .nav,
    .hero__scene,
    .scroll-cue,
    .nav__menu {
        display: none;
    }

    .hero,
    .hero__inner,
    .workflow-step {
        min-height: auto;
    }

    .workflow,
    .closing,
    .footer {
        color: #000;
        background: #fff;
    }
}
