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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    scroll-padding-top: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #050510;
    color: #fff;
    overflow-x: hidden;
}

/* === INTRO OVERLAY — covers everything, fades away === */
.intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1000;
    background: #050510;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    contain: paint;
    animation: introFadeOut 1.1s cubic-bezier(0.4, 0, 0.2, 1) 3.2s forwards;
    pointer-events: none;
}

@keyframes introFadeOut {
    0%   { opacity: 1;   filter: blur(0); }
    60%  { opacity: 0.5; filter: blur(2px); }
    100% { opacity: 0;   filter: blur(6px); visibility: hidden; }
}

/* Warp lines fade before the overlay — they've served their purpose. */
.warp-container {
    animation: warpContainerFade 0.6s ease-out 2.6s forwards;
}
@keyframes warpContainerFade {
    to { opacity: 0.15; }
}

/* Warp speed lines */
.warp-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
}

.warp-line {
    position: absolute;
    top: 50%; left: 50%;
    height: 1px;
    transform-origin: 0 0;
    background: linear-gradient(90deg, transparent, rgba(140,170,255,0.6), rgba(200,210,255,0.9), transparent);
    animation: warpStreak 1.8s cubic-bezier(0.7, 0, 0.2, 1) forwards;
    opacity: 0;
}
/* Color variants — applied randomly in JS to 30% of lines each for indigo/violet */
.warp-line.tint-indigo {
    background: linear-gradient(90deg, transparent, rgba(129,140,248,0.55), rgba(199,210,254,0.95), transparent);
}
.warp-line.tint-violet {
    background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), rgba(221,214,254,0.9), transparent);
}
.warp-line.tint-white {
    background: linear-gradient(90deg, transparent, rgba(240,245,255,0.8), rgba(255,255,255,1), transparent);
    height: 1.2px;
}

@keyframes warpStreak {
    /* Hard-decel — sells "warp exit" vs. uniform acceleration */
    0% { width: 0; opacity: 0; }
    15% { opacity: 0.7; }
    /* Curve is applied via animation-timing-function below */
    60% { width: 50vw; opacity: 0.45; }
    100% { width: 80vw; opacity: 0; }
}

/* Intro core flash — center-of-mass for the whole warp sequence */
.intro-core {
    position: absolute;
    top: var(--intro-center-y, 50%); left: 50%;
    transform: translate(-50%, -50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px 10px rgba(199,210,254,0.85), 0 0 60px 30px rgba(129,140,248,0.55);
    animation: introCoreGrow 2.5s ease-out forwards;
}

@keyframes introCoreGrow {
    0% { width: 4px; height: 4px; box-shadow: 0 0 20px 10px rgba(199,210,254,0.85), 0 0 60px 30px rgba(129,140,248,0.55); }
    30% { width: 14px; height: 14px; box-shadow: 0 0 40px 20px rgba(255,255,255,1), 0 0 100px 50px rgba(129,140,248,0.75), 0 0 200px 80px rgba(99,102,241,0.35); }
    60% { width: 22px; height: 22px; box-shadow: 0 0 60px 30px rgba(199,210,254,0.85), 0 0 150px 60px rgba(129,140,248,0.55), 0 0 300px 120px rgba(99,102,241,0.22); }
    100% { width: 80px; height: 80px; box-shadow: 0 0 60px 20px rgba(99,102,241,0.3), 0 0 120px 40px rgba(99,102,241,0.15), 0 0 200px 60px rgba(99,102,241,0.05); opacity: 0; }
}

/* Anamorphic lens flare — horizontal streak across the intro core.
   Classic sci-fi "J.J. Abrams" feel, makes the core feel like a real
   luminous point of light rather than a flat bokeh blur. */
.intro-flare {
    position: absolute;
    top: var(--intro-center-y, 50%); left: 50%;
    transform: translate(-50%, -50%) scaleX(0);
    width: 120vw; height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(129, 140, 248, 0) 20%,
        rgba(199, 210, 254, 0.9) 45%,
        rgba(255, 255, 255, 1) 50%,
        rgba(199, 210, 254, 0.9) 55%,
        rgba(167, 139, 250, 0) 80%,
        transparent 100%
    );
    filter: blur(1px);
    box-shadow: 0 0 20px rgba(199, 210, 254, 0.8);
    opacity: 0;
    animation: introFlareSweep 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
    transform-origin: center;
    pointer-events: none;
}
/* intro-flare-v + introFlareSweepV culled per round-table (A3) */
@keyframes introFlareSweep {
    0%   { transform: translate(-50%, -50%) scaleX(0); opacity: 0; }
    15%  { opacity: 1; }
    100% { transform: translate(-50%, -50%) scaleX(1); opacity: 0; }
}

/* Chromatic aberration rings — tiny hint of red/blue split for depth */
.intro-chrom {
    position: absolute;
    top: var(--intro-center-y, 50%); left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 200, 210, 0.7);
    opacity: 0;
    mix-blend-mode: screen;
    animation: chromaRing 1.8s ease-out 0.35s forwards;
    pointer-events: none;
}
/* intro-chrom-b culled per round-table (A3) */
@keyframes chromaRing {
    0%   { width: 8px; height: 8px; opacity: 0.8; }
    70%  { opacity: 0.5; }
    100% { width: 90vmax; height: 90vmax; opacity: 0; border-width: 0.5px; }
}

/* Shockwave rings */
.intro-shockwave {
    position: absolute;
    top: var(--intro-center-y, 50%); left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(140,170,255,0.8);
    animation: shockwave 2s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes shockwave {
    0% { width: 10px; height: 10px; opacity: 0.9; border-width: 2px; }
    100% { width: 120vmax; height: 120vmax; opacity: 0; border-width: 0.5px; }
}

/* intro-shockwave-2 culled per round-table (A3) */

/* === INTRO BEZIER ORBITS — drawn in over the warp sequence ===
   Sized + positioned by JS at page load to exactly match the
   projected Three.js orbit, so the hand-off at overlay fade-out
   lines up perfectly (no jump between intro & landing). */
.intro-orbits {
    position: absolute;
    top: var(--intro-center-y, 50%); left: 50%;
    transform: translate(-50%, -50%);
    width: min(120vmin, 1100px);
    height: min(120vmin, 1100px);
    pointer-events: none;
    opacity: 0;
    animation: introOrbitsAssemble 2.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}
@keyframes introOrbitsAssemble {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.64) rotate(-10deg);
        filter: blur(10px);
    }
    22% {
        opacity: 1;
        filter: blur(3px);
    }
    72% {
        transform: translate(-50%, -50%) scale(1.025) rotate(1.5deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: blur(0);
    }
}
.intro-orbits svg { width: 100%; height: 100%; display: block; overflow: visible; }
.intro-orbit-path {
    fill: none;
    stroke-width: 1.3;
    stroke-linecap: round;
    /* dasharray / dashoffset set inline per-path based on path length */
    transform-origin: center;
    filter: drop-shadow(0 0 6px currentColor);
}
/* Each orbit gets its own draw-in animation with stagger.
   Duration slightly longer for outer orbits so they feel like they take
   further to complete, reinforcing depth. */
