/* === BUILDORA — clean, light, in-flow scroll === */

:root {
    --bg: #f5f4ef;
    --bg-elev: #ffffff;
    --ink: #0d0e0f;
    --ink-dim: #585c63;
    --ink-mute: #a5a8ad;
    --grid: rgba(0, 0, 0, 0.04);
    --line: rgba(0, 0, 0, 0.08);
    --line-strong: rgba(0, 0, 0, 0.16);
    --neon: #22c700;
    --neon-bright: #2cff05;
    --neon-soft: rgba(34, 199, 0, 0.4);
    --neon-glow: rgba(34, 199, 0, 0.12);
    --page-gutter: clamp(20px, 4vw, 36px);
    --page-max: 1280px;
    --content-max: 1100px;

    /* Typography scale — Services page is the reference */
    --fs-section-h2:  clamp(32px, 4vw, 56px);    /* all section h2s */
    --fs-section-cta: clamp(32px, 3.6vw, 52px);  /* CTA / compact h2s */
    --fs-intro:       clamp(17px, 1.5vw, 21px);  /* lead / intro paragraphs */

    --space-hero-top:     clamp(130px, 14vw, 170px);
    --space-section-v:    clamp(80px, 10vw, 120px);
    --space-section-v-sm: clamp(56px, 7vw, 80px);

    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --radius-pill: 999px;

    --font-display:
        "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* === Layout utility — 1100px centred content column === */
.content-wrap {
    max-width: var(--content-max);
    margin-inline: auto;
    width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.55;
    font-feature-settings: "ss01", "ss02";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
html {
    overflow-x: clip;
}
body {
    overflow-x: clip;
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* When the module-stack section is the active one, deepen the surrounding bg
   so the white cards pop. Cards have their own white background. */
body.is-dark-bg {
    background-color: #1b1a17;
}

body {
    position: relative;
    min-height: 100vh;
}

/* === Atmosphere — subtle purple ambient gradient === */
.bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* spans the whole document (body is position:relative) and scrolls with
     content, so the purple flows continuously from the hero down to the dark
     band with no seam — concentrated up top, easing to a faint wash below */
    background:
    /* edge-biased asymmetric radial blobs — middle of viewport stays light,
       edges carry the purple, random offsets give it an organic feel */
        radial-gradient(
            720px 500px at -6% 80px,
            rgba(138, 0, 196, 0.11) 0%,
            rgba(138, 0, 196, 0) 65%
        ),
        radial-gradient(
            820px 560px at 106% 220px,
            rgba(138, 0, 196, 0.12) 0%,
            rgba(138, 0, 196, 0) 65%
        ),
        radial-gradient(
            640px 460px at -8% 760px,
            rgba(138, 0, 196, 0.09) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        radial-gradient(
            740px 520px at 109% 980px,
            rgba(138, 0, 196, 0.1) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        radial-gradient(
            700px 480px at -5% 1480px,
            rgba(138, 0, 196, 0.06) 0%,
            rgba(138, 0, 196, 0) 55%
        ),
        radial-gradient(
            760px 520px at 105% 1740px,
            rgba(138, 0, 196, 0.055) 0%,
            rgba(138, 0, 196, 0) 55%
        ),
        /* reviews/testimonials section (~y 3879) — edges glow */
        radial-gradient(
                820px 580px at -6% 3960px,
                rgba(138, 0, 196, 0.105) 0%,
                rgba(138, 0, 196, 0) 60%
            ),
        radial-gradient(
            880px 600px at 107% 4180px,
            rgba(138, 0, 196, 0.115) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        radial-gradient(
            420px 320px at 38% 4360px,
            rgba(138, 0, 196, 0.035) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        /* footer start (~y 4959) — edges glow, slightly stronger to anchor base */
        radial-gradient(
                900px 620px at -8% 5020px,
                rgba(138, 0, 196, 0.11) 0%,
                rgba(138, 0, 196, 0) 60%
            ),
        radial-gradient(
            940px 640px at 108% 5260px,
            rgba(138, 0, 196, 0.12) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        radial-gradient(
            520px 380px at 70% 5560px,
            rgba(138, 0, 196, 0.045) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        /* a couple of small off-center blobs for randomness */
        radial-gradient(
                360px 280px at 24% 440px,
                rgba(138, 0, 196, 0.045) 0%,
                rgba(138, 0, 196, 0) 60%
            ),
        radial-gradient(
            420px 320px at 82% 1180px,
            rgba(138, 0, 196, 0.035) 0%,
            rgba(138, 0, 196, 0) 60%
        ),
        /* very faint base so deep-page light sections aren't completely flat */
        linear-gradient(
                180deg,
                rgba(138, 0, 196, 0.01) 0%,
                rgba(138, 0, 196, 0.012) 100%
            );
    z-index: 0;
}

/* === White hexagonal honeycomb overlay ===
   Real sibling div (.bg-hex) that sits above .bg-grid's purple gradient.
   The stroke is pure white, so the lines are invisible against the white
   page background and only become visible where the purple gradient tints
   the page — making them "pop" in the gradient zones and fade to almost
   nothing in the light middle areas. True pointy-top honeycomb: side=20,
   tile = sqrt(3)*20 ≈ 34.641 wide × 60 tall. */
.bg-hex {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    /* Larger hex (side=60), so tile is sqrt(3)*60 ≈ 103.923 × 180.
     Thinner stroke + reduced opacity keeps the lines almost invisible
     on white and lets them whisper only where the purple gradient
     tints the page. */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='103.923' height='180' viewBox='0 0 103.923 180'><g fill='none' stroke='%23ffffff' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round'><path d='M51.962 0 L103.923 30 L103.923 90 L51.962 120 L0 90 L0 30 Z'/><path d='M51.962 120 L51.962 180'/></g></svg>");
    background-repeat: repeat;
    background-size: 103.923px 180px;
    opacity: 0.55;
}

/* === Top header bar — floating dark capsule === */
.topbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(1280px, calc(100vw - 36px));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #f5f4ef;
    background: #0d0e0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow:
        0 22px 50px -22px rgba(0, 0, 0, 0.55),
        0 6px 18px -8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}
.topbar.is-scrolled {
    background: #0d0e0f;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 26px 60px -22px rgba(0, 0, 0, 0.65),
        0 8px 22px -8px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Brand block — left column */
.topbar .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 4px;
    justify-self: start;
    letter-spacing: 0;
}
.topbar .brand-icon {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
}

/* Logo color variants: show white by default, swap to black when body.use-black-logo */
.topbar .brand .logo--black {
    display: none;
}
body.use-black-logo .topbar .brand .logo--black {
    display: block;
}
body.use-black-logo .topbar .brand .logo--white {
    display: none;
}
/* Force black logo for current version */
.topbar .brand .logo--white {
    display: none !important;
}
.topbar .brand .logo--black {
    display: block !important;
}
/* recolor the SVG knockouts to match the dark bar */
.topbar .brand-icon path[fill="#0d0e0f"] {
    fill: #ffffff;
}
.topbar .brand-icon path[fill="#f5f4ef"] {
    fill: #0d0e0f;
}
.topbar .brand-wordmark {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: none;
    line-height: 1;
    position: relative;
    white-space: nowrap;
}
.topbar .brand-wordmark .bw-i {
    position: relative;
    display: inline-block;
}
.topbar .brand-wordmark .bw-i::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 1.5px #0d0e0f;
}

/* Nav links — center column, plain row with vertical dividers */
.topnav {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    min-width: 0;
}
.topnav-item {
    display: inline-flex;
    align-items: center;
}
/* divider between adjacent items */
.topnav > * + *::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.14);
    margin: 0;
    align-self: center;
    flex-shrink: 0;
}
.topnav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: 10px;
    transition:
        background 0.22s ease,
        color 0.22s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.topnav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.topnav-link--menu .topnav-caret {
    width: 10px;
    height: 6px;
    opacity: 0.85;
    transition: transform 0.22s ease;
}
.topnav-item--has-menu:hover .topnav-link--menu,
.topnav-item--has-menu:focus-within .topnav-link--menu {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.topnav-item--has-menu:hover .topnav-caret,
.topnav-item--has-menu:focus-within .topnav-caret {
    transform: rotate(180deg);
}

/* CTA — right column, inside the bar as a white pill */
.topbar-cta {
    justify-self: end;
}
.topbar-cta .btn--sm {
    background: #ffffff;
    color: #0d0e0f;
    border-color: #ffffff;
    border-radius: 10px;
    padding: 11px 16px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}
.topbar-cta .btn--sm .dot {
    display: none;
}
.topbar-cta .btn--sm:hover {
    background: var(--neon);
    color: #0d0e0f;
    border-color: var(--neon);
}
.topbar-cta .btn--sm .arrow {
    width: auto;
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

/* === Megamenu (hover panel under What we Do) === */
.megamenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: 340px;
    background: #0d0e0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow:
        0 20px 50px -12px rgba(0, 0, 0, 0.55),
        0 4px 14px -4px rgba(0, 0, 0, 0.3);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
    z-index: 60;
}
.megamenu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 16px;
}

.topnav-item--has-menu:hover .megamenu,
.topnav-item--has-menu:focus-within .megamenu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mm-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition:
        background 0.18s ease,
        color 0.18s ease;
}
.mm-row + .mm-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
}
.mm-row:first-child {
    border-radius: 12px 12px 0 0;
}
.mm-row:last-child {
    border-radius: 0 0 12px 12px;
}
.mm-row:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}
.mm-row-num {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.2em;
    color: var(--neon);
    flex-shrink: 0;
    width: 18px;
}
.mm-row-title {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    flex: 1;
}
.mm-row-title em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
}
.mm-row-arrow {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
    transition:
        color 0.18s ease,
        transform 0.18s ease;
    flex-shrink: 0;
}
.mm-row:hover .mm-row-arrow {
    color: var(--neon);
    transform: translateX(3px);
}

/* CTA — right column */
.topbar-cta {
    justify-self: end;
}
.btn--sm {
    padding: 11px 18px 11px 20px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    white-space: nowrap;
}
.btn--sm .dot {
    width: 5px;
    height: 5px;
}
.btn--sm .arrow {
    width: 14px;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

/* === Bottom HUD readout === */
.hud {
    position: fixed;
    bottom: 24px;
    left: 36px;
    right: 36px;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--ink-mute);
    text-transform: uppercase;
    pointer-events: none;
}
.hud .hud-block {
    display: flex;
    gap: 18px;
    align-items: center;
}
.hud .scene-name {
    color: var(--ink);
    letter-spacing: 0.28em;
}
.hud .tick {
    color: var(--neon);
}

/* === Right rail / section index === */
.rail {
    position: fixed;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.rail .rail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}
.rail .rail-dot {
    width: 6px;
    height: 6px;
    border: 1px solid var(--ink-mute);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.rail .rail-item.is-active {
    color: var(--ink);
}
.rail .rail-item.is-active .rail-dot {
    background: var(--neon);
    border-color: var(--neon);
}

/* === Page shell — every section is a normal in-flow block === */
.page {
    position: relative;
    z-index: 2;
}

.page-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px var(--page-gutter) 80px;
}

/* === CTA buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px 16px 26px;
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: var(--radius-pill);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
}
.btn:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.btn .arrow {
    display: inline-block;
    width: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}
.btn:hover .arrow {
    transform: translateX(4px);
}
.btn .dot {
    display: none;
}
.btn--primary {
    background: var(--neon);
    color: #fff;
    border-color: var(--neon);
}
.btn--primary:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.btn--primary .dot {
    background: #fff;
}

/* === CLIENTS strip === */
.page-clients {
    padding: 80px var(--page-gutter) 60px;
    background: transparent;
}
.clients-wrap {
    max-width: var(--page-max);
    margin: 0 auto;
    text-align: center;
}
.clients-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 36px;
}
.client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}
.client-grid image-slot {
    width: 100%;
    height: 92px;
    display: block;
}

/* === Scallop divider ===
   A tileable SVG hump pattern in --ink that sits between the clients strip
   and the dark accent band. `--down` faces humps DOWN into the dark band
   (placed ABOVE the band). `--up` faces humps UP into the next light section
   (placed BELOW the band). */
.scallop {
    height: 110px;
    /* transparent so the page gradient shows through the area above the wave
     humps — the SVG only paints the dark hump silhouette at the bottom */
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'><path d='M0,55 C199,55 161,15 360,15 C559,15 521,55 720,55 C919,55 881,95 1080,95 C1279,95 1241,55 1440,55 L1440,110 L0,110 Z' fill='%230d0e0f'/></svg>");
    background-repeat: repeat-x;
    background-size: 1440px 110px;
    background-position: bottom center;
    position: relative;
    z-index: 5;
}
.scallop--down {
    /* Sits directly above the dark band — humps point UP into the light clients area */
    margin-bottom: -2px;
}
.scallop--up {
    /* Sits directly below the dark band — humps point DOWN into the eco area */
    transform: scaleY(-1);
    margin-top: -2px;
}

/* === Dark accent band === */
.dark-band {
    background: var(--ink);
    color: var(--bg);
    padding: 72px var(--page-gutter) 72px;
    position: relative;
}
.dark-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.dark-band-tagline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5.2vw, 68px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--bg);
    text-wrap: balance;
}
.dark-band-tagline em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon-bright);
    font-weight: 400;
}

@media (max-width: 900px) {
    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .client-grid image-slot {
        height: 72px;
    }
    .dark-band {
        padding: 56px 22px;
    }
    .scallop {
        height: 70px;
        background-size: 720px 70px;
    }
}
@media (max-width: 560px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* === HERO === */
.page-hero .hero-text {
    text-align: center;
    width: 100%;
    max-width: 1100px;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 7vw, 108px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    text-wrap: balance;
    color: var(--ink);
}
.page-hero h1 em {
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
    font-family: "Instrument Serif", "Times New Roman", serif;
    letter-spacing: -0.02em;
}
.page-hero .hero-sub {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--ink-dim);
    letter-spacing: 0.01em;
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.5;
}
.page-hero .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Reusable section eyebrow === */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 14px 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    margin-bottom: 28px;
}
.section-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    animation: pulse 2.2s ease-in-out infinite;
}

