:root {
    --aqua: #00c8c0;
    --aqua-deep: #009a94;
    --blue: #9aa1a9;
    --indigo: #060606;
    --ink: #060606;
    --charcoal: #060606;
    --slate: #686868;
    --muted: #8f8f8f;
    --line: #cfd5dc;
    --soft: #e7ebf0;
    --paper: #eff3f6;
    --white: #ffffff;
    --font-display: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    --font-heading: "Comfortaa", "Avenir Next", "Segoe UI", sans-serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
    --container: 1240px;
    --mobile-shell-width: 95vw;
    --mobile-inner-width: 95%;
    --header-height: 82px;
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.09);
    --shadow-dark: 0 36px 90px rgba(0, 0, 0, 0.34);
    --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

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

button { color: inherit; }

::selection { background: var(--aqua); color: var(--ink); }

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: 16px;
    padding: 12px 16px;
    background: var(--white);
    color: var(--ink);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

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

.section { padding: clamp(88px, 10vw, 150px) 0; }

.section-kicker,
.eyebrow {
    margin: 0 0 18px;
    color: var(--aqua-deep);
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.06;
    letter-spacing: -.04em;
}

h1, h2 {
    font-family: var(--font-heading);
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(3.25rem, 7.4vw, 7.25rem);
    font-weight: 700;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    font-weight: 700;
}

h3 { font-size: clamp(1.35rem, 2.3vw, 2rem); }

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

.lead {
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--slate);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

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

.button-primary {
    color: var(--ink);
    background: var(--aqua);
    box-shadow: 0 12px 26px rgba(0, 200, 192, .16);
}

.button-primary:hover {
    background: #19d8cf;
    box-shadow: 0 16px 34px rgba(0, 200, 192, .22);
}

.button-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .2);
}

.button-ghost:hover { background: rgba(255, 255, 255, .09); }

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

.button-dark:hover { background: #1b1e22; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    border-bottom: 1px solid rgba(7, 16, 29, .25);
    padding-bottom: 3px;
}

.text-link span { color: var(--aqua-deep); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(6, 6, 6, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    transition: height .28s var(--ease), background-color .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled {
    height: 70px;
    background: rgba(6, 6, 6, .98);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .24);
}

.header-shell {
    width: min(calc(100% - 40px), 1380px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img { width: 162px; height: auto; }

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
    color: rgba(255, 255, 255, .75);
    font-family: var(--font-display);
    font-size: .83rem;
    font-weight: 700;
}

.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: var(--aqua);
    transition: right .25s var(--ease);
}

.primary-nav > a:not(.nav-cta):hover { color: var(--white); }
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
    padding: 11px 16px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(0, 200, 192, .68);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 800;
}

.nav-cta:hover {
    background: rgba(0, 200, 192, .1);
    border-color: var(--aqua);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 9px;
    background: rgba(255,255,255,.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 740px;
    padding: calc(var(--header-height) + 4px) 0 10px;
    color: var(--white);
    background:
        linear-gradient(115deg, #060606 0%, #060606 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(122deg, transparent 0 47%, rgba(255,255,255,.018) 47.25%, transparent 47.5%, transparent 100%);
    background-size: 82px 82px, 82px 82px, 100% 100%;
    mask-image: linear-gradient(to bottom, black, transparent 96%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding-right: min(10vw, 120px);
}

.hero-copy {
    position: relative;
    z-index: 3;
    display: block;
    width: min(100%, 760px);
    max-width: min(50vw, 720px);
    margin-top: 0;
}

.hero .eyebrow {
    margin-top: 0;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    letter-spacing: .19em;
}

.hero h1 {
    width: min(100%, 720px);
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(4.25rem, 5.4vw, 5.1rem);
    font-weight: 700;
    line-height: .97;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.hero-title-line {
    display: block;
}

.hero-title-dot {
    color: var(--aqua);
}

.hero-lede {
    width: min(100%, 640px);
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 1.15vw, 1.18rem);
    line-height: 1.58;
}

.hero-support {
    width: min(100%, 620px);
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .48);
    font-size: .96rem;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 6px;
}

.hero .button-primary {
    color: #0a0d11;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .25);
}

.hero .button-primary:hover {
    background: #f4f7f9;
}

.hero .button-ghost {
    position: relative;
    min-height: 54px;
    padding: 0 0 0 58px;
    color: rgba(255, 255, 255, .9);
    background: transparent;
    border: 0;
    font-weight: 700;
}

.hero .button-ghost::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
}

.hero .button-ghost::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--aqua);
    border-right: 2px solid var(--aqua);
    transform: translateY(-50%) rotate(45deg);
}

.hero-proof {
    display: none;
    margin-top: clamp(12px, 4vh, 24px);
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    padding-top: 10px;
}

.hero-proof div {
    padding: 0 22px 0 0;
    border-right: 1px solid rgba(255,255,255,.12);
}

.hero-proof div + div { padding-left: 22px; }
.hero-proof div:last-child { border-right: 0; }

.hero-proof strong,
.hero-proof span { display: block; }

.hero-proof strong {
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: .98rem;
}

.hero-proof span {
    color: rgba(255,255,255,.52);
    font-size: .855rem;
    line-height: 1.58;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.system-window-image {
    display: contents;
}

.system-window-image > .window-topbar,
.system-window-image > .system-canvas,
.system-window-image > .system-footer {
    display: none;
}

.hero-grid-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: none;
    transform: none;
}

.hero-image-fade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 6, 6, 1) 0%, rgba(6, 6, 6, 1) 22%, rgba(6, 6, 6, .995) 34%, rgba(6, 6, 6, .965) 44%, rgba(6, 6, 6, .885) 54%, rgba(6, 6, 6, .7) 63%, rgba(6, 6, 6, .42) 73%, rgba(6, 6, 6, .14) 84%, rgba(6, 6, 6, 0) 93%),
        linear-gradient(180deg, rgba(6, 6, 6, .03) 0%, rgba(6, 6, 6, 0) 38%, rgba(6, 6, 6, .08) 80%, rgba(6, 6, 6, .18) 100%);
}

