/*
Theme Name: EOD
Theme URI: https://evolveordie.co
Author: Evolve or Die
Description: Custom interactive theme for Evolve or Die.
Version: 1.0
Text Domain: eod
*/

/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
    --eod-header-height: 77px;
    --eod-header-safe-gap: 18px;
    --eod-header-safe-top:
        calc(
            var(--eod-header-height) +
            var(--eod-header-safe-gap)
        );
}

body {
    background: #050505;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.eod-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.eod-logo {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.eod-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.7;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #ffffff;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

/* =========================
   HERO
========================= */

.eod-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 35px 50px;
}

.eod-hero::before {
    content: "";
    position: absolute;
    width: 55vw;
    height: 55vw;
    max-width: 850px;
    max-height: 850px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.15) 0%,
            rgba(255,255,255,0.05) 25%,
            rgba(255,255,255,0) 68%
        );
    filter: blur(20px);
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(0.88);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.hero-title {
    position: relative;
    z-index: 2;
    width: 100%;
    font-size: clamp(80px, 15vw, 260px);
    line-height: 0.72;
    letter-spacing: -0.085em;
    font-weight: 900;
    text-transform: uppercase;
    transform-origin: left center;
}

.hero-title span {
    display: block;
}

.hero-title .line-two {
    padding-left: 27%;
}

.hero-title .line-three {
    padding-left: 10%;
}

.hero-sub {
    position: absolute;
    left: 38px;
    bottom: 38px;
    z-index: 3;
    max-width: 330px;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.62;
}

.hero-scroll {
    position: absolute;
    right: 38px;
    bottom: 38px;
    z-index: 3;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

.solution-payoff {
    --solution-copy-opacity: 0;
    --solution-copy-y: 18px;

    position: absolute;
    left: clamp(34px, 7vw, 120px);
    top: 52%;
    z-index: 3;
    max-width: min(460px, 36vw);
    pointer-events: none;
    opacity: var(--solution-copy-opacity);
    transform:
        translate3d(
            0,
            calc(-50% + var(--solution-copy-y)),
            0
        );
    transition:
        opacity 0.2s ease-out,
        transform 0.2s ease-out;
}

.solution-payoff__eyebrow,
.solution-payoff__title,
.solution-payoff__copy,
.solution-payoff__note {
    display: block;
}

.solution-payoff__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
}

.solution-payoff__title {
    font-size: clamp(40px, 4.3vw, 74px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    color: #f6fbff;
}

.solution-payoff__copy {
    width: min(340px, 100%);
    margin-top: 22px;
    font-size: 11px;
    line-height: 1.65;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.56);
}

.solution-payoff__note {
    width: min(360px, 100%);
    margin-top: 14px;

    font-size: 10px;
    line-height: 1.55;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.74);
}

.solution-payoff__actions {
    display: flex;
    gap: 12px;
    align-items: center;

    margin-top: 26px;

    pointer-events: auto;
}

.solution-payoff__button {
    min-height: 42px;
    min-width: 118px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border: 1px solid rgba(246,251,255,0.28);
    border-radius: 2px;

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.solution-payoff__button span:last-child {
    transition:
        transform 0.18s ease;
}

.solution-payoff__button--secondary {
    background: rgba(5,5,5,0.28);
    color: #f6fbff;
}

.solution-payoff__button--primary {
    border-color: rgba(117,100,255,0.42);
    background: #eef4f7;
    color: #050505;
}

.solution-payoff__button:hover,
.solution-payoff__button:focus-visible {
    border-color: rgba(246,251,255,0.68);
}

.solution-payoff__button--primary:hover,
.solution-payoff__button--primary:focus-visible {
    background: #ffffff;
    border-color: rgba(117,100,255,0.72);
}

.solution-payoff__button:hover span:last-child,
.solution-payoff__button:focus-visible span:last-child {
    transform: translateX(4px);
}

.solution-payoff__button:focus-visible {
    outline: 1px solid #f6fbff;
    outline-offset: 3px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    html {
        --eod-header-height: 65px;
        --eod-header-safe-gap: 14px;
    }

    .eod-header {
        padding: 22px;
    }

    .eod-status {
        font-size: 9px;
    }

    .eod-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: clamp(72px, 25vw, 150px);
        line-height: 0.77;
    }

    .hero-title .line-two {
        padding-left: 10%;
    }

    .hero-title .line-three {
        padding-left: 0;
    }

    .hero-sub {
        left: 22px;
        bottom: 65px;
        max-width: 250px;
        font-size: 10px;
    }

    .hero-scroll {
        left: 22px;
        right: auto;
        bottom: 25px;
    }

    .solution-payoff {
        left: 22px;
        right: 22px;
        top: 42%;

        max-width: none;
    }

    .solution-payoff__actions {
        margin-top:
            clamp(18px, 4.8vw, 24px);
    }

    .solution-payoff__button {
        min-height: 44px;
    }

    .evolution-engine.is-field {
        left: 50%;
        top: 64%;

        width:
            116vw;

        height:
            min(86vw, 390px);

        aspect-ratio:
            auto;
    }
}

/* =========================
   EVOLUTION ENGINE
========================= */

.evolution-engine {
    --mouse-x: 0;
    --mouse-y: 0;
    --engine-hold-x: 0px;

    position: absolute;
    left: 68%;
    top: 50%;
    width: min(72vw, 1120px);
    aspect-ratio: 1;
    transform:
        translate(-50%, -50%)
        translate(
            calc(var(--mouse-x) * 18px),
            calc(var(--mouse-y) * 18px)
        );

    z-index: 1;
    pointer-events: none;
    transition: transform 0.12s ease-out;
}

.evolution-field-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.evolution-engine.is-field {
    isolation: isolate;
}

.evolution-engine.is-field::before {
    content: "";
    position: absolute;
    inset: -16%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at 78% 20%,
            rgba(36,91,255,0.16),
            transparent 38%
        ),
        radial-gradient(
            ellipse at 54% 42%,
            rgba(70,230,255,0.16),
            rgba(86,62,255,0.08) 28%,
            transparent 58%
        ),
        radial-gradient(
            ellipse at 88% 70%,
            rgba(255,42,166,0.11),
            rgba(255,92,69,0.055) 30%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 66% 82%,
            rgba(95,0,150,0.11),
            transparent 44%
        ),
        radial-gradient(
            circle at 58% 36%,
            rgba(255,255,255,0.13),
            transparent 22%
        );
    filter: blur(28px);
    opacity: 0.95;
}

.evolution-engine.is-field .engine-glow,
.evolution-engine.is-field .engine-orb {
    opacity: 0;
    visibility: hidden;
}

.evolution-field-labels {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.evolution-field-label {
    position: absolute;
    color: rgba(255,255,255,0.78);
    font-size: clamp(8px, 0.72vw, 11px);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow:
        0 0 18px rgba(70,230,255,0.22),
        0 0 32px rgba(255,42,166,0.14);
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.engine-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 42% 40%,
            rgba(255,255,255,0.25),
            rgba(255,255,255,0.08) 25%,
            rgba(120,120,255,0.05) 45%,
            transparent 70%
        );

    filter: blur(45px);
    animation: engineGlow 4s ease-in-out infinite;
}

.engine-orb {
    position: absolute;
    inset: 18%;

    border-radius: 43% 57% 61% 39% / 51% 42% 58% 49%;

    background:
        radial-gradient(
            circle at 32% 27%,
            rgba(255,255,255,0.95),
            rgba(255,255,255,0.14) 10%,
            transparent 23%
        ),
        radial-gradient(
            circle at 65% 67%,
            rgba(90,70,255,0.28),
            transparent 38%
        ),
        radial-gradient(
            circle at 50% 50%,
            #161616,
            #050505 68%
        );

    box-shadow:
        inset 18px 20px 45px rgba(255,255,255,0.08),
        inset -25px -35px 60px rgba(0,0,0,0.9),
        0 0 80px rgba(255,255,255,0.08);

    transform:
        rotate(calc(var(--mouse-x) * 9deg))
        rotateX(calc(var(--mouse-y) * -9deg));

    animation:
        engineFloat 6s ease-in-out infinite,
        engineMorph 11s ease-in-out infinite alternate;
}

.engine-core {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 29%;
    aspect-ratio: 1;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 38% 35%,
            #ffffff 0%,
            #bcbcff 8%,
            #5447ff 25%,
            #0c0c12 52%,
            #000000 72%
        );

    box-shadow:
        0 0 25px rgba(150,140,255,0.65),
        0 0 65px rgba(90,70,255,0.28),
        0 0 110px rgba(255,255,255,0.08);

    animation: corePulse 2.8s ease-in-out infinite;
}

.engine-ring {
    position: absolute;
    left: 50%;
    top: 50%;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 50%;

    transform-style: preserve-3d;
}

.engine-ring-one {
    width: 72%;
    height: 72%;

    transform:
        translate(-50%, -50%)
        rotateX(68deg);

    animation: ringOne 9s linear infinite;
}

.engine-ring-two {
    width: 88%;
    height: 50%;

    transform:
        translate(-50%, -50%)
        rotate(38deg)
        rotateX(67deg);

    animation: ringTwo 13s linear infinite reverse;
}

.engine-ring-three {
    width: 58%;
    height: 94%;

    transform:
        translate(-50%, -50%)
        rotate(-30deg)
        rotateY(68deg);

    animation: ringThree 11s linear infinite;
}


@keyframes engineGlow {

    0%,
    100% {
        opacity: .55;
        transform: scale(.88);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }

}


@keyframes engineFloat {

    0%,
    100% {
        translate: 0 -8px;
    }

    50% {
        translate: 0 12px;
    }

}


@keyframes engineMorph {

    0% {
        border-radius:
            43% 57% 61% 39%
            /
            51% 42% 58% 49%;
    }

    33% {
        border-radius:
            59% 41% 48% 52%
            /
            37% 63% 44% 56%;
    }

    66% {
        border-radius:
            39% 61% 55% 45%
            /
            62% 38% 59% 41%;
    }

    100% {
        border-radius:
            55% 45% 39% 61%
            /
            44% 57% 43% 56%;
    }

}