/* === HERO eyebrow extras === */
.page-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 14px 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    margin-bottom: 36px;
}
.page-hero .hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    animation: pulse 2.2s ease-in-out infinite;
}
.page-hero h1 em + br + em,
.page-hero h1 em {
    font-family: "Instrument Serif", serif;
}

.dark-band-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 24px;
}

/* === PROBLEM === */
.page-problem {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 120px;
}
.page-problem .problem-wrap {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.problem-head {
    text-align: center;
    margin-bottom: 56px;
}
.problem-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-section-h2);
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 680px;
    margin: 0 auto 20px;
    text-wrap: balance;
}
.problem-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.problem-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
}

.problem-flow {
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.pf-node {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    position: relative;
}
.pf-node .pf-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--neon);
    font-weight: 500;
}
.pf-node .pf-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.pf-node .pf-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    text-align: right;
}
.pf-node.pf-start {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.pf-node.pf-start .pf-label {
    color: var(--bg);
}
.pf-node.pf-start .pf-num {
    color: var(--neon-bright);
}
.pf-node.pf-result {
    border: 1px dashed rgba(220, 38, 38, 0.45);
    background: rgba(220, 38, 38, 0.05);
}
.pf-node.pf-result .pf-num {
    color: #dc2626;
    font-size: 16px;
}
.pf-node.pf-result .pf-label {
    color: #dc2626;
}

.pf-arrow {
    align-self: center;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-mute);
    padding: 8px 0;
    line-height: 1;
}

/* === MODULES (new 4-grid) === */
.page-modules {
    flex-direction: column;
    padding-top: 96px;
    padding-bottom: 96px;
}
.page-modules .modules-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.modules-head {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modules-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-section-h2);
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 680px;
    margin: 0 auto 20px;
    text-wrap: balance;
}
.modules-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
}
.modules-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.mod-cell {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 32px 28px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--ink);
    position: relative;
    min-height: 320px;
    transition:
        border-color 0.25s ease,
        transform 0.3s cubic-bezier(0.2, 0, 0.2, 1),
        box-shadow 0.3s ease;
}
.mod-cell:hover {
    border-color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.18);
}
.mod-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.mod-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--neon);
    font-weight: 500;
}
.mod-layer {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.mod-cell h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: balance;
    margin-top: 6px;
}
.mod-cell h3 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
}
.mod-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.mod-desc {
    font-family: var(--font-display);
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-dim);
    flex: 1;
    text-wrap: pretty;
}
.mod-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.mod-cta .arrow {
    transition: transform 0.25s ease;
}
.mod-cell:hover .mod-cta .arrow {
    transform: translateX(4px);
    color: var(--neon);
}
.mod-cell:hover .mod-cta {
    color: var(--neon);
}

.modules-result {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
}
.modules-result .mr-arrow {
    color: var(--neon);
    font-size: 18px;
}
.modules-result .mr-label em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    margin-left: 6px;
}

/* === HOW BUILDORA WORKS === */
.page-how {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 120px;
}
.page-how .how-wrap {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-head {
    text-align: center;
    margin-bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-section-h2);
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 680px;
    margin: 0 auto 20px;
    text-wrap: balance;
}
.how-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.how-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

.how-steps {
    list-style: none;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
}
.how-step {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 28px;
    align-items: stretch;
}
.hs-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}
.hs-num {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--ink);
    background: var(--bg-elev);
    font-weight: 500;
}
.hs-line {
    width: 1px;
    flex: 1;
    background: var(--line);
    min-height: 40px;
}
.hs-line--end {
    background: transparent;
}
.hs-body {
    padding: 4px 0 56px;
}
.hs-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--neon);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hs-body h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 34px);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 18px;
    text-wrap: balance;
}
.hs-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 24px;
    margin-bottom: 22px;
}
.hs-list li {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 0;
    border-top: 1px solid var(--line);
    position: relative;
    padding-left: 18px;
}
.hs-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 1px;
    background: var(--neon);
}
.hs-outcome {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--ink);
    line-height: 1.4;
}
.hs-outcome span {
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--neon);
    text-transform: uppercase;
}
.how-step:last-child .hs-body {
    padding-bottom: 0;
}

/* === TESTIMONIALS === */
.page-testimonials {
    flex-direction: column;
    padding-top: 96px;
    padding-bottom: 96px;
}
.page-testimonials .t-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.t-head {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.t-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-section-h2);
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 680px;
    margin: 0 auto;
    text-wrap: balance;
}
.t-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.t-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.t-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 32px 32px 28px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
    transition: border-color 0.25s ease;
}
.t-card:hover {
    border-color: var(--ink);
}
.t-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--neon);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.t-quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
    color: var(--ink);
    letter-spacing: -0.005em;
    text-wrap: pretty;
    flex: 1;
}
.t-quote::before {
    content: "“";
    color: var(--neon);
    margin-right: 2px;
}
.t-quote::after {
    content: "”";
    color: var(--neon);
    margin-left: 2px;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.t-author-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--ink);
}

/* === ACTIVATION === */
.page-activate {
    flex-direction: column;
}
.page-activate .act-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-activate h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(44px, 7vw, 96px);
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 28px;
    max-width: 1100px;
    text-wrap: balance;
}
.page-activate h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.page-activate .act-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 500px;
    line-height: 1.55;
    margin-bottom: 44px;
}
.page-activate .act-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Footer === */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.65);
    padding: 96px var(--page-gutter) 32px;
    font-family: var(--font-mono);
    position: relative;
    z-index: 10;
}
.site-footer-inner {
    max-width: var(--page-max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.footer-brand-block {
    max-width: 560px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bg);
    letter-spacing: 0.32em;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 32px;
    font-family: var(--font-mono);
}
.footer-brand-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-bright);
    border-radius: 50%;
    animation: pulse 2.2s ease-in-out infinite;
}
.footer-tagline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 76px);
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--bg);
    margin-bottom: 28px;
    text-wrap: balance;
}
.footer-tagline em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon-bright);
}
.footer-email {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 4px;
    margin-bottom: 32px;
    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}
.footer-email:hover {
    color: var(--neon-bright);
    border-color: var(--neon-bright);
}
.footer-cta {
    margin-top: 4px;
}
.footer-cta .btn--primary {
    background: var(--neon-bright);
    border-color: var(--neon-bright);
    color: var(--ink);
}
.footer-cta .btn--primary:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-nav-col h6 {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--bg);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-nav-col a {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 7px 0;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}
.footer-nav-col a:hover {
    color: var(--bg);
    transform: translateX(3px);
}

/* Big wordmark fills width — soft ghost text */
.footer-wordmark {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(80px, 19vw, 320px);
    letter-spacing: -0.045em;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.06);
    text-align: center;
    margin: 16px 0 40px;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}
.footer-wordmark .footer-o-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.56em;
    height: 0.56em;
    margin: 0 -0.02em 0 0.02em;
    vertical-align: 0.03em;
    overflow: visible;
}
.footer-wordmark .footer-o-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.06;
    transform: translateY(-0.03em) scale(1.95);
    transform-origin: center center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.22s ease;
}
.footer-bottom a:hover {
    color: var(--bg);
}
.footer-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-bright);
    animation: pulse 2.2s ease-in-out infinite;
}

@media (max-width: 900px) {
    .site-footer {
        padding: 64px var(--page-gutter) 28px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 56px;
        margin-bottom: 56px;
    }
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-wordmark {
        font-size: clamp(56px, 22vw, 140px);
        margin: 8px 0 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
@media (max-width: 560px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* === Mobile === */
@media (max-width: 1100px) {
    .topbar {
        padding: 7px 7px 7px 16px;
        gap: 8px;
    }
    .topnav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    .topnav > * + *::before {
        margin: 0;
        height: 18px;
    }
    .topbar-cta .btn--sm {
        padding: 10px 14px;
        font-size: 13px;
    }
    .topbar .brand-wordmark {
        font-size: 20px;
    }
    .topbar .brand-icon {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 900px) {
    .topbar {
        grid-template-columns: 1fr auto;
        padding: 12px 16px;
    }
    .topnav {
        display: none;
    }
    .topbar-cta {
        justify-self: end;
    }
    .btn--sm {
        padding: 9px 14px;
        font-size: 9.5px;
    }
    .hud {
        left: 18px;
        right: 18px;
    }
    .rail {
        display: none;
    }
    .modules-grid {
        grid-template-columns: 1fr;
    }
    .t-grid {
        grid-template-columns: 1fr;
    }
    .how-step {
        grid-template-columns: 56px 1fr;
        gap: 18px;
    }
    .hs-num {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
    .pf-node {
        grid-template-columns: 40px 1fr;
    }
    .pf-node .pf-tag {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 58px;
        margin-top: -4px;
    }
    .problem-flow {
        max-width: 100%;
    }
}

/* ===========================================
 * MODULE SUBPAGE STYLES
 * =========================================== */
.module-main {
    position: relative;
    z-index: 2;
    padding: var(--space-hero-top) var(--page-gutter) 0;
}
.module-hero {
    max-width: 1100px;
    margin: 0 auto 48px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-decoration: none;
    padding: 8px 14px 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    margin-bottom: 40px;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}
.back-link:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.back-link .arrow {
    display: inline-block;
}

.module-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.module-meta .module-num {
    color: var(--neon);
    font-weight: 500;
}
.module-meta .module-divider {
    width: 36px;
    height: 1px;
    background: var(--line-strong);
}
.module-meta .module-layer {
    color: var(--ink);
}

.module-hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(56px, 8.6vw, 140px);
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 32px;
    text-wrap: balance;
    color: var(--ink);
    max-width: 14ch;
}
.module-hero h1 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
}
.module-hero .module-tag {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 32px;
}
.module-hero .module-intro {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.45;
    color: var(--ink);
    max-width: 720px;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.module-section {
    max-width: 1100px;
    margin: 0 auto 96px;
    padding-top: clamp(80px, 10vw, 140px);
}
.module-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}
.module-section-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.02;
    color: var(--ink);
    max-width: 600px;
    text-wrap: balance;
}
.module-section-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.module-section-head .section-eyebrow {
    margin-bottom: 0;
}

.incl-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.incl-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px 32px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    min-height: 280px;
    transition: border-color 0.25s ease;
}
.incl-card:hover {
    border-color: var(--ink);
}
.incl-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--neon);
    font-weight: 500;
}
.incl-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.incl-card p {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-dim);
    text-wrap: pretty;
}

/* Sub-item list inside incl-card */
.incl-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}
.incl-list li {
    font-family: var(--font-display);
    font-size: 13.5px;
    color: var(--ink-mute);
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.incl-list li:first-child {
    border-top: 1px solid var(--line);
}

/* "Feel" pills in service CTA */
.brand-feels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 44px;
}
.brand-feel {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink);
    padding: 10px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    letter-spacing: -0.01em;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

/* Active megamenu row highlight */
.mm-row--active {
    background: rgba(34, 199, 0, 0.04);
}
.mm-row--active .mm-row-num {
    color: var(--neon);
}

.process-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    counter-reset: pstep;
}
.process-list li {
    padding: 22px 20px 26px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.process-list li::before {
    counter-increment: pstep;
    content: "0" counter(pstep);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--neon);
    font-weight: 500;
}
.process-list li h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ink);
}
.process-list li p {
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-dim);
}

.other-mods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.other-mod {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px 24px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--ink);
    min-height: 200px;
    transition:
        border-color 0.25s ease,
        transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}
.other-mod:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.other-mod .om-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.other-mod .om-num {
    color: var(--neon);
    font-weight: 500;
}
.other-mod .om-layer {
    color: var(--ink-mute);
}
.other-mod h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    margin-top: auto;
    flex: 1;
    display: flex;
    align-items: flex-end;
}
.other-mod .om-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.other-mod:hover .om-cta {
    color: var(--neon);
}

/* =====================================================
 * Service page image layouts
 * ===================================================== */

/* Tighter typography for service page hero */
.svc-hero-split h1 {
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.08;
    margin-bottom: 20px;
}
.svc-hero-split .module-intro {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: var(--ink-dim);
}

/* Hero split — text left, tall image right */
.svc-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(280px, 34vw, 440px);
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
    min-height: calc(100vh - 260px);
}
.svc-hero-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.svc-hero-visual {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 100%;
}
.svc-hero-visual image-slot {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
}

/* Wide feature band */
.svc-feature-band {
    max-width: 1100px;
    margin: 0 auto 96px;
}
.svc-feature-inner {
    width: 100%;
}
.svc-feature-inner image-slot {
    display: block;
    width: 100%;
    height: 440px;
}

/* Editorial 3-image grid */
.svc-img-grid {
    max-width: 1100px;
    margin: 0 auto 80px;
}
.svc-img-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.svc-img-main image-slot {
    display: block;
    width: 100%;
    height: 520px;
}
.svc-img-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.svc-img-stack image-slot {
    display: block;
    width: 100%;
    height: 248px;
}

/* Responsive */
/* Tablet — keep two columns but proportionally reduce right card */
@media (max-width: 1024px) {
    .svc-hero-split {
        grid-template-columns: minmax(0, 1fr) clamp(220px, 32vw, 360px);
        gap: clamp(28px, 3.5vw, 48px);
        min-height: unset;
    }
    .svc-hero-visual {
        top: 88px;
    }
}

