/* Release 20260728-4 */
:root {
    --ink: #f3fff7;
    --ink-soft: #d7e9dd;
    --muted: #9eb2a6;
    --muted-strong: #b9cdc1;
    --canvas: #06100b;
    --canvas-deep: #030806;
    --surface: #0b1710;
    --surface-raised: #102019;
    --surface-soft: #14271d;
    --line: rgba(218, 255, 229, 0.12);
    --line-strong: rgba(218, 255, 229, 0.22);
    --lime: #b8ff5a;
    --lime-soft: #dcffae;
    --mint: #66eca2;
    --cyan: #79dbff;
    --amber: #ffbd72;
    --rose: #ff8da1;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    --radius-sm: 0.75rem;
    --radius-md: 1.15rem;
    --radius-lg: 1.75rem;
    --radius-xl: 2.5rem;
    --container: 74rem;
    --scroll-progress: 0;
    --cursor-x: 50vw;
    --cursor-y: 30vh;
    color-scheme: dark;
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: page-out 180ms cubic-bezier(0.4, 0, 1, 1) both;
}

::view-transition-new(root) {
    animation: page-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
    background: var(--canvas-deep);
}

body {
    margin: 0;
    min-width: 20rem;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 6%, rgba(102, 236, 162, 0.09), transparent 27rem),
        radial-gradient(circle at 88% 2%, rgba(121, 219, 255, 0.07), transparent 30rem),
        var(--canvas);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(to bottom, #000 0, transparent 62rem);
    content: "";
    pointer-events: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.08;
    text-wrap: balance;
}

p,
li {
    text-wrap: pretty;
}

::selection {
    background: var(--lime);
    color: #071009;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    transform: translateY(-180%);
    border-radius: 999px;
    background: var(--ink);
    color: var(--canvas);
    font-weight: 800;
    transition: transform 160ms ease;
}

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

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - 2.5rem), 49rem);
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(4.75rem, 8vw, 8rem);
}

.section-compact {
    padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.section-line {
    border-block: 1px solid var(--line);
    background: rgba(11, 23, 16, 0.64);
}

.section-glow::before {
    position: absolute;
    z-index: -1;
    top: 5%;
    left: 50%;
    width: min(80vw, 55rem);
    height: 28rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(102, 236, 162, 0.08);
    filter: blur(90px);
    content: "";
    pointer-events: none;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    padding: 0.8rem 0;
    border-bottom: 1px solid transparent;
    background: rgba(6, 16, 11, 0.7);
    backdrop-filter: blur(20px);
    transition:
        border-color 180ms ease,
        background 180ms ease;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    transform: scaleX(var(--scroll-progress));
    transform-origin: left;
    background: linear-gradient(90deg, var(--lime), var(--mint), var(--cyan));
    box-shadow: 0 0 16px rgba(102, 236, 162, 0.5);
    content: "";
    pointer-events: none;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(4, 11, 7, 0.93);
}

.nav-shell {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.35rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: max-content;
    text-decoration: none;
}

.brand img {
    width: 5.25rem;
    height: auto;
}

.brand-product {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.15rem 0.65rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.primary-nav > a {
    padding: 0.58rem 0.7rem;
    border-radius: 0.65rem;
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.055);
    color: var(--ink);
}

.primary-nav > a[aria-current="page"] {
    box-shadow: inset 0 -2px var(--lime);
}

.primary-nav .mobile-only {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.portal-link {
    color: var(--muted-strong);
    font-size: 0.8rem;
    font-weight: 750;
    text-decoration: none;
}

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

.menu-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
}

.menu-toggle-lines::before {
    transform: translateY(-0.36rem);
}

.menu-toggle-lines::after {
    transform: translateY(0.24rem);
}

.btn {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.72rem 1.12rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
    text-decoration: none;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.btn::before {
    position: absolute;
    z-index: -1;
    top: -75%;
    bottom: -75%;
    left: -65%;
    width: 32%;
    transform: rotate(18deg) translateX(-240%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    content: "";
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
    transform: rotate(18deg) translateX(650%);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--lime);
    box-shadow: 0 0 0 rgba(184, 255, 90, 0);
    color: #071009;
}

.btn-primary:hover {
    background: var(--lime-soft);
    box-shadow: 0 12px 40px rgba(184, 255, 90, 0.18);
}

.btn-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: rgba(184, 255, 90, 0.42);
    background: rgba(184, 255, 90, 0.06);
}

.btn-small {
    min-height: 2.55rem;
    padding-inline: 0.95rem;
    font-size: 0.78rem;
}

.btn-arrow::after,
.text-link::after {
    content: "↗";
    font-size: 0.95em;
    transition: transform 160ms ease;
}

.btn-arrow:hover::after,
.text-link:hover::after {
    transform: translate(0.15rem, -0.15rem);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--lime-soft);
    font-weight: 800;
    text-decoration: none;
}

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