@keyframes corePulse {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(.88);

        filter: brightness(.8);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);

        filter: brightness(1.35);
    }

}


@keyframes ringOne {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}


@keyframes ringTwo {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}


@keyframes ringThree {

    from {
        rotate: 0deg;
    }

    to {
        rotate: -360deg;
    }

}


/* Grain / digital atmosphere */

.eod-hero::after {

    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    z-index: 4;

    opacity: .035;

    background-image:
        repeating-linear-gradient(
            0deg,
            #ffffff 0px,
            transparent 1px,
            transparent 3px
        );
}


/* Make title appear in front of engine */

.hero-title {
    pointer-events: none;
}


/* MOBILE */

@media (max-width: 700px) {

    .evolution-engine {

        left: 62%;
        top: 46%;

        width: 112vw;

        opacity: .75;
    }

}
/* =========================
   SCROLL EXPERIENCE
========================= */

.eod-intro {
    position: relative;
    height: 620vh;
    background: #050505;
}

.eod-intro .eod-hero {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 100vh;
}


/* Allow JS to control the Engine */

.evolution-engine {
    --engine-scale: 1;
    --engine-opacity: 1;
    --engine-hold-x: 0px;

    opacity: var(--engine-opacity);

    transform:
        translate(-50%, -50%)
        translateX(var(--engine-hold-x))
        translate(
            calc(var(--mouse-x) * 18px),
            calc(var(--mouse-y) * 18px)
        )
        scale(var(--engine-scale));

    will-change: transform, opacity;
}


/* Hero text performance */

.hero-title {
    will-change: transform, opacity;
}

.hero-line {
    will-change: transform, opacity;
}


/* =========================
   03 / THE QUESTION
========================= */

.question-section {
    --question-progress: 0;
    --question-copy-progress: 0;
    --question-rail-progress: 0;
    --question-ink: #050505;
    --question-paper: #f1f0eb;
    --question-grid: rgba(5, 5, 5, 0.055);
    --question-rule: rgba(5, 5, 5, 0.16);
    --question-muted: rgba(5, 5, 5, 0.58);
    --question-violet: #7564ff;

    position: relative;

    min-height: 128vh;

    display: flex;
    align-items: stretch;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            0deg,
            rgba(5, 5, 5, 0.035) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 82% 22%,
            rgba(117, 100, 255, 0.08),
            transparent 28%
        ),
        var(--question-paper);
    background-size:
        clamp(72px, 8vw, 128px) clamp(72px, 8vw, 128px),
        clamp(72px, 8vw, 128px) clamp(72px, 8vw, 128px),
        auto,
        auto;
    color: var(--question-ink);

    overflow: hidden;

    padding:
        clamp(92px, 8vw, 138px)
        clamp(34px, 5vw, 76px)
        clamp(70px, 7vw, 110px);
}


.question-section::before,
.question-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}


.question-section::before {
    inset:
        clamp(86px, 9vw, 140px)
        clamp(28px, 4.5vw, 70px);

    border-top: 1px solid rgba(5, 5, 5, 0.12);
    border-bottom: 1px solid rgba(5, 5, 5, 0.10);

    opacity: 0.72;
}


.question-section::after {
    top: clamp(86px, 9vw, 140px);
    bottom: clamp(90px, 9vw, 140px);
    left: 62%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(5, 5, 5, 0.2) 18%,
            rgba(5, 5, 5, 0.08) 62%,
            transparent
        );
}


.question-inner {
    position: relative;
    z-index: 1;

    width: 100%;

    display: flex;
    flex-direction: column;
}


.question-eyebrow {
    position: relative;

    margin-bottom: clamp(44px, 4.8vw, 72px);
    padding-left: 18px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity:
        calc(0.34 + var(--question-progress) * 0.66);

    transform:
        translateY(
            calc((1 - var(--question-progress)) * 12px)
        );
}


.question-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: var(--question-violet);

    transform:
        translateY(-50%)
        scale(calc(0.4 + var(--question-progress) * 0.6));
}


.question-layout {
    display: grid;
    grid-template-columns:
        repeat(12, minmax(0, 1fr));
    column-gap: clamp(18px, 2vw, 32px);
    row-gap: clamp(34px, 4vw, 64px);

    flex: 1;
    align-items: start;
}


.question-primary {
    grid-column: 1 / 5;
    align-self: start;
}


.question-title {
    font-size:
        clamp(54px, 4.85vw, 94px);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}


.question-title span {
    display: block;
    white-space: nowrap;

    transform:
        translateY(
            calc((1 - var(--question-progress)) * 34px)
        );

    opacity:
        calc(0.22 + var(--question-progress) * 0.78);
}


.question-title span:nth-child(2) {
    transform:
        translateY(
            calc((1 - var(--question-progress)) * 18px)
        )
        translateX(
            calc((1 - var(--question-progress)) * -10px)
        );
}


.question-principle {
    position: relative;

    width: min(620px, 100%);
    margin-top: clamp(54px, 6vw, 96px);
    padding-top: 22px;

    border-top: 1px solid var(--question-rule);

    font-size: clamp(38px, 3.25vw, 62px);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    opacity:
        calc(0.2 + var(--question-copy-progress) * 0.8);

    transform:
        translateY(
            calc((1 - var(--question-copy-progress)) * 16px)
        );
}


.question-principle::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;

    width:
        calc(34px + var(--question-rail-progress) * 138px);
    height: 3px;

    background: var(--question-violet);
}


.question-principle span {
    display: block;
    margin-bottom: 20px;

    color: var(--question-muted);

    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
}


.question-stage {
    position: relative;
    grid-column: 5 / 8;
    align-self: center;
    justify-self: center;

    width: min(31vw, 500px);
    min-width: 300px;
    aspect-ratio: 1;

    opacity:
        calc(0.36 + var(--question-progress) * 0.64);

    transform:
        translateY(
        calc((1 - var(--question-progress)) * 18px)
        );
}


.decision-core-mount {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;

    width: 108%;
    height: 108%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


.decision-core-canvas {
    display: block;

    width: 100%;
    height: 100%;
}


.question-stage::before,
.question-stage::after,
.question-stage__ring,
.question-stage__axis,
.question-stage__core {
    content: "";
    position: absolute;
    pointer-events: none;
}


.question-stage::before {
    inset: 0;

    border: 1px solid rgba(5, 5, 5, 0.12);
    border-radius: 50%;
}


.question-stage::after {
    inset: 18%;

    border: 1px dashed rgba(5, 5, 5, 0.14);
    border-radius: 50%;
}


.question-stage__ring {
    left: 50%;
    top: 50%;

    border: 1px solid rgba(5, 5, 5, 0.10);
    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        rotate(22deg);
}


.question-stage__ring--outer {
    width: 72%;
    height: 72%;
}


.question-stage__ring--inner {
    width: 46%;
    height: 46%;

    border-color: rgba(117, 100, 255, 0.22);
    transform:
        translate(-50%, -50%)
        rotate(-18deg);
}


.question-stage__axis {
    left: 50%;
    top: 50%;

    background: rgba(5, 5, 5, 0.14);
}


.question-stage__axis--x {
    width: 112%;
    height: 1px;

    transform:
        translate(-50%, -50%);
}


.question-stage__axis--y {
    width: 1px;
    height: 112%;

    transform:
        translate(-50%, -50%);
}


.question-stage__core {
    left: 50%;
    top: 50%;
    z-index: 1;

    width: 12px;
    height: 12px;

    border: 1px solid var(--question-violet);
    border-radius: 50%;
    background: var(--question-paper);

    transform:
        translate(-50%, -50%);
}


.question-stage span {
    position: absolute;
    left: 50%;
    bottom: -62px;

    transform: translateX(-50%);

    color: rgba(5, 5, 5, 0.42);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}


.question-copy {
    grid-column: 8 / 13;
    align-self: start;

    width: min(620px, 100%);
    margin-left: auto;

    padding-top: clamp(8px, 1vw, 18px);

    opacity:
        var(--question-copy-progress);

    transform:
        translateY(
            calc((1 - var(--question-copy-progress)) * 22px)
        );
}


.question-statement {
    font-size:
        clamp(20px, 1.75vw, 30px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}


.question-custom {
    margin:
        clamp(20px, 2.2vw, 32px)
        0
        0;

    font-size: clamp(15px, 1.12vw, 18px);
    line-height: 1.48;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(5, 5, 5, 0.68);
}


.question-statement::after {
    content: "";
    display: block;

    width:
        calc(40px + var(--question-rail-progress) * 120px);
    height: 1px;
    margin-top: clamp(22px, 2.6vw, 34px);

    background: var(--question-rule);
}


.question-diagnostic {
    margin:
        clamp(34px, 3.4vw, 56px)
        0
        clamp(30px, 3vw, 46px);
}


.question-rail {
    display: grid;
    grid-template-columns:
        54px 48px minmax(0, 1fr);
    column-gap: 22px;
    align-items: stretch;

    min-height: clamp(340px, 31vw, 470px);

    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.question-rail__start,
.question-rail__end {
    color: var(--question-ink);
}


.question-rail__start {
    align-self: start;

    font-size: clamp(14px, 1vw, 16px);
}


.question-rail__end {
    grid-column: 3;
    align-self: end;

    color: var(--question-ink);

    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 900;
    letter-spacing: 0.13em;
}


.question-rail__track {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
}


.question-rail__track::before,
.question-rail__track::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;

    width: 1px;
    height: 100%;

    transform: translateX(-50%);
    transform-origin: top center;
}


.question-rail__track::before {
    background: rgba(5, 5, 5, 0.18);
}


.question-rail__track::after {
    background: linear-gradient(
        to bottom,
        var(--question-violet),
        rgba(117, 100, 255, 0.35)
    );
    transform:
        translateX(-50%)
        scaleY(var(--question-rail-progress));
}


.question-rail__indicator {
    position: absolute;
    left: 50%;
    top:
        calc(var(--question-rail-progress) * 100%);

    width: 16px;
    height: 16px;

    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            #f2efff 0 18%,
            var(--question-violet) 20% 62%,
            rgba(117, 100, 255, 0.12) 64% 100%
        );
    box-shadow:
        0 0 0
        calc(3px + var(--question-rail-progress) * 4px)
        rgba(117, 100, 255, 0.1);

    transform: translate(-50%, -50%);
    transition:
        box-shadow 180ms ease;
}


.question-checkpoints {
    grid-column: 3;
    grid-row: 1 / span 2;

    display: grid;
    grid-template-rows: repeat(4, 1fr);
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
    color: var(--question-muted);
}


.question-checkpoints li {
    position: relative;
    padding-left: 24px;
}


.question-checkpoints li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 12px;
    height: 1px;

    background: rgba(5, 5, 5, 0.34);
}