/* Stagger tightened 0.20s → 0.12s — rings draw as one continuous gesture */
.intro-orbit-1 { --intro-ring-start: 0.74; --intro-ring-rot: -14deg; animation: drawOrbit 1.20s cubic-bezier(0.65, 0, 0.35, 1) 0.85s forwards; }
.intro-orbit-2 { --intro-ring-start: 0.82; --intro-ring-rot: 10deg; animation: drawOrbit 1.35s cubic-bezier(0.65, 0, 0.35, 1) 0.97s forwards; }
.intro-orbit-3 { --intro-ring-start: 0.92; --intro-ring-rot: -7deg; animation: drawOrbit 1.50s cubic-bezier(0.65, 0, 0.35, 1) 1.09s forwards; }
.intro-orbit-4 { --intro-ring-start: 1.08; --intro-ring-rot: 5deg; animation: drawOrbit 1.65s cubic-bezier(0.65, 0, 0.35, 1) 1.21s forwards; }
.intro-orbit-5 { --intro-ring-start: 1.18; --intro-ring-rot: -4deg; animation: drawOrbit 1.80s cubic-bezier(0.65, 0, 0.35, 1) 1.33s forwards; }
@keyframes drawOrbit {
    0%   { stroke-dashoffset: var(--orbit-len); opacity: 0; transform: scale(var(--intro-ring-start, 1)) rotate(var(--intro-ring-rot, 0deg)); filter: drop-shadow(0 0 6px currentColor); }
    12%  { opacity: 1; }
    72%  { stroke-dashoffset: 0; opacity: 1; transform: scale(1.018) rotate(0deg); filter: drop-shadow(0 0 6px currentColor); }
    80%  { stroke-dashoffset: 0; opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 6px currentColor); }
    /* Settle flash — brief brightness spike the moment the ring completes */
    88%  { stroke-dashoffset: 0; opacity: 1; stroke-width: 2.4; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 16px currentColor) drop-shadow(0 0 28px currentColor); }
    100% { stroke-dashoffset: 0; opacity: 0.92; stroke-width: 1.3; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 8px currentColor); }
}
/* A traveling bright pulse riding the freshly-drawn path */
.intro-orbit-tracer {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke: #fff;
    filter: drop-shadow(0 0 8px rgba(199,210,254,0.9));
    /* Small dash that slides around via offset animation */
    /* dasharray + length set per tracer inline for convenience */
}
.intro-tracer-1 { animation: traceOrbit 1.30s cubic-bezier(0.5, 0, 0.5, 1) 0.90s forwards; }
.intro-tracer-2 { animation: traceOrbit 1.45s cubic-bezier(0.5, 0, 0.5, 1) 1.02s forwards; }
.intro-tracer-3 { animation: traceOrbit 1.60s cubic-bezier(0.5, 0, 0.5, 1) 1.14s forwards; }
.intro-tracer-4 { animation: traceOrbit 1.75s cubic-bezier(0.5, 0, 0.5, 1) 1.26s forwards; }
.intro-tracer-5 { animation: traceOrbit 1.90s cubic-bezier(0.5, 0, 0.5, 1) 1.38s forwards; }
@keyframes traceOrbit {
    0%   { stroke-dashoffset: var(--orbit-len); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* === FIXED BACKGROUND LAYERS === */

@keyframes revealBg {
    to { opacity: 1; }
}

/* Nebula clouds — fixed so they stay in hero background */
.nebula {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    contain: paint;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: nebulaReveal 3s ease-out 2.8s forwards;
}
@keyframes nebulaReveal {
    to { opacity: 1; }
}

.nebula-1 {
    width: 600px; height: 400px;
    top: 15%; left: -5%;
    background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
}
.nebula-2 {
    width: 500px; height: 500px;
    bottom: 10%; right: -8%;
    background: radial-gradient(ellipse, rgba(139,92,246,0.10) 0%, transparent 70%);
    animation-delay: 3s;
}
.nebula-3 {
    width: 400px; height: 350px;
    top: 50%; left: 40%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
    animation-delay: 3.2s;
}

/* Post-intro nebula drift */
.nebula.drifting.nebula-1 { animation: nebulaDrift 25s ease-in-out infinite; }
.nebula.drifting.nebula-2 { animation: nebulaDrift 30s ease-in-out infinite reverse; }
.nebula.drifting.nebula-3 { animation: nebulaDrift 35s ease-in-out infinite 5s; }

@keyframes nebulaDrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}

/* Vignette overlay — fixed */
.vignette {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(5,5,16,0.6) 70%, rgba(5,5,16,0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

/* === STICKY NAV === */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5,5,16,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(129,140,248,0.08);
    padding: 0 24px;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-nav.visible {
    opacity: 1;
    transform: translateY(0);
}
.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.nav-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-link:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 960px) {
    .nav-links { gap: 1rem; }
    .nav-link { display: none; }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* JS drives padding-top to track the projected mask Y so the
       wordmark always sits just below the orbit — composition stays
       tight regardless of viewport height. CSS provides a safe initial
       value so first paint isn't broken before the frame loop runs. */
    padding-top: clamp(220px, 30vh, 360px);
    padding-bottom: clamp(40px, 6vh, 80px);
    /* Visible overflow — nothing should ever clip the wordmark.
       The body has `overflow-x: hidden` so no scrollbar. */
    overflow: visible;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Core — logo, fixed. Position + scale + opacity driven per-frame
   by the Three.js module so it tracks the 3D orbit center. */
.core {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    z-index: 8;
    opacity: 0;
    will-change: transform, opacity;
}

.core-logo {
    width: clamp(190px, 21vw, 270px);
    height: clamp(190px, 21vw, 270px);
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(129,140,248,0.5)) drop-shadow(0 0 40px rgba(99,102,241,0.25));
    animation: logoFloat 6s ease-in-out 4s infinite, logoGlowPulse 4s ease-in-out 3.5s infinite;
    cursor: pointer;
}
/* On landscape laptop viewports, slightly shrink the mask so the
   orbit rings around it remain clearly visible. */
@media (min-width: 641px) and (min-aspect-ratio: 1/1) {
    .core-logo {
        width: clamp(130px, 13vw, 180px);
        height: clamp(130px, 13vw, 180px);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes logoGlowPulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(129,140,248,0.5)) drop-shadow(0 0 40px rgba(99,102,241,0.25)); }
    50% { filter: drop-shadow(0 0 25px rgba(129,140,248,0.8)) drop-shadow(0 0 50px rgba(99,102,241,0.4)) drop-shadow(0 0 80px rgba(167,139,250,0.2)); }
}

.core-aura {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(310px, 33vw, 420px);
    height: clamp(310px, 33vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, rgba(99,102,241,0.06) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: auraPulse 5s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Content — hero text. Width is viewport-relative so the hero scales
   with the screen instead of hitting a hard cap that causes clipping. */
.content {
    position: relative;
    z-index: 6;
    text-align: center;
    width: min(96vw, 1100px);
    padding: 2rem 1rem;
    margin: 0 auto;
    overflow: visible;
}

/* Matrix decode text */
/* Matrix decode removed — hero text now uses a clean fade-in. */

/* Text logo — Nebula-style wordmark: sentence case, tight spacing,
   horizontal violet → white gradient. Starts hidden, revealed by JS.
   No padding, no filter — text-shadow for glow (zero layout impact)
   so the final "e" is never at risk of being clipped. */
.logo-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 6.2vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    white-space: nowrap;
    display: block;
    text-align: center;
    /* Horizontal gradient — violet on the left → white on the right. */
    background: linear-gradient(90deg, #a78bfa 0%, #c4b5fd 40%, #e0e7ff 72%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.1);
    filter: blur(16px);
    animation: logoTextReveal 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 3.2s forwards;
}
#heroWrap {
    margin-bottom: clamp(0.9rem, 1.4vh, 1.4rem) !important;
}

@keyframes logoTextReveal {
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.005em;
    text-transform: none;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: clamp(1.4rem, 2.4vh, 2.4rem);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    text-wrap: balance;
    text-shadow: 0 2px 20px rgba(5, 5, 16, 0.65);
    opacity: 0;
    animation: fadeUp 1s ease-out 4.0s forwards;
}

.hero-command {
    width: min(760px, 92vw);
    margin: 0 auto;
    display: grid;
    opacity: 0;
    animation: fadeUp 1s ease-out 4.35s forwards;
}
.hero-command-routes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.35vw, 1rem);
    align-items: stretch;
    min-width: 0;
    perspective: 1200px;
}
.hero-command-route {
    --route-accent: #a78bfa;
    --route-glow: rgba(129, 140, 248, 0.15);
    --subscriber-progress: 4%;
    position: relative;
    min-width: 0;
    min-height: clamp(152px, 15vw, 190px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(0.6rem, 1vw, 0.85rem);
    padding: clamp(0.9rem, 1.55vw, 1.25rem);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    color: inherit;
    text-decoration: none;
    text-align: left;
    transform: perspective(900px) translate3d(0, 0, 0) rotateX(0deg);
    transform-style: preserve-3d;
    transform-origin: center bottom;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.074), transparent 24%),
        radial-gradient(ellipse at 12% 0%, var(--route-glow), transparent 62%),
        radial-gradient(ellipse at 100% 100%, color-mix(in srgb, var(--route-accent) 10%, transparent), transparent 58%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014) 48%, rgba(0, 0, 0, 0.14)),
        rgba(7, 7, 20, 0.7);
    border: 1px solid color-mix(in srgb, var(--route-accent) 24%, rgba(255, 255, 255, 0.06));
    box-shadow:
        0 34px 80px -54px color-mix(in srgb, var(--route-accent) 78%, transparent),
        0 18px 0 -16px rgba(2, 2, 12, 0.88),
        0 20px 44px -38px rgba(255, 255, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -22px 34px -30px color-mix(in srgb, var(--route-accent) 46%, rgba(0, 0, 0, 0.9)),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.28s ease,
                background 0.28s ease,
                box-shadow 0.28s ease;
}
.hero-command-route::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.1), transparent 42%),
        linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.052) 50%, transparent 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%, rgba(0, 0, 0, 0.18) 100%);
    opacity: 0.38;
    transform: translateX(-46%);
    transition: opacity 0.35s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    mix-blend-mode: screen;
}
.hero-command-route::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0;
    z-index: 3;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--route-accent), transparent);
    opacity: 0.72;
    box-shadow:
        0 -1px 14px color-mix(in srgb, var(--route-accent) 32%, transparent),
        0 7px 18px rgba(0, 0, 0, 0.5);
}
@media (prefers-reduced-motion: no-preference) {
    .hero-command-route::after {
        animation: heroAccentBreath 7.5s ease-in-out infinite;
    }
    .hero-command-routes > .hero-command-route:nth-child(2)::after {
        animation-delay: 0.7s;
    }
}
@keyframes heroAccentBreath {
    0%, 100% { opacity: 0.72; }
    50%      { opacity: 0.96; }
}
.hero-command-route:hover {
    transform: perspective(900px) translate3d(0, -6px, 18px) rotateX(2.2deg);
    border-color: color-mix(in srgb, var(--route-accent) 38%, rgba(255, 255, 255, 0.08));
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 26%),
        radial-gradient(ellipse at 12% 0%, color-mix(in srgb, var(--route-accent) 20%, transparent), transparent 62%),
        radial-gradient(ellipse at 100% 100%, color-mix(in srgb, var(--route-accent) 14%, transparent), transparent 58%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.18)),
        rgba(7, 7, 20, 0.78);
    box-shadow:
        0 44px 96px -54px color-mix(in srgb, var(--route-accent) 88%, transparent),
        0 26px 0 -22px rgba(2, 2, 12, 0.9),
        0 0 0 1px color-mix(in srgb, var(--route-accent) 12%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -24px 34px -28px color-mix(in srgb, var(--route-accent) 52%, rgba(0, 0, 0, 0.9));
}
.hero-command-route:hover::before {
    opacity: 0.68;
    transform: translateX(42%);
}
.hero-command-route > * {
    position: relative;
    z-index: 2;
}
.hero-command-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateZ(28px);
}
.hero-command-kicker {
    color: var(--route-accent);
    font-size: 0.66rem;
    font-weight: 880;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 0 18px color-mix(in srgb, var(--route-accent) 32%, transparent);
}
.hero-command-index {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.hero-command-body {
    min-width: 0;
    display: grid;
    gap: clamp(0.55rem, 0.85vw, 0.8rem);
    transform: translateZ(22px);
}
.hero-command-title,
.hero-command-copy {
    display: block;
    min-width: 0;
}
.hero-command-title {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.15rem, 2vw, 1.78rem);
    line-height: 1.06;
    font-weight: 790;
    letter-spacing: 0;
    text-wrap: balance;
}
.hero-command-copy {
    font-style: normal;
    color: rgba(226, 232, 240, 0.56);
    font-size: clamp(0.78rem, 1vw, 0.96rem);
    font-weight: 620;
    line-height: 1.45;
    max-width: 30ch;
}
.hero-route-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    transform: translateZ(30px);
}
.hero-route-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
        rgba(255, 255, 255, 0.045);
    border: 1px solid color-mix(in srgb, var(--route-accent) 22%, rgba(255, 255, 255, 0.08));
    box-shadow:
        0 12px 24px -18px color-mix(in srgb, var(--route-accent) 74%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -10px 16px -14px rgba(0, 0, 0, 0.95);
    transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.hero-route-action::after {
    content: "→";
    font-size: 1.24rem;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.25s ease;
}
.hero-route-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.hero-command-route:hover .hero-route-action {
    color: #fff;
    background: color-mix(in srgb, var(--route-accent) 10%, rgba(255, 255, 255, 0.055));
    border-color: color-mix(in srgb, var(--route-accent) 44%, rgba(255, 255, 255, 0.08));
}
.hero-command-route:hover .hero-route-action::after {
    transform: translate(3px, -1px);
}
.hero-command-nova {
    --route-accent: #a78bfa;
    --route-glow: rgba(167, 139, 250, 0.16);
    transform: perspective(900px) translate3d(0, 0, -8px) rotateY(5deg) rotateX(0deg);
}
.hero-command-nova:hover {
    transform: perspective(900px) translate3d(0, -6px, 18px) rotateY(0deg) rotateX(2.2deg);
}
/* YouTube card — violet chrome to match Nova; the red play badge stays as
   the one brand-recognition accent. */
.hero-command-yt {
    --route-accent: #818cf8;
    --route-glow: rgba(129, 140, 248, 0.18);
    transform: perspective(900px) translate3d(0, 0, -8px) rotateY(-5deg) rotateX(0deg);
}
.hero-command-yt:hover {
    transform: perspective(900px) translate3d(0, -6px, 18px) rotateY(0deg) rotateX(2.2deg);
}
.hero-yt-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    flex: 1;
    transform: translateZ(24px);
}
.hero-yt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0.1rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff4d4d, #c81d2a);
    color: #fff;
    box-shadow:
        0 10px 22px -12px rgba(255, 77, 77, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.hero-yt-icon svg { width: 18px; height: 18px; }
.hero-yt-count {
    display: block;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    line-height: 1;
    font-weight: 880;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.96);
    font-variant-numeric: tabular-nums;
}
.hero-yt-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}
.hero-yt-track {
    display: grid;
    gap: 0.4rem;
    transform: translateZ(20px);
}
@media (max-width: 720px) {
    /* Stop drifting on narrow viewports so the stack reads flat. */
    .hero-command-nova,
    .hero-command-yt {
        transform: perspective(900px) translate3d(0, 0, 0) rotateY(0) rotateX(0);
    }
}
.hero-signal-progress {
    position: relative;
    height: 9px;
    border-radius: 999px;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 0 49%, rgba(167, 139, 250, 0.26) 49% calc(49% + 1px), transparent calc(49% + 1px)),
        linear-gradient(90deg, transparent 0 99%, rgba(103, 232, 249, 0.34) 99% 100%),
        rgba(199, 210, 254, 0.09);
    border: 1px solid rgba(199, 210, 254, 0.10);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.06),
        inset 0 -5px 10px rgba(0, 0, 0, 0.42),
        0 8px 18px -16px rgba(103, 232, 249, 0.7);
}
.hero-signal-progress span {
    display: block;
    width: var(--subscriber-progress, 4%);
    min-width: 18px;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #818cf8, #a78bfa 52%, #c4b5fd);
    box-shadow: 0 0 18px rgba(167, 139, 250, 0.22);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-signal-progress::before,
.hero-signal-progress::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(7, 7, 20, 0.95);
    border: 1px solid currentColor;
    box-shadow: 0 0 12px currentColor;
}
.hero-signal-progress::before {
    left: 50%;
    color: rgba(167, 139, 250, 0.8);
}
.hero-signal-progress::after {
    left: calc(100% - 2px);
    color: rgba(196, 181, 253, 0.85);
}
.hero-signal-marks {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.54rem;
    font-weight: 880;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(199, 210, 254, 0.46);
}
.hero-signal-marks b {
    color: rgba(199, 210, 254, 0.55);
}
.hero-signal-marks b:nth-child(2) {
    color: rgba(167, 139, 250, 0.82);
}
.hero-signal-marks b:nth-child(3) {
    color: rgba(196, 181, 253, 0.85);
}
/* === Subscribe CTA — theme-led, with a restrained YouTube mark === */
.enter-btn-yt {
    padding: 0.65rem 1.6rem 0.65rem 0.65rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.025)),
        linear-gradient(180deg, rgba(129, 140, 248, 0.26), rgba(99, 102, 241, 0.14)),
        rgba(10, 10, 28, 0.78);
    border-color: rgba(167, 139, 250, 0.44);
    box-shadow:
        0 16px 34px -18px rgba(99, 102, 241, 0.64),
        0 8px 0 -7px rgba(5, 5, 16, 0.85),
        0 0 0 1px rgba(199, 210, 254, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(0, 0, 0, 0.34);
}
.enter-btn-yt:hover {
    border-color: rgba(199, 210, 254, 0.68);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
        linear-gradient(180deg, rgba(129, 140, 248, 0.34), rgba(99, 102, 241, 0.20)),
        rgba(10, 10, 28, 0.85);
    box-shadow:
        0 22px 54px -18px rgba(99, 102, 241, 0.76),
        0 10px 0 -8px rgba(5, 5, 16, 0.9),
        0 0 0 1px rgba(167, 139, 250, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        inset 0 -1px 0 rgba(0, 0, 0, 0.34);
}
.enter-btn-yt .enter-btn-text {
    gap: 0.68rem;
    text-decoration: none;
}
.yt-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 24px;
    border-radius: 7px;
    background:
        linear-gradient(180deg, #ff3b32, #c91f18);
    color: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.24),
        0 7px 14px -10px rgba(255, 0, 0, 0.62);
    flex-shrink: 0;
}
.yt-btn-icon svg { width: 13px; height: 13px; display: block; }
.enter-btn-yt:hover .yt-btn-icon {
    background:
        linear-gradient(180deg, #ff4e45, #dd251d);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 -1px 0 rgba(0, 0, 0, 0.24),
        0 8px 18px -10px rgba(255, 0, 0, 0.72);
}
.enter-btn-yt.enter-btn-large {
    padding: 0.9rem 2rem 0.9rem 0.9rem;
    font-size: 0.95rem;
}
.enter-btn-yt.enter-btn-large .yt-btn-icon {
    width: 40px;
    height: 30px;
    border-radius: 8px;
}
.enter-btn-yt.enter-btn-large .yt-btn-icon svg { width: 16px; height: 16px; }
.enter-btn .enter-btn-text {
    display: inline-flex;
    align-items: center;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Connection lines flash */
@keyframes arcFlash {
    0% { stroke-dashoffset: 200; opacity: 0; }
    20% { opacity: 0.6; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* === Enter Button — solid premium style === */
.enter-btn {
    position: relative;
    padding: 0.95rem 2.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.96);
    background:
        linear-gradient(180deg, rgba(129, 140, 248, 0.22), rgba(99, 102, 241, 0.14)),
        rgba(10, 10, 28, 0.72);
    border: 1px solid rgba(129, 140, 248, 0.4);
    border-radius: 100px;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    contain: paint;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px -10px rgba(99, 102, 241, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    animation: fadeUp 1s ease-out 4.3s forwards;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                background 0.35s ease;
}

.enter-btn:hover {
    border-color: rgba(199, 210, 254, 0.75);
    transform: translateY(-2px);
    background:
        linear-gradient(180deg, rgba(129, 140, 248, 0.36), rgba(99, 102, 241, 0.22)),
        rgba(10, 10, 28, 0.85);
    box-shadow:
        0 18px 50px -12px rgba(99, 102, 241, 0.7),
        0 0 0 1px rgba(167, 139, 250, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.enter-btn:active {
    transform: translateY(0);
}

.enter-btn-text {
    position: relative;
    z-index: 2;
}

/* Sweeping light sheen on hover — subtle shimmer across the button */
.enter-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 70%
    );
    transform: translateX(-110%);
    transition: transform 0.7s cubic-bezier(0.5, 0, 0.5, 1);
    pointer-events: none;
    z-index: 1;
}

.enter-btn:hover .enter-btn-glow {
    transform: translateX(110%);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 5.2s forwards;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    font: inherit;
}

.scroll-indicator-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(199, 210, 254, 0.55);
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(5, 5, 16, 0.6);
}

/* Larger, pulsing chevron in a soft glass ring */
.scroll-chevron {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10, 10, 28, 0.5);
    border: 1px solid rgba(129, 140, 248, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 20px rgba(129, 140, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: chevronBounce 2.2s ease-in-out infinite;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.scroll-indicator:hover .scroll-chevron {
    border-color: rgba(199, 210, 254, 0.60);
    background: rgba(20, 20, 40, 0.7);
    transform: scale(1.1);
}

.scroll-chevron svg {
    width: 16px;
    height: 16px;
    stroke: rgba(221, 214, 254, 0.85);
    stroke-width: 2.2;
    fill: none;
    filter: drop-shadow(0 0 6px rgba(129, 140, 248, 0.6));
}

@keyframes chevronBounce {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 20px rgba(129, 140, 248, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
    50%      { transform: translateY(6px); box-shadow: 0 0 30px rgba(129, 140, 248, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

/* === HERO BOTTOM === */
.hero-bottom {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    pointer-events: none;
}
.hero-bottom > * { pointer-events: auto; }

/* === PAGE WRAPPER (sections after hero) ===
   The universe stays alive behind the stacked cards. Keep only a
   light atmospheric scrim here; each section owns its glass surface. */
.page-sections {
    position: relative;
    z-index: 10;
    perspective: 1400px;
    /* TRANSPARENT — lets the fixed universe canvas (stars) show
       through the padding/margins around every card. This is what
       creates the parallax "card floating in space" effect. */
    background: transparent;
}
/* Top-edge fade — smooth hand-off from the fully-transparent hero. */
.page-sections::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 16, 0) 0%,
        rgba(5, 5, 16, 0.18) 72%,
        rgba(5, 5, 16, 0.34) 100%
    );
    pointer-events: none;
    z-index: 9;
}

/* === DECK-OF-CARDS SCROLL STACKING ===
   Each section becomes a scroll-synced layer. As the next section
   rises from below, the outgoing section is counter-scrolled so both
   cards visibly pass through each other instead of one disappearing
   before the handoff. */
:root {
    /* Section padding = card inset + content breathing room.
       Card inset is clamp(48,6vw,96)h × clamp(28,3.4svh,52)v, so
       total section padding must be larger to keep content inside
       the card. */
    --deck-edge-x: clamp(58px, 7.2vw, 116px);
    --deck-edge-y: clamp(46px, 5.6svh, 84px);
    --deck-radius: clamp(24px, 2.6vw, 32px);
}
.page-sections > section {
    position: relative;
    top: 0;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: var(--deck-edge-y) var(--deck-edge-x) !important;
    background: transparent !important;
    border-radius: 0;
    isolation: isolate;
    overflow: clip;
    transform:
        translate3d(0, calc(var(--deck-enter-y, 0px) + var(--deck-y, 0px)), 0)
        scale(var(--deck-scale, 1));
    transform-origin: center top;
    opacity: var(--deck-opacity, 1);
    will-change: transform, opacity;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.page-sections > section:nth-of-type(1) { z-index: 1; }
.page-sections > section:nth-of-type(2) { z-index: 2; }
.page-sections > section:nth-of-type(3) { z-index: 3; }
.page-sections > section:nth-of-type(4) { z-index: 4; }
.page-sections > section::after {
    content: "";
    position: absolute;
    /* Generous padded inset — vertical narrower than horizontal so
       cards feel "panel-shaped" floating in the star field with
       clear breathing room on the sides. */
    inset:
        clamp(28px, 3.4svh, 52px)
        clamp(48px, 6vw, 96px);
    z-index: 0;
    border-radius: clamp(24px, 2.6vw, 32px);
    background:
        radial-gradient(
            ellipse 70% 52% at var(--deck-glow-x, 80%) var(--deck-glow-y, 8%),
            rgba(var(--deck-accent, 129, 140, 248), 0.20),
            transparent 66%),
        linear-gradient(180deg,
            rgba(10, 10, 24, 0.74) 0%,
            rgba(6, 6, 18, 0.78) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(167, 139, 250, 0.06),
        0 30px 70px -32px rgba(0, 0, 0, 0.9),
        0 80px 140px -64px rgba(var(--deck-accent, 129, 140, 248), 0.32);
    pointer-events: none;
    opacity: var(--deck-shell-opacity, 1);
    will-change: opacity;
}
.page-sections > section > :not(.cta-glow) {
    position: relative;
    z-index: 2;
    opacity: var(--deck-content-opacity, 1);
    transform: translate3d(0, var(--deck-content-y, 0px), 0);
    will-change: transform, opacity;
}
.page-sections > #products {
    --deck-accent: 129, 140, 248;
    --deck-accent-2: 167, 139, 250;
    --deck-orbit-x: 82%;
    --deck-orbit-y: 18%;
    --deck-glow-x: 78%;
    --deck-glow-y: 4%;
}
.page-sections > #bundles {
    --deck-accent: 167, 139, 250;
    --deck-accent-2: 129, 140, 248;
    --deck-orbit-x: 30%;
    --deck-orbit-y: 38%;
    --deck-glow-x: 24%;
    --deck-glow-y: 16%;
}
.page-sections > #watch {
    --deck-accent: 255, 120, 110;
    --deck-accent-2: 167, 139, 250;
    --deck-orbit-x: 76%;
    --deck-orbit-y: 42%;
    --deck-glow-x: 84%;
    --deck-glow-y: 16%;
}
.page-sections > #workflow {
    --deck-accent: 129, 140, 248;
    --deck-accent-2: 167, 139, 250;
    --deck-glow-x: 50%;
    --deck-glow-y: 12%;
}
.page-sections > .cta-section {
    --deck-accent: 167, 139, 250;
    --deck-accent-2: 129, 140, 248;
    --deck-orbit-x: 50%;
    --deck-orbit-y: 48%;
    --deck-glow-x: 50%;
    --deck-glow-y: 8%;
}
/* The card system owns the outer spacing; the old inner section
   wrappers become pure content containers inside each card. */
.page-sections > #products .family-section,
.page-sections > #workflow .workflow-inner,
.page-sections > #bundles .bundles-inner,
.page-sections > #watch .subscriber-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 !important;
}
.page-sections > #bundles .bundle-showcase {
    margin-top: clamp(1.7rem, 3.4svh, 2.8rem);
}
.page-sections > #watch.subscriber-section::before {
    inset:
        clamp(28px, 3.4svh, 52px)
        clamp(48px, 6vw, 96px);
    border-radius: var(--deck-radius);
    z-index: 1;
    opacity: 0.55;
}
.page-sections > #watch .subscriber-drive {
    margin-top: clamp(1.5rem, 3.4svh, 2.4rem);
    padding-top: clamp(1rem, 2.4svh, 1.5rem);
}

