/* Release 20260729-13 */
: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: #dcffae;
    --amber: #b8ff5a;
    --rose: #66eca2;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    --radius-sm: 0.9rem;
    --radius-md: 1.35rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --container: 74rem;
    --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --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;
    overflow-x: clip;
    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(102, 236, 162, 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);
}

.landing {
    display: flex;
    position: relative;
    min-height: calc(100svh - 4.95rem);
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.landing::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(3, 8, 6, 0.2), rgba(6, 16, 11, 0.7)),
        radial-gradient(circle at 74% 45%, rgba(102, 236, 162, 0.14), transparent 24rem);
    content: "";
}

.landing::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(218, 255, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(218, 255, 229, 0.03) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: radial-gradient(circle at 72% 50%, #000, transparent 62%);
    content: "";
}

.landing-glow {
    position: absolute;
    z-index: -1;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
    pointer-events: none;
}

.landing-glow-one {
    top: 10%;
    left: -12rem;
    background: var(--lime);
}

.landing-glow-two {
    right: -7rem;
    bottom: -10rem;
    background: var(--cyan);
}

.landing-inner {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 1.02fr) minmax(27rem, 0.98fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
    padding-block: clamp(4.5rem, 8vh, 7rem) clamp(6rem, 10vh, 8rem);
}

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

.landing-copy .eyebrow {
    margin-bottom: 1.55rem;
}

.landing-copy h1 {
    max-width: 11.5ch;
    margin-bottom: 1.5rem;
    font-size: clamp(3.7rem, 6vw, 6.4rem);
    letter-spacing: -0.07em;
    line-height: 0.93;
}

.landing-headline {
    display: inline-block;
    min-height: 0.95em;
    color: var(--lime);
    text-shadow: 0 0 45px rgba(184, 255, 90, 0.12);
    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 180ms ease;
}

.landing-copy > p {
    max-width: 40rem;
    margin-bottom: 2rem;
    color: var(--ink-soft);
    font-size: clamp(1.06rem, 1.6vw, 1.24rem);
    line-height: 1.62;
    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.landing.is-changing .landing-headline,
.landing.is-changing .landing-copy > p {
    opacity: 0;
    transform: translateY(0.55rem);
    filter: blur(5px);
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}

.landing-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 780;
    text-decoration: none;
}

.landing-text-link span {
    color: var(--lime);
    transition: transform 180ms ease;
}

.landing-text-link:hover span {
    transform: translateY(0.2rem);
}

.landing-switcher {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2.1rem;
}

.landing-switcher button {
    position: relative;
    width: 2.8rem;
    height: 0.3rem;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: rgba(218, 255, 229, 0.14);
    cursor: pointer;
}

.landing-switcher button span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: inherit;
    background: var(--lime);
}

.landing-switcher button.is-active {
    background: rgba(218, 255, 229, 0.22);
}

.landing-scene {
    position: relative;
    min-height: clamp(31rem, 43vw, 38rem);
    border: 1px solid rgba(218, 255, 229, 0.13);
    border-radius: clamp(2.4rem, 5vw, 4.5rem);
    background:
        radial-gradient(circle at 50% 45%, rgba(184, 255, 90, 0.09), transparent 31%),
        linear-gradient(145deg, rgba(16, 32, 25, 0.62), rgba(4, 11, 7, 0.58));
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.04),
        0 35px 100px rgba(0, 0, 0, 0.22);
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-scene::before {
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(218, 255, 229, 0.06);
    border-radius: inherit;
    content: "";
}