.hero-values {
    position: relative;
    color: #000;
    background: #fefdfe;
    border-top: 1px solid rgba(6, 6, 6, .08);
    border-bottom: 1px solid rgba(6, 6, 6, .08);
}

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

.hero-value-card {
    padding: clamp(24px, 3vw, 34px) clamp(18px, 2.4vw, 28px);
    min-width: 0;
}

.hero-value-card + .hero-value-card {
    border-left: 1px solid rgba(6, 6, 6, .10);
}

.hero-value-card h2 {
    margin-bottom: 12px;
    color: #000;
    font-size: clamp(1.05rem, 1.25vw, 1.24rem);
    line-height: 1.08;
}

.hero-value-card p {
    color: #000;
    font-size: .95rem;
    line-height: 1.68;
}

.owner-cards {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .06), transparent 24rem),
        linear-gradient(180deg, #060606 0%, #060606 100%);
}

.owner-cards-heading {
    display: block;
    margin-bottom: clamp(32px, 6vw, 54px);
}

.owner-cards-heading h2 {
    margin-bottom: 0;
    max-width: 14ch;
    color: var(--white);
}

.owner-cards-grid {
    display: flex;
    gap: 14px;
    min-height: clamp(420px, 54vw, 620px);
}

.owner-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    background: #111;
    transition: flex .45s var(--ease), transform .35s var(--ease), filter .35s var(--ease);
}

.owner-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform .8s cubic-bezier(.16, .82, .24, 1);
}

.owner-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 6, .06) 0%, rgba(6, 6, 6, .22) 28%, rgba(6, 6, 6, .7) 64%, rgba(6, 6, 6, .96) 100%),
        linear-gradient(90deg, rgba(6, 6, 6, .38) 0%, rgba(6, 6, 6, .12) 34%, rgba(6, 6, 6, .06) 100%);
}

.owner-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: clamp(22px, 3vw, 34px);
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.owner-card-index {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .62);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.owner-card h3 {
    margin-bottom: 12px;
    max-width: 10ch;
    color: var(--white);
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    line-height: .98;
}

.owner-card-points {
    display: grid;
    gap: 8px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.owner-card-points li {
    color: rgba(255, 255, 255, .92);
    font-size: .92rem;
    line-height: 1.45;
}

.owner-card-points li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 4px rgba(0, 200, 192, .12);
}

.owner-card-pop {
    position: absolute;
    right: clamp(20px, 2.4vw, 34px);
    top: clamp(20px, 2.4vw, 34px);
    z-index: 2;
    width: min(320px, calc(100% - 40px));
    padding: 18px 18px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 15, 15, .08);
    border-radius: 22px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, .32);
    opacity: 0;
    transform: translateY(-18px) translateX(18px) scale(.92);
    transform-origin: top right;
    transition: opacity .42s var(--ease), transform .62s cubic-bezier(.16, .82, .24, 1);
}

.owner-card-pop strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.25;
}

.owner-card-pop p {
    margin: 0;
    color: #4d4d4d;
    font-size: .84rem;
    line-height: 1.55;
}

.owner-card-pop-points {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.owner-card-pop-points li {
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.42;
}

.owner-card-pop-points li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 4px rgba(0, 200, 192, .14);
}

@media (min-width: 64rem) and (hover: hover) and (pointer: fine) {
    .owner-cards-grid:hover .owner-card {
        flex: .78 1 0;
        filter: saturate(.82);
    }

    .owner-cards-grid:hover .owner-card:hover {
        flex: 1.44 1 0;
        filter: saturate(1);
    }

    .owner-cards-grid:hover .owner-card:hover img {
        transform: scale(1.095);
    }

    .owner-cards-grid:hover .owner-card:hover .owner-card-content {
        transform: translateY(-86px);
    }

    .owner-cards-grid:hover .owner-card:hover .owner-card-pop {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
}

.system-window {
    position: relative;
    width: 100%;
    min-height: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    isolation: isolate;
}

.system-window::before {
    display: none;
}

.system-window::after {
    display: none;
}

.system-window-image::before {
    display: none;
}

.system-window-image::after {
    display: none;
}

.hero-orbit,
.hero-glow {
    display: none;
}

.hero [data-reveal] {
    opacity: 1;
    transform: none;
}

.window-topbar,
.system-footer {
    display: none;
}

.window-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.74);
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 700;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    color: rgba(255,255,255,.66);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 100px;
    font-size: .68rem;
}

.live-pill i {
    width: 7px;
    height: 7px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255,255,255,.05);
}

.system-canvas { position: relative; height: 100%; min-height: 640px; }

.system-center {
    position: absolute;
    z-index: 5;
    left: 43%;
    bottom: 9%;
    width: 180px;
    height: 180px;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 45% 30%, rgba(34, 39, 45, .96), rgba(7, 9, 12, .98));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 14px rgba(255,255,255,.015), 0 18px 60px rgba(0,0,0,.32);
}