.question-secondary {
    display: grid;

    margin: 0;
    padding: 0;

    border-top: 1px solid var(--question-rule);

    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(5, 5, 5, 0.66);
}


.question-secondary span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: baseline;

    min-height: clamp(58px, 5.6vw, 76px);
    padding: 16px 0;

    border-bottom: 1px solid rgba(5, 5, 5, 0.16);
}


.question-secondary b,
.question-secondary i {
    font: inherit;
}


.question-secondary b {
    color: rgba(5, 5, 5, 0.72);
}


.question-secondary i {
    color: rgba(5, 5, 5, 0.38);
    font-style: normal;
}


.question-discovery {
    grid-column: 1 / 13;
    align-self: end;

    margin-top:
        clamp(18px, 3vw, 42px);
    padding:
        clamp(24px, 2.4vw, 38px)
        0
        0;

    display: grid;
    grid-template-columns:
        minmax(220px, 0.8fr)
        minmax(280px, 1fr)
        minmax(340px, 1.25fr);
    gap: clamp(22px, 3vw, 52px);
    align-items: start;

    border-top: 1px solid rgba(5, 5, 5, 0.22);

    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.45;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(5, 5, 5, 0.66);
}


.question-discovery > span {
    display: block;
    margin-bottom: 0;

    color: var(--question-ink);

    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.14em;
}


.question-discovery p {
    margin: 0;
}


.question-discovery p + p {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 14px;

    margin-top: 0;
}


.question-discovery a {
    color: var(--question-ink);
    text-decoration: none;
    white-space: nowrap;

    background-image:
        linear-gradient(
            var(--question-violet),
            var(--question-violet)
        );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;

    transition:
        background-size 0.18s ease,
        transform 0.18s ease;
}


.question-discovery a:hover {
    background-size: 100% 2px;
    transform: translateX(3px);
}


.question-discovery a:focus-visible {
    outline: 1px solid var(--question-violet);
    outline-offset: 3px;
}


@media (prefers-reduced-motion: reduce) {

    .question-section {
        --question-progress: 1;
        --question-copy-progress: 1;
        --question-rail-progress: 1;
    }

    .question-eyebrow,
    .question-title span,
    .question-copy,
    .question-principle {
        transform: none;
        opacity: 1;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .eod-intro {
        height: 470vh;
    }

    .solution-payoff {
        left: 24px;
        top: 24%;
        max-width: calc(100vw - 48px);
    }

    .solution-payoff__title {
        font-size: clamp(36px, 12vw, 64px);
    }

    .solution-payoff__copy {
        margin-top: 18px;
        line-height: 1.55;
    }

    .solution-payoff__note {
        margin-top: 12px;
        font-size: 9px;
        line-height: 1.45;
    }

    .solution-payoff__actions {
        gap: 10px;
        margin-top: 22px;
    }

    .solution-payoff__button {
        min-height: 44px;
        min-width: 0;
        flex: 1 1 0;
        padding: 0 12px;

        font-size: 9px;
        letter-spacing: 0.13em;
    }


    .question-section {

        min-height: auto;
        padding:
            98px 22px
            92px;

    }

    .question-section::before {
        inset: 78px 22px 72px;
    }


    .question-section::after {
        display: none;
    }


    .question-eyebrow {
        margin-bottom: 42px;
    }


    .question-layout {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }


    .question-primary {
        display: contents;
    }


    .question-title {
        order: 1;

        font-size:
            clamp(36px, 10.2vw, 52px);
        line-height: 0.88;
        letter-spacing: -0.09em;

    }


    .question-principle {
        order: 2;

        width: 100%;
        margin-top: 0;

        font-size: clamp(36px, 11vw, 54px);
    }


    .question-stage {
        order: 3;

        width: min(76vw, 340px);
        min-width: 0;
        margin:
            10px auto
            58px;
    }


    .question-stage span {
        bottom: -50px;
    }


    .question-copy {
        display: contents;

        width: 100%;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;

    }


    .question-statement {
        order: 4;

        font-size: clamp(19px, 6vw, 30px);
        line-height: 1.02;
    }


    .question-custom {
        order: 5;

        margin-top: -14px;

        font-size: clamp(15px, 4.3vw, 17px);
        line-height: 1.48;
    }


    .question-diagnostic {
        order: 6;

        margin: 2px 0 0;
    }


    .question-rail {
        grid-template-columns:
            42px 38px minmax(0, 1fr);
        column-gap: 16px;

        min-height: 320px;

        font-size: clamp(12px, 3.5vw, 14px);
        letter-spacing: 0.14em;
    }


    .question-rail__end {
        font-size: clamp(16px, 4.5vw, 20px);
    }


    .question-secondary {
        order: 7;

        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.4;
    }


    .question-secondary span {
        min-height: 62px;
    }


    .question-discovery {
        order: 8;

        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;

        margin-top: 0;
        padding-top: 24px;

        font-size: clamp(15px, 4.3vw, 17px);
    }


    .question-discovery > span {
        font-size: clamp(22px, 6.4vw, 28px);
    }


    .question-discovery p + p {
        display: grid;
        gap: 12px;
    }


    .question-discovery a {
        white-space: normal;
    }

}
/* =========================
   ADAPTIVE HEADER
========================= */

.eod-header {
    transition:
        color 0.35s ease,
        mix-blend-mode 0.35s ease;
}

.eod-header .eod-logo,
.eod-header .eod-status {
    transition: color 0.35s ease;
}

.eod-header .status-dot {
    transition: background 0.35s ease;
}

.eod-header.is-light .eod-logo,
.eod-header.is-light .eod-status {
    color: #050505;
}

.eod-header.is-light .status-dot {
    background: #050505;
}
/* =========================
   SCREEN 03 — EVOLUTION
========================= */

.evolution-section {
    position: relative;
    height: 420vh;
    background: #050505;
    color: #ffffff;
}

.evolution-stage {
    position: sticky;
    top: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    padding:
        75px
        clamp(30px, 4vw, 65px)
        38px;
}


/* META */

.evolution-meta {
    width: 100%;

    display: flex;
    justify-content: space-between;

    position: relative;
    z-index: 10;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.55;
}


/* MAIN WORD AREA */

.evolution-words {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        100px
        minmax(0, 1fr);

    align-items: center;

    gap: 20px;
}


.evolution-old,
.evolution-new {
    min-width: 0;
}


.evolution-label {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    opacity: 0.35;
}


.evolution-word {
    --word-fit-size: clamp(55px, 7.5vw, 145px);
    --word-shift-x: 0px;

    white-space: nowrap;

    font-size:
        var(--word-fit-size);

    line-height: 0.82;

    font-weight: 900;

    letter-spacing: -0.075em;

    text-transform: uppercase;

    will-change:
        transform,
        opacity,
        filter;
}

.evolution-word-inner {
    display: inline-block;

    transform:
        translateX(var(--word-shift-x));

    transform-origin: left center;

    will-change: transform;
}


.evolution-old-word {
    transform-origin: left center;
}


.evolution-new {
    justify-self: center;
    width: max-content;
    max-width: 100%;
    text-align: left;
    padding-right: 0;
    box-sizing: border-box;
}


.evolution-new-word {
    transform-origin: right center;
}

.evolution-new-word .evolution-word-inner {
    transform-origin: right center;
    width: max-content;
    max-width: none;
    padding-right: 0.16em;
    margin-right: -0.16em;
    box-sizing: content-box;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #d9d7ff 35%,
            #7469ff 70%,
            #ffffff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

/* DIVIDER */

.evolution-divider {
    position: relative;

    height: 45vh;

    display: flex;
    align-items: center;
    justify-content: center;
}


.evolution-divider::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,.3),
            transparent
        );
}


.evolution-arrow {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.25);

    border-radius: 50%;

    background: #050505;

    font-size: 25px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


/* BOTTOM */

.evolution-bottom {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    position: relative;

    z-index: 10;

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    opacity: 0.55;
}


.evolution-command {
    text-align: right;
}


/* PROGRESS */

.evolution-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        rgba(255,255,255,.09);
}


.evolution-progress-bar {
    width: 0%;
    height: 100%;

    background: #ffffff;

    will-change: width;
}


/* GLOW */

.evolution-stage::before {
    content: "";

    position: absolute;

    width: 65vw;
    height: 65vw;

    right: -28vw;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(82,65,255,.22),
            rgba(82,65,255,.07) 32%,
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* SUBTLE GRID */

.evolution-stage::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .08;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size:
        90px 90px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black,
            transparent
        );
}


/* MOBILE */