/* Mobile — stack vertically, scale card as a unit */
@media (max-width: 760px) {
    .svc-hero-split {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: unset;
    }
    .svc-hero-visual {
        position: static;
        width: 100%;
        max-width: min(440px, 100%);
        margin-left: auto;
        margin-right: auto;
    }
    .svc-hero-visual image-slot {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 900px) {
    .svc-feature-inner image-slot {
        height: 620px;
    }
    .svc-img-grid-inner {
        grid-template-columns: 1fr;
    }
    .svc-img-main image-slot {
        height: 720px;
    }
    .svc-img-stack {
        flex-direction: row;
    }
    .svc-img-stack image-slot {
        height: 420px;
    }
}
@media (max-width: 560px) {
    .svc-img-stack {
        flex-direction: column;
    }
    .svc-img-stack image-slot {
        height: 300px;
    }
}

.module-activate {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 0 120px;
    text-align: center;
}
.module-activate h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 3.6vw, 52px);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 24px;
    text-wrap: balance;
}
.module-activate h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.module-activate p {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.55;
}
.module-activate .ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .module-hero {
        margin-bottom: 64px;
    }
    .incl-grid {
        grid-template-columns: 1fr;
    }
    .process-list {
        grid-template-columns: 1fr 1fr;
    }
    .other-mods {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .incl-grid {
        grid-template-columns: 1fr;
    }
    .process-list {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
 * V2 REDESIGN — premium SaaS/agency aesthetic
 * Keeps existing brand vars (bg/ink/neon) + adds depth, gradients, bento
 * =========================================== */

/* Ambient gradient blobs behind everything */
.bg-blob {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.55;
    border-radius: 50%;
}
.bg-blob--1 {
    top: -10vh;
    right: -10vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(
        closest-side,
        rgba(34, 199, 0, 0.22),
        rgba(34, 199, 0, 0)
    );
    animation: blob-float 22s ease-in-out infinite;
}
.bg-blob--2 {
    bottom: -20vh;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(
        closest-side,
        rgba(255, 213, 107, 0.18),
        rgba(255, 213, 107, 0)
    );
    animation: blob-float 28s ease-in-out infinite reverse;
}
@keyframes blob-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-4vw, 3vh) scale(1.06);
    }
}

/* === Buttons: large variant + on-dark variant === */
.btn--lg {
    padding: 18px 28px 18px 30px;
    font-size: 12px;
    letter-spacing: 0.22em;
}
.btn--lg .dot {
    width: 7px;
    height: 7px;
}
.btn--on-dark {
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
}
.btn--on-dark:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.btn--primary {
    background: var(--neon);
    color: #fff;
    border-color: var(--neon);
    box-shadow:
        0 0 0 0 rgba(34, 199, 0, 0),
        0 10px 30px -10px rgba(34, 199, 0, 0.55);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}
.btn--primary:hover {
    background: #16a000;
    border-color: #16a000;
    box-shadow:
        0 0 0 6px rgba(34, 199, 0, 0.12),
        0 16px 36px -10px rgba(34, 199, 0, 0.55);
    transform: translateY(-1px);
}

/* === HERO V3 — centered, no image, clean === */
.hero-v3 {
    min-height: 100vh;
    padding: 140px var(--page-gutter) 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-v3 .hero-v3-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.hero-v3 h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--ink);
    text-wrap: balance;
    margin: 0;
}
.hero-v3 h1 em {
    font-family: "Instrument Serif", serif !important;
    font-style: italic !important;
    font-weight: 400;
    color: var(--neon);
    letter-spacing: -0.01em;
    font-size: inherit;
}

/* Typewriter — inline em that types its data-typer text, identical to other ems */
.hero-v3 h1 em.typer {
    display: inline;
    white-space: nowrap;
}
.hero-v3 h1 em.typer .typer-text {
    display: inline;
}
.hero-v3 h1 em.typer .typer-caret {
    display: inline-block;
    width: 0.08em;
    height: 0.85em;
    margin-left: 0.04em;
    background: var(--neon);
    vertical-align: -0.08em;
    animation: caret-blink 0.9s steps(1, end) infinite;
    border-radius: 1px;
}
@keyframes caret-blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
.hero-v3 h1 em.typer.is-done .typer-caret {
    display: none;
}

.hero-v3 .hero-sub {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-dim);
    letter-spacing: 0.005em;
    max-width: 680px;
    margin: 0;
    text-wrap: pretty;
}
.hero-v3 .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 720px) {
    .hero-v3 {
        padding: 120px var(--page-gutter) 80px;
    }
    .hero-v3 h1 {
        font-size: clamp(40px, 10vw, 64px);
    }
}

/* === HERO V2 (legacy, kept for reference styles) === */
.hero-v2 {
    min-height: 100vh;
    padding: 140px 36px 80px;
    align-items: center;
}
.hero-v2 .hero-grid {
    width: 100%;
    max-width: 1500px;
    max-width: var(--page-max);
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-v2 .hero-left {
    max-width: 720px;
}
.hero-v2 .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 9px 16px 9px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 36px;
}
.hero-v2 .hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px rgba(34, 199, 0, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
}
.hero-v2 .hero-eyebrow .eyebrow-sep {
    width: 1px;
    height: 10px;
    background: var(--line-strong);
}
.hero-v2 .hero-eyebrow .eyebrow-end {
    color: var(--ink);
}

.hero-v2 h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(54px, 7.2vw, 116px);
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-wrap: balance;
    margin-bottom: 32px;
}
.hero-v2 h1 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
}
.hero-v2 .hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-dim);
    max-width: 540px;
    margin-bottom: 40px;
    text-wrap: pretty;
}
.hero-v2 .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 52px;
}
.hero-v2 .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    max-width: 520px;
}
.hero-v2 .hm-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-v2 .hm-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
}
.hero-v2 .hm-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* Hero right: dashboard mockup + floats */
.hero-v2 .hero-right {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}
.hero-mock {
    position: absolute;
    inset: 8% 6% 14% 8%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow:
        0 30px 80px -30px rgba(0, 0, 0, 0.25),
        0 8px 24px -12px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transform-origin: center center;
    animation: mock-float 6s ease-in-out infinite;
}
@keyframes mock-float {
    0%,
    100% {
        transform: perspective(1200px) rotateY(-6deg) rotateX(2deg)
            translateY(0);
    }
    50% {
        transform: perspective(1200px) rotateY(-6deg) rotateX(2deg)
            translateY(-8px);
    }
}
.hm-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 244, 239, 0.6);
}
.hm-bar .hm-light {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line-strong);
}
.hm-bar .hm-light:nth-child(1) {
    background: #ff6058;
}
.hm-bar .hm-light:nth-child(2) {
    background: #ffbd2d;
}
.hm-bar .hm-light:nth-child(3) {
    background: #28c93f;
}
.hm-bar .hm-url {
    margin-left: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--ink-dim);
    flex: 1;
}
.hm-bar .hm-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px rgba(34, 199, 0, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
}
.hm-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 0;
}
.hm-panel {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    position: relative;
    overflow: hidden;
}
.hm-panel--primary {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hm-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hm-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.hm-delta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--neon);
    font-weight: 500;
}
.hm-num-big {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 36px;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1;
}
.hm-chart {
    flex: 1;
    min-height: 0;
}
.hm-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}
.hm-panel--sm {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
}
.hm-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex: 1;
    min-height: 32px;
}
.hm-bars span {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, var(--neon), rgba(34, 199, 0, 0.4));
    border-radius: 2px 2px 0 0;
}
.hm-num-mid {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
}
.hm-agent {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hm-agent-dot {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 199, 0, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
}
.hm-agent-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--ink);
    text-transform: uppercase;
}
.hm-agent-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.hm-agent-stat strong {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hm-agent-stat span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* Floating cards around hero */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 14px 40px -14px rgba(0, 0, 0, 0.2);
    font-family: var(--font-display);
    white-space: nowrap;
    z-index: 3;
}
.float-card .fc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.float-card .fc-num {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
}
.float-card .fc-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.float-card .fc-label--big {
    font-size: 10px;
    color: var(--ink);
    letter-spacing: 0.2em;
}
.float-card .fc-stars {
    color: var(--neon);
    font-size: 12px;
    letter-spacing: 1px;
}
.float-card .fc-icon {
    font-size: 18px;
}
.float-card .fc-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 5px rgba(34, 199, 0, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
}
.float-card .fc-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px rgba(34, 199, 0, 0.18);
}

.fc-1 {
    top: 6%;
    left: -2%;
    animation: fc-float 7s ease-in-out infinite;
}
.fc-2 {
    top: 18%;
    right: -4%;
    animation: fc-float 8s ease-in-out infinite 0.6s;
}
.fc-3 {
    bottom: 18%;
    left: -6%;
    animation: fc-float 9s ease-in-out infinite 1.2s;
}
.fc-4 {
    bottom: 4%;
    right: 2%;
    animation: fc-float 7.5s ease-in-out infinite 1.8s;
}

@keyframes fc-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* === CLIENTS V2 marquee === */
.clients-v2 {
    padding: 64px var(--page-gutter) 56px;
    overflow: visible;
}
.clients-v2 .clients-wrap {
    max-width: var(--page-max);
    margin: 0 auto;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px clamp(24px, 5vw, 56px) 44px;
    box-shadow:
        0 30px 60px -30px rgba(13, 14, 15, 0.18),
        0 6px 18px -12px rgba(13, 14, 15, 0.1);
}
.marquee {
    margin-top: 28px;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}
.marquee-track {
    display: flex;
    gap: 36px;
    align-items: center;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track {
    animation-play-state: paused;
}
.m-cell {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--ink);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}
.m-cell:hover {
    opacity: 1;
}
.m-dot {
    color: var(--neon);
    font-size: 8px;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* === STATS === */
.page-stats {
    padding: 96px var(--page-gutter) 96px;
    position: relative;
    z-index: 2;
}
.stats-wrap {
    max-width: var(--page-max);
    margin: 0 auto;
}
.stats-eye {
    margin-bottom: 40px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.stat-card {
    position: relative;
    padding: 36px 32px 32px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--neon), transparent);
    opacity: 0.4;
}
.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.18);
}
.stat-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 28px;
    display: inline-block;
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(64px, 6.8vw, 96px);
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
    display: inline-block;
}
.stat-suffix {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-size: clamp(40px, 4.2vw, 60px);
    margin-left: 4px;
}
.stat-label {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
    line-height: 1.5;
    max-width: 22ch;
}

/* === PROBLEM V2 (split-screen old vs new) === */
.page-problem-v2 {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* === WHY BUILDORA — interactive comparison === */
.page-why {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 130px;
    align-items: center;
}
.why-wrap {
    width: 100%;
    max-width: var(--page-max);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 56px;
}
.why-head h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 16px 0 14px;
    text-wrap: balance;
}
.why-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
    letter-spacing: -0.01em;
}
.why-sub {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink-dim);
    max-width: 620px;
    text-wrap: pretty;
    margin: 0 0 32px;
}

/* Toggle */
.why-toggle {
    position: relative;
    display: inline-flex;
    background: #0d0e0f;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.4);
    isolation: isolate;
}
.why-toggle .wt-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 11px 22px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.why-toggle .wt-btn.is-active {
    color: #0d0e0f;
}
.why-toggle .wt-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}
.why-toggle .wt-btn.is-active:hover {
    color: #0d0e0f;
}
.why-toggle .wt-pill {
    position: absolute;
    z-index: 1;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc(50% - 5px);
    background: var(--neon);
    border-radius: 999px;
    box-shadow: 0 6px 18px -6px rgba(34, 199, 0, 0.55);
    transition: transform 0.45s cubic-bezier(0.65, 0.05, 0.2, 1);
}
.why-toggle[data-state="with"] .wt-pill,
.why-stage[data-state="with"] ~ .why-toggle .wt-pill {
    transform: translateX(100%);
}

/* Stage */
.why-stage {
    position: relative;
    width: 100%;
    height: 560px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--bg-elev);
    overflow: hidden;
    isolation: isolate;
}
.why-stage::before {
    /* subtle dot grid */
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(13, 14, 15, 0.08) 1px,
        transparent 1.2px
    );
    background-size: 22px 22px;
    background-position: 0 0;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}
.why-stage[data-state="without"]::before {
    background-image: radial-gradient(
        rgba(13, 14, 15, 0.1) 1px,
        transparent 1.2px
    );
}
.why-stage[data-state="with"] {
    background: linear-gradient(180deg, var(--bg-elev), rgba(34, 199, 0, 0.04));
}

.why-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.55s ease,
        filter 0.55s ease;
    filter: blur(8px);
    z-index: 1;
}
.why-stage[data-state="without"] .why-scene--without,
.why-stage[data-state="with"] .why-scene--with {
    opacity: 1;
    pointer-events: auto;
    filter: blur(0);
}

/* Tangle (without) lines */
.why-tangle,
.why-spokes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.why-tangle path {
    fill: none;
    stroke: rgba(220, 90, 90, 0.32);
    stroke-width: 1.1;
    stroke-dasharray: 4 5;
    stroke-linecap: round;
    animation: tangle-pulse 4s ease-in-out infinite;
}
.why-tangle path:nth-child(2n) {
    stroke: rgba(13, 14, 15, 0.18);
    animation-delay: -1.2s;
}
.why-tangle path:nth-child(3n) {
    stroke: rgba(245, 130, 32, 0.3);
    animation-delay: -2.4s;
}
@keyframes tangle-pulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.85;
    }
}

.why-spokes path.spoke {
    fill: none;
    stroke: rgba(34, 199, 0, 0.45);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-dasharray: 5 6;
    animation: spoke-flow 8s linear infinite;
}
@keyframes spoke-flow {
    to {
        stroke-dashoffset: -88;
    }
}
.why-spokes path.link-from-user {
    fill: none;
    stroke: rgba(34, 199, 0, 0.55);
    stroke-width: 1.6;
    stroke-linecap: round;
}
.spoke-dot {
    filter: drop-shadow(0 0 4px rgba(34, 199, 0, 0.7));
}

/* Doodle character (shared) */
.doodle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 200px;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.doodle svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.d-line {
    fill: none;
    stroke: #0d0e0f;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.d-head {
    fill: #fff;
}