.landing-orbit {
    position: absolute;
    top: 45%;
    left: 50%;
    border: 1px solid rgba(102, 236, 162, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.landing-orbit::before,
.landing-orbit::after {
    position: absolute;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 18px rgba(102, 236, 162, 0.65);
    content: "";
}

.landing-orbit-outer {
    width: 76%;
    aspect-ratio: 1;
}

.landing-orbit-outer::before {
    top: 12%;
    right: 17%;
}

.landing-orbit-outer::after {
    bottom: 19%;
    left: 9%;
    background: var(--cyan);
}

.landing-orbit-inner {
    width: 51%;
    aspect-ratio: 1;
    border-color: rgba(184, 255, 90, 0.18);
}

.landing-orbit-inner::before {
    top: 45%;
    right: -0.25rem;
    background: var(--lime);
}

.landing-orbit-inner::after {
    display: none;
}

.landing-core {
    display: grid;
    position: absolute;
    z-index: 2;
    top: 45%;
    left: 50%;
    width: clamp(10.5rem, 16vw, 13.5rem);
    aspect-ratio: 1;
    align-content: center;
    justify-items: center;
    padding: 1rem;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(184, 255, 90, 0.27);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(184, 255, 90, 0.13), transparent 45%),
        rgba(7, 19, 12, 0.94);
    box-shadow:
        0 0 0 0.7rem rgba(184, 255, 90, 0.025),
        0 0 65px rgba(102, 236, 162, 0.15);
    text-align: center;
}

.landing-core-signal {
    position: absolute;
    inset: 0.7rem;
    border: 1px solid rgba(184, 255, 90, 0.13);
    border-radius: 50%;
}

.landing-core small {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-core strong {
    margin-block: 0.2rem 0.1rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    letter-spacing: -0.045em;
    line-height: 1;
}

.landing-core > span:last-child {
    color: var(--lime-soft);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-power {
    position: absolute;
    z-index: 3;
    padding: 0.58rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(8, 21, 13, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    color: var(--muted-strong);
    font-size: 0.68rem;
    font-weight: 780;
    white-space: nowrap;
}

.landing-power::before {
    display: inline-block;
    width: 0.38rem;
    height: 0.38rem;
    margin-right: 0.46rem;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px rgba(102, 236, 162, 0.5);
    content: "";
    vertical-align: 0.05em;
}

.landing-power-ai {
    top: 8%;
    left: 12%;
}

.landing-power-flows {
    top: 18%;
    right: 6%;
}

.landing-power-data {
    top: 53%;
    right: 4%;
}

.landing-power-billing {
    bottom: 21%;
    left: 5%;
}

.landing-power-reporting {
    top: 39%;
    left: 1%;
}

.landing-insight {
    display: grid;
    position: absolute;
    z-index: 4;
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(3, 9, 6, 0.78);
    backdrop-filter: blur(14px);
}

.landing-insight span {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
    color: var(--lime);
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-insight strong {
    color: var(--ink-soft);
    font-size: 0.76rem;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.landing-scroll {
    display: grid;
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    left: 0;
    width: max-content;
    justify-items: center;
    gap: 0.45rem;
    margin-inline: auto;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.landing-scroll i {
    display: block;
    position: relative;
    width: 1.5rem;
    height: 2.3rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
}

.landing-scroll i::after {
    position: absolute;
    top: 0.45rem;
    left: 50%;
    width: 0.24rem;
    height: 0.45rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--lime);
    content: "";
}

.ledger-hero {
    scroll-margin-top: 5rem;
}

.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(102, 236, 162, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 236, 162, 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(102, 236, 162, 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;
}

.live-journey {
    position: relative;
    min-height: 35rem;
    padding: clamp(1.1rem, 2.6vw, 1.65rem);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 3.2rem;
    background:
        radial-gradient(circle at 74% 22%, rgba(102, 236, 162, 0.12), transparent 17rem),
        radial-gradient(circle at 18% 82%, rgba(184, 255, 90, 0.08), transparent 20rem),
        linear-gradient(145deg, rgba(16, 34, 25, 0.97), rgba(5, 14, 9, 0.98));
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px rgba(255, 255, 255, 0.035);
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translate3d(0, var(--parallax-y, 0px), 0);
    transition:
        transform 200ms ease-out,
        border-color 300ms ease,
        box-shadow 300ms ease;
}

.live-journey::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.025) 46%, transparent 72%);
    content: "";
    pointer-events: none;
}

.live-journey-topbar,
.live-journey-title,
.journey-outcomes,
.journey-switcher {
    display: flex;
    align-items: center;
}

.live-journey-topbar {
    position: relative;
    z-index: 1;
    justify-content: space-between;
    padding: 0.25rem 0.35rem 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.live-journey-title {
    gap: 0.55rem;
}

.live-journey-mark {
    width: 0.7rem;
    height: 0.7rem;
    border: 2px solid rgba(184, 255, 90, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(184, 255, 90, 0.28);
}

.voice-stage {
    display: grid;
    position: relative;
    z-index: 1;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
    min-height: 12rem;
    margin-block: 1.25rem 1.1rem;
    padding: clamp(1.15rem, 2.8vw, 1.8rem);
    border: 1px solid rgba(218, 255, 229, 0.1);
    border-radius: 2.25rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.voice-orb {
    display: flex;
    width: 6.1rem;
    height: 6.1rem;
    align-items: center;
    justify-content: center;
    gap: 0.23rem;
    border: 1px solid rgba(184, 255, 90, 0.28);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 18%),
        radial-gradient(circle, rgba(184, 255, 90, 0.16), rgba(102, 236, 162, 0.035) 60%, transparent 62%);
    box-shadow:
        0 0 0 0.65rem rgba(184, 255, 90, 0.035),
        0 0 42px rgba(102, 236, 162, 0.12);
}

.voice-orb span {
    width: 0.26rem;
    height: 1.15rem;
    border-radius: 999px;
    background: linear-gradient(var(--lime-soft), var(--mint));
    transform-origin: center;
}

.voice-orb span:nth-child(2),
.voice-orb span:nth-child(4) {
    height: 1.8rem;
}

.voice-orb span:nth-child(3) {
    height: 2.45rem;
}

.voice-copy {
    min-width: 0;
    transition:
        opacity 190ms ease,
        transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.live-journey.is-changing .voice-copy {
    opacity: 0;
    transform: translateY(0.45rem);
}

.voice-copy .mini-label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--lime);
}

.voice-copy blockquote {
    max-width: 24ch;
    margin-bottom: 0.55rem;
    color: var(--ink);
    font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.voice-copy p {
    max-width: 44rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.92rem;
    line-height: 1.55;
}

.journey-route {
    position: relative;
    z-index: 1;
    padding: 0.6rem 0.35rem 0.8rem;
}

.journey-route-line {
    position: absolute;
    top: 1.12rem;
    right: 1.2rem;
    left: 1.2rem;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(218, 255, 229, 0.1);
}

.journey-route-line span {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--mint), var(--cyan), var(--lime));
    box-shadow: 0 0 14px rgba(102, 236, 162, 0.3);
}

.journey-route-steps {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.journey-route-steps span {
    display: grid;
    gap: 0.45rem;
    justify-items: center;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
    text-align: center;
}

.journey-route-steps span::before {
    position: relative;
    z-index: 1;
    width: 0.72rem;
    height: 0.72rem;
    border: 2px solid rgba(184, 255, 90, 0.34);
    border-radius: 50%;
    background: var(--surface);
    box-shadow: 0 0 0 0.28rem rgba(184, 255, 90, 0.035);
    content: "";
}

.journey-outcomes {
    position: relative;
    z-index: 1;
    gap: 0.65rem;
    margin-top: 0.3rem;
}

.journey-outcomes > span {
    display: grid;
    flex: 1;
    gap: 0.05rem;
    min-width: 0;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.025);
}

.journey-outcomes strong {
    overflow: hidden;
    color: var(--ink-soft);
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.journey-outcomes small {
    color: var(--muted);
    font-size: 0.62rem;
}

.journey-switcher {
    position: relative;
    z-index: 1;
    justify-content: center;
    gap: 0.45rem;
    padding-top: 1.05rem;
}

.journey-switcher button {
    width: 1.8rem;
    height: 0.35rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(218, 255, 229, 0.18);
    cursor: pointer;
    transition:
        width 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.journey-switcher button.is-active {
    width: 3.2rem;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(184, 255, 90, 0.22);
}

.capability-loop {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: rgba(3, 8, 6, 0.52);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.capability-loop-track,
.capability-loop-group {
    display: flex;
    width: max-content;
    align-items: center;
}

.capability-loop-track {
    will-change: transform;
}

.capability-loop-group {
    flex-shrink: 0;
    gap: 0.75rem;
    padding: 1rem 0.375rem;
}

.capability-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted-strong);
    font-size: 0.74rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.capability-chip > span {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px rgba(102, 236, 162, 0.3);
}

a.capability-chip:hover {
    border-color: rgba(184, 255, 90, 0.32);
    background: rgba(184, 255, 90, 0.06);
    color: var(--ink);
}

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

.capability-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 3rem;
    background:
        radial-gradient(circle at 88% 16%, rgba(102, 236, 162, 0.08), transparent 22rem),
        linear-gradient(145deg, rgba(16, 34, 25, 0.94), rgba(6, 16, 10, 0.97));
    box-shadow: var(--shadow);
}

.capability-showcase-tabs {
    display: flex;
    gap: 0.45rem;
    padding: 1rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

.capability-showcase-tabs::-webkit-scrollbar {
    display: none;
}

.capability-showcase-tabs button {
    flex: 0 0 auto;
    padding: 0.65rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
    cursor: pointer;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.capability-showcase-tabs button[aria-selected="true"] {
    border-color: rgba(184, 255, 90, 0.22);
    background: rgba(184, 255, 90, 0.08);
    color: var(--lime-soft);
}

.capability-showcase-stage {
    display: grid;
    position: relative;
    min-height: 23rem;
}

.capability-slide {
    display: grid;
    grid-area: 1 / 1;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 4.5rem);
    opacity: 0;
    transform: translate3d(1.2rem, 0, 0);
    transition:
        opacity 260ms ease,
        transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.capability-slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.capability-slide[hidden] {
    display: none;
}

.capability-slide-copy .mini-label {
    color: var(--slide-accent);
}

.capability-slide-copy h3 {
    max-width: 15ch;
    margin: 0.65rem 0 0.85rem;
    font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.capability-slide-copy p {
    max-width: 35rem;
    margin-bottom: 1.25rem;
    color: var(--muted-strong);
}

.capability-cloud {
    display: flex;
    min-height: 13rem;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(218, 255, 229, 0.08);
    border-radius: 2.25rem;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--slide-accent) 8%, transparent), transparent 68%);
}

.capability-cloud span {
    padding: 0.72rem 1rem;
    border: 1px solid color-mix(in srgb, var(--slide-accent) 24%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--slide-accent) 7%, rgba(8, 18, 12, 0.82));
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 750;
}

.capability-showcase-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0 1.25rem 1.25rem;
}

.capability-showcase-controls button {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--ink);
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.capability-showcase-controls button:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 255, 90, 0.3);
    background: rgba(184, 255, 90, 0.07);
}

.capability-showcase-controls span {
    min-width: 4.1rem;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.72rem;
    text-align: center;
}

.capability-showcase-controls strong {
    color: var(--lime);
}

.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(102, 236, 162, 0.2);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 10%, rgba(102, 236, 162, 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(102, 236, 162, 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(102, 236, 162, 0.28);
    border-radius: 0.85rem;
    background: rgba(102, 236, 162, 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(102, 236, 162, 0.38);
    background: rgba(102, 236, 162, 0.08);
    color: #dcffae;
}

.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 .landing-copy > * {
    animation: hero-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.motion-enabled .landing-copy > :nth-child(2) {
    animation-delay: 80ms;
}

.motion-enabled .landing-copy > :nth-child(3) {
    animation-delay: 150ms;
}

.motion-enabled .landing-copy > :nth-child(4) {
    animation-delay: 220ms;
}

.motion-enabled .landing-copy > :nth-child(5) {
    animation-delay: 290ms;
}

.motion-enabled .landing-scene {
    animation: landing-scene-arrive 1.1s 130ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.motion-enabled .landing-orbit-outer {
    animation: landing-orbit-spin 34s linear infinite;
}

.motion-enabled .landing-orbit-inner {
    animation: landing-orbit-spin-reverse 23s linear infinite;
}

.motion-enabled .landing-core {
    animation: landing-core-breathe 5s ease-in-out infinite;
}

.motion-enabled .landing-core-signal {
    animation: landing-core-pulse 2.8s ease-out infinite;
}

.motion-enabled .landing-power {
    animation: landing-power-float 4.8s ease-in-out infinite;
}

.motion-enabled .landing-power-flows,
.motion-enabled .landing-power-billing {
    animation-delay: -1.4s;
}

.motion-enabled .landing-power-data {
    animation-delay: -2.8s;
}

.motion-enabled .landing-power-reporting {
    animation-delay: -3.6s;
}

.motion-enabled .landing-switcher button.is-active span {
    animation: landing-highlight-progress 4.8s linear forwards;
}

.motion-enabled .landing-scroll i::after {
    animation: landing-scroll-cue 1.8s ease-in-out infinite;
}

.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 .voice-orb {
    animation: voice-orb-breathe 4.2s ease-in-out infinite;
}

.motion-enabled .voice-orb span {
    animation: voice-wave 1.2s ease-in-out infinite alternate;
}

.motion-enabled .voice-orb span:nth-child(2) {
    animation-delay: -0.75s;
}

.motion-enabled .voice-orb span:nth-child(3) {
    animation-delay: -0.35s;
}

.motion-enabled .voice-orb span:nth-child(4) {
    animation-delay: -0.9s;
}

.motion-enabled .voice-orb span:nth-child(5) {
    animation-delay: -0.55s;
}

.motion-enabled .journey-route-line span {
    animation: journey-progress 5.8s linear infinite;
}

.motion-enabled .capability-loop-track {
    animation: capability-marquee 38s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
    .motion-enabled .capability-loop:hover .capability-loop-track,
    .motion-enabled .capability-loop:focus-within .capability-loop-track {
        animation-play-state: paused;
    }
}

.motion-enabled .capability-cloud span {
    animation: capability-drift 5.5s ease-in-out infinite;
    animation-delay: calc(var(--motion-index, 0) * -0.42s);
}

.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(102, 236, 162, 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(102, 236, 162, 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(102, 236, 162, 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 landing-scene-arrive {
    from {
        opacity: 0;
        transform: translate3d(2.5rem, 1rem, 0) scale(0.94);
        filter: blur(9px);
    }
}

@keyframes landing-orbit-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes landing-orbit-spin-reverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes landing-core-breathe {
    50% {
        transform: translate(-50%, -50%) scale(1.035);
        box-shadow:
            0 0 0 1rem rgba(184, 255, 90, 0.035),
            0 0 75px rgba(102, 236, 162, 0.2);
    }
}

@keyframes landing-core-pulse {
    0% {
        transform: scale(0.92);
        opacity: 0.8;
    }
    75%,
    100% {
        transform: scale(1.16);
        opacity: 0;
    }
}

@keyframes landing-power-float {
    50% {
        transform: translateY(-0.4rem);
        border-color: rgba(184, 255, 90, 0.23);
        color: var(--ink);
    }
}

@keyframes landing-highlight-progress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes landing-scroll-cue {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    75%,
    100% {
        transform: translate(-50%, 0.8rem);
        opacity: 0;
    }
}

@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 voice-orb-breathe {
    50% {
        transform: scale(1.035);
        box-shadow:
            0 0 0 0.85rem rgba(184, 255, 90, 0.045),
            0 0 55px rgba(102, 236, 162, 0.18);
    }
}

@keyframes voice-wave {
    from {
        transform: scaleY(0.42);
        opacity: 0.55;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes journey-progress {
    0% {
        transform: translateX(-100%);
    }
    82%,
    100% {
        transform: translateX(0);
    }
}

@keyframes capability-marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes capability-drift {
    50% {
        transform: translateY(-0.3rem);
        border-color: color-mix(in srgb, var(--slide-accent) 38%, transparent);
    }
}

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

    .landing-inner {
        grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.82fr);
        gap: 2.5rem;
    }

    .landing-copy h1 {
        font-size: clamp(3.5rem, 6.5vw, 5.4rem);
    }

    .landing-power {
        font-size: 0.62rem;
    }

    .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;
        max-height: calc(100vh - 6rem);
        align-items: stretch;
        overflow-y: auto;
        overscroll-behavior: contain;
        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;
        scrollbar-width: thin;
    }

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

    .landing {
        min-height: auto;
    }

    .landing-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-block: 4.5rem 7rem;
    }

    .landing-copy {
        max-width: 43rem;
    }

    .landing-copy h1 {
        max-width: 12ch;
        font-size: clamp(3.8rem, 10vw, 6rem);
    }

    .landing-scene {
        width: min(100%, 40rem);
        min-height: 36rem;
        margin-inline: auto;
    }

    .landing-core {
        width: clamp(11rem, 30vw, 13.5rem);
    }

    .landing-scroll {
        bottom: 1rem;
    }

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

    .live-journey {
        min-height: 0;
    }

    .capability-slide {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .capability-cloud {
        min-height: 10rem;
    }

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

    .landing-inner {
        gap: 2.4rem;
        padding-block: 3.2rem 5.5rem;
    }

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

    .landing-copy h1 {
        max-width: none;
        margin-bottom: 1.2rem;
        font-size: clamp(3.15rem, 14.4vw, 4.4rem);
        line-height: 0.96;
    }

    .landing-copy > p {
        margin-bottom: 1.6rem;
        font-size: 1rem;
    }

    .landing-actions .btn,
    .landing-text-link {
        width: 100%;
    }

    .landing-text-link {
        justify-content: center;
        padding: 0.25rem;
    }

    .landing-switcher {
        gap: 0.35rem;
        margin-top: 1.6rem;
    }

    .landing-switcher button {
        width: min(3rem, calc((100vw - 3.9rem) / 5));
    }

    .landing-scene {
        min-height: 26.5rem;
        border-radius: 2.4rem;
    }

    .landing-scene::before {
        inset: 0.7rem;
    }

    .landing-orbit {
        top: 42%;
    }

    .landing-orbit-outer {
        width: 83%;
    }

    .landing-orbit-inner {
        width: 56%;
    }

    .landing-core {
        top: 42%;
        width: 9.8rem;
    }

    .landing-core strong {
        font-size: 1.4rem;
    }

    .landing-power {
        padding: 0.45rem 0.58rem;
        font-size: 0.55rem;
    }

    .landing-power-ai {
        top: 5%;
        left: 6%;
    }

    .landing-power-flows {
        top: 12%;
        right: 3%;
    }

    .landing-power-data {
        top: 51%;
        right: 1%;
    }

    .landing-power-billing {
        bottom: 24%;
        left: 2%;
    }

    .landing-power-reporting {
        top: 35%;
        left: 1%;
    }

    .landing-insight {
        right: 0.8rem;
        bottom: 0.8rem;
        left: 0.8rem;
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.72rem 0.8rem;
        border-radius: 1rem;
    }

    .landing-insight span {
        padding-right: 0;
        border-right: 0;
        font-size: 0.54rem;
    }

    .landing-insight strong {
        font-size: 0.67rem;
    }

    .landing-scroll {
        display: none;
    }

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

    .live-journey {
        padding: 1rem;
        border-radius: 2rem;
    }

    .live-journey-topbar {
        gap: 0.75rem;
        align-items: flex-start;
    }

    .live-journey-title {
        align-items: flex-start;
    }

    .voice-stage {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.15rem;
        border-radius: 1.6rem;
    }

    .voice-orb {
        width: 5.1rem;
        height: 5.1rem;
    }

    .voice-copy blockquote {
        font-size: 1.35rem;
    }

    .journey-route-steps span {
        font-size: 0.6rem;
    }

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

    .journey-outcomes > span {
        padding: 0.65rem 0.55rem;
    }

    .journey-outcomes strong {
        font-size: 0.67rem;
    }

    .capability-loop {
        mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    }

    .capability-showcase {
        border-radius: 2rem;
    }

    .capability-showcase-tabs {
        padding: 0.75rem;
    }

    .capability-slide {
        padding: 1.5rem 1.15rem;
    }

    .capability-slide-copy h3 {
        font-size: 2.2rem;
    }

    .capability-cloud {
        justify-content: flex-start;
        padding: 0.8rem;
        border-radius: 1.5rem;
    }

    .capability-cloud span {
        padding: 0.58rem 0.75rem;
        font-size: 0.7rem;
    }

    .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,
    .live-journey {
        transform: none !important;
    }

    .capability-loop-track {
        width: auto;
        transform: none !important;
    }

    .capability-loop-group {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .capability-loop-group[aria-hidden="true"] {
        display: none;
    }
}

.page-index .ledger-hero > * {
    min-width: 0;
}

.page-index .live-journey {
    border-color: rgba(102, 236, 162, 0.3);
    background:
        radial-gradient(circle at 82% 14%, rgba(102, 236, 162, 0.2), transparent 17rem),
        radial-gradient(circle at 10% 88%, rgba(202, 255, 92, 0.08), transparent 19rem),
        linear-gradient(145deg, #0b1d14, #06100b 70%);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(102, 236, 162, 0.05) inset;
}

.page-index .voice-stage {
    isolation: isolate;
    overflow: hidden;
    border-color: rgba(102, 236, 162, 0.2);
    background:
        radial-gradient(circle at 12% 50%, rgba(102, 236, 162, 0.12), transparent 10rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.05);
}

.page-index .voice-stage::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -35%;
    width: 28%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(202, 255, 92, 0.08), transparent);
    content: "";
    pointer-events: none;
}

.page-index .voice-copy blockquote {
    text-wrap: balance;
}

.motion-lite .page-index .voice-stage::after {
    animation: journey-sheen 5.8s ease-in-out infinite;
}

.motion-lite .page-index .voice-orb {
    animation: voice-orb-breathe 4.2s ease-in-out infinite;
}

.motion-lite .page-index .voice-orb span {
    animation: voice-wave 1.25s ease-in-out infinite alternate;
}

.motion-lite .page-index .voice-orb span:nth-child(2) {
    animation-delay: -0.7s;
}

.motion-lite .page-index .voice-orb span:nth-child(3) {
    animation-delay: -0.3s;
}

.motion-lite .page-index .voice-orb span:nth-child(4) {
    animation-delay: -0.9s;
}

.motion-lite .page-index .voice-orb span:nth-child(5) {
    animation-delay: -0.5s;
}

.motion-lite .page-index .journey-route-line span {
    animation: journey-progress 5.8s linear infinite;
}

.motion-lite .page-index .journey-route-steps span::before {
    animation: journey-node-pulse 5.8s ease-in-out infinite;
}

.motion-lite .page-index .journey-route-steps span:nth-child(2)::before {
    animation-delay: 1.25s;
}

.motion-lite .page-index .journey-route-steps span:nth-child(3)::before {
    animation-delay: 2.5s;
}

.motion-lite .page-index .journey-route-steps span:nth-child(4)::before {
    animation-delay: 3.75s;
}

.page-index .capability-loop {
    padding-block: 0.85rem;
    isolation: isolate;
    mask-image: none;
}

.page-index .capability-loop::before,
.page-index .capability-loop::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: min(22vw, 16rem);
    content: "";
    pointer-events: none;
}

.page-index .capability-loop::before {
    left: 0;
    background: linear-gradient(90deg, var(--brand-green), transparent);
}

.page-index .capability-loop::after {
    right: 0;
    background: linear-gradient(-90deg, var(--brand-green), transparent);
}

.page-index .capability-loop-track {
    animation: none !important;
    transform: translate3d(var(--capability-offset, 0), 0, 0);
    transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-index .capability-loop-group {
    gap: 2rem;
    padding: 0.2rem 0;
}

.page-index .capability-loop-group[aria-hidden="true"] {
    display: none;
}

.page-index .capability-chip {
    min-height: 2.85rem;
    padding: 0.75rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 999px;
    opacity: 0.3;
    transform: scale(0.92);
    transition:
        opacity 360ms ease,
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
        background-color 360ms ease,
        color 360ms ease,
        box-shadow 360ms ease;
}

.page-index .capability-chip.is-active {
    border-color: rgba(6, 16, 11, 0.8);
    background: #06100b;
    box-shadow: 0 12px 30px rgba(6, 16, 11, 0.22);
    color: var(--lime);
    opacity: 1;
    transform: scale(1);
}

.page-index .capability-chip.is-active span {
    background: var(--lime);
}

.conversation-showcase {
    position: relative;
}

.conversation-showcase [data-conversation-event] {
    opacity: 0.48;
    transform: translate3d(0, 0.18rem, 0) scale(0.992);
    transition:
        opacity 360ms ease,
        transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 360ms ease,
        box-shadow 360ms ease;
}

.conversation-showcase [data-conversation-event].is-complete {
    opacity: 0.78;
    transform: none;
}

.conversation-showcase [data-conversation-event].is-active {
    opacity: 1;
    transform: translate3d(0, -0.1rem, 0) scale(1);
}

.page-visual .conversation-showcase .message.is-active {
    border-color: rgba(21, 91, 55, 0.46);
    box-shadow:
        0 14px 36px rgba(6, 16, 11, 0.1),
        0 0 0 0.18rem rgba(102, 236, 162, 0.08);
}

.page-visual .conversation-showcase .tool-event.is-active {
    border-color: rgba(184, 255, 90, 0.68);
    box-shadow:
        0 16px 38px rgba(6, 16, 11, 0.2),
        0 0 0 0.18rem rgba(184, 255, 90, 0.08);
}

.page-visual .conversation-showcase .metric-row.is-active .metric {
    border-color: rgba(21, 91, 55, 0.34);
    box-shadow:
        0 12px 30px rgba(6, 16, 11, 0.08),
        inset 0 3px #66eca2;
}

.proof-strip-compact {
    background:
        linear-gradient(90deg, rgba(102, 236, 162, 0.035), transparent 26%, transparent 74%, rgba(102, 236, 162, 0.035)),
        #07120c;
}

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

.proof-strip-compact .proof-item {
    display: grid;
    min-height: 5.9rem;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: center;
    gap: 0.12rem 0.8rem;
    padding: 1rem 1.2rem;
    color: var(--ink);
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    transition:
        background-color 220ms ease,
        color 220ms ease;
}

.proof-strip-compact .proof-item > span {
    grid-row: 1 / 3;
    color: var(--brand-green);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.67rem;
    font-weight: 850;
}

.proof-strip-compact .proof-item strong {
    color: var(--ink);
    font-size: 0.95rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.proof-strip-compact .proof-item small {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.35;
}

.proof-strip-compact .proof-item:hover,
.proof-strip-compact .proof-item:focus-visible {
    background: rgba(102, 236, 162, 0.075);
}

.proof-strip-compact .proof-item:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: -2px;
}

#connector-synergy .product-copy h2 {
    max-width: 16ch;
    font-size: clamp(2.75rem, 4.5vw, 4.5rem);
    text-wrap: balance;
}

@media (min-width: 58.01rem) {
    .page-index .ledger-hero {
        grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
        gap: clamp(3rem, 6vw, 5.5rem);
    }

    .page-index .ledger-hero .display {
        max-width: 11ch;
        font-size: clamp(3.55rem, 5vw, 5.75rem);
    }
}

@media (max-width: 58rem) {
    .proof-grid.proof-grid-journey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 43rem) {
    .page-index .voice-stage {
        grid-template-columns: 4.9rem minmax(0, 1fr);
        gap: 0.85rem;
    }

    .page-index .voice-orb {
        width: 4.6rem;
        height: 4.6rem;
    }

    .page-index .capability-loop {
        padding-block: 0.7rem;
    }

    .page-index .capability-loop-group {
        gap: 1rem;
    }

    .page-index .capability-chip {
        min-height: 2.55rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.68rem;
    }

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

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

    .proof-strip-compact .proof-item {
        min-height: 6.4rem;
        padding: 0.85rem;
    }

    .proof-strip-compact .proof-item small {
        font-size: 0.62rem;
    }
}

@keyframes journey-sheen {
    0%,
    18% {
        transform: translateX(0) skewX(-18deg);
        opacity: 0;
    }

    42% {
        opacity: 1;
    }

    72%,
    100% {
        transform: translateX(520%) skewX(-18deg);
        opacity: 0;
    }
}

@keyframes journey-node-pulse {
    0%,
    16%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }

    24%,
    34% {
        transform: scale(1.35);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-index .capability-chip,
    .page-index .capability-chip.is-active {
        border-color: transparent;
        background: transparent;
        box-shadow: none;
        color: #06100b;
        opacity: 1;
        transform: none;
    }

    .conversation-showcase [data-conversation-event],
    .conversation-showcase [data-conversation-event].is-complete {
        opacity: 1;
        transform: none;
    }
}

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

/* Readability pass: white-label manifesto and dedicated release programme */
.promo-brand-manifesto {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid rgba(232, 255, 239, 0.12);
    border-radius: 1.55rem;
    background:
        radial-gradient(circle at 90% 8%, rgba(102, 236, 162, 0.16), transparent 13rem),
        #0a1510;
    box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.24);
    color: #f2f8f4;
}

.promo-brand-manifesto h3,
.editorial-light .promo-brand-manifesto h3 {
    max-width: 8.5ch;
    color: #f2f8f4;
    font-size: clamp(3rem, 5.2vw, 5.4rem);
    line-height: 0.97;
    letter-spacing: -0.065em;
}

.promo-brand-manifesto h3 em,
.editorial-light .promo-brand-manifesto h3 em,
.editorial-light .promo-brand-manifesto > span {
    color: var(--brand-green);
}

.promo-brand-manifesto p,
.editorial-light .promo-brand-manifesto p {
    margin-bottom: 0;
    color: rgba(232, 245, 236, 0.68);
    line-height: 1.55;
}

#implementation .product-split {
    grid-template-columns: minmax(18rem, 0.74fr) minmax(31rem, 1.26fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 5rem);
}

#implementation .product-copy h2 {
    max-width: 14ch;
    font-size: clamp(2.7rem, 4.2vw, 4.35rem);
    line-height: 0.99;
    letter-spacing: -0.06em;
}

.promo-release-main {
    grid-template-columns: minmax(13rem, 0.88fr) minmax(17rem, 1.12fr);
    gap: 1rem;
    padding: 1rem;
}

.promo-release-copy {
    justify-content: flex-start;
    padding: 1rem 0.85rem;
}

.promo-release-copy h3 {
    max-width: 12ch;
    margin-block: 0.9rem 0.85rem;
    font-size: clamp(1.75rem, 2.4vw, 2.45rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.promo-release-copy p {
    max-width: 31ch;
    color: rgba(232, 245, 236, 0.66);
    font-size: 0.76rem;
    line-height: 1.55;
}

.promo-release-checks {
    gap: 0.18rem;
    padding: 0.45rem;
}

.promo-release-checks article {
    min-height: 5.15rem;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.72rem;
    padding: 0.72rem;
    opacity: 0.48;
}

.promo-release-checks article.is-complete {
    opacity: 0.76;
}

.promo-release-checks article > span {
    width: 2rem;
}

.promo-release-checks article small,
.promo-release-checks article strong,
.promo-release-checks article em {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.promo-release-checks article small {
    font-size: 0.49rem;
    line-height: 1.25;
}

.promo-release-checks article strong {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    line-height: 1.25;
}

.promo-release-checks article em {
    margin-top: 0.18rem;
    color: rgba(232, 245, 236, 0.55);
    font-size: 0.56rem;
    line-height: 1.3;
}

.promo-release-regions {
    gap: 0.7rem;
    padding: 0.85rem 1rem;
}

.promo-release-regions > span {
    gap: 0.2rem;
    padding: 0.78rem;
}

.promo-release-regions strong {
    font-size: 0.68rem;
}

.promo-release-regions em {
    color: rgba(232, 245, 236, 0.55);
    font-size: 0.55rem;
}

@media (max-width: 68rem) {
    .promo-brand-manifesto {
        grid-template-areas:
            "label label"
            "headline copy";
        grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.72fr);
        align-items: end;
        gap: 1.25rem 2rem;
    }

    .promo-brand-manifesto > span {
        grid-area: label;
    }

    .promo-brand-manifesto h3 {
        grid-area: headline;
        margin: 0;
    }

    .promo-brand-manifesto p {
        grid-area: copy;
    }

    #implementation .product-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 43rem) {
    .promo-brand-manifesto {
        display: block;
        padding: 1.4rem;
    }

    .promo-brand-manifesto h3,
    .editorial-light .promo-brand-manifesto h3 {
        max-width: 8.5ch;
        margin: 1rem 0 0.9rem;
        font-size: clamp(2.75rem, 13vw, 4.25rem);
        line-height: 0.98;
    }

    #implementation .product-copy h2 {
        max-width: 13ch;
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 1;
    }

    .promo-release-main {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 0.75rem;
    }

    .promo-release-copy {
        padding: 0.8rem 0.65rem 1rem;
    }

    .promo-release-copy h3 {
        max-width: 14ch;
        font-size: clamp(1.9rem, 8.5vw, 2.7rem);
    }

    .promo-release-copy p {
        max-width: 38ch;
        font-size: 0.72rem;
    }

    .promo-release-checks article {
        min-height: 5.4rem;
        grid-template-columns: 2rem minmax(0, 1fr);
    }

    .promo-release-checks article > i {
        display: none;
    }
}

/* Dedicated estate feature reel */
.dedicated-feature-reel {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 18% 10%, rgba(53, 237, 135, 0.18), transparent 28rem),
        #071009;
    color: #f3f8f4;
}

.dedicated-feature-reel::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.65px, transparent 0.65px);
    background-size: 9px 9px;
    content: "";
    opacity: 0.24;
    pointer-events: none;
}

.dedicated-feature-reel-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
    align-items: end;
    gap: clamp(1.5rem, 5vw, 6rem);
    margin-bottom: clamp(2.2rem, 4vw, 3.8rem);
}