@media (max-height: 980px) and (min-width: 761px) {
    .page-sections > #watch .subscriber-drive {
        display: none;
    }
    .page-sections > #watch .subscriber-proof-grid,
    .page-sections > #watch .subscriber-platforms {
        display: none;
    }
    .page-sections > #watch .subscriber-copy .section-title {
        font-size: clamp(2.5rem, 4.3vw, 4.25rem);
    }
    .page-sections > #watch .subscriber-panel {
        min-height: 420px;
    }
    .page-sections > #watch .subscriber-orbit {
        height: 252px;
    }
    .page-sections > #watch .subscriber-count {
        width: min(205px, 56vw);
    }
}

/* Reduced motion keeps the scroll-bound deck, but removes extra blur. */
@media (prefers-reduced-motion: reduce) {
    .page-sections > section > :not(.cta-glow) {
        filter: none !important;
    }
}

@media (max-width: 560px), (max-height: 560px) {
    html {
        scroll-snap-type: none;
    }
    :root {
        --deck-edge-x: clamp(14px, 4.8vw, 26px);
        --deck-edge-y: clamp(34px, 5.2svh, 50px);
        --deck-radius: clamp(20px, 7vw, 28px);
    }
    .page-sections {
        padding: 0 0 1.25rem;
        -webkit-user-select: none;
        user-select: none;
    }
    .page-sections > section {
        position: relative;
        top: auto;
        min-height: auto;
        margin-top: 0;
        padding: var(--deck-edge-y) var(--deck-edge-x) !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        overflow: visible;
        scroll-snap-align: none;
    }
    .page-sections > section:first-of-type {
        margin-top: 0;
    }
    .page-sections > section::after,
    .page-sections > section > :not(.cta-glow) {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }
    .page-sections > section::after {
        inset: clamp(8px, 2.8vw, 14px);
        border-radius: var(--deck-radius);
        background:
            radial-gradient(ellipse 78% 46% at var(--deck-glow-x, 78%) var(--deck-glow-y, 6%),
                rgba(var(--deck-accent, 129, 140, 248), 0.18),
                transparent 64%),
            linear-gradient(180deg,
                rgb(12, 12, 32),
                rgb(5, 5, 16));
    }
    .page-sections > #products .product-showcase,
    .page-sections > #bundles .bundle-showcase,
    .page-sections > #watch .subscriber-hero {
        gap: clamp(1.15rem, 4svh, 1.8rem);
    }
    .page-sections > #watch .subscriber-drive {
        display: none;
    }
    .page-sections > #products .product-proof-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-top: 1rem;
    }
    .page-sections > #products .product-proof {
        padding: 0.72rem 0.78rem;
    }
    .page-sections > #products .product-proof strong,
    .page-sections > #products .product-proof span {
        line-height: 1.2;
    }
    .page-sections > #products .product-stage .tree-node-logo {
        width: clamp(74px, 22vw, 96px);
        height: clamp(74px, 22vw, 96px);
    }
    .page-sections > #products .nova-console-row {
        grid-template-columns: auto 1fr;
    }
    .page-sections > #products .nova-console-row em {
        display: none;
    }
    .page-sections > #bundles .bundles-header {
        text-align: left;
        margin: 0;
        max-width: none;
    }
    .page-sections > #bundles .bundle-hub-body {
        min-height: clamp(220px, 56vw, 280px);
    }
    .page-sections > #watch .subscriber-platforms {
        display: none;
    }
    .page-sections > #watch .subscriber-copy .section-title {
        font-size: clamp(2rem, 9.4vw, 2.62rem);
        line-height: 1.07;
        margin-bottom: 0.9rem;
    }
    .page-sections > #watch .subscriber-copy .section-description {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }
    .page-sections > #watch .subscriber-signal-summary {
        margin-bottom: 0.95rem;
    }
    .page-sections > #watch .subscriber-actions {
        gap: 0.65rem;
    }
    .page-sections > #watch .subscriber-proof-grid {
        gap: 0.55rem;
        margin-top: 1rem;
    }
    .page-sections > #watch .subscriber-proof {
        padding: 0.78rem 0.85rem;
    }
    .page-sections > #watch .subscriber-proof span {
        margin-bottom: 0.28rem;
        font-size: 0.58rem;
    }
    .page-sections > #watch .subscriber-proof strong {
        font-size: clamp(1.08rem, 5.4vw, 1.34rem);
        line-height: 1.08;
    }
    .page-sections > #watch .subscriber-proof em {
        margin-top: 0.28rem;
        font-size: 0.72rem;
        line-height: 1.35;
    }
    .page-sections > #watch .subscriber-panel {
        padding-top: 0.85rem;
        border-radius: 16px;
    }
    .page-sections > #watch .subscriber-panel-status {
        padding-inline: 0.95rem;
    }
    .page-sections > #watch .subscriber-orbit {
        height: clamp(160px, 48vw, 212px);
        margin-inline: 0.4rem;
    }
    .page-sections > #watch .subscriber-ring-3 {
        width: min(218px, 62vw);
        height: min(218px, 62vw);
    }
    .page-sections > #watch .subscriber-ring-2 {
        width: min(176px, 51vw);
        height: min(176px, 51vw);
    }
    .page-sections > #watch .subscriber-ring-1 {
        width: min(132px, 40vw);
        height: min(132px, 40vw);
    }
    .page-sections > #watch .subscriber-count {
        width: min(154px, 43vw);
    }
    .page-sections > #watch .subscriber-count-number {
        font-size: clamp(2.2rem, 10vw, 2.9rem);
    }
    .page-sections > #watch .subscriber-count-label {
        margin-top: 0.4rem;
        font-size: 0.56rem;
        letter-spacing: 0.18em;
    }
    .page-sections > #watch .subscriber-meter {
        padding: 0 0.95rem 0.95rem;
    }
    .page-sections > #watch .subscriber-meter-head {
        margin-bottom: 0.55rem;
    }
    .page-sections > #watch .subscriber-meter-title,
    .page-sections > #watch .subscriber-meter-value {
        font-size: 0.7rem;
    }
    .page-sections > #workflow .workflow-header {
        max-width: none;
        margin-bottom: 1.15rem;
        text-align: left;
    }
    .page-sections > #workflow .workflow-header .section-label,
    .page-sections > #workflow .workflow-header .section-title,
    .page-sections > #workflow .workflow-header .section-description {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .page-sections > #workflow .workflow-header .section-label {
        margin-bottom: 0.72rem;
    }
    .page-sections > #workflow .workflow-header .section-title {
        font-size: clamp(1.8rem, 8.6vw, 2.45rem);
        line-height: 1.08;
        margin-bottom: 0.72rem;
        text-wrap: balance;
    }
    .page-sections > #workflow .workflow-header .section-description {
        max-width: 32rem;
        margin-bottom: 0;
        font-size: 0.92rem;
        line-height: 1.55;
    }
    .page-sections > #workflow .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.58rem;
    }
    .page-sections > #workflow .workflow-card {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        grid-template-areas:
            "num num"
            "icon name"
            "desc desc";
        align-content: start;
        column-gap: 0.55rem;
        row-gap: 0.22rem;
        min-height: 112px;
        padding: 0.72rem 0.72rem 0.78rem;
        border-radius: 14px;
    }
    .page-sections > #workflow .workflow-card-num {
        grid-area: num;
        margin: 0 0 0.18rem;
        font-size: 0.58rem;
        letter-spacing: 0.16em;
    }
    .page-sections > #workflow .workflow-card-icon {
        grid-area: icon;
        width: 34px;
        height: 34px;
        margin: 0;
        border-radius: 10px;
    }
    .page-sections > #workflow .workflow-card-icon svg {
        width: 17px;
        height: 17px;
    }
    .page-sections > #workflow .workflow-card-name {
        grid-area: name;
        align-self: center;
        min-width: 0;
        font-size: 0.88rem;
        line-height: 1.12;
        margin: 0;
    }
    .page-sections > #workflow .workflow-card-desc {
        grid-area: desc;
        margin-top: 0.28rem;
        font-size: 0.74rem;
        line-height: 1.32;
        overflow-wrap: anywhere;
    }
}