/* Stressed doodle micro-animation */
.doodle--stressed {
    animation: doodle-shake 0.9s ease-in-out infinite;
}
@keyframes doodle-shake {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0);
    }
    25% {
        transform: translate(-50%, -50%) rotate(-1.5deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(1.5deg);
    }
}
.doodle--stressed .d-eye-l {
    animation: eye-dart-l 2.2s ease-in-out infinite;
    transform-origin: 92px 102px;
}
.doodle--stressed .d-eye-r {
    animation: eye-dart-r 2.2s ease-in-out infinite;
    transform-origin: 128px 102px;
}
@keyframes eye-dart-l {
    0%,
    100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-2px, 1px);
    }
    60% {
        transform: translate(2px, -1px);
    }
}
@keyframes eye-dart-r {
    0%,
    100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(2px, 1px);
    }
    60% {
        transform: translate(-2px, -1px);
    }
}
.d-sweat {
    animation: sweat-drop 2.2s ease-in-out infinite;
    transform-origin: 168px 78px;
    opacity: 0.85;
}
@keyframes sweat-drop {
    0%,
    30% {
        transform: translateY(0);
        opacity: 0;
    }
    40% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(14px);
        opacity: 0;
    }
}
.d-spin {
    fill: #0d0e0f;
    opacity: 0.5;
    transform-origin: 65px 38px;
    animation: dizzy 2.4s linear infinite;
}
.d-spin--2 {
    transform-origin: 165px 35px;
    animation-duration: 3s;
    animation-direction: reverse;
}
@keyframes dizzy {
    0% {
        transform: rotate(0) translateX(0);
    }
    50% {
        transform: rotate(180deg) translateX(4px);
    }
    100% {
        transform: rotate(360deg) translateX(0);
    }
}

/* Calm doodle subtle breathing */
.doodle--calm {
    animation: doodle-breathe 4s ease-in-out infinite;
}
@keyframes doodle-breathe {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.015);
    }
}
.doodle--calm .doodle-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 110px;
    height: 22px;
    transform: translateX(-50%);
}
.doodle--calm .doodle-arrow svg {
    width: 100%;
    height: 100%;
}

/* WITH state — founder doodle sits LEFT, hub sits CENTER-LEFT, services fan to the RIGHT */
.why-scene--with .doodle--calm {
    left: 18%;
    top: 50%;
    width: 130px;
    height: 145px;
}
.why-scene--with .doodle--calm .doodle-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-dim);
    letter-spacing: 0;
    white-space: nowrap;
}

/* Hub sits at 43% horizontal so spokes fan cleanly into the right half */
.why-scene--with .hub-card {
    left: 43%;
}

/* Spoke labels — clean fan on the right side */
.why-scene--with .spoke-card {
    animation-delay: 0;
}
.sp--1 {
    top: 12%;
    left: 73%;
    --tx: -20px;
    --ty: 20px;
    animation-delay: 0.05s;
}
.sp--2 {
    top: 28%;
    left: 86%;
    --tx: -30px;
    --ty: 10px;
    animation-delay: 0.12s;
}
.sp--3 {
    top: 48%;
    left: 80%;
    --tx: -30px;
    --ty: 0;
    animation-delay: 0.19s;
}
.sp--4 {
    top: 48%;
    right: 4%;
    --tx: -30px;
    --ty: 0;
    animation-delay: 0.26s;
}
.sp--5 {
    top: 66%;
    left: 86%;
    --tx: -30px;
    --ty: -10px;
    animation-delay: 0.33s;
}
.sp--6 {
    bottom: 12%;
    left: 73%;
    --tx: -20px;
    --ty: -20px;
    animation-delay: 0.4s;
}
.sp--7 {
    bottom: 10%;
    left: 56%;
    --tx: 0;
    --ty: -20px;
    animation-delay: 0.47s;
    transform: translateX(-50%);
}

/* Reposition: spoke cards use top/left so I clear the old defaults */
.sp--1,
.sp--2,
.sp--3,
.sp--4,
.sp--5,
.sp--6,
.sp--7 {
    right: auto;
    bottom: auto;
}
.sp--4 {
    left: auto;
    right: 4%;
}
.sp--6 {
    bottom: 12%;
    top: auto;
}
.sp--7 {
    bottom: 10%;
    top: auto;
}

/* Chaos floating cards */
.chaos-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0;
    box-shadow: 0 10px 26px -16px rgba(0, 0, 0, 0.25);
    z-index: 2;
    white-space: nowrap;
}
.chaos-card .cc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dc2626;
    flex-shrink: 0;
}
.chaos-card:nth-child(2n) .cc-dot {
    background: #f59e0b;
}
.chaos-card:nth-child(3n) .cc-dot {
    background: #6366f1;
}

.cc--1 {
    top: 8%;
    left: 10%;
    animation: float-a 5.2s ease-in-out infinite;
}
.cc--2 {
    top: 14%;
    right: 9%;
    animation: float-b 6s ease-in-out infinite;
}
.cc--3 {
    top: 38%;
    left: 4%;
    animation: float-c 5.6s ease-in-out infinite;
}
.cc--4 {
    top: 42%;
    right: 5%;
    animation: float-a 6.4s ease-in-out infinite;
    transform: rotate(2deg);
}
.cc--5 {
    bottom: 18%;
    left: 14%;
    animation: float-b 5.8s ease-in-out infinite;
    transform: rotate(-3deg);
}
.cc--6 {
    bottom: 10%;
    right: 16%;
    animation: float-c 5.4s ease-in-out infinite;
    transform: rotate(2deg);
}
.cc--7 {
    top: 64%;
    left: 38%;
    animation: float-a 6.2s ease-in-out infinite;
}
.cc--8 {
    top: 22%;
    left: 42%;
    animation: float-b 5s ease-in-out infinite;
    transform: rotate(-2deg);
}

@keyframes float-a {
    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }
    50% {
        transform: translate(8px, -10px) rotate(2deg);
    }
}
@keyframes float-b {
    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }
    50% {
        transform: translate(-10px, 8px) rotate(-2deg);
    }
}
@keyframes float-c {
    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }
    50% {
        transform: translate(6px, 10px) rotate(1.5deg);
    }
}

/* Notification bubbles */
.chaos-bubble {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px -6px rgba(220, 38, 38, 0.5);
    z-index: 4;
    animation: bubble-pop 2.6s ease-in-out infinite;
}
.cb--1 {
    top: 32%;
    left: 38%;
    animation-delay: 0s;
}
.cb--2 {
    top: 28%;
    right: 36%;
    background: #f59e0b;
    box-shadow: 0 6px 18px -6px rgba(245, 158, 11, 0.5);
    animation-delay: -0.9s;
}
.cb--3 {
    bottom: 30%;
    left: 42%;
    animation-delay: -1.6s;
}
@keyframes bubble-pop {
    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0;
    }
    10%,
    60% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Spoke labels (with state) */
.spoke-card {
    position: absolute;
    padding: 9px 16px;
    background: #fff;
    border: 1px solid rgba(34, 199, 0, 0.25);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0;
    box-shadow: 0 12px 28px -16px rgba(34, 199, 0, 0.35);
    z-index: 3;
    white-space: nowrap;
    animation: spoke-in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.spoke-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    transform: translate(-50%, -50%);
    opacity: 0;
}
@keyframes spoke-in {
    from {
        opacity: 0;
        transform: translate(var(--tx, 0), var(--ty, 0)) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}
.sp--1 {
    top: 16%;
    left: 12%;
    --tx: 30px;
    --ty: 20px;
    animation-delay: 0.05s;
}
.sp--2 {
    top: 16%;
    right: 12%;
    --tx: -30px;
    --ty: 20px;
    animation-delay: 0.1s;
}
.sp--3 {
    top: 48%;
    left: 4%;
    --tx: 30px;
    --ty: 0;
    animation-delay: 0.15s;
}
.sp--4 {
    top: 48%;
    right: 4%;
    --tx: -30px;
    --ty: 0;
    animation-delay: 0.2s;
}
.sp--5 {
    bottom: 16%;
    left: 12%;
    --tx: 30px;
    --ty: -20px;
    animation-delay: 0.25s;
}
.sp--6 {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    --tx: 0;
    --ty: -30px;
    animation-delay: 0.3s;
}
.sp--7 {
    bottom: 16%;
    right: 12%;
    --tx: -30px;
    --ty: -20px;
    animation-delay: 0.35s;
}

/* Hub card center */
.hub-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0d0e0f;
    color: #fff;
    border-radius: 18px;
    padding: 18px 22px 18px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow:
        0 24px 60px -22px rgba(34, 199, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    z-index: 4;
    animation: hub-in 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
@keyframes hub-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.hub-card .hub-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 199, 0, 0.25),
        transparent 60%
    );
    z-index: -1;
    pointer-events: none;
    animation: hub-pulse 3s ease-in-out infinite;
}
@keyframes hub-pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}
.hub-card .hub-mark {
    width: 36px;
    height: 40px;
    flex-shrink: 0;
}
.hub-card .hub-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hub-card .hub-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}
.hub-card .hub-tag {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hub-card .hub-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    animation: pulse 2s ease-in-out infinite;
}

/* Captions */
.why-caption {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    z-index: 5;
    white-space: nowrap;
}
.why-caption--bad {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #b91c1c;
}
.why-caption--good {
    background: rgba(34, 199, 0, 0.1);
    border: 1px solid rgba(34, 199, 0, 0.3);
    color: #166534;
}
.why-caption .wc-icon {
    font-weight: 700;
}

@media (max-width: 900px) {
    .why-stage {
        height: 620px;
    }
    .doodle {
        width: 140px;
        height: 160px;
    }
    .why-scene--with .doodle--calm {
        left: 50%;
        top: 22%;
    }
    .why-scene--with .doodle--calm .doodle-arrow {
        bottom: -22px;
        top: auto;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
    .chaos-card {
        font-size: 11px;
        padding: 7px 11px;
    }
    .spoke-card {
        font-size: 11px;
        padding: 7px 12px;
    }
}

/* === WHY BUILDORA — DARK variant (merged with tagline band) === */
.page-why--dark {
    background: var(--ink);
    color: var(--bg);
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
}
/* Exempt dark section from the reveal fade-in — opacity:0 exposes the body
   background behind the wave and creates the visible grey flash on scroll. */
.page-why--dark.reveal,
.page-why--dark.reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
}
.page-why--dark::before {
    /* subtle dot grid over the dark bg */
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1.2px
    );
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}
.page-why--dark .why-wrap {
    position: relative;
    z-index: 1;
}
.page-why--dark .section-eyebrow {
    color: rgba(255, 255, 255, 0.55);
}
.page-why--dark .section-eyebrow .dot {
    background: var(--neon);
}
.page-why--dark .why-head h2 {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--bg);
}
.page-why--dark .why-head h2 em {
    color: var(--neon);
}
.page-why--dark .why-sub {
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
}

/* "Take a look yourself" prompt above the toggle */
.why-prompt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 18px;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 20px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.75);
}
.why-prompt .wp-arrow {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 199, 0, 0.15);
    color: var(--neon);
    font-size: 14px;
    font-style: normal;
    font-family: var(--font-display);
    animation: prompt-bob 1.6s ease-in-out infinite;
}
@keyframes prompt-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* Toggle on dark */
.page-why--dark .why-toggle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}
.page-why--dark .wt-btn {
    color: rgba(255, 255, 255, 0.6);
}
.page-why--dark .wt-btn.is-active {
    color: var(--ink);
}
.page-why--dark .wt-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}
.page-why--dark .wt-btn.is-active:hover {
    color: var(--ink);
}

/* Stage on dark — keep stage itself WHITE so the doodle scenes pop */
.page-why--dark .why-stage {
    background: var(--bg-elev);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.6);
}
.page-why--dark .why-stage::before {
    background-image: radial-gradient(
        rgba(13, 14, 15, 0.08) 1px,
        transparent 1.2px
    );
}
.page-why--dark .why-stage[data-state="with"] {
    background: linear-gradient(180deg, var(--bg-elev), rgba(34, 199, 0, 0.05));
}

/* Doodle stays dark-stroke on white stage */
.page-why--dark .d-line {
    stroke: #0d0e0f;
}
.page-why--dark .d-head {
    fill: #fff;
}
.page-why--dark .d-pupil {
    fill: #0d0e0f;
}
.page-why--dark .d-eye-white {
    fill: #fff;
}
.page-why--dark .d-spin {
    fill: #0d0e0f;
}

/* Chaotic chips back to light on white stage */
.page-why--dark .chaos-card {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Tangle lines back to red/orange on white */
.page-why--dark .why-tangle path {
    stroke: rgba(220, 90, 90, 0.32);
}
.page-why--dark .why-tangle path:nth-child(2n) {
    stroke: rgba(13, 14, 15, 0.18);
}
.page-why--dark .why-tangle path:nth-child(3n) {
    stroke: rgba(245, 130, 32, 0.3);
}

/* Spoke cards on white stage */
.page-why--dark .spoke-card {
    background: #fff;
    border-color: rgba(34, 199, 0, 0.25);
    color: var(--ink);
    box-shadow: 0 12px 28px -16px rgba(34, 199, 0, 0.35);
}
.page-why--dark .why-spokes path {
    stroke: rgba(34, 199, 0, 0.45);
}

/* Hub card — dark on white stage (original look) */
.page-why--dark .hub-card {
    background: #0d0e0f;
    color: #fff;
}
.page-why--dark .hub-card .hub-name {
    color: #fff;
}
.page-why--dark .hub-card .hub-tag {
    color: rgba(255, 255, 255, 0.7);
}

/* Captions on white stage */
.page-why--dark .why-caption--bad {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.25);
    color: #b91c1c;
}
.page-why--dark .why-caption--good {
    background: rgba(34, 199, 0, 0.1);
    border-color: rgba(34, 199, 0, 0.3);
    color: #166534;
}

/* ============================================================
   WHY BUILDORA — hexagonal service field
   Off-white hex tiles on the dark band. WITHOUT = scattered &
   broken; WITH = snapped into a honeycomb with neon-green energy
   glowing through the seams between tiles (never on top of them).
   The field is edge-to-edge and flows into the scallop edges.
   ============================================================ */
.page-why--dark {
    padding-bottom: 0;
    overflow: hidden;
}

/* ---- caption / status: a legible integrated pill ---- */
.why-status {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 9px 18px 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.7);
    font-family: var(--font-mono);
    font-size: 13.5px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    transition:
        border-color 0.45s ease,
        background 0.45s ease;
}
.why-status .wc-mark {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #dc2626;
    box-shadow: 0 0 9px rgba(220, 38, 38, 0.55);
    transition:
        background 0.45s ease,
        box-shadow 0.45s ease;
}
.why-status .wc-text {
    transition: color 0.4s ease;
}