.dedicated-feature-reel-head .kicker {
    color: var(--brand-green);
}

.dedicated-feature-reel-head h2 {
    max-width: 13ch;
    margin: 0;
    color: #f3f8f4;
    font-size: clamp(2.8rem, 6.7vw, 6.8rem);
    line-height: 0.88;
    letter-spacing: -0.075em;
}

.dedicated-feature-reel-viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.dedicated-feature-reel-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.motion-lite .dedicated-feature-reel-track {
    animation: dedicated-feature-reel 38s linear infinite;
}

.dedicated-feature-reel-group {
    display: flex;
    flex: none;
    gap: 0.75rem;
    padding-right: 0.75rem;
}

.dedicated-feature-card {
    position: relative;
    display: flex;
    width: clamp(18rem, 26vw, 24rem);
    min-height: clamp(13rem, 18vw, 16rem);
    flex-direction: column;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: clamp(1.35rem, 2vw, 2rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(12, 27, 18, 0.92);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.dedicated-feature-card::after {
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    width: 10rem;
    height: 10rem;
    border: 1px solid rgba(53, 237, 135, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 2rem rgba(53, 237, 135, 0.025),
        0 0 0 4rem rgba(53, 237, 135, 0.018);
    content: "";
}

.dedicated-feature-card > span {
    color: var(--brand-green);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.dedicated-feature-card strong {
    position: relative;
    z-index: 1;
    max-width: 8ch;
    margin-top: auto;
    color: #f3f8f4;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.dedicated-feature-card p {
    position: relative;
    z-index: 1;
    max-width: 32ch;
    margin: 0.9rem 0 0;
    color: rgba(243, 248, 244, 0.64);
    font-size: 0.72rem;
    line-height: 1.55;
}

@keyframes dedicated-feature-reel {
    to {
        transform: translateX(-50%);
    }
}

/* Product motion should stay live while it is in view. */
.motion-enabled .capability-loop:hover .capability-loop-track,
.motion-enabled .capability-loop:focus-within .capability-loop-track,
.motion-lite .capability-loop:hover .capability-loop-track,
.motion-lite .capability-loop:focus-within .capability-loop-track {
    animation-play-state: running;
}

@media (max-width: 43rem) {
    .dedicated-feature-reel {
        padding-block: 4rem;
    }

    .dedicated-feature-reel-head {
        display: block;
    }

    .dedicated-feature-reel-head h2 {
        max-width: 10ch;
        margin-top: 1rem;
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .dedicated-feature-reel-viewport {
        padding-inline: 1rem;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    }

    .dedicated-feature-card {
        width: min(78vw, 19rem);
        min-height: 13rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dedicated-feature-reel-viewport {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: thin;
    }
}

/* Editorial identity */
: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.15);
    --line-strong: rgba(218, 255, 229, 0.26);
    --lime: #caff5c;
    --lime-soft: #e2ffa1;
    --mint: #caff5c;
    --cyan: #dcffae;
    --amber: #b8ff5a;
    --rose: #66eca2;
    --brand-green: #66eca2;
    --cream: #f2f6f1;
    --cream-soft: #ffffff;
    --cream-ink: #06100b;
    --cream-copy: #33483b;
    --cream-muted: #617568;
    --cream-line: rgba(6, 16, 11, 0.15);
    --shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
    --radius-sm: 0.85rem;
    --radius-md: 1.2rem;
    --radius-lg: 1.7rem;
    --radius-xl: 2.2rem;
}

html {
    background: var(--canvas-deep);
}

body {
    background:
        radial-gradient(circle at 90% 4%, rgba(102, 236, 162, 0.13), transparent 31rem),
        radial-gradient(circle at 6% 42%, rgba(202, 255, 92, 0.035), transparent 28rem),
        var(--canvas);
    font-size: 1.02rem;
}

body::before {
    background:
        radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(102, 236, 162, 0.035), transparent 21rem),
        linear-gradient(rgba(218, 255, 229, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(218, 255, 229, 0.012) 1px, transparent 1px);
    background-size: auto, 5rem 5rem, 5rem 5rem;
    mask-image: linear-gradient(to bottom, #000 0, transparent 68rem);
}

h1,
h2,
h3,
h4 {
    font-weight: 790;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

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

:focus-visible {
    outline-color: var(--lime);
}

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

.site-header {
    padding-block: 0.62rem;
    border-color: var(--line);
    background: rgba(6, 16, 11, 0.78);
}

.site-header.is-scrolled {
    background: rgba(4, 11, 7, 0.95);
}

.site-header::after {
    height: 2px;
    background: linear-gradient(90deg, var(--brand-green), var(--lime));
    box-shadow: 0 0 18px rgba(102, 236, 162, 0.38);
}

.nav-shell {
    min-height: 3.7rem;
}

.brand-product {
    padding: 0 0 0 0.8rem;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink-soft);
}

.primary-nav > a {
    border-radius: 999px;
}

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

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

.editorial-sound-toggle {
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted-strong);
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 800;
}

.editorial-sound-toggle i {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--muted);
}

.editorial-sound-toggle[aria-pressed="true"] i {
    background: var(--lime);
    box-shadow: 0 0 0 0.24rem rgba(202, 255, 92, 0.1);
}

.btn {
    min-height: 3.15rem;
    border-radius: 999px;
}

.btn-primary {
    background: var(--lime);
    color: #111509;
}

.btn-primary:hover {
    background: var(--lime-soft);
    box-shadow: 0 15px 45px rgba(202, 255, 92, 0.16);
}

.btn-secondary {
    background: transparent;
}

.btn-secondary:hover {
    border-color: rgba(102, 236, 162, 0.55);
    background: rgba(102, 236, 162, 0.07);
}

.eyebrow,
.kicker,
.mini-label {
    color: var(--brand-green);
}

.eyebrow {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.eyebrow-dot {
    background: var(--brand-green);
    box-shadow: 0 0 0 0.3rem rgba(102, 236, 162, 0.1);
}

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

.text-link {
    color: var(--brand-green);
}

.text-link:hover {
    color: #aaf7c8;
}

.text-link::after {
    content: "→";
}

.editorial-home {
    min-height: min(62rem, calc(100svh - 4.95rem));
    border-bottom: 1px solid var(--line);
}

.editorial-home::before {
    z-index: -2;
    background:
        radial-gradient(circle at 84% 8%, rgba(102, 236, 162, 0.14), transparent 31rem),
        radial-gradient(circle at 18% 95%, rgba(202, 255, 92, 0.045), transparent 27rem);
}

.editorial-home::after {
    display: none;
}

.editorial-home-inner {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: space-between;
    padding-block: clamp(4.7rem, 9vw, 8rem) clamp(2.5rem, 5vw, 4rem);
}

.editorial-home-copy {
    position: relative;
    z-index: 1;
}

.editorial-home-copy .eyebrow {
    margin-bottom: 2rem;
}

.editorial-home h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(5rem, 11vw, 10.6rem);
    letter-spacing: -0.08em;
    line-height: 0.81;
}

.editorial-home-word {
    display: block;
    min-height: 0.9em;
    color: var(--brand-green);
    transition: opacity 180ms ease, transform 180ms ease;
}

.editorial-home-bottom {
    display: grid;
    grid-template-columns: 1fr minmax(22rem, 0.66fr);
    align-items: end;
    gap: 4rem;
    margin-top: 5rem;
}

.editorial-home-bottom > p {
    max-width: 47rem;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1.12rem, 2vw, 1.48rem);
    line-height: 1.55;
}

.editorial-home-bottom .landing-actions {
    justify-content: flex-end;
}

.capability-loop,
.editorial-rail {
    overflow: hidden;
    border-block: 1px solid rgba(6, 16, 11, 0.16);
    background: var(--brand-green);
    color: #071009;
}

.capability-loop {
    mask-image: none;
}

.capability-loop-group {
    gap: 1.65rem;
    padding-block: 0.78rem;
}

.capability-chip {
    border: 0;
    background: transparent;
    color: #071009;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.capability-chip span {
    width: 0.35rem;
    height: 0.35rem;
    background: #071009;
    box-shadow: none;
}

.editorial-rail-track {
    display: flex;
    width: max-content;
}

.editorial-rail-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1.8rem;
    padding: 0.68rem 0.9rem;
}

.editorial-rail-group span {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.editorial-rail-group span::after {
    margin-left: 1.8rem;
    content: "●";
}

.motion-enabled .editorial-rail-track {
    animation: editorial-rail 34s linear infinite;
}

.motion-enabled .editorial-home-copy > *,
.motion-enabled .editorial-home-bottom > * {
    animation: hero-rise 800ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.motion-enabled .editorial-home-copy > :nth-child(2) {
    animation-delay: 90ms;
}

.motion-enabled .editorial-home-bottom > :first-child {
    animation-delay: 180ms;
}

.motion-enabled .editorial-home-bottom > :last-child {
    animation-delay: 260ms;
}

.hero,
.page-hero {
    min-height: min(52rem, calc(100svh - 5rem));
    padding-block: clamp(5rem, 9vw, 8rem);
}

.ledger-hero {
    grid-template-columns: minmax(0, 0.78fr) minmax(29rem, 1.22fr);
}

.display,
.page-hero .display {
    max-width: 13ch;
    font-size: clamp(3.7rem, 7vw, 7rem);
    line-height: 0.91;
}

.display-wide,
.page-hero .display-wide {
    max-width: 14ch;
}

.display-estate,
.page-hero .display-estate {
    max-width: 14ch;
    font-size: clamp(3.5rem, 6vw, 6rem);
}

.lede {
    font-size: clamp(1.08rem, 1.65vw, 1.3rem);
}

.hero-note {
    max-width: 44rem;
}

.hero-visual::before {
    background: rgba(102, 236, 162, 0.12);
}

.live-journey,
.journey-shell {
    border-radius: 2rem;
    background:
        radial-gradient(circle at 76% 18%, rgba(102, 236, 162, 0.14), transparent 18rem),
        radial-gradient(circle at 15% 82%, rgba(202, 255, 92, 0.055), transparent 20rem),
        #09160f;
}

.live-journey-mark {
    border-color: rgba(102, 236, 162, 0.65);
    box-shadow: 0 0 18px rgba(102, 236, 162, 0.25);
}

.voice-stage {
    border-radius: 1.6rem;
}

.voice-orb {
    border-color: rgba(102, 236, 162, 0.32);
    background:
        radial-gradient(circle at 35% 25%, rgba(202, 255, 92, 0.65), transparent 32%),
        linear-gradient(145deg, #66eca2, #155b37);
    box-shadow: 0 0 0 0.65rem rgba(102, 236, 162, 0.04);
}

.voice-orb span {
    background: #06100b;
}

.page-hero {
    grid-template-columns: minmax(0, 0.78fr) minmax(29rem, 1.22fr);
    gap: clamp(3rem, 7vw, 7rem);
}

.page-visual {
    min-height: 35rem;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    overflow: hidden;
    isolation: isolate;
    border-color: var(--cream-line);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 78% 16%, rgba(102, 236, 162, 0.18), transparent 20rem),
        radial-gradient(circle, rgba(6, 16, 11, 0.055) 1px, transparent 1.2px),
        var(--cream-soft);
    background-size: auto, 1.25rem 1.25rem, auto;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 36px 90px rgba(0, 0, 0, 0.24);
    color: var(--cream-ink);
}

.page-visual::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 2rem;
    left: 2rem;
    height: 3px;
    transform-origin: left;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-green), var(--lime), transparent);
    content: "";
    pointer-events: none;
}

