:root {
    --navy: #031e3c;
    --navy-2: #06142a;
    --navy-3: #09294f;
    --cream: #f4e4d3;
    --cream-2: #fff7ec;
    --cream-3: #d8c1a7;
    --orange: #ee9410;
    --orange-2: #ffbd52;
    --cyan: #80e8ff;
    --teal: #56d6c6;
    --violet: #9d8cff;
    --ink: #071426;
    --muted: #6c788a;
    --glass: rgba(255, 247, 236, 0.09);
    --glass-strong: rgba(255, 247, 236, 0.16);
    --line: rgba(244, 228, 211, 0.18);
    --shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
    --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--navy);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(238, 148, 16, 0.22), transparent 28vw),
        radial-gradient(circle at 82% 24%, rgba(128, 232, 255, 0.14), transparent 26vw),
        var(--navy);
    color: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: none;
}

body::selection {
    background: rgba(238, 148, 16, 0.38);
    color: var(--cream-2);
}

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

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

button,
a {
    cursor: none;
}

.cursor-orb,
.cursor-trails {
    pointer-events: none;
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 10000;
}

.cursor-orb {
    width: 42px;
    height: 42px;
    translate: -50% -50%;
    border-radius: 999px;
    opacity: 0;
    mix-blend-mode: screen;
    transition: width 220ms var(--ease), height 220ms var(--ease), opacity 240ms ease;
}

.cursor-core {
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background: radial-gradient(circle at 35% 30%, #fff8d2 0 10%, var(--orange-2) 28%, rgba(238, 148, 16, 0.2) 68%, transparent 100%);
    box-shadow: 0 0 22px rgba(238, 148, 16, 0.95), 0 0 58px rgba(238, 148, 16, 0.42);
}

.cursor-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(244, 228, 211, 0.72);
    border-radius: inherit;
    box-shadow: 0 0 28px rgba(128, 232, 255, 0.22), inset 0 0 24px rgba(238, 148, 16, 0.2);
}

.cursor-orb.is-visible {
    opacity: 1;
}

.cursor-orb.is-hovering {
    width: 58px;
    height: 58px;
}

.trail-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    translate: -50% -50%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 238, 185, 0.78), rgba(238, 148, 16, 0.2) 52%, transparent 72%);
    filter: blur(0.5px);
    animation: trail-fade 640ms ease forwards;
    z-index: 9999;
}

@keyframes trail-fade {
    to {
        scale: 2.2;
        opacity: 0;
    }
}

.navbar {
    align-items: center;
    backdrop-filter: blur(22px) saturate(1.3);
    background: rgba(3, 30, 60, 0.52);
    border: 1px solid rgba(244, 228, 211, 0.13);
    border-radius: 999px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    left: 50%;
    max-width: min(1160px, calc(100% - 32px));
    padding: 10px 12px 10px 16px;
    position: fixed;
    top: 16px;
    transform: translateX(-50%);
    transition: background 260ms ease, border-color 260ms ease, transform 360ms var(--ease);
    width: 100%;
    z-index: 9000;
}

.navbar.is-compact {
    background: rgba(3, 30, 60, 0.82);
    border-color: rgba(244, 228, 211, 0.2);
}

.brand,
.nav-links,
.nav-action,
.nav-actions {
    align-items: center;
    display: flex;
}