@media (min-width: 430px) and (max-width: 560px) {
    .page-sections > #watch .subscriber-signal-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .page-sections > #watch .subscriber-signal-summary > div {
        padding: 0.72rem 0.7rem;
    }
    .page-sections > #watch .subscriber-signal-summary > div > span {
        min-height: 2.2em;
        margin-bottom: 0.25rem;
        font-size: 0.53rem;
        letter-spacing: 0.12em;
    }
    .page-sections > #watch .subscriber-signal-summary > div > strong {
        font-size: 0.88rem;
        line-height: 1.12;
    }
}

/* === SECTION BASE STYLES === */
.section {
    position: relative;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 32px);
}

#products,
#bundles,
#watch {
    scroll-margin-top: 88px;
}

/* === REVEAL ANIMATIONS (IntersectionObserver) === */
.reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* === ENHANCED SCROLL ANIMATIONS === */

/* Hero scroll fade */
.hero-scroll-fade {
    will-change: opacity, filter, transform;
}

/* Reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.97);
    transition-property: opacity, transform;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Reveal from right */
.reveal-right {
    opacity: 0;
    transform: translateX(80px) scale(0.97);
    transition-property: opacity, transform;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Blur-in reveal */
.reveal-blur {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(30px) scale(0.92);
    transition-property: opacity, filter, transform;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
}

/* Scale-up reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(8px);
    transition-property: opacity, transform, filter;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

/* Word-by-word stagger reveal */
.word-stagger {
    perspective: 600px;
}
.word-stagger .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(45deg);
    filter: blur(4px);
    transition-property: opacity, transform, filter;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom center;
}
.word-stagger.visible .word {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0px);
}

/* Component-level motion: sections do not just fade in as one slab.
   Their inner controls assemble with a short stagger so the page feels
   intentionally alive without fighting scroll. */