.eyebrow,
.kicker,
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    min-height: 2rem;
    padding: 0.35rem 0.72rem;
    border: 1px solid rgba(184, 255, 90, 0.2);
    border-radius: 999px;
    background: rgba(184, 255, 90, 0.055);
}

.eyebrow-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0.3rem rgba(184, 255, 90, 0.1);
}

.display {
    max-width: 14ch;
    margin-bottom: 1.45rem;
    font-size: clamp(3rem, 6.3vw, 6.25rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.display-wide {
    max-width: 17ch;
}

.display-estate {
    max-width: 17ch;
    font-size: clamp(3rem, 4.8vw, 4.6rem);
}

.display .accent,
.headline .accent {
    color: var(--lime);
}

.headline {
    margin-bottom: 1.15rem;
    font-size: clamp(2.25rem, 4.6vw, 4.6rem);
}

.subhead {
    margin-bottom: 0.95rem;
    font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.lede {
    max-width: 43rem;
    margin-bottom: 2rem;
    color: var(--ink-soft);
    font-size: clamp(1.07rem, 1.7vw, 1.28rem);
    line-height: 1.62;
}

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

.hero {
    display: grid;
    min-height: min(51rem, calc(100svh - 5rem));
    grid-template-columns: minmax(0, 1.03fr) minmax(25rem, 0.97fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6.5rem);
    padding-block: clamp(4.8rem, 8vw, 7.5rem);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy .eyebrow {
    margin-bottom: 1.4rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.hero-note {
    margin: 1.35rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.hero-visual {
    position: relative;
    min-height: 36rem;
}

.hero-visual::before {
    position: absolute;
    top: 12%;
    right: 2%;
    width: 80%;
    height: 72%;
    border-radius: 50%;
    background: rgba(102, 236, 162, 0.12);
    filter: blur(80px);
    content: "";
}

.journey-shell {
    position: relative;
    min-height: 34rem;
    padding: 1.1rem;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(rgba(121, 219, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 219, 255, 0.03) 1px, transparent 1px),
        linear-gradient(145deg, rgba(16, 32, 25, 0.98), rgba(5, 13, 9, 0.98));
    background-size: 2rem 2rem, 2rem 2rem, auto;
    box-shadow: var(--shadow);
    transform:
        perspective(1100px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translate3d(0, var(--parallax-y, 0px), 0);
    transform-style: preserve-3d;
    transition:
        transform 180ms ease-out,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.journey-shell::before {
    position: absolute;
    z-index: 5;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            28rem circle at var(--pointer-x, 50%) var(--pointer-y, 34%),
            rgba(121, 219, 255, 0.11),
            transparent 46%
        );
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.journey-shell:hover::before {
    opacity: 1;
}

.journey-shell::after {
    position: absolute;
    z-index: 4;
    right: 0;
    left: 0;
    height: 7rem;
    transform: translateY(-160%);
    background: linear-gradient(to bottom, transparent, rgba(102, 236, 162, 0.045), transparent);
    content: "";
    pointer-events: none;
}

.journey-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.15rem;
    padding: 0.3rem 0.45rem 0.75rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--mint);
}

.status-live::before {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0.3rem rgba(102, 236, 162, 0.11);
    content: "";
}

.journey-canvas {
    display: grid;
    position: relative;
    grid-template-columns: 1fr 0.92fr;
    align-items: start;
    gap: 1.15rem 1.5rem;
}

.journey-canvas::before {
    position: absolute;
    z-index: 0;
    top: 3rem;
    bottom: 3rem;
    left: calc(50% - 0.75rem);
    width: 1px;
    background: linear-gradient(var(--mint), var(--cyan), var(--amber), var(--mint));
    background-size: 100% 250%;
    opacity: 0.5;
    content: "";
}

.flow-card {
    position: relative;
    z-index: 1;
    min-height: 7.2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(9, 20, 14, 0.93);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.flow-card:hover {
    border-color: color-mix(in srgb, var(--node-color, var(--lime)) 45%, transparent);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.3),
        0 0 28px color-mix(in srgb, var(--node-color, var(--lime)) 9%, transparent);
}

.flow-card::before {
    position: absolute;
    top: 0;
    left: 1rem;
    width: 2.25rem;
    height: 2px;
    background: var(--node-color, var(--lime));
    content: "";
}

.flow-card:nth-child(even) {
    margin-top: 2rem;
}

.flow-card-wide {
    grid-column: 1 / -1;
    width: 78%;
    margin-top: 0.65rem;
    justify-self: center;
    transform: none !important;
}

.flow-card .mini-label {
    margin-bottom: 0.55rem;
    color: var(--node-color, var(--lime));
    font-size: 0.62rem;
}

.flow-card strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
}

.flow-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.flow-card .route-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.route-pill {
    padding: 0.2rem 0.48rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.62rem;
}

.proof-strip {
    border-block: 1px solid var(--line);
    background: rgba(3, 8, 6, 0.58);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.proof-item {
    padding: 1.3rem 1rem;
    border-left: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.proof-item:first-child {
    border-left: 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-head > div:first-child {
    max-width: 49rem;
}

.section-head .kicker {
    margin-bottom: 0.85rem;
}

.section-head h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-head p {
    max-width: 43rem;
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: 1.07rem;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card {
    position: relative;
    padding: clamp(1.35rem, 3vw, 2rem);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(16, 32, 25, 0.93), rgba(7, 17, 11, 0.93));
}

.feature-card {
    min-height: 17rem;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 255, 90, 0.26);
    background: linear-gradient(145deg, rgba(20, 42, 30, 0.96), rgba(7, 17, 11, 0.96));
}

.feature-card .card-index {
    display: inline-flex;
    width: 2.45rem;
    height: 2.45rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.25rem;
    border: 1px solid var(--line);
    border-radius: 0.78rem;
    background: rgba(255, 255, 255, 0.035);
    color: var(--card-accent, var(--lime));
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.78rem;
    font-weight: 850;
}

.feature-card h3,
.card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.4rem;
}

.feature-card p,
.card p {
    margin-bottom: 0;
    color: var(--muted-strong);
}

.feature-card .text-link {
    margin-top: 1.35rem;
}

.feature-card-accent {
    background:
        radial-gradient(circle at 88% 4%, rgba(184, 255, 90, 0.14), transparent 14rem),
        linear-gradient(145deg, rgba(18, 38, 27, 0.98), rgba(7, 17, 11, 0.98));
}

.product-split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(26rem, 1.18fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6.5rem);
}

.product-split.reverse {
    grid-template-columns: minmax(26rem, 1.18fr) minmax(0, 0.82fr);
}

.product-copy .kicker {
    margin-bottom: 0.9rem;
}

.product-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4.3vw, 4rem);
}

.product-copy > p {
    margin-bottom: 1.5rem;
    color: var(--muted-strong);
    font-size: 1.08rem;
}

.tick-list,
.plain-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.35rem 0 1.8rem;
    padding: 0;
    list-style: none;
}

.tick-list li {
    position: relative;
    display: block;
    padding-left: 2rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.tick-list li::before {
    position: absolute;
    top: 0.08rem;
    left: 0;
    color: var(--lime);
    content: "✓";
    font-weight: 900;
}

.speech-choice-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.speech-choice-list li {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(184, 255, 90, 0.14);
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(184, 255, 90, 0.055), transparent 45%),
        rgba(7, 18, 12, 0.7);
}

.speech-choice-index {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(184, 255, 90, 0.25);
    border-radius: 0.75rem;
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
}

.speech-choice-list strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--ink);
    font-size: 0.98rem;
}