.hexfield {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: clamp(400px, 46vw, 600px);
    margin-top: 34px;
    isolation: isolate;
    --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    /* soft taper so the field melts into the heading above & the wave below */
    --field-mask: linear-gradient(
        to bottom,
        transparent 0%,
        #000 8%,
        #000 72%,
        rgba(0, 0, 0, 0.35) 90%,
        transparent 100%
    );
}

/* settled green energy that lives BETWEEN the tiles (revealed through the gaps) */
.hexfield-seams {
    position: absolute;
    inset: -12%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        46% 54% at 50% 48%,
        rgba(44, 255, 5, 1) 0%,
        rgba(34, 199, 0, 0.9) 16%,
        rgba(34, 199, 0, 0.5) 38%,
        rgba(34, 199, 0, 0.18) 60%,
        rgba(34, 199, 0, 0) 78%
    );
    opacity: 0;
    -webkit-mask-image: var(--field-mask);
    mask-image: var(--field-mask);
    transition: opacity 1.6s ease 0.35s; /* settles in behind the sweep */
}
.hexfield[data-state="with"] .hexfield-seams {
    opacity: 1;
    animation: seam-breathe 5.5s ease-in-out 2.4s infinite;
}
@keyframes seam-breathe {
    0%,
    100% {
        filter: saturate(1) brightness(1);
    }
    50% {
        filter: saturate(1.2) brightness(1.16);
    }
}

/* the moving green wave that follows the bee left -> right on assembly */
.hexfield-sweep {
    position: absolute;
    inset: -2% -8%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        95deg,
        rgba(44, 255, 5, 0) 40%,
        rgba(44, 255, 5, 0.55) 47%,
        rgba(60, 255, 40, 1) 50%,
        rgba(44, 255, 5, 0.55) 53%,
        rgba(44, 255, 5, 0) 60%
    );
    -webkit-mask-image: var(--field-mask);
    mask-image: var(--field-mask);
}
.hexfield[data-state="with"] .hexfield-sweep {
    animation: green-sweep 2.5s cubic-bezier(0.36, 0, 0.2, 1) forwards;
}
@keyframes green-sweep {
    0% {
        opacity: 0;
        transform: translateX(-62%);
    }
    10% {
        opacity: 0.9;
    }
    82% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translateX(62%);
    }
}

.hexfield-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    -webkit-mask-image: var(--field-mask);
    mask-image: var(--field-mask);
}

/* individual hex tile — crisp white with a touch of dimension */
.hex {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--w);
    height: var(--h);
    margin-left: calc(var(--w) / -2);
    margin-top: calc(var(--h) / -2);
    background: linear-gradient(
        158deg,
        #ffffff 0%,
        var(--bg) 64%,
        #e9e6dd 100%
    );
    -webkit-clip-path: var(--hex-clip);
    clip-path: var(--hex-clip);
    opacity: var(--op);
    transform: translate(var(--sx), var(--sy)) rotate(var(--rot));
    transition:
        transform 0.85s cubic-bezier(0.22, 0.85, 0.18, 1),
        opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}
.hexfield[data-state="with"] .hex {
    transform: translate(0, 0) rotate(0deg);
}
/* WITHOUT — fillers stay substantial but the scatter reads as broken */
.hexfield[data-state="without"] .hex[data-role="fill"] {
    opacity: calc(var(--op) * 0.84);
}

/* node tiles carry the business functions in BOTH states */
.hex[data-role="node"] {
    z-index: 2;
}
.hex-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    padding: 0 6px;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
/* scattered + dimmed while disconnected, crisp once connected */
.hexfield[data-state="without"] .hex[data-role="node"] .hex-label {
    opacity: 0.5;
    transform: none;
}
.hexfield[data-state="with"] .hex[data-role="node"] .hex-label {
    opacity: 0.92;
    transform: none;
    transition-delay: 1.6s;
}

/* core tile — the Buildora identity anchor */
.hex[data-role="core"] {
    z-index: 3;
}
.hexfield[data-state="with"] .hex[data-role="core"] {
    box-shadow:
        0 0 0 2px rgba(44, 255, 5, 0.6),
        0 0 46px -4px rgba(34, 199, 0, 0.7);
    transition: box-shadow 0.6s ease 1.7s;
}
.hex-core-mark {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.9;
    font-size: clamp(12px, 1.5vw, 21px);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0.3;
    transition: opacity 0.6s ease;
    user-select: none;
}
.hexfield[data-state="with"] .hex-core-mark {
    opacity: 1;
    transition-delay: 1.7s;
}
.hex-core-mark .hex-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.62em;
    height: 0.62em;
    margin: 0 -0.015em;
    overflow: visible;
}
.hex-core-mark .hex-o img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateY(-0.04em) scale(1.95);
    transform-origin: center;
}

/* the bee — the builder that flies in left -> right and assembles the field */
.hexfield-bee {
    position: absolute;
    z-index: 4;
    width: clamp(74px, 7.5vw, 120px);
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: drop-shadow(0 9px 20px rgba(0, 0, 0, 0.45));
}
.hexfield[data-state="with"] .hexfield-bee {
    opacity: 1;
    animation:
        bee-enter 2.5s cubic-bezier(0.34, 0, 0.2, 1) both,
        bee-hover 6s ease-in-out 2.5s infinite;
}
/* one purposeful pass from the left edge across to the system core */
@keyframes bee-enter {
    0% {
        left: -7%;
        top: 54%;
        transform: translate(-50%, -50%) rotate(-7deg);
    }
    28% {
        left: 26%;
        top: 38%;
        transform: translate(-50%, -50%) rotate(5deg);
    }
    58% {
        left: 56%;
        top: 56%;
        transform: translate(-50%, -50%) rotate(-4deg);
    }
    100% {
        left: 78%;
        top: 47%;
        transform: translate(-50%, -50%) rotate(3deg);
    }
}
@keyframes bee-hover {
    0%,
    100% {
        left: 78%;
        top: 47%;
        transform: translate(-50%, -50%) rotate(3deg);
    }
    50% {
        left: 73%;
        top: 53%;
        transform: translate(-50%, -50%) rotate(-3deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hexfield[data-state="with"] .hexfield-seams,
    .hexfield[data-state="with"] .hexfield-sweep,
    .hexfield[data-state="with"] .hexfield-bee {
        animation: none;
    }
    .hexfield[data-state="with"] .hexfield-bee {
        left: 78%;
        top: 47%;
    }
}

@media (max-width: 720px) {
    .hexfield {
        height: clamp(340px, 80vw, 480px);
        margin-top: 24px;
    }
    .hex-label {
        font-size: 8.5px;
        letter-spacing: 0.05em;
    }
    .why-status {
        font-size: 12px;
    }
}

/* status accent once the system is assembled */
.why-wrap:has(~ .hexfield[data-state="with"]) .why-status {
    border-color: rgba(44, 255, 5, 0.4);
}
.why-wrap:has(~ .hexfield[data-state="with"]) .why-status .wc-mark {
    background: var(--neon-bright);
    box-shadow: 0 0 11px rgba(44, 255, 5, 0.8);
}
.why-wrap:has(~ .hexfield[data-state="with"]) .why-status .wc-text {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================================
   WHY BUILDORA — Without/With flow diagram
   Your Team in the middle drowning in tasks → one line to
   Buildora, which then runs the whole connected system.
   ============================================================ */
.flow {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 52px auto 96px;
    padding: 0 24px;
}
.flow-stage {
    position: relative;
    width: 100%;
    height: clamp(480px, 47vw, 620px);
}
.flow-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

/* Clean, solid, straight connectors — ends tuck under the cards so nothing overlaps */
.fl-chaos {
    fill: none;
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
    animation: line-chaos-drift 7.4s linear infinite;
}
.fl-spine {
    fill: none;
    stroke: var(--neon-bright);
    stroke-width: 3.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(44, 255, 5, 0.6));
    stroke-dasharray: 10 12;
    animation: line-spine-flow 5.2s linear infinite;
}
.fl-spoke {
    fill: none;
    stroke: rgba(34, 199, 0, 0.6);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 11;
    animation: line-spoke-flow 6.4s linear infinite;
}
@keyframes line-chaos-drift {
    to {
        stroke-dashoffset: -64;
    }
}
@keyframes line-spine-flow {
    to {
        stroke-dashoffset: -72;
    }
}
@keyframes line-spoke-flow {
    to {
        stroke-dashoffset: -56;
    }
}

/* Generic node — JS owns the transform (position + reveal) */
.fnode {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Task chips — bold, but minimal */
.fnode--task {
    padding: 14px 24px;
    border-radius: 14px;
    background: #15181a;
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    transition:
        border-color 0.6s ease,
        box-shadow 0.6s ease;
}
.task-label {
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    transition: color 0.6s ease;
}
.flow[data-state="without"] .fnode--task {
    border-color: rgba(255, 255, 255, 0.36);
}
.flow[data-state="with"] .fnode--task {
    border-color: rgba(34, 199, 0, 0.55);
    box-shadow: 0 0 30px -12px rgba(34, 199, 0, 0.85);
}
.flow[data-state="with"] .task-label {
    color: #fff;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    40%       { opacity: 1; transform: scale(1); }
    52%       { opacity: 0; transform: scale(0.45); }
    64%       { opacity: 1; transform: scale(1.15); }
    70%       { opacity: 1; transform: scale(1); }
}

/* Per-service expression badge — distinct frantic mark (Without) → calm check (With) */
.task-badge {
    position: absolute;
    top: -11px;
    right: -11px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 0 0 3px var(--ink);
    transition:
        background 0.55s ease,
        color 0.55s ease,
        box-shadow 0.55s ease;
}
.flow[data-state="without"] .task-badge {
    background: #2a2a2a;
    color: #fff;
    box-shadow:
        0 0 0 3px var(--ink),
        0 0 12px rgba(220, 38, 38, 0.65);
}
.flow[data-state="without"] .tb-calm {
    display: none;
}

.flow[data-state="with"] .task-badge {
    background: rgba(34, 199, 0, 0.16);
    color: var(--neon-bright);
    box-shadow:
        0 0 0 3px var(--ink),
        0 0 14px -4px rgba(34, 199, 0, 0.7);
}
.flow[data-state="with"] .tb-stress {
    display: none;
}

/* Staggered random-feel pulse on each expression badge */
.flow-stage .fnode--task:nth-child(3)  .task-badge { animation: badge-pulse 3.1s ease-in-out infinite; animation-delay: 0.0s; }
.flow-stage .fnode--task:nth-child(4)  .task-badge { animation: badge-pulse 4.4s ease-in-out infinite; animation-delay: 1.3s; }
.flow-stage .fnode--task:nth-child(5)  .task-badge { animation: badge-pulse 3.7s ease-in-out infinite; animation-delay: 0.6s; }
.flow-stage .fnode--task:nth-child(6)  .task-badge { animation: badge-pulse 5.2s ease-in-out infinite; animation-delay: 2.1s; }
.flow-stage .fnode--task:nth-child(7)  .task-badge { animation: badge-pulse 3.9s ease-in-out infinite; animation-delay: 0.9s; }
.flow-stage .fnode--task:nth-child(8)  .task-badge { animation: badge-pulse 4.8s ease-in-out infinite; animation-delay: 1.7s; }
.flow-stage .fnode--task:nth-child(9)  .task-badge { animation: badge-pulse 3.3s ease-in-out infinite; animation-delay: 2.5s; }
.flow-stage .fnode--task:nth-child(10) .task-badge { animation: badge-pulse 5.6s ease-in-out infinite; animation-delay: 0.4s; }

/* Your Team node */
.fnode--you {
    width: 176px;
    height: 100px;
    border-radius: 18px;
    background: #15181a;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
    transition:
        border-color 0.6s ease,
        box-shadow 0.6s ease;
}
.flow[data-state="without"] .fnode--you {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 42px -14px rgba(220, 38, 38, 0.65);
}
.flow[data-state="with"] .fnode--you {
    border-color: rgba(34, 199, 0, 0.55);
    box-shadow: 0 0 48px -14px rgba(34, 199, 0, 0.65);
}
.you-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.you-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    box-shadow:
        0 0 0 4px var(--ink),
        0 0 18px rgba(220, 38, 38, 0.72);
    opacity: 0;
    transform: scale(0.4);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.3, 1.4, 0.5, 1);
}
.flow[data-state="without"] .you-badge {
    opacity: 1;
    transform: scale(1);
    animation: you-badge-pulse 1.8s ease-in-out 0.6s infinite;
}
@keyframes you-badge-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 4px var(--ink),
            0 0 12px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow:
            0 0 0 4px var(--ink),
            0 0 24px rgba(220, 38, 38, 0.95);
    }
}

/* Buildora hub — JS controls transform (scale) + opacity */
.fnode--hub {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: radial-gradient(closest-side, #2cff05, #22c700 70%, #1a9c00);
    box-shadow:
        0 0 0 2px rgba(44, 255, 5, 0.55),
        0 0 80px -6px rgba(34, 199, 0, 0.95);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}
.flow[data-state="with"] .fnode--hub {
    animation: hub-breathe 4.5s ease-in-out 1s infinite;
}
@keyframes hub-breathe {
    0%,
    100% {
        box-shadow:
            0 0 0 2px rgba(44, 255, 5, 0.5),
            0 0 72px -8px rgba(34, 199, 0, 0.85);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(44, 255, 5, 0.75),
            0 0 96px -4px rgba(34, 199, 0, 1);
    }
}
.hub-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 27px;
    letter-spacing: -0.035em;
    line-height: 1;
    color: #06220a;
    white-space: nowrap;
    user-select: none;
}