@media (prefers-reduced-motion: no-preference) {
    .hero-command-route {
        opacity: 0;
        translate: 0 18px;
        scale: 0.965;
        filter: blur(12px);
        animation: heroRouteBoot 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-command-routes > .hero-command-route:nth-child(1) {
        animation-delay: 4.38s;
    }
    .hero-command-routes > .hero-command-route:nth-child(2) {
        animation-delay: 4.52s;
    }

    .product-proof-row .product-proof,
    .workflow-grid .workflow-card,
    .subscriber-signal-summary > div,
    .subscriber-proof-grid .subscriber-proof,
    .nova-console-list .nova-console-row,
    .subscriber-panel .subscriber-meter {
        opacity: 0;
        translate: 0 18px;
        scale: 0.98;
        filter: blur(10px);
    }
    .product-proof-row.visible .product-proof,
    .workflow-grid.visible .workflow-card,
    .subscriber-signal-summary.visible > div,
    .subscriber-proof-grid.visible .subscriber-proof,
    .product-stage.visible .nova-console-row,
    .subscriber-panel.visible .subscriber-meter {
        animation: componentRise 0.74s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .product-proof-row.visible .product-proof:nth-child(2),
    .workflow-grid.visible .workflow-card:nth-child(2),
    .subscriber-signal-summary.visible > div:nth-child(2),
    .subscriber-proof-grid.visible .subscriber-proof:nth-child(2),
    .product-stage.visible .nova-console-row:nth-child(2) {
        animation-delay: 0.08s;
    }
    .product-proof-row.visible .product-proof:nth-child(3),
    .workflow-grid.visible .workflow-card:nth-child(3),
    .subscriber-signal-summary.visible > div:nth-child(3),
    .product-stage.visible .nova-console-row:nth-child(3) {
        animation-delay: 0.16s;
    }
    .workflow-grid.visible .workflow-card:nth-child(4) { animation-delay: 0.22s; }
    .workflow-grid.visible .workflow-card:nth-child(5) { animation-delay: 0.30s; }
    .workflow-grid.visible .workflow-card:nth-child(6) { animation-delay: 0.38s; }

    .product-stage.visible .tree-node-logo,
    .subscriber-panel.visible .subscriber-count,
    .hero-yt-icon {
        animation: softPulse 3.8s ease-in-out infinite;
    }
    .page-sections > section.section-active::after {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            inset 0 0 0 1px rgba(167, 139, 250, 0.09),
            0 34px 78px -34px rgba(0, 0, 0, 0.92),
            0 88px 150px -66px rgba(var(--deck-accent, 129, 140, 248), 0.42);
    }
}

@keyframes heroRouteBoot {
    0% {
        opacity: 0;
        translate: 0 18px;
        scale: 0.965;
        filter: blur(12px);
    }
    70% {
        opacity: 1;
        translate: 0 -2px;
        scale: 1.006;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@keyframes componentRise {
    0% {
        opacity: 0;
        translate: 0 18px;
        scale: 0.98;
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        translate: 0 -2px;
        scale: 1.006;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@keyframes softPulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(129, 140, 248, 0));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(129, 140, 248, 0.32));
    }
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(129,140,248,0.6);
    text-align: center;
    display: block;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: rgba(255,255,255,0.88);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: clamp(0.95rem, 1.15vw, 1rem);
    color: rgba(255,255,255,0.4);
    text-align: center;
    max-width: 480px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    line-height: 1.7;
}

/* === SECTION 5: FINAL CTA === */
.cta-section {
    background: transparent;
    text-align: center;
    padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 32px) clamp(70px, 8vw, 110px);
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-eyebrow {
    font-size: 1rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.05em;
    font-weight: 400;
}

.cta-headline {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    background: linear-gradient(135deg, #c7d2fe 0%, #818cf8 35%, #a78bfa 70%, #c7d2fe 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctaShimmer 8s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    max-width: 400px;
}

/* Large CTA button variant */
.enter-btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* Ambient glow beneath CTA */
.cta-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 500px);
    height: clamp(140px, 20vw, 200px);
    background: radial-gradient(ellipse at center bottom, rgba(99,102,241,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer line */
.footer-line {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2.5rem 1rem 3rem;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
}
.footer-orbit {
    width: 72px;
    height: 72px;
    opacity: 0.75;
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.25));
}
.footer-orbit-dot {
    filter: drop-shadow(0 0 6px #a78bfa);
    transform-origin: center;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-link {
    color: rgba(199, 210, 254, 0.5);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.25s ease;
}
.footer-link:hover { color: rgba(255, 255, 255, 0.95); }
.footer-sep { color: rgba(167, 139, 250, 0.25); font-size: 0.75rem; }
.footer-copy {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.08em;
}

@media (max-width: 640px) {
    .sticky-nav {
        padding: 0 clamp(14px, 5vw, 24px);
    }
    .nav-inner {
        width: 100%;
        min-width: 0;
        gap: 0.75rem;
    }
    .nav-brand {
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-yt {
        flex-shrink: 0;
        padding-right: clamp(0.72rem, 3vw, 1.05rem);
    }
    .core-logo {
        width: clamp(118px, 34vw, 150px);
        height: clamp(118px, 34vw, 150px);
    }
    .core-aura {
        width: clamp(210px, 58vw, 260px);
        height: clamp(210px, 58vw, 260px);
    }
    .nebula {
        filter: blur(60px);
    }
    .nebula-1 { width: 300px; height: 200px; left: 0; }
    .nebula-2 { width: 250px; height: 250px; right: 0; }
    .nebula-3 { width: 200px; height: 175px; }
    /* Mobile: let the bottom group flow after content so it can't
       collide with the CTAs when the buttons wrap to two rows. */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100svh;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0;
    }
    .content {
        width: 100%;
        max-width: 100%;
        padding: 1.25rem 20px;
        margin-top: var(--mobile-content-top, clamp(22rem, 54svh, 46rem));
    }
    .hero-bottom {
        position: static;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 0.8rem auto clamp(4.5rem, 11svh, 7rem);
        gap: 1.5rem;
    }
    .logo-text {
        width: 100%;
        font-size: clamp(1.85rem, 7.2vw, 2rem);
        margin-bottom: 1.25rem;
        white-space: nowrap;
    }
    #heroWrap {
        margin-bottom: 1.25rem !important;
    }
    .subtitle {
        max-width: 280px;
        font-size: 0.88rem;
        letter-spacing: 0;
        margin-bottom: 1.45rem;
    }
    .hero-command {
        width: 100%;
        max-width: min(340px, calc(100vw - 40px));
    }
    .hero-command-routes {
        grid-template-columns: 1fr;
        gap: 0.56rem;
        width: 100%;
    }
    .hero-command-route {
        min-height: 88px;
        text-align: center;
        gap: 0.5rem;
        padding: 0.72rem 0.9rem;
        border-radius: 14px;
        justify-content: center;
    }
    .hero-command-top {
        justify-content: center;
        gap: 0.42rem;
    }
    .hero-command-kicker {
        font-size: 0.48rem;
        letter-spacing: 0.16em;
    }
    .hero-command-index {
        display: none;
    }
    .hero-command-title {
        font-size: 0.82rem;
        line-height: 1.14;
    }
    .hero-command-nova .hero-command-title {
        max-width: none;
        margin: 0 auto;
    }
    .hero-command-copy,
    .hero-command-nova .hero-route-foot {
        display: none;
    }
    .hero-route-action {
        width: 28px;
        height: 28px;
        margin: 0 auto;
    }
    /* YouTube center card — give it a taller cell on mobile so the
       icon, count, and progress bar all fit comfortably. */
    .hero-command-yt {
        min-height: 144px;
        padding: 0.85rem 0.9rem;
        gap: 0.45rem;
        justify-content: space-between;
    }
    .hero-command-yt .hero-command-title {
        display: none;
    }
    .hero-yt-stage {
        gap: 0.25rem;
    }
    .hero-yt-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.1rem;
        border-radius: 9px;
    }
    .hero-yt-icon svg {
        width: 16px;
        height: 16px;
    }
    .hero-yt-count {
        font-size: 1.55rem;
        line-height: 1;
    }
    .hero-yt-label {
        font-size: 0.5rem;
        letter-spacing: 0.18em;
    }
    .hero-yt-track {
        gap: 0.3rem;
    }
    .hero-signal-progress {
        height: 6px;
    }
    .hero-signal-marks {
        font-size: 0.44rem;
        gap: 0.2rem;
    }
    .enter-btn {
        padding: 0.72rem 1.25rem;
        font-size: 0.78rem;
    }
    .enter-btn-yt {
        padding: 0.5rem 1.05rem 0.5rem 0.5rem;
    }
    .enter-btn-yt.enter-btn-large {
        width: min(100%, 17.5rem);
        justify-content: center;
        padding: 0.72rem 1.1rem 0.72rem 0.64rem;
    }
    .enter-btn-yt.enter-btn-large .enter-btn-text {
        justify-content: center;
    }
    .section {
        padding: 80px 20px;
    }
}

@media (min-width: 1500px) {
    .subtitle {
        margin-bottom: clamp(1.6rem, 2.6vh, 2.6rem);
    }
}

@media (min-width: 1800px) {
    .subtitle {
        margin-bottom: clamp(1.8rem, 3vh, 3rem);
    }
}

@media (min-width: 641px) and (max-height: 820px) {
    .content {
        margin-top: 0;
    }
    #heroWrap {
        margin-bottom: clamp(0.8rem, 1.4vh, 1.2rem) !important;
    }
    .subtitle {
        margin-bottom: clamp(1.2rem, 2.4vh, 2rem);
    }
    .hero-command-route {
        min-height: clamp(128px, 26vh, 158px);
        padding: clamp(0.9rem, 2.2vh, 1.1rem) clamp(1rem, 1.4vw, 1.25rem);
    }
    .hero-command-title {
        font-size: clamp(1.12rem, 3.4vh, 1.45rem);
    }
    .hero-command-copy {
        font-size: clamp(0.76rem, 2vh, 0.86rem);
        line-height: 1.38;
    }
    .hero-yt-icon {
        width: clamp(34px, 6.8vh, 40px);
        height: clamp(34px, 6.8vh, 40px);
        border-radius: 11px;
    }
    .hero-yt-count {
        font-size: clamp(2rem, 8vh, 2.65rem);
    }
    .hero-yt-label {
        font-size: 0.56rem;
    }
    .hero-bottom {
        bottom: 0.8rem;
        gap: 1rem;
    }
    .scroll-indicator-label {
        display: none;
    }
}

@media (min-width: 1500px) and (max-height: 820px) {
    .subtitle {
        margin-bottom: clamp(3.8rem, 8vh, 5rem);
    }
}

@media (max-width: 400px) {
    .logo-text { font-size: clamp(1.72rem, 8vw, 2rem); }
    .core-logo { width: clamp(112px, 32vw, 132px); height: clamp(112px, 32vw, 132px); }
    .nav-brand { max-width: 10.5rem; }
    .nav-yt {
        gap: 0.45rem;
        padding: 0.48rem 0.72rem 0.48rem 0.52rem;
    }
    .nav-yt-icon {
        width: 24px;
        height: 17px;
    }
    .product-action,
    .enter-btn-yt.enter-btn-large {
        font-size: 0.76rem;
    }
    .bundle-hub-label,
    .bundle-hub-status,
    .nova-console-title,
    .nova-console-status {
        letter-spacing: 0.14em;
    }
    .subscriber-count-label {
        letter-spacing: 0.16em;
    }
}

/* === UNIVERSE 3D BACKGROUND === */
#universe3d {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #050510;
    opacity: 0;
    animation: revealBg 1.4s ease-out 1.6s forwards;
}
#universe3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
/* 3D mouse-tracked feature cards — ported from Nebula LandingAnimations.tsx */
.feature-card {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
    will-change: transform;
}
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        115deg,
        transparent 25%,
        rgba(199,210,254,0.08) 48%,
        rgba(167,139,250,0.12) 52%,
        transparent 75%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
    box-shadow:
        0 30px 60px -20px rgba(99,102,241,0.35),
        0 0 0 1px rgba(129,140,248,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border-color: rgba(167,139,250,0.50) !important;
}
.feature-card > * { position: relative; z-index: 2; }
@media (hover: none) {
    .feature-card { transform: none !important; }
}