.speech-choice-list p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.93rem;
    line-height: 1.55;
}

.plain-list li {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
}

.plain-list strong {
    color: var(--ink);
}

.product-frame {
    position: relative;
    padding: 0.65rem;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background: #07100b;
    box-shadow: var(--shadow);
}

.product-frame::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
    content: "";
    pointer-events: none;
}

.product-frame img {
    width: 100%;
    border-radius: calc(var(--radius-xl) - 0.45rem);
}

.product-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.75rem 0.2rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.product-caption strong {
    color: var(--ink-soft);
}

.speech-chain {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.speech-chain::before {
    position: absolute;
    top: 2.3rem;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, var(--mint), var(--cyan), var(--amber), var(--lime));
    content: "";
}

.speech-step {
    position: relative;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.speech-step span {
    display: inline-flex;
    position: relative;
    z-index: 1;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    border-radius: 50%;
    background: var(--step-color, var(--lime));
    color: var(--canvas);
    font-size: 0.72rem;
    font-weight: 900;
}

.speech-step h3 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.speech-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.comparison-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(7, 17, 11, 0.72);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    background: rgba(184, 255, 90, 0.055);
    color: var(--ink);
}

.comparison-table td {
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.comparison-table td:first-child {
    color: var(--ink-soft);
    font-weight: 750;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table .yes {
    color: var(--lime-soft);
    font-weight: 800;
}

.comparison-note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.deployment-band {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    padding: clamp(2rem, 5vw, 4.5rem);
    overflow: hidden;
    border: 1px solid rgba(121, 219, 255, 0.2);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 10%, rgba(121, 219, 255, 0.14), transparent 24rem),
        linear-gradient(135deg, rgba(13, 29, 23, 0.98), rgba(5, 14, 10, 0.98));
    box-shadow: var(--shadow);
}

.deployment-band h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.deployment-band p {
    color: var(--muted-strong);
}

.stack-map {
    display: grid;
    gap: 0.55rem;
}

.stack-row {
    display: grid;
    grid-template-columns: 2.6rem minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: rgba(3, 9, 6, 0.65);
}

.stack-row span:first-child {
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.7rem;
    font-weight: 900;
}

.stack-row strong {
    font-size: 0.88rem;
}

.stack-row small {
    grid-column: 2;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.4;
    text-align: left;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.outcome {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.outcome strong {
    display: block;
    margin-bottom: 0.32rem;
    font-size: 1rem;
}

.outcome p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.72rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted-strong);
    font-size: 0.75rem;
    font-weight: 750;
}

.pill::before {
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: var(--pill-color, var(--lime));
    content: "";
}

.case-card {
    display: flex;
    min-height: 16rem;
    flex-direction: column;
    justify-content: space-between;
}

.case-card .mini-label {
    color: var(--card-accent, var(--lime));
}

.case-card h3 {
    max-width: 13ch;
    margin: 2.4rem 0 0.75rem;
    font-size: 1.55rem;
}

.case-card p {
    color: var(--muted-strong);
}

.case-card a {
    align-self: flex-start;
}

.quote-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, auto);
    align-items: center;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
}