.system-center img { margin-bottom: 10px; }
.system-center span { color: rgba(255,255,255,.48); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.system-center strong { font-family: var(--font-display); font-size: 1rem; }

.node {
    position: absolute;
    z-index: 4;
    width: 220px;
    padding: 18px 18px 20px;
    background: rgba(15, 18, 22, .84);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 26px 44px rgba(0,0,0,.24);
}

.node span,
.node strong,
.node small { display: block; }

.node span {
    margin-bottom: 10px;
    color: var(--aqua);
    font-family: var(--font-display);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.node strong {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 1rem;
}

.node small { color: rgba(255,255,255,.58); font-size: .74rem; line-height: 1.5; }

.node-website { left: 2%; top: 7%; }
.node-leads { left: 28%; top: 0; }
.node-crm { left: 9%; bottom: 10%; }
.node-support { right: 0; bottom: 17%; }

.system-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.system-lines path {
    fill: none;
    stroke: url(#none);
    stroke: rgba(255,255,255,.12);
    stroke-width: 1.5;
    stroke-dasharray: 6 7;
    animation: dash 15s linear infinite;
}

.system-footer {
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 0;
}

.system-footer span { color: rgba(255,255,255,.48); font-size: .66rem; }
.system-footer i { width: 18px; height: 1px; background: rgba(255,255,255,.22); }

.hero-orbit {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.hero-orbit::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--blue);
}

.hero-orbit-one,
.hero-orbit-two,
.hero-glow {
    display: none;
}

.scroll-cue { display: none; }

.signal-strip {
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.08);
}

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

.signal-grid div {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 96px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.signal-grid div:first-child { border-left: 1px solid rgba(255,255,255,.09); }
.signal-grid span { color: var(--aqua); font-family: var(--font-display); font-size: .72rem; font-weight: 800; }
.signal-grid strong { font-family: var(--font-display); font-size: .83rem; }

.mission { background: #e9edf1; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.mission .section-intro h2 { max-width: 100%; }
.mission-copy { padding-top: 0; }
.mission-copy p { max-width: 100%; font-size: 1rem; line-height: 1.65; font-weight: 400; color: var(--slate); }
.mission-copy .text-link { margin-top: 18px; }

.outcomes { background: #e2e7ec; }

.split-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.split-heading h2 { max-width: 760px; margin-bottom: 0; }
.split-heading > p { max-width: 500px; margin-bottom: 4px; }

.why-heading {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(48px, 6vw, 96px);
}

.why-heading-main h2 {
    max-width: 700px;
}

.why-intro-copy {
    display: grid;
    gap: 22px;
    align-content: start;
}

.why-intro-copy p {
    max-width: 100%;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--slate);
}

.outcome-list { border-top: 1px solid #cfd7e2; }

.outcome-row {
    display: grid;
    grid-template-columns: 72px minmax(180px, .6fr) minmax(300px, 1.2fr) auto;
    gap: 30px;
    align-items: center;
    min-height: 154px;
    padding: 26px 0;
    border-bottom: 1px solid #cfd7e2;
    transition: padding .3s var(--ease), background-color .3s ease;
}

.outcome-row:hover {
    padding-inline: 0;
    background: transparent;
}

.outcome-number { color: var(--muted); font-family: var(--font-display); font-size: .72rem; font-weight: 800; }
.outcome-title { display: flex; align-items: center; gap: 16px; }
.outcome-title h3 { margin: 0; }
.outcome-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--aqua);
    border-radius: 50%;
    font-weight: 800;
}
.outcome-row p { margin: 0; max-width: 570px; }
.outcome-tag {
    justify-self: end;
    padding: 8px 10px;
    color: var(--slate);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: .68rem;
    white-space: nowrap;
}

.growth-system {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.growth-system::before {
    content: "";
    position: absolute;
    left: -220px;
    top: 80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0,0,0,.05), transparent 70%);
}

.growth-grid {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(70px, 9vw, 140px);
    align-items: center;
}

.growth-copy { position: sticky; top: 130px; align-self: start; }
.growth-copy h2 { max-width: 620px; }
.growth-note {
    display: grid;
    gap: 5px;
    margin: 32px 0;
    padding: 20px 22px;
    background: var(--soft);
    border-left: 3px solid var(--aqua);
}
.growth-note strong { font-family: var(--font-display); }
.growth-note span { color: var(--slate); font-size: .9rem; }

.journey {
    position: relative;
    padding: 20px 0;
}

.journey ol { margin: 0; padding: 0; list-style: none; }

.journey li {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 112px;
    padding: 20px 28px;
    margin-bottom: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.journey li:hover,
.journey li.active {
    transform: translateX(-10px);
    border-color: rgba(0,0,0,.18);
    box-shadow: var(--shadow-soft);
}

.journey li > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
}

.journey li.active > span { background: var(--aqua); border-color: var(--aqua); }
.journey li strong,
.journey li small { display: block; }
.journey li strong { font-family: var(--font-display); font-size: 1.05rem; }
.journey li small { color: var(--muted); }

.audience {
    padding-bottom: 0;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.audience .section-kicker { color: var(--aqua); }
.audience-top {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 80px;
    align-items: end;
    padding-bottom: 70px;
}
.audience-top h2 { max-width: 760px; margin-bottom: 0; }
.audience-top p { color: rgba(255,255,255,.56); }

.audience-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
}

.audience-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    padding-left: 28px;
    animation: marquee 36s linear infinite alternate;
}

.audience-track span {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 700;
    white-space: nowrap;
}

.audience-track i { width: 7px; height: 7px; background: var(--aqua); border-radius: 50%; }

.why { background: var(--paper); }

.why-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 16px;
}

.why-feature {
    position: relative;
    min-height: 238px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.why-feature-main {
    grid-row: 1 / span 2;
    min-height: 492px;
    padding: 40px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 18%, rgba(255,255,255,.06), transparent 35%),
        linear-gradient(145deg, #060606, #060606);
    border-color: rgba(255,255,255,.08);
}

.feature-index {
    color: var(--aqua-deep);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
}

.feature-mark {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 90px 0 34px;
    color: var(--ink);
    background: var(--aqua);
    border-radius: 50%;
    font-size: 2rem;
}

.why-feature h3 { margin: 36px 0 14px; }
.why-feature p { margin-bottom: 0; }
.why-feature-main h3 { margin: 0 0 16px; font-size: clamp(2.4rem, 4vw, 4rem); }
.why-feature-main p { max-width: 470px; color: rgba(255,255,255,.6); font-size: 1.08rem; }

.process {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.05), transparent 32%),
        linear-gradient(132deg, #060606 0%, #060606 100%);
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: linear-gradient(120deg, transparent 47%, rgba(255,255,255,.05) 48%, transparent 49%);
    background-size: 4rem 4rem;
}

.process-heading {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin-bottom: 4rem;
}

.process-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
}

.process-heading > p {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.52);
}