/* Gradient-mesh section transition — ported from Nebula GradientMeshTransition */
.mesh-transition {
    position: relative;
    height: 120px;
    width: 100%;
    pointer-events: none;
    overflow: hidden;
}
.mesh-transition::before,
.mesh-transition::after {
    content: "";
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(ellipse 60% 70% at 20% 50%, rgba(99,102,241,0.15), transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(167,139,250,0.12), transparent 70%),
        radial-gradient(ellipse 40% 50% at 50% 100%, rgba(103,232,249,0.08), transparent 70%);
    filter: blur(40px);
}
.mesh-transition::after {
    background:
        radial-gradient(ellipse 45% 55% at 30% 20%, rgba(192,132,252,0.1), transparent 65%),
        radial-gradient(ellipse 55% 50% at 75% 80%, rgba(129,140,248,0.12), transparent 65%);
    mix-blend-mode: screen;
    animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-3%, 2%) scale(1.08); }
    100% { transform: translate(2%, -2%) scale(1.04); }
}
/* ============================================================
   PRODUCT FAMILY TREE — root (Agents Universe) + Nova
   ============================================================ */
.family-section {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 32px);
}
.product-tree {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Root */
.tree-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.tree-root-logo {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tree-root-aura {
    position: absolute;
    inset: -40%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(167, 139, 250, 0.45) 0%,
        rgba(129, 140, 248, 0.22) 35%,
        transparent 70%);
    filter: blur(18px);
    animation: novaAuraPulse 5s ease-in-out infinite;
}
.tree-root-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 28px rgba(99, 102, 241, 0.5));
}
.tree-root-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #a78bfa 0%, #c4b5fd 40%, #e0e7ff 72%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tree-root-sub {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(199, 210, 254, 0.55);
    font-weight: 600;
}

/* Connection lines SVG */
.tree-lines {
    width: 100%;
    max-width: 560px;
    height: 110px;
    margin-top: 1.25rem;
}
@media (max-width: 640px) {
    .tree-lines { max-width: 400px; height: 80px; }
}

/* Children grid */
.tree-children {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    width: 100%;
    max-width: 780px;
    margin-top: -0.5rem;
}
@media (max-width: 640px) {
    .tree-children { grid-template-columns: 1fr; }
    .tree-lines { display: none; }
    .product-tree > * + * { margin-top: 1.5rem; }
}

.tree-node {
    position: relative;
    padding: clamp(1.4rem, 2.5vw, 1.75rem) clamp(1.2rem, 2vw, 1.5rem) clamp(1.2rem, 2vw, 1.4rem);
    background: rgba(8, 8, 22, 0.72);
    border: 1px solid rgba(129, 140, 248, 0.10);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    transform: perspective(1000px) rotateX(var(--tnx, 0deg)) rotateY(var(--tny, 0deg)) translateY(0);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    transform-style: preserve-3d;
    isolation: isolate;
}
/* Animated gradient ring rotating slowly behind the card */
.tree-node::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--ring-angle, 0deg),
        rgba(167, 139, 250, 0) 0%,
        rgba(167, 139, 250, 0.55) 12%,
        rgba(199, 210, 254, 0.85) 18%,
        rgba(167, 139, 250, 0.55) 25%,
        rgba(167, 139, 250, 0) 50%,
        rgba(167, 139, 250, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -2;
    animation: treeRingSpin 6s linear infinite;
    animation-play-state: paused;
}
.tree-node:hover::before {
    opacity: 0.85;
    animation-play-state: running;
}
@property --ring-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes treeRingSpin {
    from { --ring-angle: 0deg; }
    to   { --ring-angle: 360deg; }
}
.tree-node::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(ellipse at top, var(--tree-glow, rgba(129,140,248,0.18)), transparent 65%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.45s ease;
}
.tree-node:hover {
    transform: perspective(1000px) rotateX(var(--tnx, 0deg)) rotateY(var(--tny, 0deg)) translateY(-6px);
    border-color: var(--tree-accent, rgba(167, 139, 250, 0.55));
    box-shadow: 0 32px 60px -22px var(--tree-shadow, rgba(139, 92, 246, 0.55));
}
.tree-node:hover::after { opacity: 1; }

.tree-node-nova    { --tree-accent: #818cf8; --tree-glow: rgba(129, 140, 248, 0.25); --tree-shadow: rgba(99, 102, 241, 0.55); }
.tree-node-nebula  { --tree-accent: #67e8f9; --tree-glow: rgba(103, 232, 249, 0.22); --tree-shadow: rgba(14, 165, 233, 0.45); }

.tree-node-status {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    background: rgba(129, 140, 248, 0.1);
    border: 1px solid rgba(129, 140, 248, 0.18);
    color: var(--tree-accent, #818cf8);
    margin-bottom: 1.2rem;
}
.tree-node-logo {
    width: 116px;
    height: 116px;
    margin: 0 auto 0.9rem;
}
.tree-node-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 20px var(--tree-shadow, rgba(99, 102, 241, 0.35)));
}
.tree-node-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22%;
    filter: drop-shadow(0 10px 28px var(--tree-shadow, rgba(99, 102, 241, 0.45)));
}
.tree-node-name {
    font-size: clamp(1.15rem, 1.7vw, 1.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.3rem;
}
.tree-node-tag {
    font-size: clamp(0.68rem, 0.85vw, 0.72rem);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   NOVA PRODUCT SHOWCASE — product story replaces lone-card layout
   ============================================================ */
.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}
.product-copy {
    max-width: 650px;
}
.product-copy .section-label,
.product-copy .section-title,
.product-copy .section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.product-copy .section-title {
    font-size: clamp(2.6rem, 5.4vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 1.1rem;
}
.product-copy .section-description {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(226, 232, 240, 0.58);
}
.product-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: clamp(1.5rem, 3vw, 2.2rem);
    max-width: 620px;
}
.product-proof {
    position: relative;
    padding: 0.95rem 0.95rem 0.9rem;
    border-top: 1px solid rgba(129, 140, 248, 0.18);
    background: linear-gradient(180deg, rgba(129, 140, 248, 0.055), transparent);
    transform: perspective(800px) rotateX(0) rotateY(0) translateY(0);
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                background 0.35s ease;
}
.product-proof::after {
    content: "";
    position: absolute;
    inset: -1px -1px auto -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.55), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .product-proof:hover {
        border-top-color: rgba(167, 139, 250, 0.42);
        background: linear-gradient(180deg, rgba(129, 140, 248, 0.10), transparent);
    }
    .product-proof:hover::after { opacity: 1; }
}
.product-proof span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.78);
}
.product-proof strong {
    display: block;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.product-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: clamp(1.6rem, 3vw, 2.35rem);
}
.product-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.68rem 1.1rem;
    border-radius: 100px;
    border: 1px solid rgba(129, 140, 248, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.product-action svg {
    width: 14px;
    height: 14px;
}
.product-action-primary {
    color: #050510;
    border-color: transparent;
    background: linear-gradient(135deg, #c7d2fe, #818cf8 48%, #67e8f9);
    box-shadow: 0 16px 38px -18px rgba(103, 232, 249, 0.85);
}
.product-action:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(199, 210, 254, 0.42);
    background: rgba(255, 255, 255, 0.07);
}
.product-action-primary:hover {
    color: #050510;
    border-color: transparent;
    background: linear-gradient(135deg, #ffffff, #c7d2fe 48%, #67e8f9);
}
.product-stage {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(129, 140, 248, 0.16);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(129, 140, 248, 0.22), transparent 58%),
        linear-gradient(180deg, rgba(10, 10, 28, 0.88), rgba(5, 5, 16, 0.80));
    box-shadow:
        0 34px 90px -48px rgba(99, 102, 241, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.product-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(129, 140, 248, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(129, 140, 248, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, black, transparent 82%);
    opacity: 0.8;
    pointer-events: none;
}
.product-stage > * {
    position: relative;
    z-index: 2;
}
.nova-console-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(129, 140, 248, 0.12);
    background: rgba(5, 5, 16, 0.24);
}
.nova-console-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(199, 210, 254, 0.68);
}
.nova-console-status {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 650;
}
.nova-console-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #67e8f9;
    box-shadow: 0 0 12px rgba(103, 232, 249, 0.8);
}
.product-stage .product-tree {
    margin: 0;
    padding: clamp(1.5rem, 4vw, 2.2rem) clamp(1.3rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.7rem);
}
.product-stage .tree-children {
    max-width: 360px !important;
}
.product-stage .tree-node {
    background: rgba(5, 5, 16, 0.72);
    border-radius: 20px;
    padding: clamp(1.35rem, 3vw, 1.8rem);
}
.nova-console-list {
    display: grid;
    gap: 0.65rem;
    padding: 0 clamp(1.15rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.5rem);
}
.nova-console-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}
.nova-console-row span:first-child {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #c7d2fe;
    background: rgba(129, 140, 248, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.16);
    font-size: 0.72rem;
    font-weight: 800;
}
.nova-console-row strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    letter-spacing: -0.005em;
}
.nova-console-row em {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-style: normal;
}
@media (max-width: 940px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }
    .product-copy .section-title {
        max-width: 720px;
    }
    .product-stage {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 640px) {
    .product-copy .section-title,
    .subscriber-copy .section-title {
        font-size: clamp(2rem, 10.5vw, 2.85rem);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }
    .product-copy .section-description,
    .bundle-copy .section-description,
    .subscriber-copy .section-description {
        max-width: none;
    }
    .product-actions {
        align-items: stretch;
    }
    .product-action {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    .product-proof-row {
        grid-template-columns: 1fr;
    }
    .product-proof {
        padding: 0.85rem 0.9rem;
    }
    .product-stage {
        border-radius: 18px;
    }
    .nova-console-top {
        gap: 0.55rem;
        padding: 0.9rem 0.95rem;
    }
    .nova-console-title,
    .nova-console-status {
        font-size: clamp(0.62rem, 3vw, 0.72rem);
    }
    .nova-console-status {
        flex-shrink: 0;
    }
    .product-stage .tree-node-logo {
        width: 82px;
        height: 82px;
    }
    .nova-console-row {
        grid-template-columns: auto 1fr;
        padding: 0.72rem 0.75rem;
    }
    .nova-console-row em {
        grid-column: 2;
    }
}

/* ============================================================
   WORKFLOW SECTION — dedicated card with 3x2 step grid
   ============================================================ */
.workflow-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.4rem, 4vh, 3.8rem);
}
.workflow-header .section-label {
    display: inline-block;
    margin-bottom: 1rem;
}
.workflow-header .section-title {
    margin-bottom: 0.9rem;
}
.workflow-header .section-description {
    color: rgba(199, 210, 254, 0.65);
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 1.6vw, 22px);
    max-width: 1080px;
    margin: 0 auto;
}
.workflow-card {
    position: relative;
    padding: clamp(20px, 2.4vw, 30px) clamp(18px, 2vw, 26px);
    border-radius: clamp(16px, 1.6vw, 22px);
    background:
        linear-gradient(180deg,
            rgba(20, 18, 44, 0.55) 0%,
            rgba(10, 10, 26, 0.45) 100%);
    border: 1px solid rgba(167, 139, 250, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px -28px rgba(0, 0, 0, 0.8);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}
.workflow-card:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 210, 254, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 56px -28px rgba(99, 102, 241, 0.55),
        0 0 0 1px rgba(167, 139, 250, 0.18);
}
.workflow-card-num {
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    color: rgba(167, 139, 250, 0.7);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.workflow-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(129, 140, 248, 0.16), rgba(167, 139, 250, 0.08));
    color: rgba(199, 210, 254, 0.92);
    margin-bottom: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.workflow-card-icon svg { width: 20px; height: 20px; }