.brand {
    gap: 10px;
    font-weight: 760;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-mark {
    align-items: center;
    background: rgba(244, 228, 211, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(238, 148, 16, 0.32), inset 0 0 14px rgba(244, 228, 211, 0.16);
    display: flex;
    height: 34px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 34px;
}

.brand-mark img {
    height: 82%;
    object-fit: contain;
    width: 82%;
}

.nav-links {
    gap: clamp(10px, 2vw, 28px);
    justify-content: center;
    min-width: 0;
}

.nav-links a,
.nav-action,
.social-icon {
    border-radius: 999px;
    color: rgba(244, 228, 211, 0.78);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0;
    padding: 9px 10px;
    transition: color 200ms ease, background 200ms ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
    background: rgba(244, 228, 211, 0.1);
    color: var(--cream-2);
}

.nav-action {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: var(--ink);
    justify-content: center;
    padding-inline: 16px;
}

.nav-actions {
    gap: 8px;
    justify-content: flex-end;
}

.social-icon {
    align-items: center;
    border: 1px solid rgba(244, 228, 211, 0.16);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 36px;
}

.social-icon::before {
    content: "";
    inset: 0;
    opacity: 0.9;
    position: absolute;
}

.social-icon.instagram::before {
    background: radial-gradient(circle at 30% 110%, #feda75 0 22%, #fa7e1e 36%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.social-icon.youtube::before {
    background: #ff0033;
}

.social-icon span {
    color: #fff;
    font-size: 0.68rem;
    font-weight: 850;
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    box-shadow: 0 0 28px rgba(238, 148, 16, 0.22);
    transform: translateY(-1px);
}

.hero {
    height: 380vh;
    position: relative;
    z-index: 1;
}

.hero-stage {
    background:
        radial-gradient(circle at 50% 45%, rgba(238, 148, 16, 0.12), transparent 21vw),
        radial-gradient(circle at 12% 18%, rgba(128, 232, 255, 0.16), transparent 28vw),
        radial-gradient(circle at 86% 70%, rgba(157, 140, 255, 0.12), transparent 28vw),
        linear-gradient(180deg, #020b18 0%, var(--navy) 52%, #08152b 100%);
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.cosmos-canvas,
.cta-canvas {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.hero-vignette {
    background:
        radial-gradient(circle at center, transparent 0 32%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.68) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 28%, rgba(3, 30, 60, 0.62) 100%);
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

.hero-fog {
    border-radius: 50%;
    filter: blur(48px);
    mix-blend-mode: screen;
    opacity: 0.42;
    position: absolute;
    z-index: 2;
}

.hero-fog-one {
    background: rgba(238, 148, 16, 0.35);
    height: 38vw;
    left: -8vw;
    top: 8vh;
    width: 38vw;
}

.hero-fog-two {
    background: rgba(128, 232, 255, 0.25);
    bottom: -12vw;
    height: 44vw;
    right: -12vw;
    width: 44vw;
}

.thought-field {
    inset: 0;
    perspective: 1200px;
    position: absolute;
    transform-style: preserve-3d;
    z-index: 5;
}

.science-fragment {
    --fragment-color: rgba(244, 228, 211, 0.74);
    color: var(--fragment-color);
    filter: drop-shadow(0 0 14px rgba(238, 148, 16, 0.2));
    font-size: clamp(0.8rem, 1.4vw, 1.45rem);
    font-weight: 560;
    left: 0;
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform-origin: center;
    transform-style: preserve-3d;
    user-select: none;
    will-change: transform, opacity, filter;
}

.science-fragment[data-kind="letter"] {
    color: rgba(128, 232, 255, 0.78);
    font-size: clamp(1.4rem, 3vw, 3.2rem);
    font-weight: 760;
}

.science-fragment[data-kind="equation"] {
    color: rgba(244, 228, 211, 0.72);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: clamp(0.78rem, 1.25vw, 1.28rem);
}

.science-fragment[data-kind="word"] {
    color: rgba(238, 148, 16, 0.8);
    font-size: clamp(0.78rem, 1.15vw, 1.12rem);
    font-weight: 700;
    text-transform: uppercase;
}

.science-fragment[data-kind="star"],
.science-fragment[data-kind="particle"] {
    background: var(--fragment-color);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(244, 228, 211, 0.75), 0 0 22px rgba(238, 148, 16, 0.25);
    font-size: 0;
}

.science-fragment[data-kind="star"] {
    height: 3px;
    width: 3px;
}

.science-fragment[data-kind="particle"] {
    height: 5px;
    width: 5px;
}

.science-fragment[data-kind="sketch"] {
    color: rgba(128, 232, 255, 0.75);
    width: clamp(84px, 10vw, 150px);
}

.science-fragment svg {
    display: block;
    height: auto;
    overflow: visible;
    width: 100%;
}

.science-fragment path,
.science-fragment line,
.science-fragment polyline,
.science-fragment circle,
.science-fragment rect,
.science-fragment polygon {
    vector-effect: non-scaling-stroke;
}

.meaning-rings {
    height: min(58vw, 620px);
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    translate: -50% -50%;
    width: min(58vw, 620px);
    z-index: 6;
}

.meaning-rings span {
    animation: slow-spin 18s linear infinite;
    border: 1px solid rgba(244, 228, 211, 0.12);
    border-left-color: rgba(238, 148, 16, 0.75);
    border-radius: 50%;
    inset: calc(var(--i, 0) * 42px);
    position: absolute;
}

.meaning-rings span:nth-child(1) {
    --i: 0;
}

.meaning-rings span:nth-child(2) {
    --i: 1;
    animation-duration: 24s;
    animation-direction: reverse;
    border-top-color: rgba(128, 232, 255, 0.55);
}

.meaning-rings span:nth-child(3) {
    --i: 2;
    animation-duration: 32s;
    border-right-color: rgba(244, 228, 211, 0.35);
}

@keyframes slow-spin {
    to {
        rotate: 360deg;
    }
}

.forming-word {
    color: rgba(244, 228, 211, 0.82);
    font-size: clamp(1.2rem, 4vw, 4.6rem);
    font-weight: 760;
    left: 50%;
    letter-spacing: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 26px rgba(238, 148, 16, 0.35);
    top: 34%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 7;
}

.hero-reveal {
    left: 50%;
    max-width: min(1280px, calc(100% - 24px));
    opacity: 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -42%) scale(0.94);
    width: 100%;
    z-index: 8;
}

.hero-kicker,
.eyebrow {
    color: var(--orange-2);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-reveal h1 {
    color: var(--cream-2);
    font-size: clamp(2.7rem, 8vw, 7.8rem);
    font-weight: 830;
    letter-spacing: 0;
    line-height: 0.94;
    margin: 18px 0;
    text-shadow: 0 0 34px rgba(238, 148, 16, 0.3), 0 20px 80px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.hero-reveal p:last-child {
    color: rgba(244, 228, 211, 0.82);
    font-size: clamp(1.05rem, 2.4vw, 1.65rem);
    font-weight: 420;
}

.scroll-cue {
    bottom: 28px;
    height: 56px;
    left: 50%;
    opacity: 0.82;
    position: absolute;
    translate: -50% 0;
    width: 28px;
    z-index: 9;
}

.scroll-cue::before {
    border: 1px solid rgba(244, 228, 211, 0.32);
    border-radius: 999px;
    content: "";
    inset: 0;
    position: absolute;
}

.scroll-cue span {
    animation: scroll-cue 1.8s ease-in-out infinite;
    background: var(--orange);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(238, 148, 16, 0.9);
    height: 9px;
    left: 50%;
    position: absolute;
    top: 10px;
    translate: -50% 0;
    width: 9px;
}

@keyframes scroll-cue {
    0%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }
    52% {
        opacity: 1;
        transform: translateY(22px);
    }
}

.section-block,
.story-bridge {
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.section-shell {
    margin: 0 auto;
    max-width: 1180px;
    padding-inline: 28px;
    position: relative;
    z-index: 2;
}

.story-bridge {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(3, 30, 60, 0.02), rgba(244, 228, 211, 0.96) 28%, var(--cream) 100%),
        radial-gradient(circle at 78% 24%, rgba(238, 148, 16, 0.24), transparent 34vw);
    color: var(--ink);
    display: flex;
    min-height: 86vh;
    padding: 130px 0 80px;
}

.bridge-grid {
    background-image:
        linear-gradient(rgba(3, 30, 60, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 30, 60, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    inset: 0;
    mask-image: radial-gradient(circle at 50% 36%, black 0 34%, transparent 76%);
    opacity: 0.58;
    position: absolute;
}

.bridge-copy {
    max-width: 870px;
}

.bridge-content {
    align-items: center;
    display: grid;
    gap: clamp(34px, 6vw, 82px);
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
}

.bridge-copy h2,
.section-heading h2 {
    font-size: clamp(2.35rem, 5vw, 5.4rem);
    font-weight: 820;
    letter-spacing: 0;
    line-height: 0.98;
    margin-top: 14px;
}

.bridge-copy p:last-child,
.section-heading > p:not(.eyebrow) {
    color: rgba(7, 20, 38, 0.72);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    line-height: 1.75;
    margin-top: 22px;
    max-width: 760px;
}

.bridge-logo-lab {
    animation: logo-lab-float 7s ease-in-out infinite;
    aspect-ratio: 1;
    border: 1px solid rgba(3, 30, 60, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    width: min(420px, 100%);
    justify-self: end;
}

.bridge-logo-lab::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(244, 228, 211, 0.18) 32%, transparent 66%),
        conic-gradient(from 120deg, rgba(238, 148, 16, 0.62), rgba(128, 232, 255, 0.34), rgba(3, 30, 60, 0.08), rgba(238, 148, 16, 0.62));
    animation: logo-chamber-spin 12s linear infinite;
    border-radius: inherit;
    box-shadow: 0 34px 120px rgba(3, 30, 60, 0.24), 0 0 90px rgba(238, 148, 16, 0.18), inset 0 0 82px rgba(238, 148, 16, 0.18);
    content: "";
    inset: 0;
    opacity: 0.84;
    position: absolute;
    transform-origin: center;
}

.bridge-logo-lab::after {
    background:
        linear-gradient(rgba(3, 30, 60, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 30, 60, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    border-radius: inherit;
    content: "";
    inset: 9%;
    mask-image: radial-gradient(circle, black 0 44%, transparent 72%);
    opacity: 0.56;
    position: absolute;
}

.logo-cinema-light {
    animation: logo-light-sweep 4.8s ease-in-out infinite;
    background:
        linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.62) 46%, transparent 66%),
        radial-gradient(circle at 50% 50%, rgba(238, 148, 16, 0.3), transparent 58%);
    border-radius: inherit;
    filter: blur(8px);
    inset: -6%;
    mix-blend-mode: screen;
    opacity: 0.62;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

.logo-orbit {
    inset: -8%;
    position: absolute;
}

.logo-orbit span {
    animation: slow-spin 18s linear infinite;
    border: 1px solid rgba(3, 30, 60, 0.14);
    border-left-color: rgba(238, 148, 16, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 26px rgba(238, 148, 16, 0.08);
    inset: calc(var(--logo-ring, 0) * 12%);
    position: absolute;
}

.logo-orbit span:nth-child(2) {
    --logo-ring: 1;
    animation-direction: reverse;
    animation-duration: 26s;
    border-top-color: rgba(128, 232, 255, 0.74);
}

.logo-orbit span:nth-child(3) {
    --logo-ring: 2;
    animation-duration: 34s;
    border-right-color: rgba(3, 30, 60, 0.24);
}

.logo-intake {
    inset: -18%;
    pointer-events: none;
    position: absolute;
}

.logo-intake span {
    animation: logo-intake 3.4s var(--ease) infinite;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(238, 148, 16, 0.75);
    height: 8px;
    left: var(--start-x, 10%);
    opacity: 0;
    position: absolute;
    top: var(--start-y, 30%);
    width: 8px;
}

.logo-intake span:nth-child(1) {
    --start-x: 2%;
    --start-y: 22%;
}

.logo-intake span:nth-child(2) {
    --start-x: 16%;
    --start-y: 78%;
    animation-delay: 0.45s;
    background: var(--cyan);
}

.logo-intake span:nth-child(3) {
    --start-x: 84%;
    --start-y: 6%;
    animation-delay: 0.95s;
}

.logo-intake span:nth-child(4) {
    --start-x: 94%;
    --start-y: 64%;
    animation-delay: 1.35s;
    background: var(--cream-2);
}

.logo-intake span:nth-child(5) {
    --start-x: 50%;
    --start-y: 102%;
    animation-delay: 1.8s;
    background: var(--cyan);
}

.logo-morph-stage {
    aspect-ratio: 1;
    animation: logo-stage-breathe 6s ease-in-out infinite;
    background:
        radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12) 38%, transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(244, 228, 211, 0.04));
    border: 1px solid rgba(3, 30, 60, 0.1);
    border-radius: 50%;
    box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.16), 0 26px 80px rgba(3, 30, 60, 0.16);
    position: relative;
    width: min(72%, 292px);
    z-index: 2;
}

.logo-morph-stage::before,
.logo-morph-stage::after {
    content: "";
    position: absolute;
}

.logo-morph-stage::before {
    animation: logo-scanline 3.8s ease-in-out infinite;
    background: linear-gradient(90deg, transparent, rgba(128, 232, 255, 0.42), rgba(238, 148, 16, 0.34), transparent);
    filter: blur(1px);
    height: 2px;
    left: 7%;
    right: 7%;
    top: 20%;
    z-index: 5;
}

.logo-morph-stage::after {
    background: radial-gradient(ellipse at center, rgba(3, 30, 60, 0.22), transparent 68%);
    bottom: -13%;
    filter: blur(10px);
    height: 18%;
    left: 17%;
    right: 17%;
}

.logo-morph-frame {
    animation: logo-morph 32s cubic-bezier(0.18, 0.9, 0.2, 1) infinite;
    filter: blur(10px) saturate(1.05);
    height: 100%;
    left: 50%;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) perspective(900px) rotateY(-46deg) scale(0.76);
    transform-origin: center;
    width: 100%;
    z-index: 2;
}

.logo-morph-frame:nth-child(1) {
    animation-delay: 0s;
}

.logo-morph-frame:nth-child(2) {
    animation-delay: 4s;
}

.logo-morph-frame:nth-child(3) {
    animation-delay: 8s;
}

.logo-morph-frame:nth-child(4) {
    animation-delay: 12s;
}

.logo-morph-frame:nth-child(5) {
    animation-delay: 16s;
}

.logo-morph-frame:nth-child(6) {
    animation-delay: 20s;
}

.logo-morph-frame:nth-child(7) {
    animation-delay: 24s;
}

.logo-morph-frame:nth-child(8) {
    animation-delay: 28s;
}

@keyframes logo-morph {
    0% {
        opacity: 0;
        filter: blur(18px) brightness(1.4) saturate(1.35);
        clip-path: inset(48% 0 48% 0 round 999px);
        transform: translate(-50%, -50%) perspective(900px) rotateY(-64deg) rotateZ(-5deg) scale(0.66);
    }
    3%, 9% {
        opacity: 1;
        filter: blur(0) brightness(1) saturate(1.1);
        clip-path: inset(0 0 0 0 round 28px);
        transform: translate(-50%, -50%) perspective(900px) rotateY(0deg) rotateZ(0deg) scale(1);
    }
    12% {
        opacity: 0;
        filter: blur(18px) brightness(1.38) saturate(1.35);
        clip-path: inset(0 48% 0 48% round 999px);
        transform: translate(-50%, -50%) perspective(900px) rotateY(64deg) rotateZ(5deg) scale(1.12);
    }
    100% {
        opacity: 0;
        filter: blur(18px) brightness(1.38) saturate(1.35);
        clip-path: inset(0 48% 0 48% round 999px);
        transform: translate(-50%, -50%) perspective(900px) rotateY(64deg) rotateZ(5deg) scale(1.12);
    }
}

@keyframes logo-lab-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes logo-chamber-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes logo-light-sweep {
    0%, 100% {
        opacity: 0;
        transform: translateX(-18%) rotate(0deg);
    }
    38%, 55% {
        opacity: 0.8;
    }
    72% {
        opacity: 0;
        transform: translateX(18%) rotate(12deg);
    }
}

@keyframes logo-stage-breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.035);
    }
}

@keyframes logo-scanline {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    70% {
        opacity: 0.7;
        transform: translateY(185px);
    }
}

@keyframes logo-intake {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.7);
    }
    18% {
        opacity: 1;
    }
    72% {
        left: 50%;
        opacity: 0.9;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.32);
    }
    100% {
        left: 50%;
        opacity: 0;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);
    }
}