@media (max-width: 700px) {

    .evolution-section {
        height: 380vh;
    }

    .evolution-stage {
        padding:
            70px 22px
            30px;
    }

    .evolution-words {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .evolution-divider {
        height: 70px;
    }

    .evolution-divider::before {

        left: 0;
        top: 50%;

        width: 100%;
        height: 1px;

    }

    .evolution-arrow {

        transform:
            rotate(90deg);

    }

    .evolution-new {
        text-align: left;
        padding-right: 0;
    }

    .evolution-old,
    .evolution-new,
    .evolution-word {
        width: 100%;
        max-width: none;
    }

    .evolution-new-word,
    .evolution-new-word .evolution-word-inner {
        transform-origin: left center;
    }

    .evolution-new-word .evolution-word-inner {
        width: max-content;
        max-width: none;
        padding-right: 0.16em;
        margin-right: -0.16em;
        box-sizing: content-box;
    }

    .evolution-word {
        --word-fit-size: clamp(55px, 17vw, 100px);

        font-size:
            var(--word-fit-size);

        white-space: nowrap;

    }

    .evolution-bottom {

        font-size: 9px;

    }

}

/* ==========================================
   SCREEN 04 — CAPABILITIES / ADAPT
========================================== */

.capabilities-section {
    position: relative;
    height: 860vh;
    scroll-margin-top:
        calc(var(--eod-header-safe-top) + 12px);
    background: #050505;
    color: #ffffff;
}

.capabilities-stage {
    --cap-mouse-x: 0;
    --cap-mouse-y: 0;

    position: sticky;
    top: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 50%,
            rgba(86, 67, 255, 0.14),
            transparent 32%
        ),
        #050505;
}


/* ==========================================
   INTRO — ADAPT
========================================== */

.capabilities-intro {
    position: absolute;
    inset: 0;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    pointer-events: none;

    will-change:
        opacity,
        transform;
}

.capabilities-intro-meta {
    position: absolute;

    left: clamp(30px, 4vw, 65px);
    right: clamp(30px, 4vw, 65px);
    top: var(--eod-header-safe-top);

    display: flex;
    justify-content: space-between;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.5;
}

.adapt-word {
    font-size:
        clamp(110px, 21vw, 360px);

    line-height: 0.72;

    font-weight: 900;

    letter-spacing: -0.09em;

    text-transform: uppercase;

    transform-origin: center center;

    will-change:
        transform,
        opacity,
        filter;
}

.adapt-copy {
    position: absolute;

    left: clamp(30px, 4vw, 65px);
    bottom: 45px;

    font-size: 11px;
    line-height: 1.5;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    opacity: 0.58;
}

.adapt-enter {
    position: absolute;

    right: clamp(30px, 4vw, 65px);
    bottom: 45px;

    font-size: 10px;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    opacity: 0.5;
}


/* ==========================================
   CAPABILITY WORLD
========================================== */

.capabilities-world {
    position: absolute;
    inset: 0;

    z-index: 5;

    padding:
        80px
        clamp(30px, 4vw, 65px)
        40px;

    display: flex;
    flex-direction: column;

    opacity: 0;

    transform: translateY(50px);

    pointer-events: none;

    will-change:
        opacity,
        transform;
}


/* META */

.capabilities-world-meta {
    display: flex;
    justify-content: space-between;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.48;

    position: relative;
    z-index: 10;
}


/* MAIN LAYOUT */

.capabilities-layout {
    flex: 1;

    display: grid;

    grid-template-columns:
        minmax(400px, 1.2fr)
        minmax(280px, 0.75fr)
        minmax(280px, 0.8fr);

    align-items: center;

    gap: clamp(25px, 4vw, 80px);

    position: relative;
}


/* ==========================================
   CAPABILITY LIST
========================================== */

.capability-list {
    display: flex;
    flex-direction: column;

    position: relative;

    z-index: 10;
}

.capability-item {
    appearance: none;

    width: 100%;

    display: grid;

    grid-template-columns:
        45px
        1fr;

    align-items: center;

    border: 0;
    border-bottom:
        1px solid rgba(255,255,255,0.11);

    background: transparent;

    color: rgba(255,255,255,0.24);

    padding:
        11px 0
        13px;

    text-align: left;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        opacity 0.35s ease;

    will-change:
        transform,
        opacity;
}

.capability-item:first-child {
    border-top:
        1px solid rgba(255,255,255,0.11);
}

.capability-number {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;

    opacity: 0.45;
}

.capability-name {
    font-size:
        clamp(52px, 5.4vw, 110px);

    line-height: 0.85;

    font-weight: 900;

    letter-spacing: -0.075em;

    text-transform: uppercase;

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        filter 0.35s ease;
}

.capability-item:hover,
.capability-item.is-active {
    color: #ffffff;
}

.capability-item:hover .capability-name,
.capability-item.is-active .capability-name {
    transform: translateX(20px);
}

.capability-list:hover
.capability-item:not(:hover):not(.is-active) {
    opacity: 0.22;
}


/* ==========================================
   CENTER CORE
========================================== */

.capability-core {
    position: relative;

    width: min(34vw, 460px);

    aspect-ratio: 4 / 3;

    justify-self: center;

    transform:
        translate(
            calc(var(--cap-mouse-x) * -20px),
            calc(var(--cap-mouse-y) * -20px)
        );

    transition:
        transform 0.16s ease-out;

    pointer-events: none;
}

.capability-core::before {
    content: "";

    position: absolute;

    inset: -8%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at 50% 48%,
            rgba(116,92,255,0.62),
            rgba(66,223,255,0.24) 38%,
            rgba(8,8,18,0.08) 64%,
            transparent 75%
        );

    filter: blur(36px);

    opacity: 0.86;
}