.workflow-card-name {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.workflow-card-desc {
    font-size: clamp(0.82rem, 0.95vw, 0.92rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
}
@media (max-width: 820px) {
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .workflow-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SUBSCRIBER SIGNAL — manual milestone dashboard
   ============================================================ */
.subscriber-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 70% at 78% 40%, rgba(255, 78, 69, 0.10), transparent 62%),
        radial-gradient(ellipse 45% 55% at 18% 62%, rgba(103, 232, 249, 0.09), transparent 68%);
}
.subscriber-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(129, 140, 248, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(129, 140, 248, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 0%, black 42%, transparent 76%);
    pointer-events: none;
    opacity: 0.55;
}
.subscriber-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(70px, 10vw, 125px) clamp(20px, 4vw, 32px);
}
.subscriber-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: clamp(2.2rem, 6vw, 5.5rem);
    align-items: center;
}
@media (max-width: 920px) {
    .subscriber-hero {
        grid-template-columns: 1fr;
    }
}
.subscriber-copy {
    max-width: 680px;
}
.subscriber-copy .section-label,
.subscriber-copy .section-title,
.subscriber-copy .section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.subscriber-copy .section-description {
    max-width: 560px;
    margin-bottom: 1.25rem;
}
.subscriber-copy .section-title {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}
.subscriber-signal-summary {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1px;
    max-width: 620px;
    margin: 0 0 1.25rem;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(199, 210, 254, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px -46px rgba(255, 78, 69, 0.75);
}
.subscriber-signal-summary > div {
    min-width: 0;
    padding: 0.95rem 1rem;
    background:
        radial-gradient(ellipse at top left, var(--summary-glow, rgba(129, 140, 248, 0.12)), transparent 58%),
        rgba(8, 8, 22, 0.76);
}
.subscriber-signal-summary > div > span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--summary-accent, rgba(199, 210, 254, 0.72));
}
.subscriber-signal-summary > div > strong {
    display: block;
    font-size: clamp(0.98rem, 1.5vw, 1.18rem);
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: -0.02em;
}
.subscriber-signal-current {
    --summary-accent: #a78bfa;
    --summary-glow: rgba(167, 139, 250, 0.12);
}
.subscriber-signal-live {
    --summary-accent: #ff786e;
    --summary-glow: rgba(255, 78, 69, 0.13);
}
.subscriber-signal-series {
    --summary-accent: #67e8f9;
    --summary-glow: rgba(103, 232, 249, 0.12);
}
.subscriber-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.subscriber-note {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(199, 210, 254, 0.62);
    letter-spacing: 0.04em;
}
.subscriber-note-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.56);
}
.subscriber-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 560px;
    margin: clamp(1.6rem, 3vw, 2.3rem) 0 0;
}
.subscriber-proof {
    position: relative;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    background:
        radial-gradient(ellipse 80% 120% at 0% 0%, var(--proof-bg, rgba(129, 140, 248, 0.10)), transparent 70%),
        rgba(255, 255, 255, 0.028);
    box-shadow: inset 0 0 0 1px rgba(199, 210, 254, 0.065);
    transform: perspective(800px) rotateX(0) rotateY(0) translateY(0);
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease,
                box-shadow 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
    .subscriber-proof:hover {
        background:
            radial-gradient(ellipse 88% 130% at 0% 0%, var(--proof-bg, rgba(129, 140, 248, 0.18)), transparent 72%),
            rgba(255, 255, 255, 0.045);
        box-shadow:
            inset 0 0 0 1px color-mix(in srgb, var(--proof-accent, #818cf8) 30%, transparent),
            0 18px 40px -34px var(--proof-accent, rgba(129, 140, 248, 0.6));
    }
}
.subscriber-proof span {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--proof-accent, #c7d2fe);
}
.subscriber-proof strong {
    display: block;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: -0.035em;
}
.subscriber-proof em {
    display: block;
    margin-top: 0.35rem;
    font-style: normal;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
}
.subscriber-proof-live {
    --proof-accent: #ff786e;
    --proof-bg: rgba(255, 78, 69, 0.10);
}
.subscriber-proof-series {
    --proof-accent: #67e8f9;
    --proof-bg: rgba(103, 232, 249, 0.09);
}
.subscriber-panel {
    position: relative;
    min-height: 460px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(10, 10, 28, 0.88), rgba(5, 5, 16, 0.78)),
        rgba(8, 8, 22, 0.82);
    border: 1px solid rgba(129, 140, 248, 0.16);
    box-shadow:
        0 34px 90px -44px rgba(99, 102, 241, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: clamp(1rem, 2.6vw, 1.45rem);
}
.subscriber-panel::before {
    content: "";
    position: absolute;
    inset: -28%;
    background:
        conic-gradient(from 130deg,
            transparent 0deg,
            rgba(255, 78, 69, 0.16) 58deg,
            transparent 92deg,
            rgba(103, 232, 249, 0.14) 168deg,
            transparent 220deg,
            rgba(167, 139, 250, 0.16) 292deg,
            transparent 360deg);
    animation: subscriberPanelSpin 22s linear infinite;
    opacity: 0.85;
}
.subscriber-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 21px;
    background:
        radial-gradient(ellipse 65% 48% at 50% 20%, rgba(199, 210, 254, 0.10), transparent 62%),
        linear-gradient(180deg, rgba(8, 8, 22, 0.90), rgba(5, 5, 16, 0.86));
    pointer-events: none;
}
@keyframes subscriberPanelSpin {
    to { transform: rotate(360deg); }
}
.subscriber-panel > * {
    position: relative;
    z-index: 2;
}
.subscriber-panel-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.62);
}
.subscriber-panel-status span {
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(103, 232, 249, 0.72);
}
.subscriber-panel-status strong {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}
.subscriber-orbit {
    position: relative;
    height: 286px;
    display: grid;
    place-items: center;
    margin: 0 clamp(1rem, 3vw, 2rem);
}
.subscriber-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(129, 140, 248, 0.18);
    box-shadow: inset 0 0 22px rgba(129, 140, 248, 0.06);
}
.subscriber-ring-1 {
    width: 190px;
    height: 190px;
    animation: subscriberRingDrift 18s linear infinite;
}
.subscriber-ring-2 {
    width: 254px;
    height: 254px;
    border-color: rgba(167, 139, 250, 0.16);
    animation: subscriberRingDrift 26s linear infinite reverse;
}
.subscriber-ring-3 {
    width: 316px;
    height: 316px;
    border-color: rgba(103, 232, 249, 0.12);
    animation: subscriberRingDrift 36s linear infinite;
}
.subscriber-ring::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 2px solid transparent;
    border-top-color: var(--ring-accent, rgba(255, 78, 69, 0.65));
    filter: blur(0.4px);
}
.subscriber-ring-2::before { --ring-accent: rgba(167, 139, 250, 0.55); }
.subscriber-ring-3::before { --ring-accent: rgba(103, 232, 249, 0.45); }
@keyframes subscriberRingDrift {
    to { transform: rotate(360deg); }
}
.subscriber-count {
    position: relative;
    width: min(230px, 64vw);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 27%),
        radial-gradient(circle, rgba(129, 140, 248, 0.24), rgba(167, 139, 250, 0.10) 48%, rgba(5, 5, 16, 0.95) 72%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 9px rgba(129, 140, 248, 0.035),
        0 0 60px rgba(129, 140, 248, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.subscriber-count::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.subscriber-count-number {
    font-size: clamp(3rem, 7vw, 4.8rem);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 0.92;
    color: #fff;
    text-shadow:
        0 0 22px rgba(129, 140, 248, 0.42),
        0 0 42px rgba(167, 139, 250, 0.24);
}
.subscriber-count-label {
    margin-top: 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}
.subscriber-meter {
    padding: 0 clamp(1.25rem, 4vw, 2.35rem) clamp(1.35rem, 3vw, 2rem);
}
.subscriber-meter-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}
.subscriber-meter-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(199, 210, 254, 0.72);
}
.subscriber-meter-value {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}
.subscriber-progress {
    position: relative;
    height: 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.subscriber-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--subscriber-progress, 4%);
    min-width: 20px;
    border-radius: inherit;
    background: linear-gradient(90deg, #ff4e45 0%, #a78bfa 54%, #67e8f9 100%);
    box-shadow: 0 0 22px rgba(103, 232, 249, 0.28);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.subscriber-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
    animation: telemetrySweep 2.8s ease-in-out infinite;
}
.subscriber-meter-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.55rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
}
.subscriber-meter-labels span:nth-child(2) { color: rgba(255, 120, 110, 0.72); }
.subscriber-meter-labels span:nth-child(3) { color: rgba(167, 139, 250, 0.72); }
@media (max-width: 640px) {
    .subscriber-inner {
        padding-left: clamp(20px, 6vw, 28px);
        padding-right: clamp(20px, 6vw, 28px);
    }
    .subscriber-actions {
        align-items: flex-start;
    }
    .subscriber-note {
        max-width: 100%;
        line-height: 1.45;
    }
    .subscriber-signal-summary {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    .subscriber-signal-summary > div {
        padding: 0.84rem 0.9rem;
    }
    .subscriber-signal-summary > div > span {
        letter-spacing: 0.14em;
    }
    .subscriber-proof-grid { grid-template-columns: 1fr; }
    .subscriber-proof strong {
        font-size: clamp(1.18rem, 7vw, 1.55rem);
        line-height: 1.08;
    }
    .subscriber-panel { min-height: 0; border-radius: 18px; }
    .subscriber-panel-status {
        display: grid;
        gap: 0.3rem;
        padding-inline: 1rem;
    }
    .subscriber-panel-status strong {
        white-space: normal;
        line-height: 1.25;
    }
    .subscriber-orbit {
        height: clamp(220px, 66vw, 258px);
        margin-inline: 0.8rem;
    }
    .subscriber-ring-3 { width: min(280px, 86vw); height: min(280px, 86vw); }
    .subscriber-ring-2 { width: min(226px, 70vw); height: min(226px, 70vw); }
    .subscriber-ring-1 { width: min(170px, 54vw); height: min(170px, 54vw); }
    .subscriber-count {
        width: min(205px, 60vw);
    }
    .subscriber-count-number {
        font-size: clamp(2.6rem, 15vw, 3.4rem);
    }
    .subscriber-meter {
        padding-inline: 1rem;
    }
    .subscriber-meter-head {
        display: grid;
        gap: 0.35rem;
    }
    .subscriber-meter-value {
        justify-self: start;
    }
    .subscriber-copy .section-title { text-align: left; }
}
.subscriber-drive {
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    padding: clamp(1.6rem, 3vw, 2.25rem) 0 0;
    border-top: 1px solid rgba(129, 140, 248, 0.14);
}
.subscriber-drive-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.subscriber-drive-kicker {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(103, 232, 249, 0.72);
}
.subscriber-drive-title {
    font-size: clamp(1.45rem, 2.8vw, 2.35rem);
    line-height: 1.08;
    font-weight: 780;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.94);
}
.subscriber-drive-meta {
    max-width: 300px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
}
.subscriber-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    padding-top: 2.2rem;
}
.subscriber-track::before,
.subscriber-track-fill {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
}
.subscriber-track::before {
    background: rgba(255, 255, 255, 0.08);
}
.subscriber-track-fill {
    right: auto;
    width: var(--subscriber-progress, 4%);
    min-width: 24px;
    background: linear-gradient(90deg, #a78bfa, #ff786e, #67e8f9);
    box-shadow: 0 0 18px rgba(167, 139, 250, 0.28);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.subscriber-checkpoint {
    position: relative;
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
}
.subscriber-checkpoint::before {
    content: "";
    position: absolute;
    top: -1.88rem;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #070718;
    border: 2px solid var(--checkpoint-accent, #818cf8);
    box-shadow:
        0 0 0 6px rgba(5, 5, 16, 0.92),
        0 0 22px var(--checkpoint-glow, rgba(129, 140, 248, 0.45));
    z-index: 2;
}
.subscriber-checkpoint-kicker {
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--checkpoint-accent, #c7d2fe);
    margin-bottom: 0.45rem;
}
.subscriber-checkpoint-title {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 750;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: -0.015em;
    margin-bottom: 0.35rem;
}
.subscriber-checkpoint-body {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
    max-width: 24ch;
}
.subscriber-checkpoint-now {
    --checkpoint-accent: #a78bfa;
    --checkpoint-glow: rgba(167, 139, 250, 0.42);
}
.subscriber-checkpoint-live {
    --checkpoint-accent: #ff786e;
    --checkpoint-glow: rgba(255, 78, 69, 0.45);
}
.subscriber-checkpoint-series {
    --checkpoint-accent: #67e8f9;
    --checkpoint-glow: rgba(103, 232, 249, 0.42);
}
@media (max-width: 720px) {
    .subscriber-drive-head {
        display: block;
    }
    .subscriber-drive-meta {
        max-width: none;
        margin-top: 0.8rem;
    }
    .subscriber-track {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        padding-top: 0;
        padding-left: 1.7rem;
    }
    .subscriber-track::before,
    .subscriber-track-fill {
        top: 0.25rem;
        left: 0.45rem;
        right: auto;
        width: 2px;
        height: 100%;
    }
    .subscriber-track-fill {
        height: max(28px, var(--subscriber-progress, 4%));
        min-height: 28px;
    }
    .subscriber-checkpoint::before {
        top: 0.1rem;
        left: -1.68rem;
    }
}
.subscriber-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: clamp(1.6rem, 3vw, 2.2rem);
}
.subscriber-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.subscriber-platform:hover {
    color: #fff;
    border-color: var(--platform-accent, rgba(199, 210, 254, 0.4));
    transform: translateY(-1px);
}
.subscriber-platform-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--platform-accent, #c7d2fe);
    box-shadow: 0 0 10px var(--platform-accent, #c7d2fe);
}

/* YouTube badge in nav — real branded button */
.nav-yt {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 78, 69, 0.18), rgba(255, 0, 0, 0.10));
    border: 1px solid rgba(255, 78, 69, 0.35);
    border-radius: 100px;
    padding: 0.5rem 1.05rem 0.5rem 0.55rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 18px -10px rgba(255, 0, 0, 0.6);
}
.nav-yt:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255, 78, 69, 0.28), rgba(255, 0, 0, 0.16));
    border-color: rgba(255, 78, 69, 0.7);
    box-shadow: 0 14px 32px -12px rgba(255, 0, 0, 0.75);
}
.nav-yt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 18px;
    border-radius: 5px;
    background: #FF0000;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 4px 12px -4px rgba(255, 0, 0, 0.7);
}
.nav-yt-icon svg { width: 11px; height: 11px; color: #fff; display: block; }
.nav-yt-label { white-space: nowrap; }
@media (max-width: 400px) {
    .nav-yt {
        gap: 0.45rem;
        padding: 0.48rem 0.72rem 0.48rem 0.52rem;
    }
    .nav-yt-icon {
        width: 24px;
        height: 17px;
    }
    .nav-yt-label {
        font-size: 0.74rem;
    }
}

/* === REDUCE-MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01s !important;
    }
    /* Kill the warp intro entirely — vestibular-hostile */
    .intro-overlay {
        opacity: 0;
        display: none;
    }
}