.section-block {
    padding: clamp(92px, 12vw, 160px) 0;
}

.section-heading {
    margin-bottom: clamp(42px, 6vw, 74px);
    max-width: 900px;
}

.section-heading h2 {
    color: var(--cream-2);
}

.section-heading > p:not(.eyebrow) {
    color: rgba(244, 228, 211, 0.74);
}

.classes {
    background:
        radial-gradient(circle at 20% 15%, rgba(128, 232, 255, 0.16), transparent 28vw),
        radial-gradient(circle at 84% 80%, rgba(238, 148, 16, 0.16), transparent 32vw),
        linear-gradient(180deg, var(--navy) 0%, #061a33 100%);
}

.classes::before,
.coming-soon::before,
.products::before,
.testimonials::before {
    background-image:
        linear-gradient(rgba(128, 232, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 232, 255, 0.08) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(180deg, transparent, black 16%, black 76%, transparent);
    opacity: 0.7;
    pointer-events: none;
    position: absolute;
}

.class-grid,
.coming-grid,
.product-grid,
.testimonial-grid,
.weekend-grid,
.team-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

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

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.program-card,
.mini-card,
.product-card,
.stat-card,
.team-card,
.testimonial-card {
    backdrop-filter: blur(24px) saturate(1.16);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.class-card {
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 40%), rgba(128, 232, 255, 0.2), transparent 28%),
        linear-gradient(145deg, rgba(244, 228, 211, 0.13), rgba(244, 228, 211, 0.055));
    border-radius: 8px;
    min-height: 610px;
    padding: clamp(28px, 4vw, 46px);
}

.class-card::after,
.product-card::after,
.testimonial-card::after {
    background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.12) 44%, transparent 56% 100%);
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: translateX(-45%);
    transition: opacity 300ms ease, transform 700ms var(--ease);
}