.quote-panel blockquote {
    min-width: 0;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.4rem, 2.7vw, 2.45rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.24;
}

.quote-panel cite {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.55;
}

.cta-panel {
    position: relative;
    padding: clamp(2.4rem, 7vw, 6.5rem);
    overflow: hidden;
    border: 1px solid rgba(184, 255, 90, 0.25);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0, rgba(184, 255, 90, 0.18), transparent 26rem),
        linear-gradient(135deg, #13291e, #07110c);
    box-shadow: var(--shadow);
}

.cta-panel::after {
    position: absolute;
    top: -5rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(184, 255, 90, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 3rem rgba(184, 255, 90, 0.025),
        0 0 0 7rem rgba(184, 255, 90, 0.02);
    content: "";
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    max-width: 15ch;
    margin-bottom: 1.15rem;
    font-size: clamp(2.5rem, 5.3vw, 5.2rem);
}

.cta-panel p {
    max-width: 42rem;
    margin-bottom: 1.8rem;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.page-hero {
    display: grid;
    min-height: 34rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.page-hero .eyebrow {
    margin-bottom: 1.25rem;
}

.page-hero .display {
    font-size: clamp(3.2rem, 6.5vw, 6.4rem);
}

.page-hero .display-estate {
    max-width: 17ch;
    font-size: clamp(3rem, 4.8vw, 4.6rem);
}

.page-visual {
    position: relative;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 8%, rgba(121, 219, 255, 0.1), transparent 18rem),
        rgba(10, 23, 16, 0.8);
    box-shadow: var(--shadow);
}

.conversation {
    display: grid;
    gap: 0.85rem;
}

.conversation-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
}

.message {
    max-width: 88%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem 1rem 1rem 0.25rem;
    background: rgba(255, 255, 255, 0.035);
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.message-agent {
    margin-left: auto;
    border-color: rgba(184, 255, 90, 0.2);
    border-radius: 1rem 1rem 0.25rem;
    background: rgba(184, 255, 90, 0.075);
    color: var(--ink);
}

.tool-event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.85rem;
    border: 1px dashed rgba(121, 219, 255, 0.28);
    border-radius: 0.85rem;
    background: rgba(121, 219, 255, 0.045);
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.67rem;
}

.tool-event span:last-child {
    color: var(--mint);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.metric {
    padding: 0.72rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.18);
}

.metric strong {
    display: block;
    color: var(--ink);
    font-size: 0.8rem;
}

.metric span {
    color: var(--muted);
    font-size: 0.62rem;
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}

.node-block {
    min-height: 7.4rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-top-color: var(--node-color, var(--lime));
    border-radius: var(--radius-md);
    background: rgba(5, 14, 9, 0.82);
}

.node-block span {
    color: var(--node-color, var(--lime));
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.node-block strong {
    display: block;
    margin: 1rem 0 0.35rem;
    font-size: 0.95rem;
}

.node-block p {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.timeline {
    display: grid;
    counter-reset: timeline;
    gap: 0;
}

.timeline-item {
    display: grid;
    position: relative;
    grid-template-columns: 3.4rem 1fr;
    gap: 1rem;
    padding-bottom: 2.2rem;
    counter-increment: timeline;
}

.timeline-item::before {
    display: flex;
    position: relative;
    z-index: 1;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 255, 90, 0.3);
    border-radius: 50%;
    background: var(--surface);
    color: var(--lime);
    content: counter(timeline, decimal-leading-zero);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.68rem;
    font-weight: 850;
}

.timeline-item::after {
    position: absolute;
    top: 2.7rem;
    bottom: 0;
    left: 1.34rem;
    width: 1px;
    background: var(--line);
    content: "";
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item h3 {
    margin-bottom: 0.45rem;
    font-size: 1.18rem;
}

.timeline-item p {
    margin: 0;
    color: var(--muted-strong);
}

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

.pricing-card {
    display: flex;
    min-height: 33rem;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.pricing-card.featured {
    border-color: rgba(184, 255, 90, 0.36);
    background:
        radial-gradient(circle at 100% 0, rgba(184, 255, 90, 0.12), transparent 16rem),
        var(--surface);
}

.pricing-card .mini-label {
    color: var(--plan-color, var(--lime));
}

.pricing-card h2 {
    margin: 1rem 0 0.7rem;
    font-size: 1.75rem;
}

.pricing-card > p {
    min-height: 5.5rem;
    color: var(--muted-strong);
}

.pricing-card .plan-price {
    margin: 1.25rem 0;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
}

.pricing-card .tick-list {
    flex: 1;
}

.pricing-card .btn {
    width: 100%;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(11, 23, 16, 0.72);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    color: var(--ink);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    color: var(--lime);
    content: "+";
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 1.35rem;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-strong);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
    margin-bottom: 0;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(29rem, 1.22fr);
    gap: clamp(2.5rem, 8vw, 7rem);
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.contact-copy {
    position: sticky;
    top: 7rem;
    align-self: start;
}

.contact-copy .eyebrow {
    margin-bottom: 1.2rem;
}

.contact-copy h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}

.contact-copy > p {
    color: var(--muted-strong);
    font-size: 1.08rem;
}

.contact-points {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.contact-point {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.contact-point strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--ink);
}

.contact-point span,
.contact-point a {
    color: var(--muted);
    font-size: 0.9rem;
}

.lead-form {
    padding: clamp(1.4rem, 4vw, 2.6rem);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(15, 31, 22, 0.98), rgba(7, 17, 11, 0.98));
    box-shadow: var(--shadow);
}

.lead-form h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.lead-form > p {
    margin-bottom: 1.8rem;
    color: var(--muted);
}

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

.field {
    display: grid;
    gap: 0.42rem;
}

.field-full {
    grid-column: 1 / -1;
}

.field label,
.field-label {
    color: var(--ink-soft);
    font-size: 0.77rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.75rem;
    background: rgba(3, 10, 6, 0.76);
    color: var(--ink);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.field textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #6f8578;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--lime);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(184, 255, 90, 0.11);
}

.check-field {
    display: grid;
    grid-template-columns: 1.1rem 1fr;
    align-items: start;
    gap: 0.65rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.check-field input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.22rem;
    accent-color: var(--lime);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.form-footer small {
    max-width: 24rem;
    color: var(--muted);
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    font-size: 0.86rem;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    border-color: rgba(102, 236, 162, 0.35);
    background: rgba(102, 236, 162, 0.08);
    color: #bdffd8;
}

.form-status.is-error {
    border-color: rgba(255, 141, 161, 0.38);
    background: rgba(255, 141, 161, 0.08);
    color: #ffc2cd;
}

.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.legal-hero {
    padding-block: 5.5rem 3rem;
}

.legal-hero .kicker {
    margin-bottom: 0.85rem;
}

.legal-hero h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-hero p {
    color: var(--muted);
}

.legal-layout {
    display: grid;
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: clamp(2rem, 7vw, 6rem);
    padding-bottom: 7rem;
}

.legal-nav {
    position: sticky;
    top: 7rem;
    align-self: start;
}

.legal-nav a {
    display: block;
    padding: 0.45rem 0;
    color: var(--muted);
    font-size: 0.8rem;
    text-decoration: none;
}

.legal-nav a:hover {
    color: var(--ink);
}

.legal {
    color: var(--muted-strong);
}

.legal h2 {
    margin: 3.2rem 0 0.9rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    font-size: 1.75rem;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal h3 {
    margin: 2rem 0 0.65rem;
    font-size: 1.15rem;
}

.legal a {
    color: var(--lime-soft);
}

.legal li {
    margin-bottom: 0.45rem;
}

.legal-notice {
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-left: 3px solid var(--lime);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(184, 255, 90, 0.04);
}

.not-found {
    display: grid;
    min-height: 70svh;
    place-items: center;
    text-align: center;
}

.not-found-code {
    color: var(--lime);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: clamp(5rem, 18vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.85;
}

.not-found h1 {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
    padding-block: 4.5rem 2rem;
    border-top: 1px solid var(--line);
    background: rgba(3, 8, 6, 0.58);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: 3rem;
}

.footer-brand img {
    width: 6.5rem;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    max-width: 26rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-col h2 {
    margin-bottom: 1rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    width: fit-content;
    margin-bottom: 0.62rem;
    color: var(--muted);
    font-size: 0.84rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--ink);
}

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

.footer-bottom span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom span:last-child::before {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--mint);
    content: "";
}

/* Motion and depth -------------------------------------------------------- */

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.ambient-motion {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    width: clamp(20rem, 40vw, 42rem);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.09;
    will-change: transform;
}

.ambient-orb:nth-child(1) {
    top: -18rem;
    left: -10rem;
    background: var(--mint);
    animation: ambient-drift-one 18s ease-in-out infinite alternate;
}

.ambient-orb:nth-child(2) {
    top: 34%;
    right: -22rem;
    background: var(--cyan);
    animation: ambient-drift-two 24s ease-in-out infinite alternate;
}

.ambient-orb:nth-child(3) {
    bottom: -24rem;
    left: 32%;
    background: var(--lime);
    animation: ambient-drift-three 21s ease-in-out infinite alternate;
}

.ambient-cursor {
    position: absolute;
    width: 36rem;
    height: 36rem;
    transform: translate3d(
        calc(var(--cursor-x) - 18rem),
        calc(var(--cursor-y) - 18rem),
        0
    );
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 255, 90, 0.055), transparent 66%);
    opacity: 0;
    transition: opacity 400ms ease;
    will-change: transform;
}

.has-pointer-motion .ambient-cursor {
    opacity: 1;
}

.motion-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 2.4rem, 0) scale(0.985);
    filter: blur(7px);
    transition:
        opacity 680ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        filter 620ms ease var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="left"] {
    transform: translate3d(-2.5rem, 1rem, 0) scale(0.99);
}