/* status pill turns green once the system is assembled */
.why-wrap:has(~ .flow[data-state="with"]) .why-status {
    border-color: rgba(44, 255, 5, 0.4);
}
.why-wrap:has(~ .flow[data-state="with"]) .why-status .wc-mark {
    background: var(--neon-bright);
    box-shadow: 0 0 11px rgba(44, 255, 5, 0.8);
}
.why-wrap:has(~ .flow[data-state="with"]) .why-status .wc-text {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 720px) {
    .flow {
        margin: 28px auto 64px;
        padding: 0 14px;
    }
    .flow-stage {
        height: clamp(460px, 100vw, 560px);
    }
    .fnode--task {
        padding: 11px 17px;
    }
    .task-label {
        font-size: 14px;
    }
    .fnode--you {
        width: 144px;
        height: 88px;
    }
    .you-name {
        font-size: 18px;
    }
    .fnode--hub {
        width: 128px;
        height: 128px;
    }
    .hub-mark {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-chaos,
    .fl-spine,
    .fl-spoke {
        animation: none;
    }
    .flow[data-state="without"] .you-badge,
    .flow[data-state="without"] .task-badge,
    .flow[data-state="with"] .fnode--hub {
        animation: none;
    }
}

/* Scallop variant that flips humps DOWN against the next light section
   while keeping its fill the dark ink color */
.scallop--up-dark {
    transform: scaleY(-1);
    margin-top: -1px;
}
.page-problem-v2 .prob-wrap {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prob-head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prob-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 80px);
    letter-spacing: -0.035em;
    line-height: 1;
    max-width: 980px;
    margin: 0 auto 20px;
    text-wrap: balance;
}
.prob-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.prob-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 620px;
    line-height: 1.55;
}

.prob-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}
.pc-col {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.pc-col--bad {
    background: linear-gradient(
        180deg,
        rgba(220, 38, 38, 0.04),
        rgba(220, 38, 38, 0.01)
    );
    border-color: rgba(220, 38, 38, 0.18);
}
.pc-col--good {
    background: linear-gradient(
        180deg,
        rgba(34, 199, 0, 0.06),
        rgba(34, 199, 0, 0.01)
    );
    border-color: rgba(34, 199, 0, 0.22);
    box-shadow: 0 30px 70px -30px rgba(34, 199, 0, 0.25);
}
.pc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.pc-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.pc-badge--bad {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}
.pc-badge--good {
    background: rgba(34, 199, 0, 0.15);
    color: #138c00;
}
.pc-result {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.pc-result--bad {
    color: #b91c1c;
}
.pc-result--good {
    color: #138c00;
}

.pc-stack {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.pc-stack li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 10px;
    position: relative;
}
.pc-stack li:hover {
    border-color: rgba(220, 38, 38, 0.35);
}
.pcs-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: #b91c1c;
    font-weight: 500;
}
.pcs-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    color: var(--ink);
}
.pcs-tag {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.pc-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pc-summary--bad {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
}
.pc-summary--good {
    background: rgba(34, 199, 0, 0.1);
    color: #138c00;
}
.ps-bullet {
    font-size: 14px;
}

.pc-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-family: var(--font-mono);
}
.pcd-line {
    width: 1px;
    flex: 1;
    background: var(--line-strong);
}
.pcd-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--neon);
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

/* The growth-engine ring on the right column */
.pc-engine {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.pce-ring {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(
            closest-side,
            rgba(34, 199, 0, 0.18),
            rgba(34, 199, 0, 0) 70%
        ),
        conic-gradient(
            from 0deg,
            rgba(34, 199, 0, 0),
            rgba(34, 199, 0, 0.18),
            rgba(34, 199, 0, 0),
            rgba(34, 199, 0, 0.18),
            rgba(34, 199, 0, 0)
        );
    animation: ring-rot 18s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes ring-rot {
    to {
        transform: rotate(360deg);
    }
}
.pce-ring::before {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px dashed rgba(34, 199, 0, 0.4);
    border-radius: 50%;
}
.pce-center {
    position: relative;
    background: var(--ink);
    color: var(--bg);
    padding: 18px 24px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    animation: ring-rot 18s linear infinite reverse;
    box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.3);
}
.pce-center-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.18em;
    color: #fff;
}
.pce-center-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon);
}
.pce-node {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 8px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
    animation: ring-rot 18s linear infinite reverse;
}
.pce-node--1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}
.pce-node--2 {
    top: 50%;
    right: -4%;
    transform: translateY(-50%);
}
.pce-node--3 {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}
.pce-node--4 {
    top: 50%;
    left: -4%;
    transform: translateY(-50%);
}

/* === BENTO MODULES === */
.page-bento {
    flex-direction: column;
    padding-top: 96px;
    padding-bottom: 120px;
}
.page-bento .bento-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.bento-head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bento-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(44px, 6vw, 92px);
    letter-spacing: -0.04em;
    line-height: 0.96;
    max-width: 980px;
    margin: 0 auto 20px;
    text-wrap: balance;
}
.bento-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
}
.bento-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 580px;
    line-height: 1.55;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(380px, auto) minmax(380px, auto);
    gap: 16px;
}
.bento-cell {
    position: relative;
    padding: 28px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        transform 0.35s cubic-bezier(0.2, 0, 0.2, 1),
        box-shadow 0.3s ease;
}
.bento-cell:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.22);
}
.bento-cell::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mx, 50%) var(--my, 50%),
        rgba(34, 199, 0, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.bento-cell:hover::after {
    opacity: 1;
}

.bento-cell--feature {
    grid-column: span 2;
    grid-row: span 1;
}
.bento-cell--tall {
    grid-column: span 1;
    grid-row: span 2;
}
.bento-cell--square {
    grid-column: span 1;
    grid-row: span 1;
}
.bento-cell--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.bc-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--neon);
    font-weight: 500;
}
.bc-layer {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.bento-cell h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-wrap: balance;
}
.bento-cell h3 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
}
.bc-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.bc-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-dim);
    text-wrap: pretty;
}
.bc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.bento-cell:hover .bc-cta {
    color: var(--neon);
}
.bento-cell:hover .bc-cta .arrow {
    transform: translateX(4px);
}
.bc-cta .arrow {
    transition: transform 0.25s ease;
}

/* Feature cell (large) — 2-col internal layout */
.bc-feature-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
    align-items: stretch;
}
.bc-feature-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}
.bc-feature-mock {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    min-height: 220px;
}
.bm-letter {
    background: var(--ink);
    color: var(--neon);
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    line-height: 1;
}
.bm-swatches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    border-radius: 12px;
    overflow: hidden;
}
.bm-swatches span {
    display: block;
}
.bm-type {
    background: var(--bg-elev);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
}
.bm-type-display {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.bm-type-mono {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
}
.bm-card {
    background: var(--ink);
    color: var(--bg);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bm-card-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
}
.bm-card-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--neon);
}

/* Code mock (Infra) */
.bc-mock--code {
    background: var(--ink);
    color: var(--bg);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    position: relative;
    overflow: hidden;
}
.bcm-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.5;
}
.bcm-line {
    color: rgba(255, 255, 255, 0.92);
}
.bcm-line i {
    color: #a78bfa;
    font-style: normal;
}
.bcm-line u {
    color: #ffd56b;
    text-decoration: none;
}
.bcm-line em {
    color: var(--neon);
    font-style: normal;
}
.bcm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.bcm-pills span {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
}

/* Funnel mock (Revenue) */
.bc-mock--funnel {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    flex: 1;
    display: flex;
}
.bcm-funnel {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    justify-content: center;
}
.bcf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--w);
    margin-left: auto;
    margin-right: auto;
    padding: 10px 14px;
    background: linear-gradient(
        to right,
        rgba(34, 199, 0, 0.25),
        rgba(34, 199, 0, 0.06)
    );
    border: 1px solid rgba(34, 199, 0, 0.3);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink);
    transition: width 0.8s ease;
}
.bcf-row b {
    font-weight: 600;
    color: var(--ink);
}
.bcf-row span {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 10px;
    color: var(--ink);
}

/* Wide cell — strategy: deck preview */
.bc-wide-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
    align-items: stretch;
}
.bc-wide-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}
.bc-wide-mock {
    position: relative;
    background: linear-gradient(135deg, #fafaf7, #ece9df);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    min-height: 200px;
    overflow: hidden;
}
.bdm-deck {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 180px;
}
.bdm-slide {
    position: absolute;
    width: 70%;
    aspect-ratio: 16 / 10;
    max-width: var(--page-max);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.2);
}
.bdm-slide--1 {
    left: 0;
    bottom: 0;
    transform: rotate(-6deg);
    z-index: 1;
}
.bdm-slide--2 {
    left: 16%;
    bottom: 12%;
    transform: rotate(0deg);
    z-index: 2;
}
.bdm-slide--3 {
    left: 32%;
    bottom: 24%;
    transform: rotate(6deg);
    z-index: 3;
    border-color: var(--neon);
    box-shadow: 0 20px 40px -16px rgba(34, 199, 0, 0.28);
}
.bdm-num {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
}
.bdm-title {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.bdm-slide--3 .bdm-title {
    color: var(--neon);
}

.bento-result {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
}
.br-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--line-strong);
}
.br-arrow {
    color: var(--neon);
    font-size: 18px;
}
.br-label em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    margin-left: 6px;
}

/* === SHOWCASE === */
.page-showcase {
    flex-direction: column;
    padding-top: 96px;
    padding-bottom: 120px;
}
.page-showcase .show-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.show-head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.show-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(42px, 5.8vw, 88px);
    letter-spacing: -0.04em;
    line-height: 0.98;
    max-width: 980px;
    margin: 0 auto 20px;
    text-wrap: balance;
}
.show-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.show-sub {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 620px;
    line-height: 1.55;
}

.show-stage {
    position: relative;
    padding: 24px;
}
.show-glow {
    position: absolute;
    inset: 6%;
    background: radial-gradient(
        closest-side,
        rgba(34, 199, 0, 0.22),
        rgba(34, 199, 0, 0) 70%
    );
    filter: blur(40px);
    z-index: 0;
}
.show-frame {
    position: relative;
    z-index: 2;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow:
        0 50px 100px -40px rgba(0, 0, 0, 0.28),
        0 12px 30px -16px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}
.sf-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 244, 239, 0.6);
}
.sf-bar .sf-light {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line-strong);
}
.sf-bar .sf-light:nth-child(1) {
    background: #ff6058;
}
.sf-bar .sf-light:nth-child(2) {
    background: #ffbd2d;
}
.sf-bar .sf-light:nth-child(3) {
    background: #28c93f;
}
.sf-tabs {
    display: inline-flex;
    gap: 4px;
    margin-left: 20px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
}
.sf-tab {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--ink-dim);
}
.sf-tab.is-active {
    background: var(--ink);
    color: var(--bg);
}
.sf-search {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.sf-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 460px;
}
.sf-side {
    background: rgba(245, 244, 239, 0.45);
    border-right: 1px solid var(--line);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.sf-side-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sf-side-h {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 6px;
}
.sf-side-item {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--ink-dim);
    padding: 8px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sf-side-item.is-on {
    color: var(--ink);
}
.sf-side-item.is-on i {
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    display: inline-block;
}
.sf-main {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sf-row {
    display: flex;
    gap: 14px;
}
.sf-row--kpi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.sf-kpi {
    padding: 16px 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.k-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.k-val {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
}
.k-delta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--neon);
}
.sf-row--chart {
    grid-template-columns: 2fr 1fr;
    display: grid;
    gap: 14px;
}
.sf-chart,
.sf-funnel,
.sf-list {
    padding: 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sf-chart-h {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
}
.sf-chart svg {
    width: 100%;
    height: 140px;
}
.sff-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--w);
    padding: 6px 10px;
    background: linear-gradient(
        to right,
        rgba(34, 199, 0, 0.25),
        rgba(34, 199, 0, 0.06)
    );
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
}
.sff-row span {
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.sff-row b {
    font-weight: 600;
}
.sfl-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--ink);
}
.sfl-row:first-of-type {
    border-top: none;
    padding-top: 4px;
}
.sfl-dot {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 199, 0, 0.18);
}
.sfl-time {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
}

/* Showcase floating annotation cards */
.show-anno {
    position: absolute;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 42px -16px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    font-family: var(--font-display);
    max-width: 220px;
    animation: fc-float 7s ease-in-out infinite;
}
.show-anno .sa-pulse {
    width: 10px;
    height: 10px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(34, 199, 0, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
.show-anno .sa-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--neon);
}
.show-anno .sa-text {
    font-size: 14px;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.005em;
    margin-top: 2px;
}
.show-anno--1 {
    top: 6%;
    left: -2%;
    animation-delay: 0s;
}
.show-anno--2 {
    top: 38%;
    right: -4%;
    animation-delay: 1.2s;
}
.show-anno--3 {
    bottom: 8%;
    left: -4%;
    animation-delay: 0.6s;
}

/* === HOW V2 — zig-zag timeline === */
.page-how-v2 {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 120px;
}
.page-how-v2 .how-wrap {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-track {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.how-track::before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--line-strong) 8%,
        var(--line-strong) 92%,
        transparent
    );
}
.ht-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}
.ht-step .ht-card {
    grid-column: 1 / 2;
}
.ht-step .ht-node {
    grid-column: 2 / 3;
}
.ht-step.ht-step--right .ht-card {
    grid-column: 3 / 4;
}
.ht-step.ht-step--right .ht-node {
    grid-column: 2 / 3;
}

.ht-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-elev);
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--ink);
    font-weight: 500;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.14);
}
.ht-node--end {
    background: var(--neon);
    color: #fff;
    border-color: var(--neon);
    box-shadow:
        0 0 0 6px rgba(34, 199, 0, 0.18),
        0 16px 32px -12px rgba(34, 199, 0, 0.4);
}

.ht-card {
    padding: 24px 26px 22px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}
.ht-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.ht-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.9s ease,
        opacity 0.9s ease;
}
.ht-expand > *:first-child {
    margin-top: 12px;
}
.ht-card:hover .ht-expand {
    max-height: 400px;
    opacity: 1;
}
.ht-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.32em;
    color: var(--neon);
    text-transform: uppercase;
}
.ht-card h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    text-wrap: balance;
}
.ht-card p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-dim);
    text-wrap: pretty;
}
.ht-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.ht-chips span {
    padding: 6px 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
}