.page-visual > * {
    position: relative;
    z-index: 1;
}

.page-visual .conversation-status {
    border-color: var(--cream-line);
    color: var(--cream-copy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.page-visual .status-live {
    color: #155b37;
}

.page-visual .status-live::before {
    background: #155b37;
    box-shadow: 0 0 0 0.28rem rgba(21, 91, 55, 0.1);
}

.page-visual :is(.conversation, .stack-map, .node-grid, .deployment-stack, .visual-panel) {
    position: relative;
    z-index: 1;
}

.page-visual .message {
    border-color: var(--cream-line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 28px rgba(6, 16, 11, 0.06);
    color: #1f3428;
}

.page-visual .message-agent {
    border-color: rgba(21, 91, 55, 0.24);
    background: rgba(102, 236, 162, 0.18);
    color: var(--cream-ink);
}

.page-visual .tool-event {
    border: 1px solid rgba(21, 91, 55, 0.28);
    background: #06100b;
    box-shadow: 0 12px 32px rgba(6, 16, 11, 0.16);
    color: #d7e9dd;
    font-size: 0.72rem;
}

.page-visual .tool-event span:last-child {
    color: var(--lime);
}

.page-visual .metric {
    border-color: var(--cream-line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(6, 16, 11, 0.055);
}

.page-visual .metric strong {
    color: var(--cream-ink);
}

.page-visual .metric span {
    color: var(--cream-copy);
    font-size: 0.67rem;
}

.page-visual .node-block {
    border-color: rgba(6, 16, 11, 0.22);
    border-top: 3px solid var(--node-color, var(--lime));
    background:
        radial-gradient(circle at 100% 0, rgba(102, 236, 162, 0.1), transparent 10rem),
        #06100b;
    box-shadow: 0 14px 34px rgba(6, 16, 11, 0.16);
}

.page-visual .node-block strong {
    color: var(--ink);
}

.page-visual .node-block p {
    color: var(--muted-strong);
    font-size: 0.8rem;
    line-height: 1.5;
}

.page-visual .timeline-item {
    grid-template-columns: 3.7rem 1fr;
    gap: 0.85rem;
}

.page-visual .timeline-item > div {
    padding: 1.15rem 1.3rem;
    border: 1px solid var(--cream-line);
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 30px rgba(6, 16, 11, 0.055);
}

.page-visual .timeline-item::before {
    width: 3rem;
    height: 3rem;
    border-color: #06100b;
    background: #06100b;
    box-shadow: 0 0 0 0.32rem rgba(102, 236, 162, 0.12);
    color: var(--lime);
}

.page-visual .timeline-item::after {
    top: 3rem;
    left: 1.49rem;
    background: rgba(6, 16, 11, 0.18);
}

.page-visual .timeline-item h3 {
    color: var(--cream-ink);
}

.page-visual .timeline-item p {
    color: var(--cream-copy);
}

.page-visual .stack-row {
    border-color: var(--cream-line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 24px rgba(6, 16, 11, 0.05);
}

.page-visual .stack-row span:first-child {
    color: #155b37;
}

.page-visual .stack-row strong {
    color: var(--cream-ink);
}

.page-visual .stack-row small {
    color: var(--cream-copy);
    font-size: 0.72rem;
}

.page-visual .outcome {
    border-color: var(--cream-line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(6, 16, 11, 0.05);
}

.page-visual .outcome strong {
    color: var(--cream-ink);
}

.page-visual .outcome p {
    color: var(--cream-copy);
}

.page-visual .pill {
    border-color: rgba(21, 91, 55, 0.2);
    background: rgba(255, 255, 255, 0.86);
    color: #234332;
}

.page-visual .card {
    border-color: rgba(102, 236, 162, 0.18);
    background: #06100b;
    color: var(--ink);
}

.page-visual .card :is(h2, h3, strong) {
    color: var(--ink);
}

.page-visual .card :is(p, li, small) {
    color: var(--muted-strong);
}

.proof-strip {
    border-block: 1px solid var(--line);
    background: transparent;
}

.proof-item {
    min-height: 8.5rem;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.proof-item::before {
    background: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(102, 236, 162, 0.08);
}

.section-head {
    margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section-head h2 {
    max-width: 13ch;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.92;
}

.section-head p {
    max-width: 43rem;
    font-size: 1.05rem;
}

.card,
.feature-card,
.pricing-card,
.demo-card,
.faq-list details,
.comparison-wrap,
.quote-panel,
.lead-form {
    border-color: var(--line);
    background: var(--surface);
}

.card,
.feature-card,
.pricing-card,
.demo-card {
    border-radius: 1.35rem;
}

.feature-card {
    min-height: 25rem;
    padding: 1.8rem;
}

.feature-card:hover,
.card:hover,
.demo-card:hover {
    border-color: rgba(102, 236, 162, 0.38);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.feature-card::before {
    background: var(--card-accent, var(--brand-green));
}

.feature-card-accent {
    background:
        radial-gradient(circle at 95% 5%, rgba(202, 255, 92, 0.13), transparent 15rem),
        var(--surface);
}

.feature-card .card-index {
    color: var(--brand-green);
}

.product-split {
    gap: clamp(3.5rem, 8vw, 8rem);
}

.product-copy h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 5.5vw, 5.6rem);
    line-height: 0.92;
}

.product-frame,
.capability-showcase,
.deployment-band {
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at 85% 10%, rgba(102, 236, 162, 0.11), transparent 19rem),
        var(--surface);
}

.stack-row,
.node-block,
.speech-step,
.metric,
.tool-event,
.message {
    border-radius: 0.9rem;
}

.section-line {
    background: rgba(16, 32, 25, 0.66);
}

.editorial-light {
    overflow: hidden;
    border-color: var(--cream-line);
    background:
        radial-gradient(circle at 92% 8%, rgba(102, 236, 162, 0.16), transparent 26rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 48%),
        var(--cream);
    color: var(--cream-ink);
}

.editorial-light::before {
    position: absolute;
    z-index: 0;
    top: clamp(2rem, 5vw, 5rem);
    right: clamp(-9rem, -5vw, -4rem);
    width: clamp(16rem, 28vw, 30rem);
    height: clamp(16rem, 28vw, 30rem);
    border: 1px solid rgba(21, 91, 55, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 3rem rgba(102, 236, 162, 0.025),
        0 0 0 7rem rgba(102, 236, 162, 0.018);
    content: "";
    pointer-events: none;
}

.editorial-light > .container {
    position: relative;
    z-index: 1;
}

.editorial-light :is(.section-head, .product-copy, .contact-copy) :is(h1, h2, h3),
.editorial-light > .container > :is(h1, h2, h3),
.editorial-light .kicker {
    color: var(--cream-ink);
}

.editorial-light :is(.section-head, .product-copy, .contact-copy) > p,
.editorial-light .comparison-note,
.editorial-light .subhead {
    color: var(--cream-copy);
}

.editorial-light .kicker,
.editorial-light .mini-label {
    color: #155b37;
}

.editorial-light :is(.card, .feature-card, .pricing-card, .demo-card, .faq-list details) {
    border-color: var(--cream-line);
    background: var(--cream-soft);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 18px 50px rgba(6, 16, 11, 0.065);
    color: var(--cream-ink);
}

.editorial-light :is(.card, .feature-card, .pricing-card, .demo-card, .faq-list details) :is(h2, h3, h4, summary) {
    color: var(--cream-ink);
}

.editorial-light :is(.card, .feature-card, .pricing-card, .demo-card, .faq-list details) :is(p, li) {
    color: var(--cream-copy);
}

.editorial-light .feature-card-accent {
    background:
        radial-gradient(circle at 92% 5%, rgba(102, 236, 162, 0.22), transparent 15rem),
        var(--cream-soft);
}

.editorial-light .feature-card .card-index {
    border-color: #06100b;
    background: #06100b;
    color: var(--lime);
}

.editorial-light .tick-list li,
.editorial-light .plain-list li,
.editorial-light .contact-point span,
.editorial-light .contact-point a {
    color: var(--cream-copy);
}

.editorial-light .tick-list li::before {
    color: #155b37;
}

.editorial-light .plain-list strong,
.editorial-light .contact-point strong {
    color: var(--cream-ink);
}

.editorial-light .proof-item {
    border-color: var(--cream-line);
    color: var(--cream-ink);
}

.editorial-light .proof-item::before {
    background: #155b37;
    box-shadow: 0 0 0 0.25rem rgba(21, 91, 55, 0.08);
}

.editorial-light :is(.product-frame, .capability-showcase, .comparison-wrap, .deployment-band, .quote-panel) {
    border-color: rgba(6, 16, 11, 0.16);
    background: #09160f;
    box-shadow: 0 28px 76px rgba(6, 16, 11, 0.2);
    color: var(--ink);
}

.editorial-light :is(.product-frame, .capability-showcase, .comparison-wrap, .deployment-band, .quote-panel) :is(h2, h3, h4, strong, blockquote) {
    color: var(--ink);
}

.editorial-light :is(.product-frame, .capability-showcase, .comparison-wrap, .deployment-band, .quote-panel) :is(p, li, small, cite) {
    color: var(--muted-strong);
}

.editorial-light .speech-chain::before {
    background: linear-gradient(90deg, #155b37, var(--brand-green), var(--lime));
}

.editorial-light .speech-step {
    border-color: var(--cream-line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 34px rgba(6, 16, 11, 0.055);
}

.editorial-light .speech-step h3 {
    color: var(--cream-ink);
}

.editorial-light .speech-step p {
    color: var(--cream-copy);
}

.editorial-light .metric {
    border-color: var(--cream-line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(6, 16, 11, 0.05);
}

.editorial-light .metric strong {
    color: var(--cream-ink);
}

.editorial-light .metric span {
    color: var(--cream-copy);
}

.editorial-light .lead-form {
    border-color: rgba(102, 236, 162, 0.18);
    background: #06100b;
    box-shadow: 0 28px 76px rgba(6, 16, 11, 0.2);
    color: var(--ink);
}

.editorial-light .lead-form :is(h2, label, .field-label) {
    color: var(--ink);
}

.editorial-light .lead-form :is(p, small, .check-field) {
    color: var(--muted-strong);
}

.editorial-light .btn-secondary {
    border-color: rgba(6, 16, 11, 0.2);
    color: var(--cream-ink);
}

.editorial-light :is(.product-frame, .capability-showcase, .comparison-wrap, .deployment-band, .quote-panel, .lead-form) .btn-secondary {
    border-color: var(--line-strong);
    color: var(--ink);
}

.editorial-light .text-link {
    color: #155b37;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    background: rgba(102, 236, 162, 0.06);
}

.comparison-table .yes {
    color: var(--lime);
}

.quote-panel {
    border-radius: 1.7rem;
}

.quote-panel blockquote {
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 0.98;
}

.cta-panel {
    border-radius: 2rem;
    background:
        radial-gradient(circle at 90% 8%, rgba(202, 255, 92, 0.17), transparent 19rem),
        radial-gradient(circle at 8% 90%, rgba(102, 236, 162, 0.18), transparent 23rem),
        var(--surface);
}

.cta-panel::after {
    border-color: rgba(102, 236, 162, 0.24);
}

.cta-panel h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.9;
}

.pricing-card.featured {
    border-color: rgba(102, 236, 162, 0.42);
    background:
        radial-gradient(circle at 90% 5%, rgba(102, 236, 162, 0.15), transparent 16rem),
        var(--surface-raised);
}

.editorial-light .pricing-card.featured {
    border-color: rgba(21, 91, 55, 0.34);
    background:
        radial-gradient(circle at 90% 5%, rgba(202, 255, 92, 0.16), transparent 16rem),
        #06100b;
    color: var(--ink);
}

.editorial-light .pricing-card.featured :is(h2, h3, strong) {
    color: var(--ink);
}

.editorial-light .pricing-card.featured :is(p, li, small) {
    color: var(--muted-strong);
}

.pricing-card .plan-price {
    color: var(--brand-green);
}

.form-layout {
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.contact-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 7vw, 7rem);
    line-height: 0.9;
}

.lead-form {
    border-radius: 1.7rem;
}

.field input,
.field select,
.field textarea {
    border-radius: 0.8rem;
    background: #09160f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.2rem rgba(102, 236, 162, 0.1);
}

.legal-hero {
    padding-top: clamp(5rem, 10vw, 9rem);
}

.legal-hero h1 {
    max-width: 12ch;
    font-size: clamp(3.8rem, 8vw, 7.5rem);
    line-height: 0.88;
}

.legal-nav {
    border-color: var(--line);
    background: var(--surface);
}

.site-footer {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 90% 0%, rgba(102, 236, 162, 0.1), transparent 25rem),
        #030806;
}

.footer-grid {
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.footer-brand p {
    max-width: 31rem;
    font-size: 1.05rem;
}

.footer-col h2 {
    color: var(--brand-green);
}

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

.ambient-orb:first-child {
    background: rgba(102, 236, 162, 0.16);
}

.ambient-orb:nth-child(2) {
    background: rgba(202, 255, 92, 0.055);
}

.ambient-orb:nth-child(3) {
    background: rgba(184, 255, 90, 0.08);
}

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

.motion-enabled .primary-nav > a::after {
    background: var(--brand-green);
}

.motion-enabled .page-visual::before {
    animation: editorial-signal 5.8s ease-in-out infinite;
}

@keyframes editorial-rail {
    to {
        transform: translateX(-50%);
    }
}

@keyframes editorial-signal {
    0%,
    100% {
        transform: scaleX(0.2);
        opacity: 0.45;
    }

    48% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (max-width: 70rem) {
    .editorial-home h1 {
        font-size: clamp(5rem, 12vw, 8.2rem);
    }

    .page-hero,
    .ledger-hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
    }
}

@media (max-width: 58rem) {
    .editorial-sound-toggle {
        display: none;
    }

    .primary-nav {
        background: rgba(6, 16, 11, 0.98);
    }

    .editorial-home {
        min-height: 49rem;
    }

    .editorial-home h1 {
        font-size: clamp(4.6rem, 16vw, 7.2rem);
    }

    .editorial-home-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .editorial-home-bottom .landing-actions {
        justify-content: flex-start;
    }

    .page-hero,
    .ledger-hero {
        grid-template-columns: 1fr;
    }

    .page-visual {
        min-height: 31rem;
    }
}

@media (max-width: 43rem) {
    .section {
        padding-block: 4.8rem;
    }

    .editorial-home {
        min-height: 45rem;
    }

    .editorial-home-inner {
        padding-block: 3.7rem 2.4rem;
    }

    .editorial-home-copy .eyebrow {
        margin-bottom: 1.5rem;
    }

    .editorial-home h1 {
        max-width: none;
        min-height: 1.66em;
        font-size: clamp(4.2rem, 21vw, 6.4rem);
        line-height: 0.82;
    }

    .editorial-home-word {
        max-width: 100%;
        white-space: nowrap;
    }

    .editorial-home-word[data-word-size="long"] {
        min-height: 1em;
        font-size: clamp(2.55rem, 13vw, 6rem);
        letter-spacing: -0.07em;
        line-height: 0.95;
    }

    .editorial-home-bottom {
        margin-top: 4rem;
    }

    .editorial-home-bottom .btn {
        width: 100%;
    }

    .display,
    .page-hero .display,
    .display-estate,
    .page-hero .display-estate {
        max-width: none;
        font-size: clamp(3.3rem, 15vw, 5rem);
        line-height: 0.91;
    }

    .page-hero {
        gap: 3rem;
        padding-block: 4rem 5rem;
    }

    .page-visual {
        min-height: 0;
        padding: 0.85rem;
        border-radius: 1.5rem;
    }

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

    .proof-item {
        min-height: auto;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .section-head h2,
    .product-copy h2,
    .cta-panel h2 {
        font-size: clamp(3.1rem, 14vw, 4.8rem);
    }

    .feature-card {
        min-height: 21rem;
    }

    .quote-panel blockquote {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .editorial-rail-track {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        transform: none !important;
    }

    .editorial-rail-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-rail-group[aria-hidden="true"] {
        display: none;
    }
}

[hidden] {
    display: none !important;
}

.motion-lite .capability-loop-track {
    animation: capability-marquee 38s linear infinite;
}

.motion-lite .editorial-rail-track {
    animation: editorial-rail 34s linear infinite;
}

.page-index .editorial-home {
    min-height: min(54rem, calc(100svh - 4.95rem));
}

.page-index .editorial-home h1 {
    max-width: 8ch;
}

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

.page-index .home-entry-grid .feature-card {
    min-height: 21rem;
}

.home-beyond-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid currentColor;
}

.editorial-light .home-beyond-grid,
.editorial-light .home-beyond-link {
    border-color: var(--cream-line);
    color: var(--cream-ink);
}

.home-beyond-link {
    display: flex;
    min-height: 23rem;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-left: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.home-beyond-link:first-child {
    border-left: 0;
}

.home-beyond-link h3 {
    max-width: 9ch;
    margin-bottom: 0.8rem;
    color: var(--cream-ink);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.home-beyond-link p {
    max-width: 25rem;
    margin: 0;
    color: var(--cream-copy);
    opacity: 0.72;
}

.home-beyond-arrow {
    align-self: flex-end;
    color: var(--cream-ink);
    font-size: 1.55rem;
    transition: transform 180ms ease;
}

.home-beyond-link:hover {
    background: rgba(6, 16, 11, 0.06);
}

.home-beyond-link:hover .home-beyond-arrow {
    transform: translateX(0.3rem);
}

@media (hover: hover) and (pointer: fine) {
    .motion-lite .capability-loop:hover .capability-loop-track,
    .motion-lite .capability-loop:focus-within .capability-loop-track,
    .motion-lite .editorial-rail:hover .editorial-rail-track {
        animation-play-state: paused;
    }
}

@media (max-width: 58rem) {
    .page-index .editorial-home {
        min-height: 45rem;
    }

    .home-beyond-grid {
        grid-template-columns: 1fr;
    }

    .home-beyond-link {
        min-height: 15rem;
        border-top: 1px solid currentColor;
        border-left: 0;
    }

    .home-beyond-link:first-child {
        border-top: 0;
    }
}

@media (max-width: 43rem) {
    .page-index .editorial-home h1 {
        min-height: 1.66em;
    }

    .page-index .home-entry-grid .feature-card {
        min-height: 18rem;
    }

    .home-beyond-link {
        min-height: 13rem;
        gap: 1.5rem;
    }
}

/* Release 20260729-14: product-led navigation */
.site-header {
    padding: 0.72rem 0 0;
    border: 0;
    background: linear-gradient(180deg, rgba(4, 11, 7, 0.88), rgba(4, 11, 7, 0));
    backdrop-filter: none;
}

.site-header.is-scrolled {
    border: 0;
    background: linear-gradient(180deg, rgba(4, 11, 7, 0.96), rgba(4, 11, 7, 0));
}

.site-header::after {
    display: none;
}

.nav-shell {
    min-height: 4.1rem;
    padding: 0.42rem 0.42rem 0.42rem 1rem;
    border: 1px solid rgba(232, 255, 239, 0.13);
    border-radius: 1.22rem;
    background: rgba(5, 14, 9, 0.91);
    box-shadow:
        0 1rem 3.5rem rgba(0, 0, 0, 0.22),
        inset 0 1px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px) saturate(130%);
    transition:
        min-height 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.site-header.is-scrolled .nav-shell {
    min-height: 3.72rem;
    background: rgba(4, 12, 8, 0.97);
    box-shadow:
        0 1.2rem 4rem rgba(0, 0, 0, 0.34),
        inset 0 1px rgba(255, 255, 255, 0.04);
}

.brand {
    gap: 0.72rem;
}

.brand img {
    width: 5rem;
}

.brand-product {
    display: inline-flex;
    min-height: 1.8rem;
    padding: 0 0 0 0.78rem;
    border: 0;
    border-left: 1px solid rgba(232, 255, 239, 0.22);
    border-radius: 0;
    color: rgba(242, 249, 244, 0.78);
    font-size: 0.76rem;
    font-weight: 720;
    letter-spacing: -0.01em;
    text-transform: none;
}

.primary-nav {
    gap: 0.18rem;
    padding: 0.24rem;
    border: 1px solid rgba(232, 255, 239, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.primary-nav > a,
.nav-product-menu > summary {
    display: inline-flex;
    min-height: 2.65rem;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    padding: 0.58rem 0.82rem;
    border-radius: 999px;
    color: rgba(235, 246, 238, 0.68);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1;
    list-style: none;
    text-decoration: none;
    transition:
        color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.nav-product-menu {
    position: relative;
}

.nav-product-menu > summary::-webkit-details-marker {
    display: none;
}

.nav-product-menu > summary:hover,
.nav-product-menu[open] > summary,
.nav-product-menu.has-current > summary,
.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
    background: rgba(202, 255, 92, 0.1);
    box-shadow: none;
    color: #f4fbf6;
}

.nav-product-caret {
    width: 0.38rem;
    height: 0.38rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-0.1rem) rotate(45deg);
    transition: transform 180ms ease;
}

.nav-product-menu[open] .nav-product-caret {
    transform: translateY(0.1rem) rotate(225deg);
}

.nav-product-panel {
    display: grid;
    position: absolute;
    z-index: 10;
    top: calc(100% + 0.82rem);
    left: -8.5rem;
    width: min(42rem, calc(100vw - 3rem));
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(6, 16, 11, 0.12);
    border-radius: 1.35rem;
    background: #f1f5ef;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.34);
    color: #071009;
}

.nav-product-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.15rem 0.25rem 0.7rem;
    border-bottom: 1px solid rgba(6, 16, 11, 0.13);
}

.nav-product-heading strong {
    max-width: 19rem;
    font-family: var(--font-display);
    font-size: 1.38rem;
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.nav-product-heading span {
    color: rgba(7, 16, 9, 0.52);
    font-size: 0.62rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.nav-product-link {
    display: grid;
    position: relative;
    min-height: 9.5rem;
    align-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem;
    border: 1px solid rgba(6, 16, 11, 0.1);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.46);
    color: #071009;
    text-decoration: none;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-product-link:hover,
.nav-product-link[aria-current="page"] {
    border-color: rgba(6, 16, 11, 0.22);
    background: rgba(202, 255, 92, 0.42);
    transform: translateY(-0.16rem);
}

.nav-product-number {
    color: rgba(7, 16, 9, 0.44);
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.nav-product-copy {
    display: grid;
    gap: 0.38rem;
}

.nav-product-copy strong {
    padding-right: 1rem;
    font-family: var(--font-display);
    font-size: 1.02rem;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.nav-product-copy small {
    color: rgba(7, 16, 9, 0.58);
    font-size: 0.69rem;
    line-height: 1.35;
}

.nav-product-arrow {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    font-size: 0.85rem;
}

.nav-actions {
    gap: 0.42rem;
}

.portal-link {
    display: inline-flex;
    min-height: 2.72rem;
    align-items: center;
    gap: 0.38rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    color: rgba(235, 246, 238, 0.68);
}

.portal-link::after {
    content: "↗";
    font-size: 0.68rem;
}

.portal-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f4fbf6;
}

.nav-actions .btn {
    min-height: 2.85rem;
    padding-inline: 1rem;
    box-shadow: none;
    white-space: nowrap;
}

.editorial-sound-toggle {
    min-height: 2.72rem;
    padding: 0.5rem 0.72rem;
    border-color: rgba(232, 255, 239, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.menu-toggle {
    border-color: rgba(232, 255, 239, 0.12);
    border-radius: 0.86rem;
    background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 68rem) {
    .site-header {
        padding-inline: 0.75rem;
    }

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

    .primary-nav {
        display: grid;
        position: absolute;
        top: calc(100% + 0.65rem);
        right: 0;
        left: 0;
        align-items: stretch;
        padding: 0.7rem;
        border: 1px solid rgba(232, 255, 239, 0.14);
        border-radius: 1.2rem;
        background: rgba(5, 13, 9, 0.985);
        box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.38);
        opacity: 0;
        transform: translateY(-0.5rem) 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,
    .nav-product-menu > summary {
        width: 100%;
        justify-content: space-between;
        padding: 0.82rem 0.9rem;
        font-size: 0.86rem;
    }

    .nav-product-panel {
        position: static;
        width: auto;
        margin: 0.35rem 0 0.6rem;
    }
}

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

    .nav-shell {
        min-height: 3.72rem;
        padding-left: 0.82rem;
        border-radius: 1rem;
    }

    .editorial-sound-toggle {
        display: inline-flex;
    }

    .portal-link {
        display: none;
    }
}

@media (max-width: 43rem) {
    .nav-product-heading {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .nav-product-links {
        grid-template-columns: 1fr;
    }

    .nav-product-link {
        min-height: 7.2rem;
    }
}

@media (max-width: 26rem) {
    .brand-product {
        display: none;
    }
}

/* Release 20260729-15: cinematic first-visit hero */
.page-index .editorial-home {
    min-height: min(56rem, calc(100svh - 4.95rem));
}

.page-index .editorial-home-inner {
    display: grid;
    grid-template-areas:
        "copy motion"
        "bottom motion";
    grid-template-columns: minmax(0, 0.84fr) minmax(31rem, 1.16fr);
    grid-template-rows: auto auto;
    gap: clamp(1.5rem, 3vw, 3rem) clamp(2rem, 4vw, 4.5rem);
    align-items: center;
    align-content: center;
    padding-block: clamp(3.25rem, 5.5vw, 5.25rem) clamp(1.65rem, 3vw, 2.6rem);
}

.page-index .editorial-home-copy {
    grid-area: copy;
}

.page-index .editorial-home-copy .eyebrow {
    margin-bottom: clamp(1.3rem, 2.6vw, 2rem);
}

.page-index .editorial-home h1 {
    max-width: 7.2ch;
    font-size: clamp(4.8rem, 8.35vw, 8.35rem);
    line-height: 0.82;
}

.page-index .editorial-home-bottom {
    grid-area: bottom;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.35rem;
    margin-top: 0;
    padding-top: 0.25rem;
}

.page-index .editorial-home-bottom .landing-actions {
    justify-content: flex-start;
}

.home-motion {
    display: grid;
    position: relative;
    grid-area: motion;
    overflow: hidden;
    border: 1px solid rgba(232, 255, 239, 0.14);
    border-radius: 1.55rem;
    background:
        radial-gradient(circle at 82% 8%, rgba(102, 236, 162, 0.12), transparent 16rem),
        linear-gradient(145deg, rgba(19, 29, 23, 0.96), rgba(7, 15, 10, 0.99));
    box-shadow:
        0 2.4rem 7rem rgba(0, 0, 0, 0.36),
        inset 0 1px rgba(255, 255, 255, 0.035);
}

.home-motion::before {
    position: absolute;
    z-index: 0;
    right: -7rem;
    bottom: -8rem;
    width: 20rem;
    height: 20rem;
    border: 1px solid rgba(102, 236, 162, 0.09);
    border-radius: 50%;
    box-shadow:
        0 0 0 3rem rgba(102, 236, 162, 0.018),
        0 0 0 6rem rgba(102, 236, 162, 0.012);
    content: "";
    pointer-events: none;
}

.home-motion-topbar {
    display: flex;
    position: relative;
    z-index: 1;
    min-height: 4.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(232, 255, 239, 0.09);
}

.home-motion-topbar > div,
.home-motion-topbar > div > span,
.home-motion-live {
    display: flex;
    align-items: center;
}

.home-motion-topbar > div {
    min-width: 0;
    gap: 0.72rem;
}

.home-motion-topbar > div > span {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.18rem;
}

.home-motion-topbar small,
.home-motion-topbar strong {
    display: block;
}

.home-motion-topbar small {
    overflow: hidden;
    color: rgba(231, 245, 235, 0.48);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-motion-topbar strong {
    color: #f2f8f4;
    font-size: 0.82rem;
    letter-spacing: -0.015em;
}

.home-motion-mark {
    display: grid;
    width: 2.35rem;
    aspect-ratio: 1;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(102, 236, 162, 0.18);
    border-radius: 0.72rem;
    background: rgba(102, 236, 162, 0.08);
    color: var(--brand-green);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.home-motion-live {
    flex: 0 0 auto;
    gap: 0.42rem;
    color: rgba(231, 245, 235, 0.62);
    font-size: 0.61rem;
    font-weight: 760;
}

.home-motion-live > i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 0.24rem rgba(102, 236, 162, 0.08);
}

.home-motion-live b {
    min-width: 4.2rem;
    color: var(--brand-green);
    font-size: inherit;
}

.home-motion-live em {
    color: rgba(231, 245, 235, 0.38);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.58rem;
    font-style: normal;
}

.home-motion-stage {
    display: grid;
    position: relative;
    z-index: 1;
    min-height: 16.3rem;
    grid-template-columns: minmax(0, 1.08fr) minmax(13rem, 0.92fr);
    gap: 0.65rem;
    padding: 0.75rem;
}

.home-motion-conversation,
.home-motion-actions {
    border: 1px solid rgba(232, 255, 239, 0.09);
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.026);
}

.home-motion-conversation {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 0.9rem;
}

.home-motion-wave {
    display: flex;
    height: 3.6rem;
    align-items: center;
    justify-content: center;
    gap: 0.23rem;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.home-motion-wave i {
    width: 0.18rem;
    height: var(--wave);
    min-height: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-green), rgba(102, 236, 162, 0.24));
    transform-origin: center;
}

.motion-lite .home-motion-wave i {
    animation: home-motion-wave 620ms ease-in-out infinite alternate;
}

.motion-lite .home-motion-wave i:nth-child(3n + 1) {
    animation-delay: -180ms;
}

.motion-lite .home-motion-wave i:nth-child(3n + 2) {
    animation-delay: -360ms;
}

.home-motion-utterance {
    width: 88%;
    padding: 0.72rem 0.8rem;
    border-radius: 0.82rem;
}

.home-motion-utterance small {
    color: rgba(231, 245, 235, 0.42);
    font-size: 0.52rem;
    font-weight: 860;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-motion-utterance p {
    margin: 0.28rem 0 0;
    color: rgba(242, 248, 244, 0.88);
    font-size: clamp(0.73rem, 1vw, 0.87rem);
    line-height: 1.35;
}

.home-motion-caller {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.055);
}

.home-motion-agent {
    margin-top: 0.58rem;
    border: 1px solid rgba(102, 236, 162, 0.14);
    background: rgba(102, 236, 162, 0.055);
    opacity: 0.3;
    transform: translateY(0.35rem);
    transition:
        opacity 320ms ease,
        transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-motion-agent small {
    color: var(--brand-green);
}

.home-motion[data-phase="2"] .home-motion-agent,
.home-motion[data-phase="3"] .home-motion-agent {
    opacity: 1;
    transform: translateY(0);
}

.home-motion-actions {
    display: grid;
    align-content: stretch;
    overflow: hidden;
    padding: 0.35rem;
}

.home-motion-actions article {
    display: grid;
    position: relative;
    min-height: 3.6rem;
    grid-template-columns: 1.8rem minmax(0, 1fr) 1.45rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.48rem 0.52rem;
    border-bottom: 1px solid rgba(232, 255, 239, 0.07);
    border-radius: 0.7rem;
    opacity: 0.28;
    transition:
        opacity 240ms ease,
        background 240ms ease,
        transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-motion-actions article:last-child {
    border-bottom: 0;
}

.home-motion-actions article.is-complete {
    opacity: 0.68;
}

.home-motion-actions article.is-active {
    background: rgba(102, 236, 162, 0.09);
    opacity: 1;
    transform: translateX(-0.12rem);
}

.home-motion-actions article > span {
    display: grid;
    width: 1.75rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 0.52rem;
    background: rgba(102, 236, 162, 0.07);
    color: var(--brand-green);
    font-size: 0.5rem;
    font-weight: 900;
}

.home-motion-actions article div {
    min-width: 0;
}

.home-motion-actions article small,
.home-motion-actions article strong,
.home-motion-actions article em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-motion-actions article small {
    color: var(--brand-green);
    font-size: 0.46rem;
    font-weight: 860;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-motion-actions article strong {
    margin-top: 0.14rem;
    color: rgba(242, 248, 244, 0.88);
    font-size: 0.68rem;
}

.home-motion-actions article em {
    margin-top: 0.11rem;
    color: rgba(231, 245, 235, 0.38);
    font-size: 0.55rem;
    font-style: normal;
}

.home-motion-actions article > i {
    display: grid;
    width: 1.35rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(102, 236, 162, 0.16);
    border-radius: 50%;
    color: transparent;
    font-size: 0.52rem;
    font-style: normal;
    transform: scale(0.75);
    transition:
        color 220ms ease,
        background 220ms ease,
        transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-motion-actions article.is-complete > i,
.home-motion-actions article.is-active > i {
    background: var(--brand-green);
    color: #071009;
    transform: scale(1);
}

.home-motion-actions article.is-active > i {
    box-shadow: 0 0 0 0.22rem rgba(102, 236, 162, 0.07);
}

.home-motion-proof {
    display: grid;
    position: relative;
    z-index: 1;
    min-height: 3.75rem;
    grid-template-columns: repeat(3, minmax(0, 0.72fr)) minmax(9.2rem, 1.4fr);
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-top: 1px solid rgba(232, 255, 239, 0.08);
    border-bottom: 1px solid rgba(232, 255, 239, 0.08);
    background: rgba(0, 0, 0, 0.12);
    opacity: 0.42;
    transition: opacity 320ms ease, background 320ms ease;
}

.home-motion[data-phase="3"] .home-motion-proof {
    background: rgba(102, 236, 162, 0.035);
    opacity: 1;
}

.home-motion-proof > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.12rem;
    padding-inline: 0.55rem;
    border-right: 1px solid rgba(232, 255, 239, 0.08);
}

.home-motion-proof small {
    color: rgba(231, 245, 235, 0.35);
    font-size: 0.47rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.home-motion-proof strong {
    overflow: hidden;
    color: rgba(242, 248, 244, 0.88);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-motion-proof .home-motion-fallback {
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 0.45rem;
    border-right: 0;
    color: rgba(231, 245, 235, 0.48);
    font-size: 0.55rem;
    font-weight: 700;
    white-space: nowrap;
}

.home-motion-fallback i {
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: var(--brand-green);
}

.home-motion-controls {
    display: grid;
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.48rem;
}

.home-motion-controls button {
    display: grid;
    position: relative;
    min-height: 2.55rem;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.42rem;
    overflow: hidden;
    padding: 0.48rem 0.55rem 0.6rem;
    border: 0;
    border-radius: 0.7rem;
    background: transparent;
    color: rgba(231, 245, 235, 0.38);
    cursor: pointer;
    font: 760 0.58rem/1 var(--font-body);
    text-align: left;
    transition: color 180ms ease, background 180ms ease;
}

.home-motion-controls button:hover,
.home-motion-controls button.is-active {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(242, 248, 244, 0.9);
}

.home-motion-controls button span {
    color: var(--brand-green);
    font-size: 0.48rem;
    font-weight: 900;
}

.home-motion-controls button > i {
    position: absolute;
    right: 0.55rem;
    bottom: 0.26rem;
    left: 0.55rem;
    height: 1px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(232, 255, 239, 0.08);
}

.home-motion-controls button > i::after {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--brand-green);
    content: "";
}

.motion-lite .home-motion-controls button.is-active > i::after {
    animation: home-motion-progress 2.25s linear forwards;
}

.motion-lite .home-motion-live > i {
    animation: home-motion-live 1.45s ease-out infinite;
}

@keyframes home-motion-wave {
    to {
        transform: scaleY(0.48);
        opacity: 0.48;
    }
}

@keyframes home-motion-progress {
    to {
        width: 100%;
    }
}

@keyframes home-motion-live {
    65% {
        box-shadow: 0 0 0 0.48rem rgba(102, 236, 162, 0);
    }
}

@media (max-width: 68rem) {
    .page-index .editorial-home {
        min-height: auto;
    }

    .page-index .editorial-home-inner {
        grid-template-areas:
            "copy"
            "bottom"
            "motion";
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
        padding-block: 4.25rem 2.5rem;
    }

    .page-index .editorial-home h1 {
        max-width: 7ch;
        font-size: clamp(5rem, 12vw, 8rem);
    }

    .home-motion {
        width: min(100%, 48rem);
        justify-self: end;
    }
}

@media (max-width: 43rem) {
    .page-index .editorial-home-inner {
        gap: 1.5rem;
        padding-block: 3.5rem 2rem;
    }

    .page-index .editorial-home h1 {
        min-height: 1.65em;
        font-size: clamp(4.25rem, 18.5vw, 6rem);
    }

    .home-motion {
        border-radius: 1.15rem;
    }

    .home-motion-topbar {
        min-height: 3.85rem;
        padding-inline: 0.72rem;
    }

    .home-motion-topbar small {
        max-width: 10rem;
    }

    .home-motion-live b {
        display: none;
    }

    .home-motion-stage {
        grid-template-columns: 1fr;
    }

    .home-motion-conversation {
        min-height: 13.5rem;
    }

    .home-motion-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.25rem;
    }

    .home-motion-actions article {
        min-height: 4.8rem;
        grid-template-columns: 1.55rem minmax(0, 1fr);
        border: 1px solid rgba(232, 255, 239, 0.06);
    }

    .home-motion-actions article > i,
    .home-motion-actions article em {
        display: none;
    }

    .home-motion-actions article > span {
        width: 1.5rem;
    }

    .home-motion-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 0.6rem;
        padding-block: 0.7rem;
    }

    .home-motion-proof > span {
        padding-inline: 0.45rem;
    }

    .home-motion-proof .home-motion-fallback {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-top: 0.1rem;
    }

    .home-motion-controls button {
        min-height: 2.35rem;
        justify-content: center;
        padding-inline: 0.3rem;
        font-size: 0.54rem;
        text-align: center;
    }

    .home-motion-controls button span {
        display: none;
    }

    .page-index .editorial-home-bottom {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .page-index .editorial-home-bottom .landing-actions {
        justify-content: flex-start;
    }
}

/* Release 20260729-16: cinematic product scenes */
.promo-sequence-controls {
    display: grid;
    position: relative;
    z-index: 4;
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
    gap: 0.3rem;
    padding: 0.48rem;
    border-top: 1px solid rgba(232, 255, 239, 0.08);
    background: rgba(3, 9, 6, 0.5);
}

.promo-sequence-controls button {
    display: grid;
    position: relative;
    min-height: 2.7rem;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.45rem;
    overflow: hidden;
    padding: 0.55rem 0.58rem 0.72rem;
    border: 0;
    border-radius: 0.72rem;
    background: transparent;
    color: rgba(232, 245, 236, 0.42);
    cursor: pointer;
    font: 760 0.61rem/1 var(--font-body);
    text-align: left;
    transition: color 180ms ease, background 180ms ease;
}

.promo-sequence-controls button:hover,
.promo-sequence-controls button.is-active {
    background: rgba(255, 255, 255, 0.045);
    color: #f2f8f4;
}

.promo-sequence-controls button span {
    color: var(--brand-green);
    font-size: 0.49rem;
    font-weight: 900;
}

.promo-sequence-controls button > i {
    position: absolute;
    right: 0.58rem;
    bottom: 0.28rem;
    left: 0.58rem;
    height: 1px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(232, 255, 239, 0.09);
}

.promo-sequence-controls button > i::after {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--brand-green);
    content: "";
}

.motion-lite .promo-sequence-controls button.is-active > i::after {
    animation: promo-sequence-progress 2.6s linear forwards;
}

@keyframes promo-sequence-progress {
    to {
        width: 100%;
    }
}

.promo-brand-section {
    overflow: hidden;
}

.promo-brand-scene {
    display: grid;
    grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.promo-brand-manifesto > span,
.promo-release-copy > span {
    color: var(--brand-green);
    font-size: 0.62rem;
    font-weight: 880;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.promo-brand-manifesto h3 {
    max-width: 7.5ch;
    margin: 1.35rem 0 1rem;
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    font-weight: 670;
    letter-spacing: -0.07em;
    line-height: 0.86;
}

.promo-brand-manifesto h3 em {
    color: var(--brand-green);
    font-style: normal;
}

.promo-brand-manifesto p {
    max-width: 27rem;
    color: var(--muted-strong);
}

.promo-brand-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 255, 239, 0.13);
    border-radius: 1.55rem;
    background: #07100b;
    box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.36);
}

.promo-brand-framebar,
.promo-connector-topbar,
.promo-proof-topbar,
.promo-release-topbar {
    display: flex;
    min-height: 4.1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(232, 255, 239, 0.09);
    background: rgba(255, 255, 255, 0.025);
}

.promo-brand-framebar > span,
.promo-connector-topbar > span,
.promo-proof-topbar > span,
.promo-release-topbar > span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.promo-brand-framebar > span > i,
.promo-connector-topbar em > i,
.promo-proof-topbar em > i,
.promo-release-topbar em > i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 0.23rem rgba(102, 236, 162, 0.08);
}

.promo-brand-framebar strong,
.promo-connector-topbar b,
.promo-proof-topbar b,
.promo-release-topbar b {
    color: var(--brand-green);
    font-size: 0.61rem;
    font-weight: 780;
}

.promo-brand-framebar small {
    color: rgba(232, 245, 236, 0.42);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-brand-panels {
    position: relative;
    min-height: 27.5rem;
    overflow: hidden;
}

.promo-brand-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(1.4rem) scale(0.99);
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 420ms ease,
        transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 420ms step-end;
}

.promo-brand-panel.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 420ms ease,
        transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0ms step-start;
}

.promo-login-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(17rem, 1.28fr);
    align-items: center;
    gap: 1.5rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    background:
        radial-gradient(circle at 18% 25%, rgba(102, 236, 162, 0.14), transparent 15rem),
        #07100b;
}

.promo-login-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.promo-login-brand > span {
    display: grid;
    width: 2.65rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 0.75rem;
    background: var(--brand-green);
    color: #071009;
    font-size: 0.65rem;
    font-weight: 900;
}

.promo-login-brand > strong {
    color: #f2f8f4;
    font-size: 1rem;
}

.promo-login-panel > p {
    align-self: end;
    max-width: 13rem;
    margin: 0;
    color: rgba(232, 245, 236, 0.48);
    font-size: 0.72rem;
}

.promo-login-card {
    grid-row: 1 / span 2;
    grid-column: 2;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: 1.3rem;
    background: #f3f6f1;
    box-shadow: 0 1.8rem 4.5rem rgba(0, 0, 0, 0.34);
    color: #071009;
}

.promo-login-card > small {
    color: rgba(7, 16, 9, 0.48);
    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-login-card h4 {
    margin: 0.5rem 0 1.3rem;
    color: #071009;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 680;
    letter-spacing: -0.055em;
}

.promo-login-card label {
    display: grid;
    gap: 0.3rem;
    margin-top: 0.7rem;
    color: rgba(7, 16, 9, 0.5);
    font-size: 0.58rem;
    font-weight: 780;
}

.promo-login-card label span {
    padding: 0.68rem 0.72rem;
    border: 1px solid rgba(7, 16, 9, 0.12);
    border-radius: 0.65rem;
    background: white;
    color: rgba(7, 16, 9, 0.72);
    font-size: 0.68rem;
    font-weight: 560;
}

.promo-login-card > b {
    display: block;
    margin-top: 1rem;
    padding: 0.78rem;
    border-radius: 999px;
    background: var(--brand-green);
    color: #071009;
    font-size: 0.68rem;
    text-align: center;
}

.promo-workspace-panel {
    display: grid;
    grid-template-columns: minmax(8rem, 0.72fr) minmax(0, 2.28fr);
    background: #eef3ed;
    color: #071009;
}

.promo-workspace-panel aside {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0.8rem;
    background: #0a1510;
}

.promo-workspace-panel aside .promo-login-brand {
    margin-bottom: 1rem;
}

.promo-workspace-panel aside .promo-login-brand > span {
    width: 2rem;
}

.promo-workspace-panel aside small {
    padding: 0.52rem 0.58rem;
    border-radius: 0.5rem;
    color: rgba(232, 245, 236, 0.5);
    font-size: 0.58rem;
    font-weight: 720;
}

.promo-workspace-panel aside small:first-of-type {
    background: rgba(102, 236, 162, 0.1);
    color: var(--brand-green);
}

.promo-workspace-main {
    padding: 1.1rem;
}

.promo-workspace-main > header,
.promo-control-panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-workspace-main header span,
.promo-control-panel header span {
    display: grid;
    gap: 0.15rem;
}

.promo-workspace-main header small,
.promo-control-panel header small {
    color: rgba(7, 16, 9, 0.44);
    font-size: 0.55rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-workspace-main header strong,
.promo-control-panel header strong {
    color: #071009;
    font-size: 1.08rem;
}

.promo-workspace-main header b,
.promo-control-panel header b {
    padding: 0.4rem 0.58rem;
    border-radius: 999px;
    background: rgba(15, 165, 93, 0.1);
    color: #087b49;
    font-size: 0.55rem;
}

.promo-workspace-metrics,
.promo-control-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
}

.promo-workspace-metrics article,
.promo-control-summary article {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border: 1px solid rgba(7, 16, 9, 0.08);
    border-radius: 0.75rem;
    background: white;
}

.promo-workspace-metrics small,
.promo-control-summary small {
    color: rgba(7, 16, 9, 0.44);
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.promo-workspace-metrics strong,
.promo-control-summary strong {
    color: #071009;
    font-size: 1.35rem;
}

.promo-workspace-metrics em,
.promo-control-summary em {
    color: rgba(7, 16, 9, 0.42);
    font-size: 0.53rem;
    font-style: normal;
}

.promo-workspace-chart {
    display: flex;
    height: 12.5rem;
    align-items: end;
    gap: 0.55rem;
    margin-top: 0.75rem;
    padding: 1.2rem;
    border: 1px solid rgba(7, 16, 9, 0.08);
    border-radius: 0.85rem;
    background:
        linear-gradient(rgba(7, 16, 9, 0.045) 1px, transparent 1px),
        white;
    background-size: 100% 25%;
}

.promo-workspace-chart span {
    width: 100%;
    height: var(--bar);
    border-radius: 0.35rem 0.35rem 0 0;
    background: linear-gradient(var(--brand-green), #1fb36a);
}

.motion-lite .promo-workspace-panel.is-active .promo-workspace-chart span {
    animation: promo-bar-rise 620ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.promo-control-panel {
    padding: 1.2rem;
    background: #eef3ed;
    color: #071009;
}

.promo-control-rows {
    display: grid;
    gap: 0.42rem;
    margin-top: 0.8rem;
}

.promo-control-rows > span {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.7rem;
    padding: 0.72rem;
    border: 1px solid rgba(7, 16, 9, 0.08);
    border-radius: 0.7rem;
    background: white;
}

.promo-control-rows i {
    display: grid;
    width: 1.8rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 0.5rem;
    background: rgba(102, 236, 162, 0.14);
    color: #087b49;
    font-size: 0.5rem;
    font-style: normal;
    font-weight: 900;
}

.promo-control-rows b {
    color: #071009;
    font-size: 0.7rem;
}

.promo-control-rows small {
    color: rgba(7, 16, 9, 0.46);
    font-size: 0.58rem;
}

.promo-control-rows em {
    color: #087b49;
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 760;
}

@keyframes promo-bar-rise {
    from {
        height: 0;
    }
}

.page-visual.promo-flow-scene,
.page-visual.promo-connector-scene,
.page-visual.promo-release-scene,
.page-visual.promo-model-scene {
    display: grid;
    min-height: 35rem;
    padding: 0;
    border-color: rgba(232, 255, 239, 0.13);
    border-radius: 1.55rem;
    background:
        radial-gradient(circle at 82% 8%, rgba(102, 236, 162, 0.1), transparent 17rem),
        #07100b;
    background-size: auto;
    box-shadow: 0 2.2rem 6rem rgba(0, 0, 0, 0.34);
    color: #f2f8f4;
}

.page-visual.promo-flow-scene::before,
.page-visual.promo-connector-scene::before,
.page-visual.promo-release-scene::before,
.page-visual.promo-model-scene::before {
    display: none;
}

.promo-flow-toolbar {
    display: flex;
    min-height: 4.3rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid rgba(232, 255, 239, 0.08);
}

.promo-flow-toolbar > span {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: center;
    column-gap: 0.55rem;
}

.promo-flow-toolbar > span > i {
    display: grid;
    width: 2rem;
    aspect-ratio: 1;
    grid-row: 1 / span 2;
    place-items: center;
    border: 1px solid rgba(232, 255, 239, 0.1);
    border-radius: 0.55rem;
    font-style: normal;
}

.promo-flow-toolbar b {
    color: #f2f8f4;
    font-size: 0.76rem;
}

.promo-flow-toolbar small {
    color: rgba(232, 245, 236, 0.42);
    font-size: 0.54rem;
}

.promo-flow-toolbar > div {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.promo-flow-toolbar > div > span {
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(232, 255, 239, 0.1);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(232, 245, 236, 0.6);
    font: 720 0.55rem var(--font-body);
}

.promo-flow-toolbar > div > strong {
    padding: 0.5rem 0.65rem;
    border-radius: 0.55rem;
    background: var(--brand-green);
    color: #071009;
    font-size: 0.55rem;
}

.promo-flow-canvas {
    display: grid;
    position: relative;
    align-content: space-between;
    padding: 1rem;
    background:
        radial-gradient(circle, rgba(232, 255, 239, 0.09) 1px, transparent 1.2px);
    background-size: 1rem 1rem;
}

.promo-flow-grid {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr auto;
    gap: 1rem 0.65rem;
    align-items: center;
}

.promo-flow-grid::before {
    position: absolute;
    top: 26%;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(102, 236, 162, 0.75), rgba(102, 236, 162, 0.12));
    content: "";
}

.promo-flow-node {
    display: grid;
    position: relative;
    z-index: 1;
    min-height: 7.6rem;
    align-content: center;
    gap: 0.34rem;
    padding: 0.72rem;
    border: 1px solid rgba(7, 16, 9, 0.12);
    border-radius: 0.78rem;
    background: #f1f5ef;
    box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.18);
    color: #071009;
    opacity: 0.34;
    transition:
        opacity 240ms ease,
        border-color 240ms ease,
        transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-flow-node.is-complete {
    opacity: 0.68;
}

.promo-flow-node.is-active {
    border-color: rgba(102, 236, 162, 0.8);
    box-shadow:
        0 0 0 0.25rem rgba(102, 236, 162, 0.07),
        0 1rem 2.5rem rgba(0, 0, 0, 0.24);
    opacity: 1;
    transform: translateY(-0.2rem);
}

.promo-flow-start {
    opacity: 0.72;
}

.promo-flow-fallback {
    grid-column: 3 / 5;
    min-height: 5.6rem;
}

.promo-flow-node span {
    color: #087b49;
    font-size: 0.49rem;
    font-weight: 880;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-flow-node strong {
    color: #071009;
    font-size: 0.72rem;
    line-height: 1.2;
}

.promo-flow-node small {
    color: rgba(7, 16, 9, 0.48);
    font-size: 0.56rem;
}

.promo-flow-readout {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    width: min(18rem, 100%);
    margin-top: 1rem;
    margin-left: auto;
    padding: 0.62rem 0.72rem;
    border: 1px solid rgba(232, 255, 239, 0.1);
    border-radius: 0.72rem;
    background: rgba(7, 16, 11, 0.9);
}

.promo-flow-readout > i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--brand-green);
}

.promo-flow-readout span {
    display: grid;
    flex: 1;
}

.promo-flow-readout small {
    color: rgba(232, 245, 236, 0.38);
    font-size: 0.46rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-flow-readout strong {
    color: #f2f8f4;
    font-size: 0.63rem;
}

.promo-flow-readout em {
    color: rgba(232, 245, 236, 0.38);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.52rem;
    font-style: normal;
}

.promo-connector-topbar > span,
.promo-proof-topbar > span,
.promo-release-topbar > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.12rem;
}

.promo-connector-topbar small,
.promo-proof-topbar small,
.promo-release-topbar small {
    color: rgba(232, 245, 236, 0.4);
    font-size: 0.5rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-connector-topbar strong,
.promo-proof-topbar strong,
.promo-release-topbar strong {
    color: #f2f8f4;
    font-size: 0.78rem;
}

.promo-connector-topbar em,
.promo-proof-topbar em,
.promo-release-topbar em {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    font-style: normal;
}

.promo-connector-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(13rem, 0.92fr);
    gap: 0.7rem;
    padding: 0.8rem;
}

.promo-connector-request {
    padding: 1rem;
    border-radius: 1rem;
    background: #f0f4ee;
    color: #071009;
}

.promo-connector-request h3 {
    max-width: 16ch;
    margin: 0.55rem 0 1rem;
    color: #071009;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    line-height: 0.98;
}

.promo-connector-fields {
    display: grid;
    gap: 0.42rem;
}

.promo-connector-fields > span {
    display: grid;
    grid-template-columns: minmax(5rem, 0.7fr) minmax(0, 1fr);
    gap: 0.12rem 0.55rem;
    padding: 0.62rem;
    border: 1px solid rgba(7, 16, 9, 0.08);
    border-radius: 0.65rem;
    background: white;
}

.promo-connector-fields small {
    grid-row: 1 / span 2;
    align-self: center;
    color: rgba(7, 16, 9, 0.42);
    font-size: 0.5rem;
    font-weight: 820;
    text-transform: uppercase;
}

.promo-connector-fields strong {
    color: #071009;
    font-size: 0.65rem;
}

.promo-connector-fields em {
    color: rgba(7, 16, 9, 0.46);
    font-size: 0.54rem;
    font-style: normal;
}

.promo-connector-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
    margin-top: 0.7rem;
}

.promo-connector-routes span {
    padding: 0.32rem 0.48rem;
    border-radius: 999px;
    background: rgba(7, 16, 9, 0.06);
    color: rgba(7, 16, 9, 0.6);
    font-size: 0.5rem;
    font-weight: 750;
}

.promo-connector-actions {
    display: grid;
    align-content: stretch;
    padding: 0.35rem;
    border: 1px solid rgba(232, 255, 239, 0.09);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.025);
}

.promo-connector-actions article,
.promo-release-checks article {
    display: grid;
    grid-template-columns: 1.8rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.58rem;
    padding: 0.62rem;
    border-bottom: 1px solid rgba(232, 255, 239, 0.07);
    border-radius: 0.7rem;
    opacity: 0.28;
    transition:
        opacity 240ms ease,
        background 240ms ease,
        transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-connector-actions article:last-child,
.promo-release-checks article:last-child {
    border-bottom: 0;
}

.promo-connector-actions article.is-complete,
.promo-release-checks article.is-complete {
    opacity: 0.68;
}

.promo-connector-actions article.is-active,
.promo-release-checks article.is-active {
    background: rgba(102, 236, 162, 0.09);
    opacity: 1;
    transform: translateX(-0.12rem);
}

.promo-connector-actions article > span,
.promo-release-checks article > span {
    display: grid;
    width: 1.75rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 0.52rem;
    background: rgba(102, 236, 162, 0.08);
    color: var(--brand-green);
    font-size: 0.5rem;
    font-weight: 900;
}

.promo-connector-actions article div,
.promo-release-checks article div {
    min-width: 0;
}

.promo-connector-actions article small,
.promo-connector-actions article strong,
.promo-connector-actions article em,
.promo-release-checks article small,
.promo-release-checks article strong,
.promo-release-checks article em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-connector-actions article small,
.promo-release-checks article small {
    color: var(--brand-green);
    font-size: 0.46rem;
    font-weight: 860;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-connector-actions article strong,
.promo-release-checks article strong {
    margin-top: 0.12rem;
    color: #f2f8f4;
    font-size: 0.65rem;
}

.promo-connector-actions article em,
.promo-release-checks article em {
    margin-top: 0.11rem;
    color: rgba(232, 245, 236, 0.38);
    font-size: 0.53rem;
    font-style: normal;
}

.promo-connector-actions article > i {
    display: grid;
    width: 1.35rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-green);
    color: #071009;
    font-size: 0.5rem;
    font-style: normal;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 220ms ease, transform 280ms ease;
}

.promo-connector-actions article.is-active > i,
.promo-connector-actions article.is-complete > i {
    opacity: 1;
    transform: scale(1);
}

.promo-proof-scene {
    overflow: hidden;
    border: 1px solid rgba(232, 255, 239, 0.13);
    border-radius: 1.55rem;
    background:
        radial-gradient(circle at 76% 8%, rgba(102, 236, 162, 0.1), transparent 18rem),
        #07100b;
    box-shadow: 0 2.2rem 6rem rgba(0, 0, 0, 0.3);
}

.promo-proof-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    grid-template-rows: minmax(12rem, 1fr) minmax(9rem, 0.75fr);
    gap: 0.65rem;
    padding: 0.75rem;
}

.promo-proof-grid > article {
    overflow: hidden;
    border: 1px solid rgba(7, 16, 9, 0.09);
    border-radius: 0.95rem;
    background: #f2f5f0;
    color: #071009;
    opacity: 0.32;
    transform: translateY(0.25rem);
    transition:
        opacity 260ms ease,
        border-color 260ms ease,
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-proof-grid > article.is-complete {
    opacity: 0.68;
}

.promo-proof-grid > article.is-active {
    border-color: rgba(20, 146, 82, 0.35);
    opacity: 1;
    transform: translateY(0);
}

.promo-score-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.promo-score-ring {
    display: grid;
    width: clamp(5.2rem, 10vw, 7.5rem);
    aspect-ratio: 1;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, #f2f5f0 60%, transparent 61%),
        conic-gradient(var(--brand-green) 0 94%, #dbe3dd 94%);
}

.promo-score-ring strong,
.promo-score-ring small {
    grid-area: 1 / 1;
}

.promo-score-ring strong {
    margin-top: -0.7rem;
    color: #071009;
    font-size: 1.8rem;
}

.promo-score-ring small {
    margin-top: 1.85rem;
    color: rgba(7, 16, 9, 0.46);
    font-size: 0.55rem;
}

.promo-score-card > span {
    display: grid;
    gap: 0.28rem;
}

.promo-score-card > span small,
.promo-summary-card > small,
.promo-sentiment-card > small,
.promo-next-card > small {
    color: #087b49;
    font-size: 0.52rem;
    font-weight: 860;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-score-card > span strong {
    color: #071009;
    font-size: 0.86rem;
}

.promo-score-card > span em {
    color: rgba(7, 16, 9, 0.48);
    font-size: 0.59rem;
    font-style: normal;
}

.promo-summary-card,
.promo-sentiment-card,
.promo-next-card {
    padding: 1rem;
}

.promo-summary-card h3 {
    max-width: 19ch;
    margin: 0.75rem 0 0.6rem;
    color: #071009;
    font-size: clamp(1.35rem, 2.5vw, 2.2rem);
    line-height: 1;
}

.promo-summary-card p {
    max-width: 40rem;
    margin: 0;
    color: rgba(7, 16, 9, 0.58);
    font-size: 0.7rem;
}

.promo-sentiment-card {
    display: grid;
    align-content: space-between;
}

.promo-sentiment-line {
    display: flex;
    height: 4.2rem;
    align-items: end;
    gap: 0.35rem;
}

.promo-sentiment-line i {
    width: 100%;
    height: var(--signal);
    border-radius: 0.35rem 0.35rem 0 0;
    background: linear-gradient(var(--brand-green), #168b54);
}

.motion-lite .promo-sentiment-card.is-active .promo-sentiment-line i {
    animation: promo-bar-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.promo-sentiment-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(7, 16, 9, 0.46);
    font-size: 0.56rem;
}

.promo-sentiment-card footer strong {
    color: #087b49;
}

.promo-next-card {
    display: grid;
    align-content: space-between;
    gap: 0.7rem;
}

.promo-next-card > strong {
    max-width: 19ch;
    color: #071009;
    font-size: 1rem;
    line-height: 1.2;
}

.promo-next-card > span {
    color: #087b49;
    font-size: 0.62rem;
    font-weight: 780;
}

.promo-release-main {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(13rem, 1.28fr);
    gap: 0.7rem;
    padding: 0.8rem;
}

.promo-release-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0.8rem;
}

.promo-release-copy h3 {
    margin: 0.75rem 0 0.7rem;
    color: #f2f8f4;
    font-size: clamp(1.7rem, 3.6vw, 3.1rem);
    line-height: 0.95;
}

.promo-release-copy p {
    margin: 0;
    color: rgba(232, 245, 236, 0.5);
    font-size: 0.72rem;
}

.promo-release-checks {
    display: grid;
    padding: 0.35rem;
    border: 1px solid rgba(232, 255, 239, 0.09);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.025);
}

.promo-release-checks article > i {
    padding: 0.3rem 0.42rem;
    border-radius: 999px;
    background: rgba(102, 236, 162, 0.08);
    color: var(--brand-green);
    font-size: 0.46rem;
    font-style: normal;
    font-weight: 780;
    opacity: 0;
    transition: opacity 220ms ease;
}

.promo-release-checks article.is-active > i,
.promo-release-checks article.is-complete > i {
    opacity: 1;
}

.promo-release-regions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.7rem 0.8rem;
    border-top: 1px solid rgba(232, 255, 239, 0.08);
}

.promo-release-regions > span {
    display: grid;
    gap: 0.12rem;
    padding: 0.65rem;
    border: 1px solid rgba(232, 255, 239, 0.08);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.025);
}

.promo-release-regions small {
    color: var(--brand-green);
    font-size: 0.46rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promo-release-regions strong {
    overflow: hidden;
    color: #f2f8f4;
    font-size: 0.63rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-release-regions em {
    color: rgba(232, 245, 236, 0.38);
    font-size: 0.51rem;
    font-style: normal;
}

.promo-model-topbar {
    display: flex;
    min-height: 4.1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(232, 255, 239, 0.09);
    background: rgba(255, 255, 255, 0.025);
}

.promo-model-topbar > span {
    display: grid;
    gap: 0.12rem;
}

.promo-model-topbar small {
    color: rgba(232, 245, 236, 0.4);
    font-size: 0.5rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-model-topbar strong {
    color: #f2f8f4;
    font-size: 0.78rem;
}

.promo-model-topbar em {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    font-style: normal;
}

.promo-model-topbar em > i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 0.23rem rgba(102, 236, 162, 0.08);
}

.promo-model-topbar b {
    color: var(--brand-green);
    font-size: 0.61rem;
}

.promo-model-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.8rem;
}

.promo-model-cards article {
    display: flex;
    min-height: 23rem;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid rgba(7, 16, 9, 0.1);
    border-radius: 1rem;
    background: #f1f5ef;
    color: #071009;
    opacity: 0.3;
    transform: translateY(0.25rem);
    transition:
        opacity 260ms ease,
        border-color 260ms ease,
        background 260ms ease,
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-model-cards article.is-complete {
    opacity: 0.62;
}

.promo-model-cards article.is-active {
    border-color: rgba(7, 16, 9, 0.2);
    background: #d9f9a8;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
    opacity: 1;
    transform: translateY(0);
}

.promo-model-cards article > span {
    color: rgba(7, 16, 9, 0.42);
    font-size: 0.54rem;
    font-weight: 900;
}

.promo-model-cards article > small {
    margin-top: 3rem;
    color: #087b49;
    font-size: 0.54rem;
    font-weight: 860;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-model-cards h3 {
    margin: 0.65rem 0 0.75rem;
    color: #071009;
    font-size: clamp(1.5rem, 2.8vw, 2.45rem);
    line-height: 0.96;
}

.promo-model-cards p {
    margin: 0;
    color: rgba(7, 16, 9, 0.58);
    font-size: 0.7rem;
}

.promo-model-cards article > strong {
    margin-top: auto;
    padding-top: 1rem;
    color: #071009;
    font-size: 0.63rem;
}

.section-glow .cta-panel {
    border: 0;
    background:
        radial-gradient(circle at 85% 5%, rgba(255, 255, 255, 0.32), transparent 22rem),
        var(--brand-green);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
    color: #071009;
}

.section-glow .cta-panel::after {
    border-color: rgba(7, 16, 9, 0.14);
    box-shadow:
        0 0 0 3rem rgba(7, 16, 9, 0.025),
        0 0 0 7rem rgba(7, 16, 9, 0.018);
}

.section-glow .cta-panel .kicker,
.section-glow .cta-panel h2,
.section-glow .cta-panel p {
    color: #071009;
}

.section-glow .cta-panel .kicker {
    opacity: 0.58;
}

.section-glow .cta-panel p {
    opacity: 0.72;
}

.section-glow .cta-panel .btn-primary {
    border-color: #071009;
    background: #071009;
    color: #f2f8f4;
}

.section-glow .cta-panel .btn-secondary {
    border-color: rgba(7, 16, 9, 0.3);
    background: transparent;
    color: #071009;
}

@media (max-width: 68rem) {
    .promo-brand-scene {
        grid-template-columns: 1fr;
    }

    .promo-brand-manifesto {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.72fr);
        align-items: end;
        gap: 2rem;
    }

    .promo-brand-manifesto h3 {
        margin-bottom: 0;
    }

    .promo-brand-manifesto p {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 43rem) {
    .promo-sequence-controls button {
        min-height: 2.45rem;
        justify-content: center;
        padding-inline: 0.28rem;
        font-size: 0.54rem;
        text-align: center;
    }

    .promo-sequence-controls button span {
        display: none;
    }

    .promo-brand-manifesto {
        display: block;
    }

    .promo-brand-manifesto h3 {
        font-size: clamp(3.3rem, 15vw, 4.8rem);
    }

    .promo-brand-manifesto p {
        margin-top: 1rem;
    }

    .promo-brand-panels {
        min-height: 29rem;
    }

    .promo-login-panel {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .promo-login-brand,
    .promo-login-panel > p {
        display: none;
    }

    .promo-login-card {
        grid-row: auto;
        grid-column: auto;
    }

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

    .promo-workspace-panel aside {
        display: none;
    }

    .promo-workspace-metrics,
    .promo-control-summary {
        gap: 0.3rem;
    }

    .promo-workspace-metrics article,
    .promo-control-summary article {
        padding: 0.55rem;
    }

    .promo-workspace-metrics strong,
    .promo-control-summary strong {
        font-size: 1rem;
    }

    .promo-workspace-chart {
        height: 14rem;
    }

    .promo-control-panel {
        padding: 0.8rem;
    }

    .promo-control-rows > span {
        grid-template-columns: 1.8rem minmax(0, 1fr) auto;
    }

    .promo-control-rows small {
        display: none;
    }

    .page-visual.promo-flow-scene,
    .page-visual.promo-connector-scene,
    .page-visual.promo-release-scene,
    .page-visual.promo-model-scene {
        min-height: auto;
    }

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

    .promo-flow-grid::before {
        display: none;
    }

    .promo-flow-node {
        min-height: 7rem;
    }

    .promo-flow-fallback {
        grid-column: 1 / -1;
    }

    .promo-connector-stage,
    .promo-release-main {
        grid-template-columns: 1fr;
    }

    .promo-connector-request h3 {
        max-width: 20ch;
    }

    .promo-connector-actions article,
    .promo-release-checks article {
        min-height: 4.25rem;
    }

    .promo-proof-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .promo-proof-grid > article {
        min-height: 9rem;
    }

    .promo-score-card {
        min-height: 11rem;
    }

    .promo-release-regions {
        grid-template-columns: 1fr;
    }

    .promo-model-topbar em {
        display: none;
    }

    .promo-model-cards {
        grid-template-columns: 1fr;
    }

    .promo-model-cards article {
        min-height: 12rem;
    }

    .promo-model-cards article > small {
        margin-top: 1rem;
    }

    .section-glow .cta-panel {
        border-radius: 1.4rem;
    }
}

@media print {
    .editorial-rail,
    .editorial-sound-toggle {
        display: none !important;
    }

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

/* Keep the release programme spacious after the shared promo component rules. */
.page-visual.promo-release-scene .promo-release-main {
    grid-template-columns: minmax(13rem, 0.88fr) minmax(17rem, 1.12fr);
    gap: 1rem;
    padding: 1rem;
}

.page-visual.promo-release-scene .promo-release-copy {
    justify-content: flex-start;
    padding: 1rem 0.85rem;
}

.page-visual.promo-release-scene .promo-release-copy h3 {
    max-width: 12ch;
    margin-block: 0.9rem 0.85rem;
    font-size: clamp(1.75rem, 2.4vw, 2.45rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.page-visual.promo-release-scene .promo-release-copy p {
    max-width: 31ch;
    color: rgba(232, 245, 236, 0.66);
    font-size: 0.76rem;
    line-height: 1.55;
}

.page-visual.promo-release-scene .promo-release-checks {
    gap: 0.18rem;
    padding: 0.45rem;
}

.page-visual.promo-release-scene .promo-release-checks article {
    min-height: 5.15rem;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.72rem;
    padding: 0.72rem;
    opacity: 0.48;
}

.page-visual.promo-release-scene .promo-release-checks article.is-complete {
    opacity: 0.76;
}

.page-visual.promo-release-scene .promo-release-checks article.is-active {
    opacity: 1;
}

.page-visual.promo-release-scene .promo-release-checks article > span {
    width: 2rem;
}

.page-visual.promo-release-scene .promo-release-checks article :is(small, strong, em) {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.page-visual.promo-release-scene .promo-release-checks article small {
    font-size: 0.49rem;
    line-height: 1.25;
}

.page-visual.promo-release-scene .promo-release-checks article strong {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    line-height: 1.25;
}

.page-visual.promo-release-scene .promo-release-checks article em {
    margin-top: 0.18rem;
    color: rgba(232, 245, 236, 0.55);
    font-size: 0.56rem;
    line-height: 1.3;
}

.page-visual.promo-release-scene .promo-release-regions {
    gap: 0.7rem;
    padding: 0.85rem 1rem;
}

.page-visual.promo-release-scene .promo-release-regions > span {
    gap: 0.2rem;
    padding: 0.78rem;
}

.page-visual.promo-release-scene .promo-release-regions strong {
    font-size: 0.68rem;
}

.page-visual.promo-release-scene .promo-release-regions em {
    color: rgba(232, 245, 236, 0.55);
    font-size: 0.55rem;
}

@media (max-width: 43rem) {
    .page-visual.promo-release-scene .promo-release-main {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 0.75rem;
    }

    .page-visual.promo-release-scene .promo-release-copy {
        padding: 0.8rem 0.65rem 1rem;
    }

    .page-visual.promo-release-scene .promo-release-copy h3 {
        max-width: 14ch;
        font-size: clamp(1.9rem, 8.5vw, 2.7rem);
    }

    .page-visual.promo-release-scene .promo-release-copy p {
        max-width: 38ch;
        font-size: 0.72rem;
    }

    .page-visual.promo-release-scene .promo-release-checks article {
        min-height: 5.4rem;
        grid-template-columns: 2rem minmax(0, 1fr);
    }

    .page-visual.promo-release-scene .promo-release-checks article > i {
        display: none;
    }
}

/* Size the white-label statement to its actual column, not the viewport. */
@media (min-width: 68.01rem) {
    .promo-brand-manifesto h3,
    .editorial-light .promo-brand-manifesto h3 {
        max-width: none;
        font-size: clamp(2.75rem, 4vw, 4.35rem);
        line-height: 0.99;
    }
}

@media (min-width: 43.01rem) and (max-width: 68rem) {
    .promo-brand-manifesto h3,
    .editorial-light .promo-brand-manifesto h3 {
        max-width: 8.5ch;
        font-size: clamp(3.2rem, 7vw, 4.8rem);
        line-height: 0.98;
    }
}

/* Compact, functional FAQ entry point */
.faq-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    padding-block: clamp(4rem, 7vw, 6.5rem) clamp(2.2rem, 4vw, 3.5rem);
}

.faq-hero-heading .display {
    max-width: 10ch;
    margin-bottom: 0;
    font-size: clamp(3.7rem, 7vw, 7.1rem);
    line-height: 0.88;
}

.faq-hero-intro {
    padding-bottom: 0.35rem;
}

.faq-hero-intro .lede {
    max-width: 36rem;
    margin-bottom: 1.5rem;
    color: var(--muted-strong);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.faq-topic-nav {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: clamp(0.5rem, 2vw, 1.5rem);
    padding-block: 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.faq-topic-nav > span {
    margin-right: 0.55rem;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.faq-topic-nav a {
    padding: 0.58rem 0.78rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.68rem;
    font-weight: 760;
    line-height: 1;
    text-decoration: none;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.faq-topic-nav a:hover {
    border-color: var(--line-strong);
    color: var(--ink);
}

.faq-topic-nav a.is-active,
.faq-topic-nav a[aria-current="true"] {
    border-color: rgba(102, 236, 162, 0.25);
    background: rgba(102, 236, 162, 0.11);
    color: var(--brand-green);
}

[data-faq-category] {
    scroll-margin-top: 5.5rem;
}

[data-faq-category][hidden] {
    display: none !important;
}

@media (max-width: 50rem) {
    .faq-hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2rem;
        padding-block: 4rem 2.2rem;
    }

    .faq-hero-heading .display {
        max-width: 9ch;
        font-size: clamp(3.55rem, 15vw, 5.2rem);
        line-height: 0.9;
    }

    .faq-hero-intro {
        max-width: 38rem;
        padding-bottom: 0;
    }

    .faq-topic-nav {
        gap: 0.35rem;
        margin-top: 0;
        padding-block: 0.85rem;
    }

    .faq-topic-nav > span {
        width: 100%;
        margin: 0 0 0.35rem;
    }

    .faq-topic-nav a {
        padding: 0.55rem 0.68rem;
        font-size: 0.64rem;
    }
}

/* Keep every manifesto line inside the card across browser font metrics. */
.promo-brand-manifesto {
    container-type: inline-size;
}

.promo-brand-manifesto h3,
.editorial-light .promo-brand-manifesto h3 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.2rem, 3vw, 3.7rem);
    font-size: clamp(2.2rem, 13cqi, 4rem);
    line-height: 1;
}

.promo-brand-manifesto h3 > span,
.promo-brand-manifesto h3 > em {
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}

.promo-brand-manifesto h3 > span:nth-child(2) {
    font-size: 0.86em;
}

/* Scale the demos headline from its copy column so long words stay contained. */
.demos-hero > div:first-child {
    container-type: inline-size;
}

.demos-hero .display {
    max-width: 100%;
    font-size: clamp(3.3rem, 5.2vw, 4.7rem);
    font-size: clamp(3.3rem, 16cqi, 4.7rem);
    line-height: 0.94;
}

/* Homepage close: a focused product invitation, not a full-panel highlight. */
.section-glow .home-final-cta {
    padding: clamp(2.8rem, 5.5vw, 5rem);
    border: 1px solid rgba(102, 236, 162, 0.18);
    background:
        radial-gradient(circle at 88% 5%, rgba(102, 236, 162, 0.16), transparent 23rem),
        radial-gradient(circle at 8% 100%, rgba(184, 255, 90, 0.06), transparent 24rem),
        #08140d;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.34);
    color: #f2f8f4;
}

.section-glow .home-final-cta::after {
    border-color: rgba(102, 236, 162, 0.17);
    box-shadow:
        0 0 0 3rem rgba(102, 236, 162, 0.025),
        0 0 0 7rem rgba(102, 236, 162, 0.018);
}

.section-glow .home-final-cta .kicker {
    color: var(--brand-green);
    opacity: 1;
}

.section-glow .home-final-cta h2 {
    max-width: 13ch;
    color: #f2f8f4;
}

.section-glow .home-final-cta h2 > span {
    color: var(--brand-green);
}

.section-glow .home-final-cta p {
    max-width: 46rem;
    color: rgba(232, 245, 236, 0.68);
    opacity: 1;
}

.section-glow .home-final-cta .btn-primary {
    border-color: var(--brand-green);
    background: var(--brand-green);
    color: #071009;
}

.section-glow .home-final-cta .btn-secondary {
    border-color: rgba(232, 255, 239, 0.2);
    background: rgba(255, 255, 255, 0.025);
    color: #f2f8f4;
}

.home-final-cta ::selection {
    background: #d9f9a8;
    color: #071009;
}

/* Demos close: move from sandbox exploration to one real customer journey. */
.demos-conversion-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: stretch;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    overflow: hidden;
    border: 1px solid rgba(102, 236, 162, 0.16);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 8% 5%, rgba(102, 236, 162, 0.12), transparent 20rem),
        #08140d;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.demos-conversion-copy {
    display: flex;
    min-height: 22rem;
    justify-content: center;
    flex-direction: column;
    padding: clamp(1.5rem, 4vw, 3.5rem);
}

.demos-conversion-copy .kicker {
    color: var(--brand-green);
}

.demos-conversion-copy h2 {
    max-width: 12ch;
    margin: 1rem 0 1.1rem;
    color: #f2f8f4;
    font-size: clamp(2.8rem, 5.5vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.demos-conversion-copy p {
    max-width: 43rem;
    margin: 0;
    color: rgba(232, 245, 236, 0.66);
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.demos-conversion-action {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at 85% 5%, rgba(102, 236, 162, 0.22), transparent 13rem),
        #eef3ed;
    color: #071009;
}

.demos-conversion-action > span {
    margin-bottom: auto;
    color: #087b49;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.demos-conversion-action > strong {
    max-width: 18ch;
    color: #071009;
    font-size: clamp(1.35rem, 2.4vw, 2.2rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.demos-conversion-action .btn {
    align-self: flex-start;
    border-color: var(--brand-green);
    background: var(--brand-green);
    color: #071009;
}

@media (max-width: 50rem) {
    .demos-conversion-panel {
        grid-template-columns: 1fr;
        border-radius: 1.5rem;
    }

    .demos-conversion-copy {
        min-height: 0;
        padding: 1.5rem 1.25rem 2rem;
    }

    .demos-conversion-copy h2 {
        max-width: 11ch;
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .demos-conversion-action {
        min-height: 15rem;
    }
}