.class-card:hover::after,
.product-card:hover::after,
.testimonial-card:hover::after {
    opacity: 1;
    transform: translateX(45%);
}

.card-scan {
    background: linear-gradient(90deg, transparent, rgba(128, 232, 255, 0.28), transparent);
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 220ms ease;
}

.class-card:hover .card-scan {
    animation: card-scan 1.7s ease infinite;
    opacity: 1;
}

@keyframes card-scan {
    to {
        transform: translateY(620px);
    }
}

.card-orbit {
    border: 1px solid rgba(128, 232, 255, 0.16);
    border-radius: 50%;
    height: 170px;
    position: absolute;
    right: -58px;
    top: -52px;
    width: 170px;
}

.card-orbit::before {
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(238, 148, 16, 0.9);
    content: "";
    height: 9px;
    left: 23px;
    position: absolute;
    top: 41px;
    width: 9px;
}

.card-label {
    color: var(--orange-2);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.class-card h3,
.product-card h3,
.mini-card h3,
.team-card h3 {
    color: var(--cream-2);
    font-size: clamp(1.75rem, 3vw, 3rem);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.class-card p,
.product-card p,
.mini-card p,
.team-card p {
    color: rgba(244, 228, 211, 0.74);
    font-size: 1rem;
    line-height: 1.72;
    position: relative;
    z-index: 1;
}

.class-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 30px 0 34px;
    position: relative;
    z-index: 1;
}

.class-card li {
    align-items: center;
    color: rgba(244, 228, 211, 0.82);
    display: flex;
    font-size: 0.98rem;
    gap: 12px;
}

.class-card li::before {
    background: radial-gradient(circle, var(--orange) 0 36%, rgba(238, 148, 16, 0.12) 38% 100%);
    border: 1px solid rgba(238, 148, 16, 0.45);
    border-radius: 999px;
    content: "";
    flex: 0 0 15px;
    height: 15px;
    width: 15px;
}

.button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.94rem;
    font-weight: 760;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    position: relative;
    transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
    z-index: 2;
}