/* === TESTIMONIALS V2 === */
.page-testimonials-v2 {
    flex-direction: column;
    padding-top: 96px;
    padding-bottom: 96px;
    min-height: auto;
}
.page-testimonials-v2 .t-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.t-grid--bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(280px, auto);
    gap: 16px;
}
.t-grid--bento .t-card {
    padding: 28px 30px 26px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        transform 0.35s cubic-bezier(0.2, 0, 0.2, 1),
        box-shadow 0.35s ease;
}
.t-grid--bento .t-card:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.18);
}
.t-grid--bento .t-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(
        400px circle at var(--mx, 50%) var(--my, 50%),
        rgba(34, 199, 0, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.t-grid--bento .t-card:hover::before {
    opacity: 1;
}

.t-card--lg {
    grid-column: span 2;
    grid-row: span 1;
}
.t-card--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.t-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.t-stars {
    color: var(--neon);
    font-size: 14px;
    letter-spacing: 2px;
}
.t-grid--bento .t-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
    border: none;
    padding: 0;
}
.t-grid--bento .t-quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.005em;
    text-wrap: pretty;
    flex: 1;
}
.t-card--lg .t-quote {
    font-size: clamp(18px, 1.4vw, 20px);
}
.t-grid--bento .t-quote::before {
    content: "“";
    color: var(--neon);
    margin-right: 2px;
}
.t-grid--bento .t-quote::after {
    content: "”";
    color: var(--neon);
    margin-left: 2px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--av, var(--neon));
    border: 2px solid var(--bg-elev);
    box-shadow: 0 0 0 1px var(--line-strong);
    flex-shrink: 0;
}
.t-grid--bento .t-avatar {
    display: none;
}
.t-author-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.t-author-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
    text-transform: none;
    letter-spacing: -0.005em;
}
.t-author-role {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* === ACTIVATE V2 / Big CTA === */
.page-activate-v2 {
    padding-top: 120px;
    padding-bottom: 120px;
}
.page-activate-v2 .act-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.act-card {
    position: relative;
    background:
        radial-gradient(
            80% 100% at 50% 0%,
            rgba(34, 199, 0, 0.18),
            transparent 60%
        ),
        linear-gradient(180deg, #1b1a17, #0d0e0f);
    color: var(--bg);
    border-radius: 32px;
    padding: 100px 64px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.5);
}
.act-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        closest-side,
        rgba(34, 199, 0, 0.18),
        transparent 60%
    );
    filter: blur(60px);
    z-index: 0;
}
.act-card > * {
    position: relative;
    z-index: 1;
}
.act-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 14px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 36px;
}
.act-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px rgba(34, 199, 0, 0.22);
    animation: pulse 2.2s ease-in-out infinite;
}
.act-card h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(48px, 6.8vw, 108px);
    letter-spacing: -0.04em;
    line-height: 0.96;
    color: #fff;
    margin-bottom: 24px;
    text-wrap: balance;
}
.act-card h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
}
.act-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.55;
}
.act-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.act-mini {
    position: absolute;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 220px;
    z-index: 2;
}
.am-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--neon);
}
.am-body {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    line-height: 1.35;
}
.act-mini--1 {
    top: 10%;
    left: 4%;
    animation: fc-float 8s ease-in-out infinite;
}
.act-mini--2 {
    top: 18%;
    right: 4%;
    animation: fc-float 9s ease-in-out infinite 1s;
}
.act-mini--3 {
    bottom: 12%;
    left: 8%;
    animation: fc-float 7.5s ease-in-out infinite 0.5s;
}

/* === FOOTER: newsletter === */
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
}
.fn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 12px 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    margin-bottom: 22px;
}
.fn-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
}
.footer-newsletter h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 12px;
    text-wrap: balance;
}
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    line-height: 1.5;
    max-width: 460px;
}
.fn-form {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}
.fn-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: var(--font-display);
    font-size: 15px;
    color: #fff;
}
.fn-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.fn-form button {
    margin: 0;
}

/* === Responsive === */
@media (max-width: 1100px) {
    .hero-v2 .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-v2 .hero-right {
        max-width: 520px;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-cell--feature,
    .bento-cell--wide {
        grid-column: span 2;
    }
    .bento-cell--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-cell--square {
        grid-column: span 1;
    }
    .prob-compare {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pc-divider {
        flex-direction: row;
        height: 36px;
    }
    .pcd-line {
        height: 1px;
        flex: 1;
        width: auto;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sf-body {
        grid-template-columns: 1fr;
    }
    .sf-side {
        display: none;
    }
    .sf-row--kpi {
        grid-template-columns: 1fr 1fr;
    }
    .sf-row--chart {
        grid-template-columns: 1fr;
    }
    .show-anno--1,
    .show-anno--2,
    .show-anno--3 {
        display: none;
    }
    .t-grid--bento {
        grid-template-columns: 1fr 1fr;
    }
    .t-card--lg,
    .t-card--wide {
        grid-column: span 2;
    }
    .how-track::before {
        left: 32px;
    }
    .ht-step {
        grid-template-columns: 64px 1fr;
        gap: 16px;
    }
    .ht-step .ht-card,
    .ht-step.ht-step--right .ht-card {
        grid-column: 2 / 3;
    }
    .ht-step .ht-node,
    .ht-step.ht-step--right .ht-node {
        grid-column: 1 / 2;
        margin: 0;
    }
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bc-feature-body,
    .bc-wide-body {
        grid-template-columns: 1fr;
    }
    .act-mini {
        display: none;
    }
    .hero-v2 h1 {
        font-size: clamp(44px, 9vw, 76px);
    }
}
@media (max-width: 720px) {
    .hero-v2 {
        padding: 120px 22px 60px;
    }
    .hero-v2 .hero-meta {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-num {
        font-size: 64px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-cell--feature,
    .bento-cell--wide,
    .bento-cell--tall,
    .bento-cell--square {
        grid-column: span 1;
    }
    .t-grid--bento {
        grid-template-columns: 1fr;
    }
    .t-card--lg,
    .t-card--wide {
        grid-column: span 1;
    }
    .act-card {
        padding: 64px 28px;
    }
    .fn-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 12px;
    }
    .fn-form input {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
    }
    .float-card {
        font-size: 11px;
        padding: 10px 12px;
    }
    .fc-2 {
        right: 0;
    }
    .fc-3 {
        left: 0;
    }
}

/* === Reveal on scroll === */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.9s cubic-bezier(0.2, 0, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .mock-float,
    .blob-float,
    .fc-float,
    .ring-rot,
    .marquee-track {
        animation: none !important;
    }
}

/* === HOW IT WORKS V3 — zigzag rail with scroll-fill progress === */
.page-how-v3 {
    flex-direction: column;
    padding-top: 140px;
    padding-bottom: 140px;
    align-items: center;
}
.page-how-v3 .how-wrap {
    width: 100%;
    max-width: var(--page-max);
}
.page-how-v3 .how-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 100px;
}
.page-how-v3 .how-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(48px, 6.2vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 0;
}
.page-how-v3 .how-title em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon);
    font-weight: 400;
    letter-spacing: -0.01em;
}
.page-how-v3 .how-sub {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-dim);
    max-width: 640px;
    margin: 0;
    text-wrap: pretty;
}
.page-how-v3 .how-flow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.page-how-v3 .how-flow .how-arrow {
    color: var(--neon);
    font-family: var(--font-display);
    letter-spacing: 0;
}

/* Track */
.how-track-v3 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each step is a 2-col row: card | rail (sides swap per .ht-step--left|right) */
.how-track-v3 .ht-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 56px;
    align-items: stretch;
    position: relative;
}
.how-track-v3 .ht-step--right {
    grid-template-columns: 1fr 80px;
}

/* RAIL: node + vertical bar that fills as you scroll */
.how-track-v3 .ht-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-track-v3 .ht-step--left .ht-rail {
    grid-column: 1;
}
.how-track-v3 .ht-step--right .ht-rail {
    grid-column: 2;
}

.how-track-v3 .ht-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elev);
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    margin: 0;
}
.how-track-v3 .ht-step.is-passed .ht-node {
    background: var(--neon);
    border-color: var(--neon);
    color: #0d0e0f;
    box-shadow: 0 0 0 6px rgba(34, 199, 0, 0.18);
}

/* The vertical bar below the node */
.how-track-v3 .ht-bar {
    position: relative;
    width: 2px;
    flex: 1 1 auto;
    background: var(--line);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
    min-height: 80px;
}
.how-track-v3 .ht-bar-fill {
    position: absolute;
    inset: 0 0 auto 0;
    height: var(--fill, 0%);
    background: var(--neon);
    border-radius: 2px;
    transition: height 0.18s linear;
}
.how-track-v3 .ht-step--last .ht-bar {
    min-height: 30px;
}

/* Card */
.how-track-v3 .ht-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 38px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    margin-bottom: 56px;
    box-shadow: 0 24px 60px -38px rgba(0, 0, 0, 0.18);
    transition:
        border-color 0.4s ease,
        transform 0.4s ease;
    grid-column: auto;
}
.how-track-v3 .ht-step--left .ht-card {
    grid-column: 2;
}
.how-track-v3 .ht-step--right .ht-card {
    grid-column: 1;
}
.how-track-v3 .ht-step.is-passed .ht-card {
    border-color: rgba(34, 199, 0, 0.32);
}

.how-track-v3 .ht-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
}
.how-track-v3 .ht-dot {
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
}
.how-track-v3 .ht-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
}
.how-track-v3 .ht-card h4 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
    letter-spacing: -0.005em;
}
.how-track-v3 .ht-card p {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-dim);
    margin: 0;
    letter-spacing: 0;
    text-wrap: pretty;
}
.how-track-v3 .ht-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 4px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}
.how-track-v3 .ht-list li {
    position: relative;
    padding-left: 18px;
    font-family: var(--font-display);
    font-size: 13.5px;
    color: var(--ink);
    letter-spacing: 0;
    line-height: 1.45;
}
.how-track-v3 .ht-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
}
.how-track-v3 .ht-outcome {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(34, 199, 0, 0.06);
    border: 1px solid rgba(34, 199, 0, 0.22);
    border-radius: 12px;
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--ink);
    letter-spacing: 0;
    line-height: 1.5;
}
.how-track-v3 .ho-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--neon);
    flex-shrink: 0;
    padding-top: 2px;
}

/* === Mobile (old track — kept for reference, no longer rendered) === */
@media (max-width: 820px) {
    .how-track-v3 .ht-step,
    .how-track-v3 .ht-step--right {
        grid-template-columns: 64px 1fr;
        column-gap: 22px;
    }
    .how-track-v3 .ht-step--right .ht-rail {
        grid-column: 1;
    }
    .how-track-v3 .ht-step--right .ht-card {
        grid-column: 2;
    }
    .how-track-v3 .ht-node {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }
    .how-track-v3 .ht-card {
        padding: 24px 22px;
        margin-bottom: 36px;
        border-radius: 18px;
    }
    .how-track-v3 .ht-card h4 {
        font-size: 22px;
    }
    .how-track-v3 .ht-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .page-how-v3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .page-how-v3 .how-head {
        margin-bottom: 48px;
    }
    .page-how-v3 .how-flow {
        font-size: 9.5px;
        padding: 10px 14px;
    }
}

/* =============================================================
   HOW BUILDORA WORKS — horizontal step cards (stepper v4)
   ============================================================= */

/* Wrapper */
.how-stepper {
    width: 100%;
}

/* ---- Card row ---- */
.how-stepper-row {
    display: flex;
    align-items: stretch;
    position: relative;
    gap: 10px;
}

/* Horizontal connecting line behind the cards */
.hsr-line {
    position: absolute;
    left: calc(100% / 12);
    right: calc(100% / 12);
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hsr-fill {
    display: block;
    height: 100%;
    width: 0%;
    max-width: var(--page-max);
    border-radius: 2px;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hss-no-transition .hsr-fill {
    transition: none;
}

/* Individual step card */
.hsc-card {
    flex: 1;
    position: relative;
    z-index: 1;
    background: #0d0e0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.hsc-card:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 3px;
}
.hsc-card:hover,
.hsc-card.is-active {
    border-color: rgba(34, 199, 0, 0.45);
    box-shadow:
        0 0 0 1px rgba(34, 199, 0, 0.1),
        0 8px 28px rgba(34, 199, 0, 0.1);
    transform: scale(0.91);
}
.hsc-num {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--neon);
}
.hsc-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: #f5f4ef;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* ---- Detail panels ---- */
.hsd-panels {
    position: relative;
}

/* Grid-row collapse: 0fr = collapsed, 1fr = expanded */
.hsd-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}
.hsd-panel.is-open {
    grid-template-rows: 1fr;
}
.hss-no-transition .hsd-panel {
    transition: none;
}

.hsd-inner {
    overflow: hidden;
}

/* Spacer + body card */
.hsd-content {
    padding-top: 20px;
    padding-bottom: 4px;
}
.hsd-body {
    background: var(--bg-elev);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

/* Left column — headline + context */
.hsd-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-right: 52px;
}

.hsd-step-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    text-transform: uppercase;
}

/* Panel typography */
.hsd-body h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
}
.hsd-body h4 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
    letter-spacing: -0.005em;
}
.hsd-body p {
    font-family: var(--font-display);
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-dim);
    margin: 0;
    text-wrap: pretty;
}

/* Right column — deliverables + outcome */
.hsd-right {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 52px;
}

.hsd-right-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
}