/* === FOCUS-VISIBLE SYSTEM === */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.85);
    outline-offset: 3px;
    border-radius: inherit;
}

.nav-link:focus-visible,
.footer-link:focus-visible {
    outline-offset: 4px;
    border-radius: 4px;
}

.feature-card:focus-visible,
.product-action:focus-visible,
.bundle-showcase-cta:focus-visible,
.bundle-hub-card:focus-visible,
.tree-node:focus-visible,
.subscriber-platform:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(167, 139, 250, 0.85),
        0 0 0 4px rgba(129, 140, 248, 0.18);
}

.enter-btn:focus-visible,
.nav-yt:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(167, 139, 250, 0.90),
        0 0 0 5px rgba(129, 140, 248, 0.20),
        0 10px 30px -10px rgba(99, 102, 241, 0.45);
}

.scroll-indicator:focus-visible .scroll-chevron {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(167, 139, 250, 0.85),
        0 0 0 4px rgba(129, 140, 248, 0.15);
    border-radius: 50%;
}

/* === BUNDLES SECTION ============================================ */
.bundles-section {
    padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 32px);
    position: relative;
}
.bundles-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.bundles-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.bundles-noemail {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    margin-top: 1.5rem;
    background: rgba(103, 232, 249, 0.06);
    border: 1px solid rgba(103, 232, 249, 0.20);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(199, 245, 252, 0.85);
    text-transform: uppercase;
}
.bundles-noemail-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #67e8f9;
    box-shadow: 0 0 10px rgba(103, 232, 249, 0.7);
}
.bundle-showcase {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(1.7rem, 5vw, 4rem);
    align-items: center;
    margin-top: clamp(2.4rem, 5vw, 4rem);
}
.bundle-showcase > .bundle-hub-card { order: 1; }
.bundle-showcase > .bundle-copy { order: 2; }
.bundle-copy {
    text-align: left;
}
.bundle-copy .section-label,
.bundle-copy .section-title,
.bundle-copy .section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.bundle-copy .section-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}
.bundle-copy .section-description {
    max-width: 460px;
    color: rgba(226, 232, 240, 0.55);
}
.bundle-promise-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.55rem;
    max-width: 430px;
}
.bundle-promise {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
    line-height: 1.55;
    transform: translateX(0);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.32s ease;
}
.bundle-promise span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: rgba(167, 139, 250, 0.10);
    border: 1px solid rgba(167, 139, 250, 0.22);
    color: #c4b5fd;
    font-size: 0.74rem;
    font-weight: 900;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s ease,
                background 0.32s ease,
                border-color 0.32s ease;
}
@media (hover: hover) and (pointer: fine) {
    .bundle-promise:hover {
        transform: translateX(4px);
        color: rgba(255, 255, 255, 0.84);
    }
    .bundle-promise:hover span {
        transform: scale(1.08);
        background: rgba(167, 139, 250, 0.20);
        border-color: rgba(167, 139, 250, 0.46);
        box-shadow: 0 0 18px -2px rgba(167, 139, 250, 0.55);
    }
}
.bundle-hub-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(167, 139, 250, 0.16);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(167, 139, 250, 0.16), transparent 58%),
        radial-gradient(ellipse at 100% 80%, rgba(129, 140, 248, 0.18), transparent 62%),
        linear-gradient(180deg, rgba(10, 10, 28, 0.88), rgba(5, 5, 16, 0.78));
    box-shadow:
        0 34px 90px -48px rgba(99, 102, 241, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: perspective(900px) translate3d(0, 0, 0) rotateX(0deg);
    transform-style: preserve-3d;
    transform-origin: center bottom;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.32s ease,
                box-shadow 0.32s ease;
    will-change: transform;
}
.bundle-hub-card:hover {
    transform: perspective(900px) translate3d(0, -6px, 18px) rotateX(2deg);
    border-color: rgba(167, 139, 250, 0.34);
    box-shadow:
        0 46px 110px -46px rgba(99, 102, 241, 0.92),
        0 0 0 1px rgba(167, 139, 250, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.bundle-hub-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(167, 139, 250, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(129, 140, 248, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse at center, black 0%, black 45%, transparent 78%);
    pointer-events: none;
}
.bundle-hub-card::after {
    content: "";
    position: absolute;
    inset: auto -18% -30% 8%;
    height: 54%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.16), transparent 66%);
    filter: blur(10px);
    pointer-events: none;
}
.bundle-hub-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(129, 140, 248, 0.12);
    background: rgba(5, 5, 16, 0.24);
    transform: translateZ(14px);
}
.bundle-hub-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(199, 210, 254, 0.68);
}
.bundle-hub-status {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 650;
}
.bundle-hub-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.8);
}
.bundle-hub-body {
    position: relative;
    z-index: 2;
    min-height: 342px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.6rem, 4vw, 2.4rem);
}
.bundle-hub-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(330px, 76vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.14);
    box-shadow:
        inset 0 0 30px rgba(167, 139, 250, 0.05),
        0 0 42px rgba(129, 140, 248, 0.08);
    pointer-events: none;
}
.bundle-hub-orbit::before,
.bundle-hub-orbit::after {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(129, 140, 248, 0.14);
}
.bundle-hub-orbit::after {
    inset: 30%;
    border-color: rgba(196, 181, 253, 0.16);
}
.bundle-hub-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    transform: translateZ(24px);
}
.bundle-hub-kicker {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(167, 139, 250, 0.85);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.bundle-hub-title {
    max-width: 11ch;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(2.15rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 820;
    margin-bottom: 1rem;
}
.bundle-hub-copy {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.92rem;
    line-height: 1.62;
}
.bundle-hub-foot {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 clamp(1.1rem, 3vw, 1.5rem) clamp(1.1rem, 3vw, 1.5rem);
    transform: translateZ(20px);
}
.bundle-hub-pill {
    padding: 0.72rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}
.bundle-showcase-cta {
    margin-top: 1.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(199, 210, 254, 0.82);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 760;
    letter-spacing: 0.01em;
    transition: gap 0.25s ease, color 0.25s ease;
}
.bundle-showcase-cta:hover {
    gap: 0.7rem;
    color: #fff;
}
.bundle-showcase-cta svg {
    width: 15px;
    height: 15px;
}
@media (max-width: 940px) {
    .bundle-showcase {
        grid-template-columns: 1fr;
    }
    /* On mobile, restore natural HTML order: copy first, then card. */
    .bundle-showcase > .bundle-hub-card { order: 2; }
    .bundle-showcase > .bundle-copy { order: 1; }
}
@media (max-width: 640px) {
    .bundle-copy .section-title {
        font-size: clamp(1.95rem, 10vw, 2.75rem);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }
    .bundle-promise-list {
        max-width: none;
    }
    .bundle-showcase-cta {
        min-height: 44px;
    }
    .bundle-hub-card {
        min-height: 0;
        border-radius: 18px;
    }
    .bundle-hub-top {
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.9rem 0.95rem;
    }
    .bundle-hub-label,
    .bundle-hub-status {
        font-size: clamp(0.62rem, 3vw, 0.72rem);
    }
    .bundle-hub-status {
        flex-shrink: 0;
    }
    .bundle-hub-body {
        min-height: clamp(260px, 72vw, 300px);
        padding: clamp(1.35rem, 6vw, 1.7rem);
    }
    .bundle-hub-title {
        max-width: 10.8ch;
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1.06;
    }
    .bundle-hub-copy {
        max-width: 29ch;
    }
    .bundle-hub-foot {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding-inline: 0.95rem;
    }
    .bundle-hub-pill {
        padding: 0.62rem 0.75rem;
    }
}