.button::after {
    content: "";
    height: 7px;
    margin-left: 12px;
    width: 26px;
    background:
        linear-gradient(currentColor, currentColor) left 50% / 100% 1px no-repeat,
        linear-gradient(45deg, transparent 46%, currentColor 48% 56%, transparent 58%) right 50% / 9px 9px no-repeat;
    opacity: 0.75;
    transition: transform 220ms var(--ease);
}

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

.button:hover::after {
    transform: translateX(4px);
}

.button.no-arrow::after {
    display: none;
}

.button.primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 0 32px rgba(238, 148, 16, 0.35);
    color: var(--ink);
}

.button.ghost,
.button.secondary {
    border: 1px solid rgba(244, 228, 211, 0.34);
    color: var(--cream-2);
}

.button.ghost:hover,
.button.secondary:hover {
    background: rgba(244, 228, 211, 0.1);
}

.weekend,
.coming-soon {
    background:
        radial-gradient(circle at 14% 20%, rgba(238, 148, 16, 0.15), transparent 28vw),
        linear-gradient(180deg, #061a33 0%, #0e2542 50%, #071426 100%);
}

.coming-soon {
    min-height: 72vh;
}

.coming-heading {
    margin-inline: auto;
    max-width: 900px;
    text-align: center;
}

.coming-heading h2 {
    font-size: clamp(3rem, 8vw, 7.2rem);
}

.coming-heading > p:not(.eyebrow) {
    margin-inline: auto;
}

.coming-heading .button {
    margin-top: 28px;
}

.coming-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 34px auto 0;
    max-width: 1040px;
}

.coming-grid span {
    background: rgba(244, 228, 211, 0.08);
    border: 1px solid rgba(244, 228, 211, 0.14);
    border-radius: 999px;
    color: rgba(244, 228, 211, 0.82);
    font-size: 0.9rem;
    font-weight: 720;
    padding: 13px 16px;
    text-align: center;
}

.split-heading {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr auto;
    max-width: none;
}

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

.mini-card {
    background: linear-gradient(145deg, rgba(244, 228, 211, 0.12), rgba(244, 228, 211, 0.045));
    border-radius: 8px;
    min-height: 310px;
    padding: 26px;
}

.mini-card::before {
    background: radial-gradient(circle at 50% 0%, rgba(238, 148, 16, 0.2), transparent 45%);
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 250ms ease;
}

.mini-card:hover::before {
    opacity: 1;
}

.mini-icon {
    border: 1px solid rgba(244, 228, 211, 0.18);
    border-radius: 50%;
    height: 64px;
    margin-bottom: 32px;
    position: relative;
    width: 64px;
}

.mini-icon::before,
.mini-icon::after {
    content: "";
    position: absolute;
}

.icon-stem {
    background: radial-gradient(circle, rgba(128, 232, 255, 0.2), transparent 72%);
}

.icon-stem::before {
    border: 1px solid var(--cyan);
    border-radius: 50%;
    height: 36px;
    left: 13px;
    top: 13px;
    width: 36px;
}

.icon-stem::after {
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--orange);
    height: 8px;
    left: 28px;
    top: 28px;
    width: 8px;
}

.icon-lab::before {
    border: 2px solid var(--orange-2);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    height: 34px;
    left: 19px;
    top: 15px;
    width: 24px;
}

.icon-lab::after {
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    border-radius: 999px;
    height: 8px;
    left: 16px;
    top: 38px;
    width: 31px;
}

.icon-space::before {
    border: 1px solid var(--cyan);
    border-radius: 50%;
    height: 28px;
    left: 18px;
    top: 18px;
    width: 28px;
}

.icon-space::after {
    border: 1px solid rgba(238, 148, 16, 0.85);
    border-radius: 50%;
    height: 52px;
    left: 5px;
    top: 5px;
    transform: rotate(-24deg) scaleY(0.42);
    width: 52px;
}