/* Deliverable list — divider separated, no dots */
.hsd-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.hsd-list li {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hsd-list li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Outcome — inline, no box */
.hsd-outcome-text {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-style: italic;
    color: var(--neon);
    line-height: 1.5;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .how-stepper-row {
        gap: 6px;
    }
    .hsc-card {
        padding: 18px 8px;
        border-radius: 12px;
    }
    .hsc-label {
        font-size: 12px;
    }
    .hsd-body {
        padding: 28px 28px;
        border-radius: 16px;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hsd-left {
        padding-right: 0;
        gap: 12px;
    }
    .hsd-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 24px;
    }
    .hsd-body h4 {
        font-size: 24px;
    }
    .hsd-body p {
        font-size: 15px;
    }
    .hsd-left {
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .how-stepper-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .hsc-card {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 0;
        padding: 14px 8px;
    }
    .hsc-label {
        font-size: 11px;
    }
    .hsd-body {
        padding: 22px 20px;
    }
    .hsd-body h4 {
        font-size: 22px;
    }
}

/* === SERVICES LIST (the four pillars) ============================ */
.page-services {
    padding: clamp(96px, 12vw, 160px) var(--page-gutter)
        clamp(96px, 12vw, 140px);
    /* Keep this section transparent so the global .bg-grid purple atmosphere
     flows through continuously — any local background creates a visible seam
     against the section above/below it. */
    background: transparent;
    position: relative;
}
.services-wrap {
    max-width: var(--content-max);
    margin: 0 auto;
}
.services-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    margin-bottom: clamp(48px, 7vw, 88px);
}
.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 14px 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
}
.services-eyebrow .se-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px var(--neon-glow);
}
.services-head h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    text-wrap: balance;
    max-width: 16ch;
}
.services-head h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
}
.services-sub {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-dim);
    max-width: 560px;
    text-wrap: pretty;
    margin-top: 4px;
}

.svc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--line);
}
.svc-list > li {
    background: var(--bg);
}
.svc-row {
    height: 100%;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: clamp(20px, 4vw, 56px);
    padding: clamp(28px, 4.5vw, 44px) clamp(16px, 3vw, 36px);
    text-decoration: none;
    color: var(--ink);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        padding-left 0.45s cubic-bezier(0.2, 0, 0.2, 1),
        color 0.3s ease;
}
.svc-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateX(-101%);
    transition: transform 0.55s cubic-bezier(0.2, 0, 0.2, 1);
    z-index: -1;
}
.svc-row > * {
    position: relative;
    z-index: 1;
    transition:
        color 0.3s ease,
        transform 0.45s cubic-bezier(0.2, 0, 0.2, 1);
}
.svc-row:hover,
.svc-row:focus-visible {
    color: var(--bg);
    padding-left: clamp(28px, 4.5vw, 56px);
    outline: none;
}
.svc-row:hover::before,
.svc-row:focus-visible::before {
    transform: translateX(0);
}
.svc-row-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
    align-self: start;
    padding-top: 8px;
}
.svc-row:hover .svc-row-num,
.svc-row:focus-visible .svc-row-num {
    color: var(--neon);
}
.svc-row-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(22px, 3vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-wrap: balance;
}
.svc-row-title em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.svc-row-arrow {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--ink-mute);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 50%;
    flex-shrink: 0;
}
.svc-row:hover .svc-row-arrow,
.svc-row:focus-visible .svc-row-arrow {
    color: var(--ink);
    background: var(--neon);
    border-color: var(--neon);
    transform: translateX(8px) rotate(-12deg);
}

@media (max-width: 720px) {
    .svc-list {
        grid-template-columns: 1fr;
    }
    .svc-row {
        grid-template-columns: 44px 1fr auto;
        gap: 16px;
        padding: 24px 14px;
    }
    .svc-row:hover,
    .svc-row:focus-visible {
        padding-left: 22px;
    }
    .svc-row-num {
        font-size: 11px;
        padding-top: 4px;
    }
    .svc-row-arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* =============================================================
   MOBILE NAVIGATION — hamburger toggle + slide-down drawer
   Injected by nav.js on every page. Hidden ≥901px (the desktop
   .topnav takes over there).
   ============================================================= */
.nav-toggle {
    display: none; /* shown only in the mobile breakpoint below */
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    transition:
        background 0.22s ease,
        border-color 0.22s ease;
}
.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}
.nav-toggle:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 2px;
}
.nav-toggle .nt-bars {
    position: relative;
    display: block;
    width: 18px;
    height: 12px;
}
.nav-toggle .nt-bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition:
        transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 0.2s ease;
}
.nav-toggle .nt-bars span:nth-child(1) {
    top: 0;
}
.nav-toggle .nt-bars span:nth-child(2) {
    top: 5px;
}
.nav-toggle .nt-bars span:nth-child(3) {
    top: 10px;
}
.nav-toggle.is-open .nt-bars span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.nav-toggle.is-open .nt-bars span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open .nt-bars span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ---- Drawer shell ---- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 48;
    visibility: hidden;
    pointer-events: none;
}
.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}
.mm-scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 10, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.32s ease;
}
.mobile-menu.is-open .mm-scrim {
    opacity: 1;
}

.mm-panel {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 106px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    background: #0d0e0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
    padding: 20px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-14px) scale(0.985);
    opacity: 0;
    transition:
        transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.3s ease;
}
.mobile-menu.is-open .mm-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mm-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mm-group + .mm-group {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mm-group-label {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: 2px 12px 10px;
}
.mm-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mm-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}
.mm-link:active {
    transform: scale(0.99);
}
.mm-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}
.mm-link-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--neon);
    flex-shrink: 0;
    width: 18px;
}
.mm-link-title,
.mm-link--plain > span {
    flex: 1;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.mm-link-title em,
.mm-link--plain em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
}
.mm-link--plain {
    font-size: 18px;
}
.mm-link-arrow {
    font-family: var(--font-display);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.28);
    transition:
        color 0.18s ease,
        transform 0.18s ease;
    flex-shrink: 0;
}
.mm-link:hover .mm-link-arrow {
    color: var(--neon);
    transform: translateX(3px);
}

.mm-cta {
    justify-content: center;
    margin-top: 8px;
    width: 100%;
    background: #ffffff;
    color: #0d0e0f;
    border-color: #ffffff;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}
.mm-cta:hover {
    background: var(--neon);
    color: #0d0e0f;
    border-color: var(--neon);
}
.mm-cta .dot {
    display: none;
}
.mm-cta .arrow {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    width: auto;
}

body.menu-open {
    overflow: hidden;
}

/* Show the hamburger + allow the drawer only where the desktop nav is hidden */
@media (max-width: 900px) {
    .topbar {
        display: flex;
        align-items: center;
        gap: 10px;
        grid-template-columns: none;
    }
    .topbar .brand {
        margin-right: auto;
    }
    .topbar-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
}
@media (min-width: 901px) {
    .mobile-menu {
        display: none;
    }
    .nav-toggle {
        display: none !important;
    }
}
@media (max-width: 460px) {
    /* keep the capsule from crowding on small phones */
    .topbar-cta .btn--sm .arrow {
        display: none;
    }
    .topbar-cta .btn--sm {
        padding: 10px 13px;
    }
    .topbar .brand-wordmark {
        font-size: 19px;
    }
}
@media (max-width: 360px) {
    .topbar-cta .btn--sm > span:not(.dot) {
        display: none;
    }
    .topbar-cta .btn--sm {
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    .topbar-cta .btn--sm .dot {
        display: block;
    }
}

/* =============================================================
   LEGAL PAGES — Privacy / Terms (shared layout)
   ============================================================= */
.legal-main {
    position: relative;
    z-index: 2;
}

.legal-hero {
    padding: var(--space-hero-top) var(--page-gutter) clamp(40px, 6vw, 64px);
    max-width: var(--page-max);
    margin: 0 auto;
}
.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 14px 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    margin-bottom: 28px;
}
.legal-eyebrow .le-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px var(--neon-glow);
}
.legal-hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    text-wrap: balance;
    margin: 0 0 24px;
}
.legal-hero h1 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
}
.legal-hero .lh-sub {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.55;
    color: var(--ink-dim);
    max-width: 640px;
    text-wrap: pretty;
    margin: 0 0 28px;
}
.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.legal-updated::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--line-strong);
}

.legal-body {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) var(--page-gutter) clamp(80px, 10vw, 120px);
    display: grid;
    grid-template-columns: 248px 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}

/* sticky table of contents */
.legal-toc {
    position: sticky;
    top: 116px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.legal-toc-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding: 0 12px 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
}
.legal-toc a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.35;
    color: var(--ink-dim);
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.legal-toc a .toc-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    flex-shrink: 0;
}
.legal-toc a:hover {
    background: var(--bg-elev);
    color: var(--ink);
}
.legal-toc a.is-active {
    color: var(--ink);
    background: var(--bg-elev);
}
.legal-toc a.is-active .toc-num {
    color: var(--neon);
}

/* content column */
.legal-content {
    min-width: 0;
    max-width: 760px;
}
.legal-section {
    padding-bottom: clamp(36px, 4.5vw, 56px);
    margin-bottom: clamp(36px, 4.5vw, 56px);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 116px;
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.legal-section-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon);
    display: block;
    margin-bottom: 14px;
}
.legal-section h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    text-wrap: balance;
    margin: 0 0 20px;
}
.legal-section h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
}
.legal-section h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 28px 0 10px;
}
.legal-section p,
.legal-section li {
    font-family: var(--font-display);
    font-size: clamp(15.5px, 1.25vw, 17px);
    line-height: 1.65;
    color: var(--ink-dim);
    text-wrap: pretty;
}
.legal-section p {
    margin: 0 0 16px;
}
.legal-section p:last-child {
    margin-bottom: 0;
}
.legal-section p strong {
    color: var(--ink);
    font-weight: 500;
}
.legal-section a:not(.btn) {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--neon);
    transition: color 0.2s ease;
}
.legal-section a:not(.btn):hover {
    color: var(--neon);
}
.legal-section ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.legal-section ul li {
    position: relative;
    padding-left: 22px;
}
.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.7em;
    width: 7px;
    height: 1px;
    background: var(--neon);
}
.legal-section ul li strong {
    color: var(--ink);
    font-weight: 500;
}

/* highlighted callout card inside a legal section */
.legal-callout {
    display: flex;
    gap: 16px;
    padding: 22px 24px;
    margin: 4px 0 8px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.legal-callout::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--neon);
}
.legal-callout .lc-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    flex-shrink: 0;
    padding-top: 3px;
    width: 92px;
}
.legal-callout p {
    margin: 0 !important;
    color: var(--ink);
}

/* contact strip at end of legal pages */
.legal-contact {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-gutter) clamp(96px, 12vw, 140px);
}
.legal-contact-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 52px);
    background: var(--ink);
    border-radius: var(--radius-lg);
    color: var(--bg);
}
.legal-contact-card h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.04;
    color: var(--bg);
    margin: 0;
    text-wrap: balance;
    max-width: 18ch;
}
.legal-contact-card h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: var(--neon-bright);
}
.legal-contact-card p {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin: 12px 0 0;
    max-width: 40ch;
}

@media (max-width: 900px) {
    .legal-body {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .legal-toc {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        padding-bottom: 20px;
        margin-bottom: 28px;
        border-bottom: 1px solid var(--line);
    }
    .legal-toc-label {
        width: 100%;
        border-bottom: none;
        padding-bottom: 8px;
        margin-bottom: 0;
    }
    .legal-toc a {
        border: 1px solid var(--line);
        background: var(--bg-elev);
        padding: 8px 12px;
    }
    .legal-content {
        max-width: none;
    }
    .legal-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================================
   404 — page not found
   ============================================================= */
.nf-main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(120px, 16vw, 180px) var(--page-gutter)
        clamp(80px, 10vw, 120px);
    text-align: center;
}
.nf-inner {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
}
.nf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 16px 8px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
}
.nf-eyebrow .nf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8923a;
    box-shadow: 0 0 0 4px rgba(232, 146, 58, 0.16);
    animation: pulse 2.2s ease-in-out infinite;
}

/* The big 4 · bee · 4 */
.nf-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1.4vw, 18px);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(120px, 27vw, 300px);
    line-height: 0.78;
    letter-spacing: -0.05em;
    color: var(--ink);
    margin: clamp(4px, 1vw, 12px) 0;
}
.nf-code .nf-digit {
    position: relative;
}
.nf-bee {
    position: relative;
    width: clamp(96px, 21vw, 230px);
    height: clamp(96px, 21vw, 230px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nf-bee::before {
    /* hex halo behind the bee, echoing the honeycomb motif */
    content: "";
    position: absolute;
    inset: 6%;
    background: radial-gradient(
        closest-side,
        rgba(34, 199, 0, 0.22),
        rgba(34, 199, 0, 0) 72%
    );
    z-index: 0;
}
.nf-bee img {
    position: relative;
    z-index: 1;
    width: 72%;
    height: 72%;
    object-fit: contain;
    animation: nf-bee-bob 4.5s ease-in-out infinite;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}
@keyframes nf-bee-bob {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

.nf-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--ink);
    text-wrap: balance;
    margin: 0;
}
.nf-title em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon);
}
.nf-sub {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.6;
    color: var(--ink-dim);
    max-width: 540px;
    text-wrap: pretty;
    margin: 0;
}

/* mono "log line" joke */
.nf-log {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    background: var(--ink);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.nf-log .nf-log-tag {
    color: #e8923a;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 10px;
}
.nf-log .nf-log-blink {
    width: 7px;
    height: 14px;
    background: var(--neon-bright);
    display: inline-block;
    animation: caret-blink 1s steps(1, end) infinite;
}

.nf-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

/* helpful destinations */
.nf-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    width: 100%;
    max-width: 620px;
}
.nf-links-label {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
}
.nf-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--bg-elev);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition:
        border-color 0.22s ease,
        transform 0.22s ease,
        color 0.22s ease;
}
.nf-chip .nf-chip-arrow {
    color: var(--ink-mute);
    transition:
        transform 0.22s ease,
        color 0.22s ease;
}
.nf-chip:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.nf-chip:hover .nf-chip-arrow {
    color: var(--neon);
    transform: translateX(3px);
}

@media (max-width: 560px) {
    .nf-code {
        font-size: clamp(96px, 30vw, 150px);
    }
    .nf-bee {
        width: clamp(80px, 26vw, 130px);
        height: clamp(80px, 26vw, 130px);
    }
    .nf-log {
        font-size: 11px;
        padding: 10px 14px;
    }
}

/* === Responsive spacing token overrides === */
@media (max-width: 900px) {
    :root {
        --space-hero-top:     clamp(100px, 13vw, 130px);
        --space-section-v:    clamp(64px, 9vw, 96px);
        --space-section-v-sm: clamp(44px, 6vw, 64px);
    }
}

@media (max-width: 560px) {
    :root {
        --space-hero-top:      100px;
        --space-section-v:      64px;
        --space-section-v-sm:   44px;
    }
}