.motion-ready [data-reveal="right"] {
    transform: translate3d(2.5rem, 1rem, 0) scale(0.99);
}

.motion-ready [data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.motion-enabled .hero-copy > *,
.motion-enabled .page-hero > :first-child > * {
    animation: hero-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.motion-enabled .hero-copy > :nth-child(2),
.motion-enabled .page-hero > :first-child > :nth-child(2) {
    animation-delay: 90ms;
}

.motion-enabled .hero-copy > :nth-child(3),
.motion-enabled .page-hero > :first-child > :nth-child(3) {
    animation-delay: 170ms;
}

.motion-enabled .hero-copy > :nth-child(4),
.motion-enabled .page-hero > :first-child > :nth-child(4) {
    animation-delay: 250ms;
}

.motion-enabled .hero-copy > :nth-child(5),
.motion-enabled .page-hero > :first-child > :nth-child(5) {
    animation-delay: 320ms;
}

.motion-enabled .hero-visual,
.motion-enabled .page-hero > :last-child {
    animation: visual-arrive 920ms 170ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.motion-enabled .status-live::before {
    animation: live-pulse 2.2s ease-out infinite;
}

.motion-enabled .journey-canvas::before {
    animation: route-flow 5s linear infinite;
}

.motion-enabled .journey-shell::after {
    animation: scan-journey 7s 1.5s ease-in-out infinite;
}

.motion-enabled .flow-card {
    animation: flow-float 6s ease-in-out infinite;
    animation-delay: calc(var(--motion-index, 0) * -0.65s);
}

.motion-enabled .flow-card::before {
    box-shadow: 0 0 16px var(--node-color, var(--lime));
    animation: node-line-pulse 3s ease-in-out infinite;
    animation-delay: calc(var(--motion-index, 0) * 180ms);
}

.motion-enabled .speech-chain::before {
    background-size: 220% 100%;
    animation: chain-flow 4.5s linear infinite;
    box-shadow: 0 0 13px rgba(121, 219, 255, 0.18);
}

.motion-enabled .speech-step span {
    animation: step-pulse 3.6s ease-in-out infinite;
    animation-delay: calc(var(--motion-index, 0) * 380ms);
}

.motion-enabled .tool-event,
.motion-enabled .stack-row {
    position: relative;
    overflow: hidden;
}

.motion-enabled .tool-event::after {
    position: absolute;
    inset: 0;
    transform: translateX(-115%);
    background: linear-gradient(90deg, transparent, rgba(121, 219, 255, 0.08), transparent);
    content: "";
    animation: tool-scan 4.2s 1s ease-in-out infinite;
    pointer-events: none;
}

.motion-enabled .stack-row::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -25%;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(121, 219, 255, 0.08), transparent);
    content: "";
    animation: stack-signal 5s linear infinite;
    animation-delay: calc(var(--motion-index, 0) * 420ms);
    pointer-events: none;
}

.motion-panel {
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translate3d(0, var(--parallax-y, 0px), 0);
    transform-style: preserve-3d;
    transition:
        transform 200ms ease-out,
        border-color 220ms ease,
        box-shadow 220ms ease;
    will-change: transform;
}

.motion-panel:hover {
    border-color: rgba(184, 255, 90, 0.24);
    box-shadow:
        var(--shadow),
        0 0 45px rgba(102, 236, 162, 0.055);
}

.motion-enabled .proof-item {
    transition:
        color 200ms ease,
        background 200ms ease;
}

.motion-enabled .proof-item:hover {
    background: linear-gradient(180deg, rgba(184, 255, 90, 0.055), transparent);
    color: var(--lime-soft);
}

.motion-enabled .primary-nav > a {
    position: relative;
}

.motion-enabled .primary-nav > a::after {
    position: absolute;
    right: 0.7rem;
    bottom: 0.35rem;
    left: 0.7rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--lime);
    content: "";
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-enabled .primary-nav > a:hover::after,
.motion-enabled .primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.motion-enabled .primary-nav > a[aria-current="page"] {
    box-shadow: none;
}

.faq-item[open] .faq-answer {
    animation: answer-open 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes page-out {
    to {
        opacity: 0;
        transform: translateY(-0.35rem);
    }
}

@keyframes page-in {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(1.8rem);
        filter: blur(6px);
    }
}

@keyframes visual-arrive {
    from {
        opacity: 0;
        transform: translate3d(2.5rem, 1rem, 0) scale(0.97);
        filter: blur(8px);
    }
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 236, 162, 0.42);
    }
    65%,
    100% {
        box-shadow: 0 0 0 0.65rem rgba(102, 236, 162, 0);
    }
}