.capability-core::after {
    content: "";

    position: absolute;

    inset: -14%;

    border-radius: 50%;

    background:
        conic-gradient(
            from 210deg,
            transparent,
            rgba(66,223,255,0.2),
            rgba(116,92,255,0.3),
            rgba(170,255,69,0.1),
            transparent 76%
        );

    filter: blur(42px);

    opacity: 0.42;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.capability-core[data-signal-state="automate"]::after {
    opacity: 0.62;
}

.capability-core[data-signal-state="think"]::after {
    opacity: 0.36;

    transform:
        scale(0.82);
}

.capability-core[data-signal-state="amplify"]::before {
    opacity: 1;

    transform:
        scale(1.08);
}

.capability-core[data-signal-state="amplify"]::after {
    opacity: 0.76;

    transform:
        scale(1.18);
}

.signal-field {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;

    transform-origin: center;
}

.signal-field__aura {
    opacity: 0.82;

    transform-origin: center;

    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.signal-path,
.signal-pulse,
.signal-node {
    transform-box: fill-box;
    transform-origin: center;

    transition:
        opacity 0.55s ease,
        stroke 0.55s ease,
        fill 0.55s ease,
        stroke-width 0.55s ease,
        filter 0.55s ease,
        transform 0.55s ease;
}

.signal-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.signal-path--primary {
    stroke-width: 2.8;
    stroke-opacity: 0.95;
}

.signal-path--secondary {
    stroke-width: 1.45;
    stroke-opacity: 0.78;
}

.signal-path--ambient {
    stroke-width: 0.8;
    stroke-opacity: 0.5;
}

.signal-path--ribbon {
    stroke-width: 13;
    stroke-opacity: 0.28;
    filter: url(#signalSoftGlow);
}

.signal-path--line {
    stroke-width: 1.5;
}

.signal-path--structure {
    stroke-width: 2.2;
}

.signal-path--wave {
    stroke-width: 2.45;
}

.signal-path--ghost {
    stroke-width: 22;
    stroke-opacity: 0.07;
    filter: url(#signalSoftGlow);
}

.signal-path--glow {
    stroke-width: 8;
    stroke-opacity: 0.18;
    filter: url(#signalSoftGlow);
}

.signal-path--glow.signal-path--primary {
    stroke-width: 10;
}

.signal-path--glow.signal-path--secondary {
    stroke-width: 6;
}

.signal-path--glow.signal-path--ambient {
    stroke-width: 3.5;
}

.signal-node {
    stroke: rgba(5,7,11,0.84);
    stroke-width: 1.2;

    filter:
        drop-shadow(0 0 4px rgba(66,223,255,0.26));
}

.signal-pulse {
    filter: url(#signalSoftGlow);

    transition:
        opacity 0.25s ease,
        fill 0.4s ease;
}

.signal-origin__ring {
    fill: rgba(5,7,11,0.45);
    stroke: rgba(232,237,242,0.86);
    stroke-width: 1.25;

    filter:
        drop-shadow(0 0 5px rgba(66,223,255,0.28));
}

.signal-origin__point {
    fill: #8a6cff;
    filter: url(#signalSoftGlow);
}

.capability-core.is-realigning .signal-origin__ring {
    stroke: rgba(66,223,255,0.95);
}

@media (max-width: 700px) {

    .signal-path--primary,
    .signal-path--structure,
    .signal-path--wave {
        stroke-width: 2.6;
    }

    .signal-path--secondary,
    .signal-path--line {
        stroke-width: 1.35;
    }

    .signal-path--ambient {
        stroke-width: 0.85;
    }

    .signal-path--ribbon {
        stroke-width: 10;
    }

    .signal-path--ghost {
        stroke-width: 16;
    }

}

@media (prefers-reduced-motion: reduce) {

    .signal-path,
    .signal-pulse,
    .signal-node,
    .signal-field__aura {
        transition-duration: 0.01ms;
    }

}



/* ==========================================
   DETAIL PANEL
========================================== */

.capability-detail {
    position: relative;

    z-index: 10;

    max-width: 420px;

    transform:
        translate(
            calc(var(--cap-mouse-x) * 10px),
            calc(var(--cap-mouse-y) * 10px)
        );

    transition:
        transform 0.18s ease-out;
}

.capability-detail-number {
    margin-bottom: 25px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.18em;

    opacity: 0.42;
}

.capability-detail h3 {
    font-size:
        clamp(50px, 5vw, 90px);

    line-height: 0.88;

    letter-spacing: -0.075em;

    font-weight: 900;

    margin-bottom: 24px;

    background:
        linear-gradient(
            110deg,
            #ffffff,
            #c5c0ff,
            #7064ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.capability-detail-services {
    margin-bottom: 25px;

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    opacity: 0.8;
}

.capability-detail p {
    max-width: 350px;

    font-size:
        clamp(14px, 1.1vw, 18px);

    line-height: 1.5;

    opacity: 0.55;
}


/* ==========================================
   FOOTER
========================================== */

.capabilities-footer {
    display: flex;

    justify-content: space-between;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    opacity: 0.4;

    position: relative;

    z-index: 10;
}


/* ==========================================
   PROGRESS
========================================== */

.capabilities-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        rgba(255,255,255,.08);

    z-index: 20;
}

.capabilities-progress-bar {
    width: 0%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #7165ff
        );
}


/* ==========================================
   SYSTEM DESIGN — SECOND HALF
========================================== */

.capabilities-assembler {
    position: absolute;
    inset: 0;

    z-index: 7;

    display: grid;
    grid-template-columns:
        minmax(500px, 0.94fr)
        minmax(460px, 1.02fr);
    gap:
        clamp(30px, 4vw, 76px)
        clamp(32px, 5vw, 92px);

    padding:
        var(--eod-header-safe-top)
        clamp(30px, 4vw, 65px)
        clamp(118px, 12vw, 178px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(42px);

    pointer-events: none;

    will-change:
        opacity,
        transform;
}

.capabilities-assembler.is-visible {
    visibility: visible;
}

.assembler-copy {
    align-self: center;

    position: relative;
    z-index: 4;

    opacity:
        var(--assembler-copy-progress, 0);

    transform:
        translateY(
            calc((1 - var(--assembler-copy-progress, 0)) * 14px)
        );

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.assembler-label {
    margin-bottom: clamp(24px, 2.55vw, 40px);

    color: rgba(255,255,255,0.46);

    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.assembler-title {
    margin: 0 0 clamp(22px, 2.45vw, 36px);

    max-width: 760px;

    font-size:
        clamp(46px, 4vw, 78px);
    line-height: 0.84;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.assembler-title span {
    display: block;
    white-space: nowrap;
}

.assembler-support,
.assembler-sequence-copy {
    max-width: 520px;

    font-size:
        clamp(13px, 1.08vw, 17px);
    line-height: 1.48;
    font-weight: 800;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

.assembler-support {
    margin-bottom: 14px;

    color: #ffffff;
}

.assembler-sequence-copy {
    color: rgba(255,255,255,0.66);
}

.assembler-system {
    --module-shift-x: 0px;
    --module-shift-y: 0px;

    position: relative;
    align-self: center;
    justify-self: center;

    width: min(100%, 720px);

    min-height:
        clamp(500px, 58vw, 720px);

    border-top:
        1px solid rgba(255,255,255,0.12);
    border-bottom:
        1px solid rgba(255,255,255,0.1);

    background:
        radial-gradient(
            circle at 62% 52%,
            rgba(117,100,255,0.22),
            rgba(66,223,255,0.08) 34%,
            transparent 58%
        );

    transform:
        translateX(clamp(-24px, -2vw, -10px))
        scale(1.08);

    transform-origin: center;
}

.assembler-system::before,
.assembler-system::after {
    content: "";
    position: absolute;
    inset: 12%;

    pointer-events: none;

    border:
        1px solid rgba(255,255,255,0.065);
    border-radius: 50%;

    transform:
        rotate(-18deg)
        scaleX(1.24);
}

.assembler-system::after {
    inset: 24%;

    border-color: rgba(117,100,255,0.14);

    transform:
        rotate(26deg)
        scaleX(1.46);
}

.assembler-lines {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.assembler-line {
    fill: none;
    stroke: rgba(117,100,255,0.18);
    stroke-width: 0.24;
    vector-effect: non-scaling-stroke;

    opacity: 0.32;

    transition:
        opacity 0.45s ease,
        stroke 0.45s ease,
        stroke-width 0.45s ease;
}

.assembler-signal-route {
    fill: none;
    stroke: rgba(104,232,255,0.88);
    stroke-width: 0.66;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: 0.92;

    stroke-dasharray:
        5 150;
    stroke-dashoffset: 0;

    filter:
        drop-shadow(0 0 5px rgba(117,100,255,0.45));

    animation:
        assemblerSignalTravel 4.8s ease-in-out infinite;

    transition:
        opacity 0.5s ease,
        stroke 0.5s ease,
        stroke-width 0.5s ease;
}

.assembler-module,
.assembler-output,
.assembler-config {
    position: absolute;
    z-index: 3;
}

.assembler-module {
    min-width: 118px;

    padding:
        11px 0
        12px;

    border-top:
        1px solid rgba(255,255,255,0.14);
    border-bottom:
        1px solid rgba(255,255,255,0.07);

    color: rgba(255,255,255,0.34);

    font-size:
        clamp(14px, 1.2vw, 19px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transform:
        translate(
            var(--module-shift-x),
            var(--module-shift-y)
        );

    transition:
        color 0.45s ease,
        opacity 0.45s ease,
        filter 0.45s ease,
        transform 0.35s ease,
        border-color 0.45s ease,
        text-shadow 0.45s ease;
}

.assembler-module span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,0.26);

    font-size: 9px;
    letter-spacing: 0.16em;
}

.module-create {
    left: 11%;
    top: 14%;
}

.module-build {
    right: 12%;
    top: 20%;
}

.module-automate {
    left: 8%;
    bottom: 20%;
}

.module-think {
    left: 43%;
    bottom: 8%;
}

.module-amplify {
    right: 5%;
    bottom: 18%;
}

.assembler-output {
    left: 62%;
    top: 51%;

    width: clamp(122px, 10.5vw, 164px);
    aspect-ratio: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(232,237,242,0.34);
    border-radius: 50%;

    color: #ffffff;

    font-size: clamp(15px, 1.15vw, 19px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    transform: translate(-50%, -50%);

    box-shadow:
        inset 0 0 0 1px rgba(66,223,255,0.14),
        0 0 38px rgba(117,100,255,0.22);
}

.assembler-output span {
    margin-bottom: 9px;

    color: rgba(232,237,242,0.52);

    font-size: 8px;
    letter-spacing: 0.18em;
}

.assembler-output::before {
    content: "";
    position: absolute;
    inset: 20%;

    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(232,237,242,0.96),
            rgba(66,223,255,0.58) 16%,
            rgba(117,100,255,0.48) 34%,
            rgba(10,8,18,0.88) 52%,
            rgba(0,0,0,0.0) 72%
        );

    z-index: -1;
}

.assembler-output::after {
    content: "";
    position: absolute;
    inset: 9%;

    border:
        1px solid rgba(66,223,255,0.28);
    border-radius: 50%;

    opacity: 0;

    transform:
        scale(0.88);

    animation:
        assemblerOutcomeResolve 4.8s ease-in-out infinite;
}

.assembler-config {
    right: 0;
    top: 0;

    padding-top: 18px;
    padding-left: 34px;

    color: rgba(255,255,255,0.58);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.assembler-config::before {
    content: "";
    position: absolute;
    left: 0;
    top: 23px;

    width: 22px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(117,100,255,0.8),
            rgba(66,223,255,0.3)
        );
}

.assembler-payoff {
    position: absolute;
    left: clamp(30px, 4vw, 65px);
    right: clamp(30px, 4vw, 65px);
    bottom: 44px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;

    border-top:
        1px solid rgba(255,255,255,0.14);

    padding-top: 28px;

    color: #ffffff;

    font-size:
        clamp(44px, 5.5vw, 104px);
    line-height: 0.82;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;

    opacity:
        var(--assembler-payoff, 0);

    transform:
        translateY(
            calc((1 - var(--assembler-payoff, 0)) * 18px)
        );

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.assembler-payoff span {
    display: block;
}

.capabilities-assembler[data-config="a"] .module-think,
.capabilities-assembler[data-config="a"] .module-build,
.capabilities-assembler[data-config="a"] .module-automate,
.capabilities-assembler[data-config="b"] .module-create,
.capabilities-assembler[data-config="b"] .module-think,
.capabilities-assembler[data-config="b"] .module-build,
.capabilities-assembler[data-config="b"] .module-amplify,
.capabilities-assembler[data-config="c"] .module-automate,
.capabilities-assembler[data-config="c"] .module-think,
.capabilities-assembler[data-config="c"] .module-amplify {
    color: rgba(255,255,255,0.96);
    border-color: rgba(232,237,242,0.44);
    opacity: 1;
    filter: none;

    text-shadow:
        0 0 14px rgba(117,100,255,0.2);
}

.capabilities-assembler[data-config="a"] .module-think span,
.capabilities-assembler[data-config="a"] .module-build span,
.capabilities-assembler[data-config="a"] .module-automate span,
.capabilities-assembler[data-config="b"] .module-create span,
.capabilities-assembler[data-config="b"] .module-think span,
.capabilities-assembler[data-config="b"] .module-build span,
.capabilities-assembler[data-config="b"] .module-amplify span,
.capabilities-assembler[data-config="c"] .module-automate span,
.capabilities-assembler[data-config="c"] .module-think span,
.capabilities-assembler[data-config="c"] .module-amplify span {
    color: rgba(104,232,255,0.72);
}

.capabilities-assembler[data-config="a"] .line-think,
.capabilities-assembler[data-config="a"] .line-build,
.capabilities-assembler[data-config="a"] .line-automate,
.capabilities-assembler[data-config="b"] .line-create,
.capabilities-assembler[data-config="b"] .line-think,
.capabilities-assembler[data-config="b"] .line-build,
.capabilities-assembler[data-config="b"] .line-amplify,
.capabilities-assembler[data-config="c"] .line-automate,
.capabilities-assembler[data-config="c"] .line-think,
.capabilities-assembler[data-config="c"] .line-amplify {
    opacity: 0.9;
    stroke: rgba(117,100,255,0.66);
    stroke-width: 0.48;
}

.capabilities-assembler[data-config="a"] .module-create,
.capabilities-assembler[data-config="a"] .module-amplify,
.capabilities-assembler[data-config="b"] .module-automate,
.capabilities-assembler[data-config="c"] .module-create,
.capabilities-assembler[data-config="c"] .module-build {
    opacity: 0.24;
    filter: grayscale(1);
}

.capabilities-assembler.is-config-locking .assembler-output::before {
    animation:
        assemblerCoreLock 0.55s ease-out;
}

.capabilities-assembler.is-config-locking .assembler-module {
    transition-duration: 0.62s;
}

@keyframes assemblerSignalTravel {

    0%,
    14% {
        stroke-dashoffset: 152;
        opacity: 0;
    }

    24% {
        opacity: 0.92;
    }

    74% {
        opacity: 0.92;
    }

    88%,
    100% {
        stroke-dashoffset: -10;
        opacity: 0;
    }

}

@keyframes assemblerOutcomeResolve {

    0%,
    72% {
        opacity: 0;
        transform: scale(0.88);
    }

    80% {
        opacity: 0.56;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }

}

@keyframes assemblerCoreLock {

    0% {
        filter: brightness(0.8);
    }

    45% {
        filter: brightness(1.35);
    }

    100% {
        filter: brightness(1);
    }

}


@media (prefers-reduced-motion: reduce) {

    .capabilities-assembler {
        opacity: 1;
        transform: none;
    }

    .capabilities-world {
        opacity: 0;
        transform: none;
    }

    .assembler-module {
        transform: none;
    }

    .assembler-payoff {
        opacity: 1;
        transform: none;
    }

    .assembler-signal-route,
    .assembler-output::after,
    .capabilities-assembler.is-config-locking .assembler-output::before {
        animation: none;
    }

}


.discovery-section {
    --discovery-ink: #070707;
    --discovery-paper: #f3f1eb;
    --discovery-muted: rgba(7,7,7,0.56);
    --discovery-soft: rgba(7,7,7,0.1);
    --discovery-violet: #7564ff;
    --discovery-cyan: #42dfff;
    --discovery-progress: 0;

    position: relative;
    overflow: clip;

    min-height: 168vh;

    padding:
        calc(var(--eod-header-safe-top) + clamp(48px, 7vw, 108px))
        clamp(22px, 5vw, 74px)
        clamp(80px, 10vw, 150px);

    background:
        linear-gradient(
            180deg,
            #f1f0eb,
            var(--discovery-paper) 42%,
            #ebe8df
        );
    color: var(--discovery-ink);
}

.discovery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7,7,7,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            180deg,
            rgba(7,7,7,0.035) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            180deg,
            transparent,
            #000 14%,
            #000 78%,
            transparent
        );
    opacity: 0.42;
}

.discovery-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(117,100,255,0.92) 18%,
            rgba(66,223,255,0.42) 52%,
            transparent
        );
}

.discovery-thesis,
.discovery-process,
.discovery-actions {
    position: relative;
    z-index: 1;

    max-width: 1480px;
    margin: 0 auto;
}

.discovery-thesis {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(330px, 0.72fr);
    gap:
        clamp(34px, 6vw, 112px);
    align-items: end;
}

.discovery-kicker {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(7,7,7,0.56);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.discovery-kicker span {
    width: 34px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--discovery-violet),
            rgba(117,100,255,0.16)
        );
}

.discovery-thesis__headline h2 {
    margin: 0;

    max-width: 860px;

    font-size:
        clamp(54px, 7vw, 126px);
    line-height: 0.84;
    font-weight: 950;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.discovery-thesis__headline span {
    display: block;
}

.discovery-thesis__copy {
    align-self: end;

    max-width: 520px;

    padding-bottom:
        clamp(8px, 1.2vw, 18px);
}

.discovery-thesis__copy p {
    margin: 0;

    color: rgba(7,7,7,0.68);

    font-size:
        clamp(13px, 1.05vw, 16px);
    line-height: 1.55;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discovery-thesis__copy p + p {
    margin-top: 18px;
}

.discovery-thesis__copy .discovery-proof {
    color: var(--discovery-ink);
}

.discovery-motif {
    display: grid;
    grid-template-columns:
        auto
        minmax(76px, 1fr)
        auto;
    gap: 14px;
    align-items: center;

    margin:
        clamp(26px, 3vw, 42px)
        0;

    color: rgba(7,7,7,0.5);

    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.discovery-motif i {
    display: block;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(7,7,7,0.18),
            var(--discovery-violet),
            rgba(66,223,255,0.36)
        );
}

.discovery-selectivity {
    padding-top: 18px;

    border-top:
        1px solid rgba(7,7,7,0.16);
}

.discovery-process {
    margin-top:
        clamp(92px, 12vw, 180px);
}

.discovery-process__header {
    display: flex;
    justify-content: space-between;
    gap: 24px;

    margin-bottom:
        clamp(30px, 4vw, 60px);

    color: rgba(7,7,7,0.52);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.discovery-steps {
    --step-gap: clamp(22px, 3vw, 46px);

    position: relative;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--step-gap);

    margin: 0;
    padding: 0;

    list-style: none;
}

.discovery-steps::before,
.discovery-steps::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 34px;

    height: 1px;
}

.discovery-steps::before {
    background: rgba(7,7,7,0.14);
}

.discovery-steps::after {
    right: auto;
    width:
        calc(var(--discovery-progress) * 100%);

    background:
        linear-gradient(
            90deg,
            var(--discovery-violet),
            rgba(66,223,255,0.72)
        );

    transition: width 0.42s ease;
}

.discovery-step {
    position: relative;

    min-height: 260px;
    padding-top: 78px;

    color: rgba(7,7,7,0.38);

    transition:
        color 0.38s ease,
        opacity 0.38s ease,
        transform 0.38s ease;
}

.discovery-step::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 0;

    width: 17px;
    height: 17px;

    border:
        1px solid rgba(7,7,7,0.24);
    border-radius: 50%;

    background: var(--discovery-paper);
    box-shadow:
        0 0 0 7px var(--discovery-paper);

    transition:
        border-color 0.38s ease,
        background 0.38s ease,
        box-shadow 0.38s ease;
}

.discovery-step.is-active {
    color: var(--discovery-ink);
    transform: translateY(-4px);
}

.discovery-step.is-active::before {
    border-color: var(--discovery-violet);
    background: var(--discovery-ink);
    box-shadow:
        0 0 0 7px var(--discovery-paper),
        0 0 18px rgba(117,100,255,0.34);
}

.discovery-step__number {
    display: block;

    margin-bottom: 20px;

    color: rgba(117,100,255,0.82);

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.discovery-step h3 {
    margin: 0 0 24px;

    color: currentColor;

    font-size:
        clamp(25px, 2.8vw, 54px);
    line-height: 0.86;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.discovery-step p {
    margin: 0;

    max-width: 290px;

    color: rgba(7,7,7,0.58);

    font-size:
        clamp(11px, 0.92vw, 14px);
    line-height: 1.42;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.discovery-step.is-active p {
    color: rgba(7,7,7,0.76);
}

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

    margin-top:
        clamp(82px, 11vw, 160px);

    border-top:
        1px solid rgba(7,7,7,0.18);
    border-bottom:
        1px solid rgba(7,7,7,0.14);
}

.discovery-path {
    padding:
        clamp(34px, 5vw, 72px)
        clamp(26px, 4vw, 64px)
        clamp(38px, 5.5vw, 84px);
}

.discovery-path + .discovery-path {
    border-left:
        1px solid rgba(7,7,7,0.14);
}

.discovery-path > span {
    display: block;

    margin-bottom: 34px;

    color: rgba(7,7,7,0.5);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.discovery-path h3 {
    margin: 0 0 22px;

    font-size:
        clamp(42px, 5vw, 92px);
    line-height: 0.84;
    font-weight: 950;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.discovery-path p {
    margin: 0 0 34px;

    max-width: 420px;

    color: rgba(7,7,7,0.65);

    font-size:
        clamp(12px, 0.98vw, 15px);
    line-height: 1.48;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discovery-cta {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        16px 22px;

    border:
        1px solid rgba(7,7,7,0.84);
    border-radius: 0;

    color: var(--discovery-ink);

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.discovery-cta--primary {
    background: var(--discovery-ink);
    color: #ffffff;
}

.discovery-cta:hover,
.discovery-cta:focus-visible {
    border-color: var(--discovery-violet);
    box-shadow:
        0 0 0 1px rgba(117,100,255,0.22),
        0 16px 34px rgba(7,7,7,0.12);
    transform: translateY(-2px);
}

.discovery-cta--secondary:hover,
.discovery-cta--secondary:focus-visible {
    background: rgba(117,100,255,0.08);
}

.discovery-cta:focus-visible {
    outline:
        2px solid var(--discovery-violet);
    outline-offset: 4px;
}

.discovery-call-anchor {
    position: relative;
    height: 1px;
    margin-top: -1px;
}


/* =========================
   06 / START THE CONVERSATION
========================= */

.brief-section {
    --brief-ink: #f2f5f7;
    --brief-muted: rgba(242,245,247,0.58);
    --brief-soft: rgba(242,245,247,0.12);
    --brief-faint: rgba(242,245,247,0.07);
    --brief-violet: #7564ff;
    --brief-cyan: #42dfff;
    --brief-graphite: #07080c;

    position: relative;
    overflow: clip;

    min-height: 150vh;

    padding:
        calc(var(--eod-header-safe-top) + clamp(58px, 7vw, 112px))
        clamp(22px, 5vw, 74px)
        clamp(82px, 10vw, 150px);

    background:
        radial-gradient(
            circle at 72% 28%,
            rgba(117,100,255,0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 64%,
            rgba(66,223,255,0.1),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #050507,
            #090910 46%,
            #050507
        );
    color: var(--brief-ink);
}

.brief-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(242,245,247,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            180deg,
            rgba(242,245,247,0.026) 1px,
            transparent 1px
        );
    background-size: 78px 78px;
    mask-image:
        radial-gradient(
            ellipse at 55% 45%,
            #000 0,
            #000 42%,
            transparent 76%
        );
    opacity: 0.6;
}

.brief-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(117,100,255,0.88) 22%,
            rgba(66,223,255,0.52) 60%,
            transparent
        );
}

.brief-intro,
.brief-shell {
    position: relative;
    z-index: 1;

    max-width: 1480px;
    margin: 0 auto;
}

.brief-intro {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.76fr);
    gap:
        clamp(36px, 6vw, 116px);
    align-items: end;
}

.brief-kicker {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(242,245,247,0.54);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brief-kicker span {
    width: 34px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--brief-violet),
            rgba(66,223,255,0.28)
        );
}

.brief-intro h2 {
    margin: 0;

    max-width: 780px;

    font-size:
        clamp(55px, 7.2vw, 132px);
    line-height: 0.84;
    font-weight: 950;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.brief-intro h2 span {
    display: block;
}

.brief-intro__copy {
    max-width: 530px;
    padding-bottom:
        clamp(6px, 1vw, 18px);
}

.brief-intro__copy p {
    margin: 0;

    color: var(--brief-muted);

    font-size:
        clamp(12px, 1vw, 15px);
    line-height: 1.55;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brief-intro__copy p:first-child {
    color: var(--brief-ink);
}

.brief-intro__copy p + p {
    margin-top: 18px;
}

.brief-shell {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(270px, 360px);
    gap:
        clamp(34px, 5vw, 88px);

    margin-top:
        clamp(78px, 10vw, 150px);
}

.brief-form,
.brief-success {
    min-width: 0;
}

.brief-step {
    padding-top:
        clamp(22px, 3vw, 38px);

    border-top:
        1px solid rgba(242,245,247,0.16);
}

.brief-shell.is-enhanced .brief-step[hidden],
.brief-success[hidden],
.brief-disclosure[hidden] {
    display: none;
}

.brief-step__eyebrow {
    margin: 0 0 clamp(24px, 3vw, 42px);

    color: rgba(117,100,255,0.86);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brief-step__eyebrow span {
    display: inline-block;
    margin-left: 12px;

    color: rgba(242,245,247,0.52);
}

.brief-step h3,
.brief-success h3 {
    margin: 0 0 clamp(30px, 4vw, 58px);

    max-width: 900px;

    font-size:
        clamp(44px, 5.8vw, 104px);
    line-height: 0.86;
    font-weight: 950;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.brief-step__prompt {
    margin:
        -18px 0 30px;

    max-width: 660px;

    color: rgba(242,245,247,0.62);

    font-size:
        clamp(12px, 1vw, 15px);
    line-height: 1.55;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brief-fields {
    display: grid;
    gap: 20px;
}

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

.brief-field {
    display: grid;
    gap: 10px;

    min-width: 0;
}

.brief-field--wide {
    grid-column: 1 / -1;
}

.brief-field span,
.brief-options legend {
    color: rgba(242,245,247,0.72);

    font-size: 10px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brief-field input,
.brief-field textarea {
    width: 100%;

    border:
        1px solid rgba(242,245,247,0.18);
    border-radius: 0;

    background:
        rgba(242,245,247,0.045);
    color: var(--brief-ink);

    font: inherit;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.02em;

    outline: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.brief-field input {
    min-height: 52px;
    padding: 14px 15px;
}

.brief-field textarea {
    min-height: 142px;
    padding: 15px;
    resize: vertical;
}

.brief-field input:focus,
.brief-field textarea:focus {
    border-color:
        rgba(66,223,255,0.78);
    background:
        rgba(242,245,247,0.07);
    box-shadow:
        0 0 0 1px rgba(66,223,255,0.18);
}

.brief-field input[aria-invalid="true"],
.brief-field textarea[aria-invalid="true"],
.brief-choice input[aria-invalid="true"] + span {
    border-color:
        rgba(255,112,112,0.72);
}

.brief-field em,
.brief-options em {
    min-height: 13px;

    color: #ff9a9a;

    font-style: normal;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brief-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    margin:
        0 0 clamp(24px, 3vw, 42px);
    padding: 0;

    border: 0;
}

.brief-options legend {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.brief-options em {
    grid-column: 1 / -1;
}

.brief-choice {
    position: relative;
    display: block;
}

.brief-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.brief-choice span {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 14px 15px;

    border:
        1px solid rgba(242,245,247,0.14);

    color: rgba(242,245,247,0.58);
    background:
        rgba(242,245,247,0.035);

    font-size: 10px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.brief-choice span::after {
    content: "";

    width: 7px;
    height: 7px;
    flex: 0 0 auto;

    border-radius: 50%;
    background:
        rgba(242,245,247,0.24);
}

.brief-choice input:checked + span {
    border-color:
        rgba(117,100,255,0.86);
    color: var(--brief-ink);
    background:
        rgba(117,100,255,0.12);
    box-shadow:
        inset 0 0 0 1px rgba(66,223,255,0.12);
}

.brief-choice input:checked + span::after {
    background:
        linear-gradient(
            135deg,
            var(--brief-violet),
            var(--brief-cyan)
        );
    box-shadow:
        0 0 16px rgba(117,100,255,0.5);
}

.brief-choice input:focus-visible + span {
    outline:
        2px solid var(--brief-cyan);
    outline-offset: 3px;
}

.brief-disclosure {
    margin:
        0 0 26px;
}

.brief-submit-note {
    margin:
        clamp(30px, 4vw, 52px)
        0 22px;
    padding-top: 24px;

    border-top:
        1px solid rgba(242,245,247,0.14);
}

.brief-submit-note p,
.brief-privacy,
.brief-success p {
    max-width: 680px;
    margin: 0;

    color: var(--brief-muted);

    font-size:
        clamp(12px, 1vw, 15px);
    line-height: 1.55;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brief-submit-note p:first-child,
.brief-success p:first-of-type {
    color: var(--brief-ink);
}

.brief-submit-note p + p,
.brief-success p + p {
    margin-top: 12px;
}

.brief-privacy {
    max-width: 720px;
    margin-top: 28px;

    color: rgba(242,245,247,0.44);

    font-size: 10px;
}

.brief-privacy a {
    color: var(--brief-ink);
    text-decoration-color:
        rgba(117,100,255,0.7);
}

.brief-form__error {
    min-height: 18px;
    margin-top: 22px;

    color: #ff9a9a;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brief-nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;

    margin-top:
        clamp(26px, 3vw, 44px);
}

.brief-nav__button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        16px 22px;

    border:
        1px solid rgba(242,245,247,0.72);
    border-radius: 0;

    color: var(--brief-ink);
    background:
        transparent;

    font: inherit;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.brief-nav__button--next,
.brief-nav__button--submit {
    margin-left: auto;
    border-color:
        var(--brief-ink);
    background:
        var(--brief-ink);
    color: #050507;
}

.brief-nav__button:hover,
.brief-nav__button:focus-visible {
    border-color:
        var(--brief-violet);
    transform: translateY(-2px);
}

.brief-nav__button:focus-visible {
    outline:
        2px solid var(--brief-cyan);
    outline-offset: 4px;
}

.brief-nav__button:disabled {
    opacity: 0.45;
    cursor: wait;
}

.brief-signal {
    position: sticky;
    top:
        calc(var(--eod-header-safe-top) + 44px);
    align-self: start;

    padding:
        clamp(22px, 3vw, 34px);

    border-top:
        1px solid rgba(242,245,247,0.18);
    border-bottom:
        1px solid rgba(242,245,247,0.12);

    background:
        linear-gradient(
            180deg,
            rgba(242,245,247,0.055),
            rgba(242,245,247,0.022)
        );
}

.brief-signal__header {
    display: flex;
    justify-content: space-between;
    gap: 18px;

    color: rgba(242,245,247,0.54);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brief-signal__header span:last-child {
    display: none;
}

.brief-signal__steps {
    display: grid;
    gap: 0;

    margin:
        34px 0;
    padding: 0;

    list-style: none;
}

.brief-signal__steps li {
    border-top:
        1px solid rgba(242,245,247,0.09);
}

.brief-signal__steps li:last-child {
    border-bottom:
        1px solid rgba(242,245,247,0.09);
}

.brief-signal__steps button {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 0;

    border: 0;
    background: transparent;
    color: rgba(242,245,247,0.36);

    font: inherit;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-align: left;
    text-transform: uppercase;

    cursor: pointer;
}

.brief-signal__steps button:disabled {
    cursor: default;
}

.brief-signal__steps button span {
    color: rgba(117,100,255,0.72);
}

.brief-signal__steps .is-current button {
    color: var(--brief-ink);
}

.brief-signal__steps .is-complete button {
    color: rgba(66,223,255,0.84);
}

.brief-signal__steps .is-complete button::after {
    content: "✓";
    margin-left: auto;

    color: var(--brief-cyan);
}

.brief-signal__steps .is-current button::after {
    content: "";
    width: 28px;
    height: 1px;
    margin-left: auto;

    background:
        linear-gradient(
            90deg,
            var(--brief-violet),
            var(--brief-cyan)
        );
}

.brief-signal__rail {
    height: 1px;
    background:
        rgba(242,245,247,0.1);
}

.brief-signal__rail span {
    display: block;
    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--brief-violet),
            var(--brief-cyan)
        );

    transition:
        width 0.44s ease;
}

.brief-signal__status {
    margin:
        24px 0 0;

    color: rgba(242,245,247,0.62);

    font-size: 10px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brief-signal.is-ready .brief-signal__status,
.brief-signal__status.is-ready {
    color: var(--brief-ink);
}

.brief-success {
    grid-column: 1 / -1;

    padding:
        clamp(34px, 5vw, 78px)
        0 0;

    border-top:
        1px solid rgba(242,245,247,0.18);
}

.brief-success span {
    display: inline-block;

    margin-top: 34px;
    padding-top: 18px;

    border-top:
        1px solid rgba(117,100,255,0.48);

    color: var(--brief-cyan);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brief-honeypot,
.brief-live {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}


/* ==========================================
   ATMOSPHERE
========================================== */

.capabilities-stage::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .07;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size:
        90px 90px;
}

.capabilities-stage::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .025;

    background-image:
        repeating-linear-gradient(
            0deg,
            #ffffff 0px,
            transparent 1px,
            transparent 3px
        );
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes capabilityGlow {

    0%,
    100% {
        opacity: .6;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }

}

@keyframes capabilityPulse {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(.88);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.1);
    }

}

@keyframes capabilityOrbitOne {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}

@keyframes capabilityOrbitTwo {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}

@keyframes capabilityOrbitThree {

    from {
        rotate: 0deg;
    }

    to {
        rotate: -360deg;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .capabilities-section {
        height: 820vh;
    }

    .capabilities-world {
        padding:
            72px 22px
            30px;
    }

    .capabilities-layout {
        grid-template-columns: 1fr;

        gap: 18px;

        align-content: center;
    }

    .capability-core {
        position: relative;

        right: auto;
        top: auto;

        width:
            min(100%, 330px);

        height:
            clamp(120px, 18vh, 180px);

        aspect-ratio: auto;

        justify-self: center;

        opacity: .82;

        transform: none;
    }

    .capability-list {
        z-index: 5;
    }

    .capability-item {
        padding:
            7px 0
            8px;
    }

    .capability-name {
        font-size:
            clamp(38px, 10.8vw, 52px);
    }

    .capability-detail {
        margin-top: 4px;

        z-index: 6;
    }

    .capability-detail h3 {
        font-size:
            clamp(45px, 13vw, 75px);
    }

    .capabilities-footer {
        font-size: 8px;
    }

    .capabilities-footer span:last-child {
        font-size: 0;
    }

    .capabilities-footer span:last-child::before {
        content: "KEEP SCROLLING ↓";

        font-size: 8px;
    }

    .adapt-word {
        font-size:
            clamp(90px, 29vw, 190px);
    }

    .capabilities-assembler {
        grid-template-columns: 1fr;

        gap: 34px;

        padding:
            var(--eod-header-safe-top)
            22px
            112px;
    }

    .assembler-copy {
        align-self: end;
    }

    .assembler-label {
        margin-bottom: 22px;

        font-size: 9px;
    }

    .assembler-title {
        max-width: 100%;

        font-size:
            clamp(40px, 12.4vw, 70px);
        line-height: 0.86;
    }

    .assembler-title span {
        white-space: normal;
    }

    .assembler-support,
    .assembler-sequence-copy {
        max-width: 100%;

        font-size: 12px;
        line-height: 1.5;
    }

    .assembler-system {
        width: 100%;

        min-height:
            clamp(310px, 78vw, 420px);

        opacity:
            calc(1 - var(--assembler-payoff, 0) * 0.72);

        transform:
            translateY(
                calc(var(--assembler-payoff, 0) * -18px)
            )
            scale(1);

        transition:
            opacity 0.45s ease,
            transform 0.45s ease;
    }

    .assembler-system::before {
        inset: 16%;
    }

    .assembler-system::after {
        inset: 29%;
    }

    .assembler-module {
        min-width: 96px;

        font-size:
            clamp(13px, 4vw, 17px);
    }

    .module-create {
        left: 4%;
        top: 10%;
    }

    .module-build {
        right: 3%;
        top: 18%;
    }

    .module-automate {
        left: 2%;
        bottom: 24%;
    }

    .module-think {
        left: 34%;
        bottom: 7%;
    }

    .module-amplify {
        right: 1%;
        bottom: 25%;
    }

    .assembler-output {
        left: 54%;
        top: 52%;

        width: clamp(108px, 34vw, 140px);
    }

    .assembler-config {
        font-size: 9px;

        padding-left: 28px;
    }

    .assembler-payoff {
        left: 22px;
        right: 22px;
        bottom: 34px;

        display: block;

        font-size:
            clamp(42px, 13vw, 76px);
    }

}

@media (max-width: 900px) {

    .brief-intro,
    .brief-shell {
        grid-template-columns: 1fr;
    }

    .brief-signal {
        position: relative;
        top: auto;
        order: -1;
    }

    .brief-signal__header span:last-child {
        display: inline;
    }

    .brief-signal__steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;

        margin:
            22px 0;
    }

    .brief-signal__steps li,
    .brief-signal__steps li:last-child {
        border: 0;
    }

    .brief-signal__steps button {
        min-height: 38px;
        justify-content: center;
        padding:
            0 4px;

        font-size: 0;
    }

    .brief-signal__steps button span {
        font-size: 10px;
    }

    .brief-signal__steps .is-complete button::after,
    .brief-signal__steps .is-current button::after {
        display: none;
    }

}

@media (max-width: 700px) {

    .brief-section {
        min-height: 0;

        padding:
            calc(var(--eod-header-safe-top) + 58px)
            22px
            82px;
    }

    .brief-intro h2 {
        font-size:
            clamp(50px, 16vw, 74px);
        line-height: 0.88;
        letter-spacing: -0.075em;
    }

    .brief-intro__copy p {
        font-size: 12px;
    }

    .brief-shell {
        margin-top: 58px;
        gap: 28px;
    }

    .brief-step h3,
    .brief-success h3 {
        font-size:
            clamp(42px, 13vw, 60px);
        line-height: 0.9;
    }

    .brief-fields--grid,
    .brief-options {
        grid-template-columns: 1fr;
    }

    .brief-field input {
        min-height: 50px;
    }

    .brief-field textarea {
        min-height: 132px;
    }

    .brief-options {
        gap: 10px;
    }

    .brief-choice span {
        min-height: 46px;
        padding:
            13px 14px;
    }

    .brief-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .brief-nav__button {
        width: 100%;
        min-height: 48px;
        padding:
            15px 14px;
    }

    .brief-nav__button--next,
    .brief-nav__button--submit {
        margin-left: 0;
    }

    .brief-nav__button--submit {
        grid-column: 1 / -1;
    }

    .brief-signal {
        padding:
            18px 0 20px;

        background:
            transparent;
    }

    .brief-signal__steps {
        margin:
            18px 0;
    }

    .brief-signal__status {
        margin-top: 18px;
    }

}

@media (max-width: 360px) {

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

}

@media (prefers-reduced-motion: reduce) {

    .brief-choice span,
    .brief-field input,
    .brief-field textarea,
    .brief-nav__button,
    .brief-signal__rail span {
        transition: none;
    }

}

/* =========================
   CAPABILITY FOCUS
========================= */

.capability-item:focus {
    outline: none;
}

.capability-item:focus-visible {
    outline: 1px solid rgba(125, 110, 255, 0.7);
    outline-offset: 4px;
}


@media (prefers-reduced-motion: reduce) {

    .discovery-steps::after,
    .discovery-step,
    .discovery-step::before,
    .discovery-cta {
        transition: none;
    }

    .discovery-step {
        color: var(--discovery-ink);
        transform: none;
    }

    .discovery-step p {
        color: rgba(7,7,7,0.72);
    }

}


@media (max-width: 1100px) {

    .discovery-section {
        min-height: auto;

        padding:
            calc(var(--eod-header-safe-top) + 58px)
            clamp(22px, 4vw, 44px)
            96px;
    }

    .discovery-thesis {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .discovery-thesis__headline h2 {
        max-width: 880px;
    }

    .discovery-thesis__copy {
        max-width: 720px;
        padding-bottom: 0;
    }

    .discovery-steps {
        grid-template-columns: 1fr;
        gap: 0;

        padding-left: 30px;
    }

    .discovery-steps::before,
    .discovery-steps::after {
        left: 8px;
        right: auto;
        top: 0;

        width: 1px;
        height: 100%;
    }

    .discovery-steps::after {
        height:
            calc(var(--discovery-progress) * 100%);

        background:
            linear-gradient(
                180deg,
                var(--discovery-violet),
                rgba(66,223,255,0.72)
            );

        transition: height 0.42s ease;
    }

    .discovery-step {
        min-height: 0;

        padding:
            0 0
            clamp(42px, 8vw, 68px);
    }

    .discovery-step::before {
        top: 2px;
        left: -30px;
    }

    .discovery-step h3 {
        font-size:
            clamp(38px, 9vw, 72px);
    }

    .discovery-actions {
        grid-template-columns: 1fr;
    }

    .discovery-path + .discovery-path {
        border-left: 0;
        border-top:
            1px solid rgba(7,7,7,0.14);
    }

}


@media (max-width: 700px) {

    .discovery-section {
        padding:
            calc(var(--eod-header-safe-top) + 44px)
            20px
            74px;
    }

    .discovery-thesis__headline h2 {
        font-size:
            clamp(48px, 15vw, 76px);
        line-height: 0.86;
    }

    .discovery-thesis__copy p {
        font-size: 12px;
        line-height: 1.52;
        letter-spacing: 0.065em;
    }

    .discovery-motif {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .discovery-motif i {
        width: 100%;
    }

    .discovery-process {
        margin-top: 72px;
    }

    .discovery-process__header {
        display: grid;
        gap: 10px;

        font-size: 9px;
        line-height: 1.35;
    }

    .discovery-step p {
        max-width: 100%;

        font-size: 12px;
    }

    .discovery-actions {
        margin-top: 42px;
    }

    .discovery-path {
        padding:
            34px 0
            38px;
    }

    .discovery-path h3 {
        font-size:
            clamp(42px, 13vw, 66px);
    }

    .discovery-path p {
        font-size: 12px;
        letter-spacing: 0.065em;
    }

    .discovery-cta {
        width: 100%;
        min-height: 48px;
    }

}

/* =========================
   CAPABILITY TEXT FIT FIX
========================= */

.capability-detail {
    max-width: none;
    min-width: 0;
}

.capability-detail h3 {
    font-size: clamp(48px, 4.2vw, 82px);
    white-space: nowrap;
}

/* Give the detail side a little more breathing room */

.capabilities-layout {
    grid-template-columns:
        minmax(400px, 1.2fr)
        minmax(230px, 0.62fr)
        minmax(360px, 0.95fr);

    gap: clamp(25px, 3vw, 60px);
}

@media (max-width: 900px) {

    .capabilities-layout {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .capability-name {
        font-size:
            clamp(38px, 10.8vw, 52px);
    }

    .capability-item:hover .capability-name,
    .capability-item.is-active .capability-name {
        transform: translateX(10px);
    }

    .capability-detail {
        width: 100%;
        max-width: 100%;
        margin-top: 4px;
    }

    .capability-detail h3 {
        font-size:
            clamp(42px, 12vw, 70px);

        white-space: normal;
    }

}

/* =========================
   CAPABILITY FOCUS
========================= */

.capability-item:focus {
    outline: none;
}

.capability-item:focus-visible {
    outline: 1px solid rgba(125, 110, 255, 0.7);
    outline-offset: 4px;
}