.process-track {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-track li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    min-height: 14rem;
}

.process-index {
    position: relative;
    display: flex;
    justify-content: center;
}

.process-index span {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    color: var(--ink);
    background: var(--aqua);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
}

.process-index i {
    position: absolute;
    top: 2.6rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(rgba(255,255,255,.24), rgba(255,255,255,.08));
}

.process-track li:last-child .process-index i {
    display: none;
}

.process-content {
    padding-bottom: 2.5rem;
}

.process-content small {
    color: var(--aqua);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.process-content h3 {
    margin: 0.45rem 0 0.7rem;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.process-content p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.52);
}

.comparison {
    background: #dfe5eb;
}

.comparison-layout {
    display: grid;
    gap: 3rem;
}

.comparison-copy p {
    max-width: 33rem;
    margin: 1.5rem 0 2rem;
    color: var(--muted);
}

.comparison-board {
    display: grid;
    box-shadow: var(--shadow-soft);
}

.comparison-column {
    position: relative;
    min-height: 27rem;
    padding: 2rem;
    overflow: hidden;
}

.comparison-old {
    color: var(--muted);
    background: #dce2e8;
}

.comparison-new {
    color: var(--white);
    background:
        radial-gradient(circle at 80% 85%, rgba(255,255,255,.14), transparent 38%),
        #060606;
}

.comparison-label {
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.comparison-new .comparison-label {
    color: var(--aqua);
}

.comparison-column ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.comparison-column li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
}

.comparison-column li span {
    display: grid;
    place-items: center;
    width: 1.5rem;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.7rem;
}

.comparison-new li span {
    color: var(--ink);
    background: var(--aqua);
    border-color: var(--aqua);
}

.fragment-diagram,
.connected-diagram {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 13rem;
    aspect-ratio: 1;
    opacity: 0.4;
}

.fragment-diagram i {
    position: absolute;
    width: 2.6rem;
    aspect-ratio: 1;
    border: 1px solid #9aa7b4;
}

.fragment-diagram i:nth-child(1) { top: 12%; left: 36%; }
.fragment-diagram i:nth-child(2) { top: 48%; left: 5%; transform: rotate(20deg); }
.fragment-diagram i:nth-child(3) { right: 8%; bottom: 9%; transform: rotate(-15deg); }
.fragment-diagram i:nth-child(4) { top: 8%; right: 6%; border-radius: 50%; }
.fragment-diagram i:nth-child(5) { left: 35%; bottom: 8%; border-radius: 50%; }

.connected-diagram {
    opacity: 0.65;
}

.connected-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 4rem;
    aspect-ratio: 1;
    color: var(--ink);
    background: var(--ink);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 800;
    transform: translate(-50%, -50%);
}

.connected-core img {
    width: 1.6rem;
    height: auto;
}

.connected-diagram i {
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.connected-diagram i::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3.5rem;
    height: 1px;
    background: rgba(255,255,255,.22);
    transform-origin: left;
}

.connected-diagram .c1 { top: 4%; left: 41%; }
.connected-diagram .c1::after { left: 1rem; transform: rotate(90deg); }
.connected-diagram .c2 { top: 40%; right: 2%; }
.connected-diagram .c2::after { right: 1rem; transform: rotate(180deg); }
.connected-diagram .c3 { bottom: 3%; left: 41%; }
.connected-diagram .c3::after { left: 1rem; transform: rotate(-90deg); }
.connected-diagram .c4 { top: 40%; left: 2%; }
.connected-diagram .c4::after { left: 1rem; }

.faq { background: #e9edf1; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(70px, 8vw, 130px); }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { max-width: 560px; }
.faq-intro p { max-width: 500px; font-size: 1rem; line-height: 1.65; font-weight: 400; color: var(--slate); }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}
.faq-item button span { max-width: 760px; font-family: var(--font-display); font-size: clamp(1.08rem, 1.8vw, 1.35rem); font-weight: 700; letter-spacing: -.02em; }
.faq-item button i { position: relative; width: 24px; height: 24px; flex: 0 0 auto; }
.faq-item button i::before,
.faq-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { padding: 0 48px 26px 0; }
.faq-answer p { max-width: 760px; margin-bottom: 0; }

.contact {
    position: relative;
    padding: clamp(90px, 10vw, 150px) 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 30%, rgba(255,255,255,.04), transparent 26%),
        radial-gradient(circle at 88% 78%, rgba(255,255,255,.05), transparent 30%),
        linear-gradient(180deg, #060606 0%, #060606 100%);
    overflow: hidden;
}
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 76px 76px;
}
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 8vw, 120px); align-items: start; }
.contact .section-kicker { color: var(--aqua); }
.contact-copy { padding-top: 38px; }
.contact-copy h2 { max-width: 650px; }
.contact-copy > p { max-width: 560px; color: rgba(255,255,255,.6); font-size: 1.08rem; }
.contact-points { display: grid; gap: 13px; margin-top: 40px; }
.contact-points span { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.72); font-family: var(--font-display); font-weight: 700; }
.contact-points i { display: grid; place-items: center; width: 34px; height: 34px; color: var(--aqua); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-style: normal; font-size: .65rem; }
.form-panel { padding: clamp(28px, 5vw, 52px); color: var(--ink); background: var(--white); border-radius: 24px; box-shadow: var(--shadow-dark); }
.form-heading { display: grid; gap: 6px; margin-bottom: 32px; }
.form-heading span { color: var(--aqua-deep); font-family: var(--font-display); font-size: .73rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-heading strong { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.04em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-family: var(--font-display); font-size: .78rem; font-weight: 800; }
.field label span { color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfd7e2;
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field input,
.field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 138px; padding: 13px 14px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 0; border-color: var(--aqua-deep); background: var(--white); box-shadow: 0 0 0 4px rgba(0,190,178,.11); }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c62d42; }
.form-submit { width: 100%; margin-top: 24px; }
.form-submit span { margin-left: 8px; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .7rem; text-align: center; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.form-errors { margin-bottom: 24px; padding: 16px 18px; color: #741829; background: #fff2f4; border: 1px solid #f1c8cf; border-radius: 10px; font-size: .84rem; }
.form-errors ul { margin: 8px 0 0; padding-left: 20px; }
.form-success { min-height: 480px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.form-success > span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 24px; background: var(--aqua); border-radius: 50%; font-size: 1.5rem; font-weight: 800; }
.form-success h3 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.3rem); }
.form-success p { max-width: 480px; }
.form-success .button { margin-top: 18px; }
.contact-orbit { position: absolute; right: -260px; top: 80px; width: 720px; height: 250px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: rotate(-18deg); }