.icon-circuit::before {
    background:
        linear-gradient(var(--cyan), var(--cyan)) 12px 14px / 38px 2px no-repeat,
        linear-gradient(var(--cyan), var(--cyan)) 12px 34px / 38px 2px no-repeat,
        linear-gradient(var(--cyan), var(--cyan)) 31px 14px / 2px 22px no-repeat;
    inset: 0;
}

.icon-circuit::after {
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--orange);
    height: 8px;
    left: 28px;
    top: 30px;
    width: 8px;
}

.mini-card h3 {
    font-size: 1.35rem;
    line-height: 1.15;
}

.products {
    background:
        radial-gradient(circle at 74% 18%, rgba(128, 232, 255, 0.16), transparent 30vw),
        radial-gradient(circle at 20% 80%, rgba(157, 140, 255, 0.16), transparent 28vw),
        linear-gradient(180deg, #071426 0%, #041d39 100%);
}

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

.product-card {
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(128, 232, 255, 0.18), transparent 34%),
        linear-gradient(150deg, rgba(244, 228, 211, 0.13), rgba(3, 30, 60, 0.26));
    border-radius: 8px;
    min-height: 570px;
    padding: clamp(28px, 4vw, 46px);
}

.holo-grid {
    background-image:
        linear-gradient(rgba(128, 232, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 232, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    inset: 0;
    opacity: 0.22;
    position: absolute;
}

.product-device,
.product-lens {
    height: 230px;
    margin: 18px 0 34px;
    position: relative;
    z-index: 1;
}

.product-device {
    background:
        linear-gradient(90deg, transparent 11%, rgba(128, 232, 255, 0.38) 12% 13%, transparent 14% 38%, rgba(128, 232, 255, 0.38) 39% 40%, transparent 41%),
        linear-gradient(0deg, transparent 15%, rgba(128, 232, 255, 0.34) 16% 17%, transparent 18% 70%, rgba(128, 232, 255, 0.28) 71% 72%, transparent 73%);
    border: 1px solid rgba(128, 232, 255, 0.22);
    border-radius: 8px;
}

.product-device span {
    background: rgba(238, 148, 16, 0.18);
    border: 1px solid rgba(238, 148, 16, 0.65);
    border-radius: 14px;
    box-shadow: 0 0 24px rgba(238, 148, 16, 0.28);
    position: absolute;
}

.product-device span:nth-child(1) {
    height: 74px;
    left: 12%;
    top: 18%;
    width: 30%;
}

.product-device span:nth-child(2) {
    height: 48px;
    right: 15%;
    top: 26%;
    width: 24%;
}

.product-device span:nth-child(3) {
    bottom: 18%;
    height: 56px;
    left: 32%;
    width: 38%;
}

.spark-field {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.tronics-card:hover .spark-field::before,
.tronics-card:hover .spark-field::after {
    animation: electric-dash 700ms steps(2, end) infinite;
    background: linear-gradient(135deg, transparent 44%, var(--orange-2) 45% 55%, transparent 56%);
    content: "";
    height: 80px;
    position: absolute;
    right: 24%;
    top: 32%;
    width: 120px;
}

.tronics-card:hover .spark-field::after {
    left: 18%;
    right: auto;
    top: 62%;
    transform: rotate(90deg);
}

@keyframes electric-dash {
    50% {
        opacity: 0.2;
        filter: blur(1px);
    }
}

.product-lens {
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-lens::before,
.product-lens::after {
    background: linear-gradient(90deg, rgba(244, 228, 211, 0), rgba(244, 228, 211, 0.52), rgba(238, 148, 16, 0));
    content: "";
    height: 2px;
    left: 6%;
    position: absolute;
    right: 6%;
}

.product-lens::before {
    top: 38%;
    transform: rotate(-9deg);
}

.product-lens::after {
    bottom: 36%;
    transform: rotate(8deg);
}

.product-lens span {
    background:
        radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.55), transparent 18%),
        linear-gradient(135deg, rgba(128, 232, 255, 0.32), rgba(157, 140, 255, 0.2), rgba(238, 148, 16, 0.22));
    border: 1px solid rgba(244, 228, 211, 0.42);
    border-radius: 50%;
    box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.08), 0 0 50px rgba(128, 232, 255, 0.24);
    height: 174px;
    position: relative;
    width: 174px;
}

.optics-card:hover .product-lens span {
    animation: lens-pulse 1.2s ease-in-out infinite;
}

.lens-field {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244, 228, 211, 0.16), transparent 18%);
    inset: 0;
    mix-blend-mode: screen;
    opacity: 0;
    position: absolute;
    transition: opacity 240ms ease;
}

.optics-card:hover .lens-field {
    opacity: 1;
}

@keyframes lens-pulse {
    50% {
        scale: 1.05;
        filter: hue-rotate(30deg);
    }
}

.status-pill {
    border: 1px solid rgba(238, 148, 16, 0.35);
    border-radius: 999px;
    color: var(--orange-2);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 740;
    margin-top: 28px;
    padding: 9px 13px;
    position: relative;
    z-index: 1;
}