@keyframes route-flow {
    to {
        background-position: 0 250%;
    }
}

@keyframes scan-journey {
    0%,
    12% {
        transform: translateY(-160%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    55%,
    100% {
        transform: translateY(520%);
        opacity: 0;
    }
}

@keyframes flow-float {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -0.32rem;
    }
}

@keyframes node-line-pulse {
    0%,
    100% {
        opacity: 0.72;
    }
    50% {
        opacity: 1;
    }
}

@keyframes chain-flow {
    to {
        background-position: -220% 0;
    }
}

@keyframes step-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--step-color, var(--lime)) 0%, transparent);
    }
    50% {
        box-shadow: 0 0 0 0.55rem color-mix(in srgb, var(--step-color, var(--lime)) 10%, transparent);
    }
}

@keyframes tool-scan {
    0%,
    20% {
        transform: translateX(-115%);
    }
    58%,
    100% {
        transform: translateX(115%);
    }
}

@keyframes stack-signal {
    to {
        left: 115%;
    }
}

@keyframes answer-open {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
}

@keyframes ambient-drift-one {
    to {
        transform: translate3d(18vw, 12vh, 0) scale(1.15);
    }
}

@keyframes ambient-drift-two {
    to {
        transform: translate3d(-20vw, 15vh, 0) scale(0.9);
    }
}