.site-footer { padding: 72px 0 24px; color: var(--white); background: #060606; border-top: 1px solid rgba(255,255,255,.07); }
.footer-top { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-bottom: 60px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.footer-brand img { width: 170px; }
.footer-brand span { max-width: 310px; color: rgba(255,255,255,.5); font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; }
.footer-brand strong { color: var(--aqua); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { margin-bottom: 5px; color: rgba(255,255,255,.34); font-family: var(--font-display); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .83rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: .72rem; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes dash { to { stroke-dashoffset: -120; } }
@keyframes marquee { to { transform: translateX(-12%); } }

@media (max-width: 1120px) {
    .primary-nav { gap: 20px; }
    .primary-nav > a:not(.nav-cta) { display: none; }
    .hero-grid { grid-template-columns: minmax(0, 48%) minmax(0, 52%); column-gap: clamp(20px, 3vw, 38px); }
    .hero h1 { font-size: clamp(3.65rem, 5vw, 4.6rem); width: min(100%, 640px); }
    .hero-visual { min-height: clamp(500px, 62vh, 700px); }
    .hero-grid-image { width: min(100%, 760px); right: -4%; }
    .node { width: 150px; }
    .outcome-row { grid-template-columns: 56px minmax(180px,.6fr) 1.1fr; }
    .outcome-tag { display: none; }
    .why-layout { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .why-feature-main { grid-row: auto; grid-column: 1 / -1; min-height: 420px; }
    .why-heading { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 900px) {
    :root { --header-height: 72px; }
    .container,
    .header-shell { width: min(var(--mobile-shell-width), var(--container)); }
    .signal-grid,
    .outcome-list,
    .growth-stage,
    .why-layout,
    .process-track,
    .comparison-board,
    .accordion,
    .form-panel,
    .footer-links {
        width: min(100%, var(--mobile-inner-width));
        margin-inline: auto;
    }
    .menu-toggle { display: block; }
    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: grid;
        gap: 0;
        padding: 14px 16px 24px;
        background: rgba(8,8,8,.99);
        border-bottom: 1px solid rgba(255,255,255,.1);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .35s var(--ease), opacity .25s ease;
    }
    .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .primary-nav > a:not(.nav-cta) { display: block; padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
    .primary-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 14px; padding: 15px; text-align: center; }
    .hero { min-height: 720px; padding-top: calc(var(--header-height) + 8px); padding-bottom: 54px; }
    .hero-grid {
        display: block;
        min-height: 632px;
        padding-right: 0;
    }
    .hero-copy {
        position: relative;
        z-index: 3;
        display: block;
        width: min(100%, 560px);
        max-width: min(100%, 560px);
        padding-top: clamp(56px, 10vw, 92px);
    }
    .hero .eyebrow { margin-top: 0; }
    .hero h1 {
        width: min(100%, 14ch);
        font-size: clamp(3.2rem, 9vw, 4.4rem);
        line-height: .98;
    }
    .hero-lede,
    .hero-support { width: min(100%, 680px); }
    .hero-actions { gap: 14px; }
    .hero-visual {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 100%;
        margin-inline: 0;
        pointer-events: none;
    }
    .hero-grid-image {
        inset: 0;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 64% top;
    }
    .hero-image-fade {
        background:
            linear-gradient(90deg, rgba(6, 6, 6, 1) 0%, rgba(6, 6, 6, .98) 18%, rgba(6, 6, 6, .92) 34%, rgba(6, 6, 6, .76) 48%, rgba(6, 6, 6, .46) 62%, rgba(6, 6, 6, .16) 78%, rgba(6, 6, 6, 0) 92%),
            linear-gradient(180deg, rgba(6, 6, 6, .08) 0%, rgba(6, 6, 6, 0) 30%, rgba(6, 6, 6, .14) 100%);
    }
    .scroll-cue { display: none; }
    .signal-grid { grid-template-columns: repeat(2, 1fr); }
    .signal-grid div:nth-child(2) { border-right: 0; }
    .signal-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
    .hero-values-grid { grid-template-columns: 1fr; }
    .hero-value-card + .hero-value-card { border-left: 0; border-top: 1px solid rgba(6, 6, 6, .10); }
    .mission-grid,
    .growth-grid,
    .faq-grid,
    .contact-grid,
    .footer-top { grid-template-columns: 1fr; }
    .mission-copy { padding-top: 0; }
    .split-heading,
    .audience-top { grid-template-columns: 1fr; gap: 25px; }
    .growth-copy,
    .faq-intro { position: static; }
    .growth-grid { gap: 60px; }
    .audience-top { align-items: start; }
    .faq-grid { gap: 60px; }
    .contact-grid { gap: 45px; }
    .contact-copy { padding-top: 0; }
    .footer-top { gap: 55px; }
    .owner-cards-heading { grid-template-columns: 1fr; gap: 20px; }
    .owner-cards-heading h2 { max-width: none; }
    .owner-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .owner-card { min-height: 420px; }
    .owner-card h3 { max-width: none; }
    .owner-card-pop {
        opacity: 1;
        transform: none;
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin: 14px 0 0;
        background: rgba(255, 255, 255, .97);
    }
    .stage-rail {
        display: flex;
        flex-wrap: wrap;
        align-content: stretch;
        gap: 0;
        overflow: visible;
        border-right: 0;
        border-bottom: 1px solid #d4dde6;
    }
    .stage-item {
        flex: 1 1 25%;
        min-width: 0;
        align-items: flex-start;
        padding: 0.8rem 0.75rem;
        border-right: 1px solid #e4e9ee;
        border-bottom: 1px solid #e4e9ee;
        white-space: normal;
        line-height: 1.25;
    }
    .stage-item.is-active {
        box-shadow: inset 0 -3px 0 var(--aqua);
    }
}

@media (max-width: 680px) {
    .section { padding: 78px 0; }
    h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
    h2 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
    .hero { min-height: 680px; padding-top: calc(var(--header-height) + 6px); padding-bottom: 44px; }
    .hero .eyebrow { margin-bottom: 12px; }
    .hero h1 { width: 100%; font-size: clamp(2.95rem, 13vw, 4rem); }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .button { width: 100%; }
    .hero-copy {
        width: min(100%, 460px);
        max-width: min(100%, 460px);
        padding-top: clamp(70px, 14vw, 108px);
    }
    .hero-visual,
    .system-window-image,
    .hero .system-window { min-height: 100%; }
    .hero-grid-image { width: 100%; height: 100%; object-position: 68% top; }
    .system-canvas { min-height: 340px; }
    .system-center { width: 128px; height: 128px; }
    .system-center img { width: 42px; }
    .node { width: 126px; padding: 10px; }
    .node small { display: none; }
    .node-website { left: 3%; }
    .node-leads { right: 3%; }
    .node-crm { left: 3%; }
    .node-support { right: 3%; }
    .system-footer { gap: 7px; padding-inline: 10px; }
    .system-footer span { font-size: .55rem; }
    .system-footer i { width: 7px; }
    .signal-grid { grid-template-columns: 1fr; }
    .signal-grid div { min-height: 72px; padding-inline: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
    .signal-grid div:first-child { border-left: 0; }
    .outcome-row { grid-template-columns: 42px 1fr; gap: 16px; padding: 28px 0; }
    .outcome-row:hover { padding-inline: 0; }
    .outcome-row > p { grid-column: 2; }
    .outcome-title { gap: 12px; }
    .outcome-icon { width: 38px; height: 38px; }
    .journey li { grid-template-columns: 42px 1fr; gap: 15px; padding: 18px; min-height: 100px; }
    .journey li:hover,
    .journey li.active { transform: none; }
    .why-layout { grid-template-columns: 1fr; }
    .why-feature-main { grid-column: auto; min-height: 420px; }
    .feature-mark { margin-top: 70px; }
    .comparison-column {
        min-height: 23rem;
        padding: 1.5rem;
    }

    .comparison-board {
        grid-template-columns: 1fr;
    }

    .comparison-column + .comparison-column {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .form-panel { border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .footer-brand {
        gap: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand img { width: 156px; }
    .footer-brand span {
        max-width: none;
        font-size: .98rem;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 22px 18px;
    }
    .footer-links div { padding-top: 4px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
    .container, .header-shell { width: min(var(--mobile-shell-width), var(--container)); }
    .brand img { width: 148px; }
    .hero { min-height: 620px; padding-top: calc(var(--header-height) + 2px); }
    .hero-copy { width: min(100%, 340px); max-width: min(100%, 340px); }
    .hero .system-window { min-height: 100%; }
    .hero-visual,
    .system-window-image { min-height: 100%; }
    .node { width: 110px; }
    .node strong { font-size: .7rem; }
    .system-center { width: 112px; height: 112px; }
    .system-center strong { font-size: .75rem; }
    .window-topbar { padding-inline: 14px; }
    .window-brand { font-size: .68rem; }
    .live-pill { padding: 6px; }
    .form-panel { padding: 24px 18px; }
    .owner-card { min-height: 360px; }
    .owner-card-content { padding: 20px 18px; }
    .owner-card p,
    .owner-card-points li,
    .owner-card-pop-points li { font-size: .9rem; }
    .owner-card-content {
        justify-content: flex-end;
    }
    .owner-card-pop {
        padding: 14px;
    }
    .site-footer { padding-top: 56px; }
    .footer-top { padding-bottom: 36px; }
    .footer-brand {
        align-items: stretch;
        text-align: left;
    }
    .footer-links { grid-template-columns: 1fr; }
    .footer-links div {
        gap: 10px;
        padding-top: 0;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .hero-value-card { padding-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}

/* OpenAI import: Section 02 / What we do */
.solutions {
    overflow: hidden;
}

.solutions::before {
    content: "";
    position: absolute;
    top: -20rem;
    right: -25rem;
    width: 55rem;
    aspect-ratio: 1;
    border: 1px solid rgba(0, 229, 212, 0.12);
    border-radius: 50%;
}

.solutions .section-heading {
    display: grid;
    gap: 1.5rem;
    margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.solutions .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
}

.solutions .section-heading > p {
    max-width: 35rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
}

.outcome-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.outcome-row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.25rem;
    padding: 1.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.outcome-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.06), transparent 70%);
    transform: translateX(-105%);
    transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.outcome-row:hover::before {
    transform: translateX(0);
}

.outcome-number {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
}

.outcome-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.outcome-title h3 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
}

.outcome-icon {
    display: grid;
    place-items: center;
    width: 2.1rem;
    aspect-ratio: 1;
    color: var(--ink);
    background: var(--aqua);
    border-radius: 50%;
    font-size: 0.9rem;
}

.outcome-row > p {
    position: relative;
    z-index: 1;
    grid-column: 2;
    max-width: 38rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
}

.outcome-tags {
    position: relative;
    z-index: 1;
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.outcome-tags span {
    padding: 0.28rem 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    font-size: 0.66rem;
}

/* OpenAI import: Section 03 / Meet Growth OS */
.growth-system {
    position: relative;
    background: var(--soft);
    overflow: hidden;
}

.growth-system::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 1.75rem 1.75rem;
    -webkit-mask-image: radial-gradient(circle at 90% 15%, black, transparent 35%);
    mask-image: radial-gradient(circle at 90% 15%, black, transparent 35%);
    pointer-events: none;
}

.growth-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: clamp(40px, 5vw, 84px);
    margin-bottom: 3rem;
}

.growth-intro h2 {
    max-width: 100%;
}

.growth-intro-copy {
    max-width: 100%;
}

.growth-intro-copy p {
    max-width: 100%;
    margin: 0;
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
}

.growth-intro-copy p + p {
    margin-top: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
}

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

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

.growth-stage {
    position: relative;
    z-index: 1;
    display: grid;
    border: 1px solid #d4dde6;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.stage-rail {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-bottom: 1px solid #d4dde6;
    scrollbar-width: thin;
}

.stage-item {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-right: 1px solid #e4e9ee;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.stage-item span {
    color: #a6b0ba;
    font-size: 0.6rem;
    transition: color 180ms ease;
}

.stage-item.is-active {
    color: var(--ink);
    background: rgba(0, 200, 192, 0.10);
    box-shadow: inset 0 -3px 0 var(--aqua);
}

.stage-item.is-active span {
    color: rgba(7, 16, 29, 0.58);
}

.stage-display {
    min-width: 0;
}

.stage-display-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--muted);
    border-bottom: 1px solid #e4e9ee;
    font-size: 0.6rem;
}

.stage-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #5d646d;
}

.stage-status i {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 0.2rem rgba(0, 200, 192, 0.12);
}

.stage-canvas {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: stretch;
    min-height: clamp(480px, 48vw, 700px);
}

.stage-copy-panel {
    padding: clamp(2rem, 5vw, 4rem);
}

.stage-label {
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stage-copy-panel h3 {
    margin: 0.55rem 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.stage-copy-panel p {
    max-width: 31rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.stage-copy-panel ul {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.stage-copy-panel li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}

.stage-copy-panel li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.08);
}

.stage-interface {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.stage-interface::before {
    content: none;
}

.interface-window {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
}

.stage-interface:hover .interface-window {
    transform: none;
}

.interface-bar {
    display: none;
}

.interface-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    background: transparent;
}

.stage-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: contain;
    object-position: center;
}

.stage-mobile-nav {
    display: none;
}

@media (max-width: 41.99rem) {
    .growth-intro {
        display: block;
        margin-bottom: 2rem;
    }

    .growth-intro .section-kicker {
        display: block;
        margin-bottom: 1rem;
    }

    .growth-intro h2 {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1.25rem;
        font-size: clamp(3rem, 14vw, 4.8rem);
        line-height: 0.94;
    }

    .section-heading h2,
    .split-heading h2,
    .faq-intro h2,
    .contact-copy h2 {
        width: 100%;
        max-width: 100%;
    }

    .growth-intro-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .stage-rail {
        display: none;
    }

    .stage-display-top {
        flex-wrap: wrap;
        padding: 0.8rem 1rem;
        gap: 0.5rem 1rem;
    }

    .stage-display-top > span:first-child {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .stage-canvas {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .stage-interface {
        order: 1;
        min-height: 260px;
    }

    .stage-mobile-nav {
        order: 2;
        display: grid;
        grid-template-columns: 3rem minmax(0, 1fr) 3rem;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
        border-top: 1px solid #e4e9ee;
        border-bottom: 1px solid #e4e9ee;
        background: #f7f9fb;
    }

    .stage-mobile-current {
        min-width: 0;
        text-align: center;
    }

    .stage-mobile-current span {
        display: block;
        color: var(--blue);
        font-family: var(--font-display);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .stage-mobile-current strong {
        display: block;
        margin-top: 0.3rem;
        color: var(--ink);
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .stage-mobile-arrow {
        appearance: none;
        -webkit-appearance: none;
        width: 3rem;
        height: 3rem;
        padding: 0;
        color: var(--ink);
        background: var(--white);
        border: 1px solid #d4dde6;
        border-radius: 999px;
        font-size: 1rem;
        line-height: 1;
        cursor: pointer;
    }

    .stage-copy-panel {
        order: 3;
        padding: 1.35rem 1rem 1.5rem;
    }

    .stage-copy-panel h3 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .stage-copy-panel p {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .stage-copy-panel ul {
        gap: 0.65rem;
        margin-top: 1.15rem;
    }

    .stage-interface {
        min-height: 260px;
    }

    .stage-image,
    .interface-screen {
        min-height: 260px;
    }
}

@media (min-width: 42rem) {
    .outcome-row {
        grid-template-columns: 2rem minmax(11rem, 0.7fr) 1fr;
        align-items: center;
        gap: 1.5rem;
    }

    .outcome-row > p {
        grid-column: 3;
    }

    .outcome-tags {
        grid-column: 3;
    }

    .stage-canvas {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .stage-interface {
        min-height: 0;
    }

    .interface-screen,
    .stage-image {
        min-height: 0;
    }

    .process-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .process-track li {
        min-height: 0;
    }

    .process-index i {
        display: none;
    }

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

    .comparison-column + .comparison-column {
        border-top: 0;
    }
}

@media (min-width: 64rem) {
    .solutions .section-heading {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: end;
        gap: 5rem;
    }

    .solutions .section-heading > p {
        justify-self: end;
    }

    .growth-intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1.25rem;
    }

    .process-track {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .process-track li {
        display: block;
        min-height: 21rem;
        padding: 0 1.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .process-track li:first-child {
        padding-left: 0;
    }

    .process-track li:last-child {
        border-right: 0;
    }

    .process-index {
        justify-content: flex-start;
        margin-top: -1.3rem;
    }

    .process-content {
        padding-top: 2.5rem;
    }

    .comparison-layout {
        grid-template-columns: 0.75fr 1.25fr;
        align-items: center;
        gap: 5rem;
    }

    .outcome-row {
        grid-template-columns: 3rem minmax(14rem, 0.65fr) minmax(25rem, 1fr) minmax(15rem, 0.6fr);
        gap: 2rem;
        padding: 2rem 0;
    }

    .outcome-row > p,
    .outcome-tags {
        grid-column: auto;
    }

    .outcome-tags {
        justify-content: flex-end;
    }

    .growth-stage {
        grid-template-columns: 1fr;
        min-height: 44rem;
    }

    .stage-rail {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        overflow: hidden;
    }

    .stage-item {
        min-width: 0;
        justify-content: center;
        min-height: 2.75rem;
        padding: 0.7rem 0.75rem;
        white-space: nowrap;
    }

    .stage-display {
        display: grid;
    }

    .stage-canvas {
        height: 100%;
    }
}

@media (min-width: 64rem) and (hover: hover) and (pointer: fine) {
    .stage-item:hover {
        color: var(--ink);
        background: rgba(0, 200, 192, 0.06);
    }

    .stage-item:hover span {
        color: rgba(7, 16, 29, 0.48);
    }

    .stage-item.is-active:hover {
        background: rgba(0, 200, 192, 0.16);
    }
}

/* Section 02 hard override: keep openai layout without disturbing sections 03/06 */
.solutions.section-dark {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.06), transparent 24rem),
        linear-gradient(180deg, #171717 0%, #101010 100%);
}

.solutions.section-dark .section-heading.section-heading-light {
    display: grid;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.solutions.section-dark .section-heading.section-heading-light h2 {
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.solutions.section-dark .section-heading.section-heading-light > p {
    max-width: 35rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
}

.solutions.section-dark .section-heading-copy {
    display: grid;
    gap: 1rem;
    max-width: 35rem;
}

.solutions.section-dark .section-heading-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
}

.solutions.section-dark .outcome-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.solutions.section-dark .outcome-row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.25rem;
    align-items: start;
    min-height: 0;
    padding: 1.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    overflow: hidden;
}

.solutions.section-dark .outcome-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.06), transparent 70%);
    transform: translateX(-105%);
    transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.solutions.section-dark .outcome-row:hover::before {
    transform: translateX(0);
}

.solutions.section-dark .outcome-number,
.solutions.section-dark .outcome-title,
.solutions.section-dark .outcome-row > p,
.solutions.section-dark .outcome-tags {
    position: relative;
    z-index: 1;
}

.solutions.section-dark .outcome-number {
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
}

.solutions.section-dark .outcome-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.solutions.section-dark .outcome-title h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
}

.solutions.section-dark .outcome-icon {
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--aqua);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
}

.solutions.section-dark .outcome-row > p {
    grid-column: 2;
    max-width: 38rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
}

.solutions.section-dark .outcome-tags {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.solutions.section-dark .outcome-tags span {
    padding: 0.28rem 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    font-size: 0.66rem;
}

@media (min-width: 960px) {
    .solutions.section-dark .section-heading.section-heading-light {
        grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
        gap: 3rem;
    }

    .solutions.section-dark .section-heading-copy {
        justify-self: end;
    }

    .solutions.section-dark .outcome-row {
        grid-template-columns: 3rem minmax(14rem, 0.65fr) minmax(25rem, 1fr) minmax(15rem, 0.6fr);
        gap: 2rem;
        align-items: center;
        padding: 2rem 0;
    }

    .solutions.section-dark .outcome-row > p,
    .solutions.section-dark .outcome-tags {
        grid-column: auto;
    }

    .solutions.section-dark .outcome-tags {
        justify-content: flex-end;
    }
}

@media (max-width: 680px) {
    .hero-grid > *,
    .contact-grid > * {
        min-width: 0;
    }

    .hero-copy,
    .hero-visual,
    .contact-copy,
    .form-panel,
    .system-window {
        width: 100%;
        max-width: 100%;
    }

    .hero h1,
    .contact h2,
    .form-heading strong,
    .node strong {
        overflow-wrap: anywhere;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 12vw, 3.9rem);
    }

    .hero-lede,
    .contact-copy > p {
        font-size: 1rem;
    }

    .button-ghost {
        white-space: normal;
    }

    .contact-points span {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
    }

    .form-heading strong {
        font-size: clamp(1.45rem, 7vw, 2.2rem);
    }

    .form-panel {
        padding: 24px 16px;
    }

    .system-window {
        min-height: 390px;
        border-radius: 18px;
    }

    .system-canvas {
        min-height: 285px;
    }

    .window-topbar,
    .system-footer {
        padding-inline: 12px;
    }

    .window-brand {
        min-width: 0;
        font-size: 0.62rem;
    }

    .live-pill {
        padding: 5px 7px;
        font-size: 0.58rem;
    }

    .system-center {
        width: 104px;
        height: 104px;
    }

    .system-center span {
        font-size: 0.56rem;
    }

    .system-center strong {
        font-size: 0.7rem;
    }

    .node {
        width: clamp(84px, 28vw, 106px);
        padding: 9px 8px;
        border-radius: 10px;
    }

    .node span {
        margin-bottom: 5px;
        font-size: 0.55rem;
    }

    .node strong {
        font-size: 0.68rem;
        line-height: 1.18;
    }

    .node small {
        display: none;
    }

    .node-website,
    .node-crm {
        left: 1.5%;
    }

    .node-leads,
    .node-support {
        right: 1.5%;
    }

    .node-website,
    .node-leads {
        top: 7%;
    }

    .node-crm,
    .node-support {
        bottom: 6%;
    }

    .system-footer span {
        font-size: 0.52rem;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    .contact h2 {
        font-size: clamp(1.95rem, 10vw, 3rem);
    }

    .hero-copy,
    .contact-copy,
    .form-panel {
        width: min(100%, var(--mobile-inner-width));
        margin-inline: auto;
    }

    .system-window {
        min-height: 350px;
    }

    .system-canvas {
        min-height: 250px;
    }

    .window-topbar,
    .system-footer {
        height: 54px;
    }

    .node {
        width: clamp(76px, 27vw, 94px);
        padding: 8px 7px;
    }

    .node strong {
        font-size: 0.62rem;
    }
}