.impact {
    background:
        linear-gradient(180deg, var(--cream) 0%, #fff4e5 48%, #f1dfca 100%);
    color: var(--ink);
}

.impact .section-heading h2,
.impact .section-heading > p:not(.eyebrow),
.team .section-heading h2,
.team .section-heading > p:not(.eyebrow) {
    color: var(--ink);
}

.impact .section-heading > p:not(.eyebrow),
.team .section-heading > p:not(.eyebrow) {
    color: rgba(7, 20, 38, 0.68);
}

.impact-layout {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
}

.impact-mosaic {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-tile {
    aspect-ratio: 1.05;
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(3, 30, 60, 0.24);
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.image-tile.tile-large {
    aspect-ratio: 1.6;
    grid-column: 1 / -1;
}

.image-tile::after,
.gallery-item::after {
    background:
        linear-gradient(180deg, transparent 30%, rgba(3, 30, 60, 0.74)),
        radial-gradient(circle at 70% 20%, rgba(238, 148, 16, 0.22), transparent 34%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.image-tile img,
.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: scale 700ms var(--ease), filter 700ms ease;
    width: 100%;
}

.image-tile:hover img,
.gallery-item:hover img {
    filter: saturate(1.12) contrast(1.04);
    scale: 1.06;
}

.image-tile figcaption,
.gallery-item figcaption {
    bottom: 16px;
    color: var(--cream-2);
    font-size: 0.86rem;
    font-weight: 760;
    left: 16px;
    position: absolute;
    right: 16px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    z-index: 2;
}

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

.stat-card {
    background:
        radial-gradient(circle at 78% 12%, rgba(238, 148, 16, 0.18), transparent 48%),
        rgba(3, 30, 60, 0.92);
    border-color: rgba(3, 30, 60, 0.18);
    border-radius: 8px;
    color: var(--cream);
    min-height: 154px;
    padding: 24px;
}

.stat-card strong {
    color: var(--orange-2);
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    letter-spacing: 0;
    line-height: 0.9;
    margin-bottom: 18px;
}

.stat-card span {
    color: rgba(244, 228, 211, 0.74);
    font-size: 0.92rem;
    font-weight: 650;
}

.gallery {
    background:
        radial-gradient(circle at 50% 8%, rgba(238, 148, 16, 0.18), transparent 34vw),
        linear-gradient(180deg, #f1dfca 0%, var(--navy) 20%, #020b18 100%);
    padding-bottom: clamp(110px, 14vw, 190px);
}

.rail-controls {
    box-sizing: border-box;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    margin: 0;
    padding: 0 clamp(12px, 2.6vw, 42px);
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 30;
}

.rail-arrow {
    align-items: center;
    background: rgba(244, 228, 211, 0.1);
    border: 1px solid rgba(244, 228, 211, 0.24);
    border-radius: 50%;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32), 0 0 28px rgba(238, 148, 16, 0.16), inset 0 0 20px rgba(244, 228, 211, 0.06);
    color: var(--cream-2);
    display: flex;
    flex: 0 0 auto;
    height: 48px;
    justify-content: center;
    padding: 0;
    pointer-events: auto;
    position: relative;
    transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    width: 48px;
    z-index: 31;
}

.rail-arrow span {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    display: block;
    height: 12px;
    width: 12px;
}

.rail-arrow-prev span {
    transform: translateX(3px) rotate(-135deg);
}

.rail-arrow-next span {
    transform: translateX(-3px) rotate(45deg);
}

.rail-arrow:hover {
    background: rgba(238, 148, 16, 0.22);
    border-color: rgba(238, 148, 16, 0.58);
    box-shadow: 0 0 34px rgba(238, 148, 16, 0.22), 0 18px 52px rgba(0, 0, 0, 0.26);
}

.rail-controls-dark .rail-arrow {
    background: rgba(3, 30, 60, 0.08);
    border-color: rgba(3, 30, 60, 0.16);
    color: var(--navy);
}

.rail-controls-dark .rail-arrow:hover {
    background: rgba(238, 148, 16, 0.18);
    border-color: rgba(238, 148, 16, 0.5);
}

.gallery-wall {
    display: grid;
    gap: 24px;
    margin-top: 20px;
}

.gallery-row-frame {
    isolation: isolate;
    overflow: visible;
    position: relative;
}

.gallery-row-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.gallery-row-viewport::-webkit-scrollbar,
.team-marquee::-webkit-scrollbar {
    display: none;
}

.gallery-strip {
    --rail-shift: 0px;
    animation: gallery-move 46s linear infinite;
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.strip-two {
    animation-direction: reverse;
    animation-duration: 58s;
    margin-left: -14vw;
}

.gallery-item {
    aspect-ratio: 1.2;
    border: 1px solid rgba(244, 228, 211, 0.16);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    flex: 0 0 clamp(260px, 31vw, 460px);
    overflow: hidden;
    position: relative;
    transition: box-shadow 260ms ease, transform 260ms var(--ease);
}

.gallery-item:hover {
    box-shadow: 0 0 54px rgba(238, 148, 16, 0.26), 0 30px 90px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px) scale(1.02);
}

@keyframes gallery-move {
    from {
        transform: translateX(var(--rail-shift));
    }
    to {
        transform: translateX(calc(var(--rail-shift) - 50%));
    }
}

.team {
    background:
        radial-gradient(circle at 10% 18%, rgba(238, 148, 16, 0.18), transparent 28vw),
        linear-gradient(180deg, #020b18 0%, var(--cream) 18%, #f5e5d2 100%);
    color: var(--ink);
}

.team-gallery-frame {
    isolation: isolate;
    margin-inline: calc(50% - 50vw);
    overflow: visible;
    position: relative;
}

.team-marquee {
    margin-inline: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 0 30px;
    position: relative;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.team-track {
    --rail-shift: 0px;
    animation: team-slide 95s linear infinite;
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
}

.team-card {
    aspect-ratio: 0.76;
    background:
        radial-gradient(circle at 30% 18%, rgba(238, 148, 16, 0.18), transparent 34%),
        rgba(255, 255, 255, 0.58);
    border-color: rgba(3, 30, 60, 0.14);
    border-radius: 8px;
    color: var(--ink);
    flex: 0 0 clamp(238px, 24vw, 330px);
    isolation: isolate;
    min-height: 390px;
}

.team-card::before {
    background:
        linear-gradient(180deg, transparent 42%, rgba(3, 30, 60, 0.08) 58%, rgba(3, 30, 60, 0.76) 100%),
        radial-gradient(circle at 72% 16%, rgba(128, 232, 255, 0.18), transparent 34%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.team-photo {
    align-items: center;
    background: linear-gradient(180deg, #d9c4ab, #213a55);
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-photo::after {
    background:
        linear-gradient(rgba(3, 30, 60, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 30, 60, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(180deg, black, transparent 76%);
    opacity: 0.5;
    position: absolute;
}

.team-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.team-info {
    background: linear-gradient(180deg, rgba(3, 30, 60, 0.08), rgba(3, 30, 60, 0.86));
    bottom: 0;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.team-card h3 {
    color: var(--cream-2);
    font-size: 1.58rem;
    margin-bottom: 8px;
}

.team-card p {
    color: rgba(244, 228, 211, 0.76);
    font-size: 0.92rem;
    line-height: 1.55;
}

@keyframes team-slide {
    from {
        transform: translateX(var(--rail-shift));
    }
    to {
        transform: translateX(calc(var(--rail-shift) - 50%));
    }
}

.testimonials {
    background:
        radial-gradient(circle at 86% 20%, rgba(128, 232, 255, 0.14), transparent 30vw),
        linear-gradient(180deg, #f5e5d2 0%, #071426 25%, #041d39 100%);
}

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

.testimonial-card {
    background:
        radial-gradient(circle at 84% 12%, rgba(238, 148, 16, 0.15), transparent 44%),
        rgba(244, 228, 211, 0.08);
    border-radius: 8px;
    min-height: 300px;
    padding: 26px;
}

.testimonial-card blockquote {
    color: rgba(244, 228, 211, 0.86);
    font-size: 1.05rem;
    line-height: 1.72;
    position: relative;
    z-index: 1;
}

.testimonial-card figcaption {
    color: var(--orange-2);
    font-size: 0.86rem;
    font-weight: 760;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.final-cta {
    align-items: center;
    background:
        radial-gradient(circle at 52% 52%, rgba(238, 148, 16, 0.14), transparent 24vw),
        linear-gradient(180deg, #041d39 0%, #020711 100%);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 140px 28px;
    position: relative;
}

.cta-light {
    background:
        radial-gradient(circle at 50% 52%, rgba(238, 148, 16, 0.22), transparent 28%),
        radial-gradient(circle at 70% 20%, rgba(128, 232, 255, 0.12), transparent 32%);
    filter: blur(12px);
    inset: 0;
    position: absolute;
}

.cta-content {
    max-width: 950px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.cta-content h2 {
    color: var(--cream-2);
    font-size: clamp(3rem, 8vw, 7.8rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.96;
    margin: 18px 0 24px;
}

.cta-content > p:not(.eyebrow) {
    color: rgba(244, 228, 211, 0.76);
    font-size: clamp(1.02rem, 2vw, 1.35rem);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 42px;
}

.cta-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 26px;
}

.cta-socials .social-icon {
    height: 44px;
    width: 44px;
}

.reveal-card,
.section-heading,
.bridge-copy {
    opacity: 0;
    transform: translateY(34px);
}

@media (hover: none), (pointer: coarse) {
    body,
    button,
    a {
        cursor: auto;
    }

    .cursor-orb,
    .cursor-trails {
        display: none;
    }
}

@media (max-width: 980px) {
    .navbar {
        grid-template-columns: auto auto;
        max-width: calc(100% - 20px);
    }

    .nav-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-actions {
        justify-self: end;
    }

    .bridge-content {
        grid-template-columns: 1fr;
    }

    .bridge-logo-lab {
        justify-self: center;
        width: min(420px, 82vw);
    }

    .class-grid,
    .coming-grid,
    .product-grid,
    .impact-layout,
    .team-grid,
    .testimonial-grid,
    .weekend-grid {
        grid-template-columns: 1fr;
    }

    .split-heading {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .class-card,
    .product-card {
        min-height: auto;
    }

    .stats-grid,
    .impact-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .navbar {
        border-radius: 24px;
        top: 10px;
    }

    .brand {
        font-size: 0.95rem;
    }

    .nav-action {
        padding-inline: 12px;
    }

    .social-icon {
        height: 34px;
        width: 34px;
    }

    .hero {
        height: 330vh;
    }

    .hero-reveal h1 {
        font-size: clamp(2rem, 9.7vw, 4.6rem);
    }

    .meaning-rings {
        height: 88vw;
        width: 88vw;
    }

    .section-shell {
        padding-inline: 18px;
    }

    .section-block {
        padding: 86px 0;
    }

    .story-bridge {
        min-height: 82vh;
        padding-top: 150px;
    }

    .bridge-copy h2,
    .section-heading h2 {
        font-size: clamp(2.2rem, 13vw, 3.5rem);
    }

    .stats-grid,
    .impact-mosaic {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        gap: 14px;
    }

    .rail-controls {
        padding-inline: 10px;
    }

    .gallery-item {
        flex-basis: 78vw;
    }

    .team-card {
        flex-basis: 78vw;
        min-height: 420px;
    }

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

    .cta-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .gallery-strip {
        animation: none;
    }
}