@keyframes ambient-drift-three {
    to {
        transform: translate3d(12vw, -18vh, 0) scale(1.12);
    }
}

@media (max-width: 70rem) {
    .primary-nav > a {
        padding-inline: 0.48rem;
        font-size: 0.76rem;
    }

    .brand-product {
        display: none;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-item:nth-child(4) {
        border-left: 0;
    }
}

@media (max-width: 58rem) {
    .site-header {
        padding-block: 0.55rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .portal-link,
    .nav-actions .btn {
        display: none;
    }

    .primary-nav {
        display: grid;
        position: absolute;
        top: calc(100% + 0.7rem);
        right: 0;
        left: 0;
        align-items: stretch;
        padding: 0.7rem;
        border: 1px solid var(--line-strong);
        border-radius: var(--radius-md);
        background: rgba(5, 13, 9, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-0.6rem) scale(0.985);
        transform-origin: top;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 180ms ease,
            transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
            visibility 180ms step-end;
    }

    .primary-nav[data-open="true"] {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 180ms ease,
            transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0ms step-start;
    }

    .primary-nav > a {
        padding: 0.85rem 0.9rem;
        font-size: 0.9rem;
    }

    .primary-nav .mobile-only {
        display: flex;
    }

    .hero,
    .page-hero,
    .product-split,
    .product-split.reverse,
    .deployment-band,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
    }

    .display,
    .display-wide {
        max-width: 17ch;
    }

    .hero-visual {
        min-height: auto;
    }

    .journey-shell {
        min-height: 31rem;
    }

    .page-hero {
        min-height: auto;
    }

    .product-split.reverse .product-copy {
        order: -1;
    }

    .grid-3,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .pricing-card > p {
        min-height: 0;
    }

    .speech-chain {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .speech-chain::before {
        display: none;
    }

    .contact-copy {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .quote-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 43rem) {
    .container,
    .narrow {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .section {
        padding-block: 4rem;
    }

    .brand img {
        width: 4.6rem;
    }

    .hero {
        gap: 2.6rem;
        padding-block: 3.5rem 4.5rem;
    }

    .display,
    .page-hero .display {
        max-width: none;
        font-size: clamp(2.6rem, 12vw, 4.2rem);
        line-height: 1.02;
    }

    .page-hero .display-estate {
        max-width: 12ch;
        font-size: clamp(2.6rem, 11vw, 3.8rem);
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .journey-shell {
        min-height: 42rem;
        border-radius: var(--radius-lg);
    }

    .journey-canvas,
    .node-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .pricing-grid,
    .outcome-grid,
    .form-grid,
    .metric-row {
        grid-template-columns: 1fr;
    }

    .journey-canvas::before {
        top: 2rem;
        bottom: 2rem;
        left: 1.4rem;
    }

    .flow-card,
    .flow-card:nth-child(even),
    .flow-card-wide {
        width: auto;
        margin-top: 0;
        margin-left: 1.8rem;
        grid-column: auto;
        transform: none;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .proof-item:nth-child(odd) {
        border-left: 0;
    }

    .proof-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .section-head {
        display: block;
    }

    .section-head .text-link {
        margin-top: 1.3rem;
    }

    .product-frame {
        border-radius: var(--radius-lg);
    }

    .speech-chain {
        grid-template-columns: 1fr;
    }

    .comparison-wrap {
        overflow-x: auto;
        border-radius: var(--radius-md);
    }

    .comparison-table {
        min-width: 45rem;
    }

    .deployment-band,
    .cta-panel,
    .quote-panel {
        border-radius: var(--radius-lg);
    }

    .stack-row {
        grid-template-columns: 2.25rem 1fr;
    }

    .quote-panel {
        grid-template-columns: 1fr;
    }

    .quote-panel .btn {
        width: 100%;
    }

    .pricing-card,
    .pricing-card:last-child {
        min-height: 0;
        grid-column: auto;
    }

    .form-layout {
        padding-top: 3.5rem;
    }

    .field-full {
        grid-column: auto;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .form-footer .btn {
        width: 100%;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .ambient-motion {
        display: none !important;
    }

    .motion-ready [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .motion-panel,
    .journey-shell {
        transform: none !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .skip-link,
    .cta-panel {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    .legal,
    .legal h1,
    .legal h2,
    .legal h3,
    .legal a {
        color: #111;
    }
}
