:root {
    --ink: #07090d;
    --ink-soft: #0d1118;
    --panel: rgba(14, 18, 25, 0.74);
    --line: rgba(255, 255, 255, 0.14);
    --line-strong: rgba(255, 255, 255, 0.28);
    --white: #f4f6f8;
    --muted: #9aa3ad;
    --yellow: #ffd51b;
    --yellow-hot: #fff16b;
    --cyan: #80e8ff;
    --radius: 24px;
    --page-pad: clamp(20px, 4vw, 72px);
    --mx: 0;
    --my: 0;
    --timeline: 0;
    --video-scale: 1.08;
    --parallax-x: 0px;
    --parallax-y: 0px;
    --aurora-opacity: 0.15;
    --aurora-rotate: -12deg;
    --aurora-one-x: 74%;
    --aurora-one-y: 28%;
    --aurora-two-x: 42%;
    --grid-opacity: 0;
    --grid-shift: 0px;
    --line-opacity: 0;
    --cue-opacity: 1;
    color-scheme: dark;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
    overflow: hidden;
}

body.is-loading {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
    align-items: center;
    gap: 22px;
    background: #05070a;
    transition: opacity 700ms cubic-bezier(.7,0,.2,1), visibility 700ms ease;
}

.site-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(255,255,255,.035) 10%);
    mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

.site-loader.is-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__mark {
    position: relative;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 1px solid rgba(255,213,27,.5);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(255,213,27,.14);
    animation: loader-pulse 1.6s ease-in-out infinite;
}

.site-loader__mark::before,
.site-loader__mark::after {
    content: "";
    position: absolute;
    inset: -13px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 50%;
    animation: orbit 5s linear infinite;
}

.site-loader__mark::after {
    inset: -28px;
    border-color: rgba(128,232,255,.12);
    animation-direction: reverse;
    animation-duration: 8s;
}

.site-loader__mark img {
    width: 50px;
    filter: brightness(0) invert(1);
}

.site-loader__word {
    position: relative;
    display: grid;
    gap: 2px;
    font-family: "Space Grotesk", sans-serif;
}

.site-loader__word span {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .86;
}

.site-loader__word small {
    color: var(--yellow);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .25em;
}

.site-loader__track {
    position: absolute;
    left: 12vw;
    right: 12vw;
    bottom: 13vh;
    height: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.1);
}

.site-loader__track i {
    display: block;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--cyan), transparent);
    animation: loader-track 1.4s cubic-bezier(.65,0,.35,1) infinite;
}

@keyframes loader-track { from { transform: translateX(-100%); } to { transform: translateX(320%); } }
@keyframes loader-pulse { 50% { transform: scale(1.06); box-shadow: 0 0 100px rgba(255,213,27,.24); } }

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 290;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    pointer-events: none;
    visibility: hidden;
}

.page-transition span {
    background: #06080c;
    transform: translateY(102%);
    transition: transform 500ms cubic-bezier(.76,0,.24,1);
}

.page-transition span:nth-child(2) { transition-delay: 55ms; }
.page-transition span:nth-child(3) { transition-delay: 110ms; }
.page-transition.is-active { visibility: visible; }
.page-transition.is-active span { transform: translateY(0); }

button, input, textarea {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: #090a0c;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.particle-field {
    position: fixed;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 20px var(--page-pad);
    border-bottom: 1px solid transparent;
    transition: padding 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.topbar.is-compact {
    padding-top: 12px;
    padding-bottom: 12px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(7, 9, 13, 0.78);
    backdrop-filter: blur(18px);
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 213, 27, 0.34);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 24px rgba(255, 213, 27, 0.06);
}

.brand__mark img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand__type {
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.brand__type strong {
    font-size: 17px;
}

.brand__type small {
    color: var(--yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(7, 9, 13, 0.46);
    backdrop-filter: blur(14px);
}

.topnav button, .topnav a {
    border: 0;
    border-radius: 999px;
    padding: 9px 15px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease;
}

.topnav button:hover, .topnav a:hover,
.topnav button:focus-visible, .topnav a:focus-visible {
    outline: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.topbar__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 11px 15px 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.topbar__cta span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: #080a0d;
}

.topbar__cta:hover {
    border-color: var(--yellow);
    background: rgba(255, 213, 27, 0.08);
}

.mobile-dock {
    display: none;
}

.experience {
    position: relative;
    z-index: 1;
    height: 580vh;
    min-height: 4100px;
}

.experience__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: #06080b;
    perspective: 1500px;
}

.stage-bg, .stage-bg > * {
    position: absolute;
    inset: 0;
}

.energy-tunnel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    perspective: 900px;
    opacity: 0;
    transition: opacity 200ms linear;
}

.energy-tunnel span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(70vw, 980px);
    aspect-ratio: 1.55;
    border: 1px solid rgba(128,232,255,.14);
    border-radius: 42%;
    box-shadow: inset 0 0 60px rgba(128,232,255,.025), 0 0 30px rgba(255,213,27,.04);
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.energy-tunnel span:nth-child(odd) { border-color: rgba(255,213,27,.15); }

.chromatic-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: min(32vw, 430px);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    opacity: 0;
    filter: drop-shadow(22px 0 35px rgba(255,213,27,.1)) drop-shadow(-22px 0 35px rgba(128,232,255,.1));
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.chromatic-orb::before,
.chromatic-orb::after,
.chromatic-orb i {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(255,213,27,.2);
    border-radius: 50%;
    transform: rotateX(67deg);
}

.chromatic-orb::after { border-color: rgba(128,232,255,.2); transform: rotateY(67deg); }
.chromatic-orb i { inset: 22%; border-style: dashed; border-color: rgba(255,255,255,.2); animation: orbit 9s linear infinite; }

.velocity-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 80px 35px rgba(255,255,255,.1), 0 0 200px 90px rgba(128,232,255,.05), 0 0 300px 140px rgba(255,213,27,.035);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.stage-bg {
    z-index: -3;
    overflow: hidden;
}

.stage-bg__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.85) contrast(1.25) brightness(0.54);
    transform: scale(var(--video-scale)) translate3d(var(--parallax-x), var(--parallax-y), 0);
    will-change: transform, opacity;
}

.stage-bg__veil {
    background:
        linear-gradient(90deg, rgba(4, 6, 9, 0.92) 0%, rgba(4, 6, 9, 0.62) 43%, rgba(4, 6, 9, 0.30) 72%, rgba(4, 6, 9, 0.68) 100%),
        linear-gradient(0deg, #06080b 0%, transparent 35%, rgba(0, 0, 0, 0.28) 100%);
}

.stage-bg__aurora {
    inset: -25%;
    opacity: var(--aurora-opacity);
    background:
        radial-gradient(circle at var(--aurora-one-x) var(--aurora-one-y), rgba(91, 211, 255, 0.22), transparent 24%),
        radial-gradient(circle at var(--aurora-two-x) 58%, rgba(255, 213, 27, 0.18), transparent 26%),
        radial-gradient(circle at 54% 70%, rgba(162, 88, 255, 0.13), transparent 31%);
    filter: blur(55px);
    transform: rotate(var(--aurora-rotate)) scale(1.2);
}

.stage-noise {
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.road-grid {
    top: 54%;
    left: -30%;
    right: -30%;
    bottom: -48%;
    opacity: var(--grid-opacity);
    transform: perspective(520px) rotateX(62deg) translateY(var(--grid-shift)) scale(1.25);
    transform-origin: center top;
    background-image:
        linear-gradient(rgba(255, 213, 27, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 232, 255, 0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, #000 26%, #000 78%, transparent);
}

.road-line {
    top: 54%;
    bottom: -30%;
    width: 2px;
    opacity: var(--line-opacity);
    background: linear-gradient(to bottom, transparent, var(--yellow) 42%, rgba(255, 213, 27, 0));
    box-shadow: 0 0 26px rgba(255, 213, 27, 0.7);
    transform-origin: top;
}

.road-line--left {
    left: 35%;
    transform: rotate(18deg);
}

.road-line--right {
    right: 35%;
    transform: rotate(-18deg);
}

.scene {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 110px var(--page-pad) 70px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-style: preserve-3d;
    will-change: opacity, transform;
}

.scene.is-active {
    visibility: visible;
    pointer-events: auto;
}

.scene--intro {
    display: flex;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

.intro-copy {
    width: min(830px, 72vw);
    margin-top: 2vh;
}

.kicker, .micro-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kicker span {
    width: 36px;
    height: 2px;
    background: var(--yellow);
    box-shadow: 0 0 18px rgba(255, 213, 27, 0.75);
}

.intro-copy h1, .scene h2, .content-surface h2, .contact-section h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.075em;
    line-height: 0.9;
}

.intro-copy h1 {
    font-size: clamp(62px, 9.2vw, 148px);
}

.intro-copy h1 em, .scene h2 em, .contact-section h2 em {
    color: var(--yellow);
    font-style: normal;
}

.intro-copy__lead {
    width: min(570px, 90%);
    margin: 24px 0 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.65;
}

.intro-actions, .finale-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--yellow {
    background: var(--yellow);
    color: #090b0e;
    box-shadow: 0 12px 44px rgba(255, 213, 27, 0.14);
}

.button--yellow:hover {
    background: var(--yellow-hot);
}

.button--glass {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button--glass:hover {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.10);
}

.intro-hud {
    position: absolute;
    right: var(--page-pad);
    bottom: 68px;
    display: grid;
    gap: 3px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Space Grotesk", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-align: right;
}

.intro-hud strong {
    margin-top: 8px;
    color: var(--yellow);
}

.chapter-meter {
    position: absolute;
    right: var(--page-pad);
    top: 50%;
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 28px;
    transform: translateY(-50%);
    font-family: "Space Grotesk", monospace;
    pointer-events: none;
}

.chapter-meter__index {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.chapter-meter__rail {
    position: relative;
    width: 1px;
    height: 160px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.17);
}

.chapter-meter__rail span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transform: scaleY(var(--timeline));
    transform-origin: top;
}

.chapter-meter__name {
    position: absolute;
    top: calc(100% + 52px);
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(90deg);
    white-space: nowrap;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 22;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: var(--cue-opacity);
    transform: translateX(-50%);
}

.scroll-cue__mouse {
    position: relative;
    display: block;
    width: 20px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.scroll-cue__mouse i {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 2px;
    height: 6px;
    border-radius: 999px;
    background: var(--yellow);
    animation: wheel 1.5s ease-in-out infinite;
}

.scroll-cue small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes wheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

.scene--portal {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(320px, 42vw) minmax(220px, 1fr);
    align-items: center;
    gap: 20px;
}

.portal {
    position: relative;
    width: min(42vw, 560px);
    aspect-ratio: 1;
    justify-self: center;
    transform-style: preserve-3d;
}

.portal::before, .portal::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 27, 0.20), rgba(255, 213, 27, 0.03) 40%, transparent 69%);
    filter: blur(9px);
}

.portal::after {
    inset: 4%;
    background: radial-gradient(circle, transparent 50%, rgba(128, 232, 255, 0.09) 68%, transparent 72%);
    filter: blur(22px);
}

.portal__orbit {
    position: absolute;
    inset: 9%;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    box-shadow: inset 0 0 42px rgba(128, 232, 255, 0.04), 0 0 26px rgba(255, 213, 27, 0.05);
}

.portal__orbit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 18px var(--yellow);
}

.portal__orbit--one { animation: orbit 9s linear infinite; }
.portal__orbit--two { inset: 20%; animation: orbit 7s linear infinite reverse; }
.portal__orbit--three { inset: 32%; animation: orbit 5s linear infinite; }

@keyframes orbit { to { transform: rotate(360deg); } }

.portal__scan {
    position: absolute;
    inset: 1%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 72%, rgba(255, 213, 27, 0.46) 81%, transparent 89%);
    mask-image: radial-gradient(circle, transparent 62%, #000 63%, #000 65%, transparent 66%);
    animation: orbit 4.4s linear infinite;
}

.portal__core {
    position: absolute;
    inset: 35%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 213, 27, 0.48);
    border-radius: 50%;
    background: rgba(10, 13, 18, 0.62);
    box-shadow: 0 0 70px rgba(255, 213, 27, 0.12), inset 0 0 34px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.portal__core img, .finale-ring img {
    width: 62%;
    filter: brightness(0) invert(1);
}

.portal-copy {
    max-width: 270px;
}

.portal-copy--left {
    align-self: end;
    margin-bottom: 10vh;
}

.portal-copy--left p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.25vw, 20px);
}

.portal-copy--right {
    justify-self: end;
}

.portal-copy--right h2 {
    margin-top: 18px;
    font-size: clamp(42px, 4.6vw, 76px);
}

.scene--services, .scene--stories {
    perspective: 1200px;
}

.scene-heading {
    position: absolute;
    z-index: 12;
}

.scene-heading h2 {
    font-size: clamp(46px, 5.2vw, 82px);
}

.scene-heading--services {
    top: 15vh;
    left: var(--page-pad);
}

.scene-heading--stories {
    top: 18vh;
    left: var(--page-pad);
}

.service-cluster, .story-deck {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.service-card {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: flex;
    width: clamp(200px, 18vw, 300px);
    aspect-ratio: 0.78;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: #11151c;
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.52), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform-origin: center;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 25%, rgba(5, 8, 12, 0.30) 55%, rgba(5, 8, 12, 0.98) 100%);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0 0 45px rgba(128, 232, 255, 0.06);
    pointer-events: none;
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.08);
    transition: transform 450ms ease, filter 450ms ease;
}

.service-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.06);
}

.service-card__index {
    position: absolute;
    top: 15px;
    left: 16px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Space Grotesk", monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
}

.service-card__arrow {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(4, 7, 10, 0.38);
    backdrop-filter: blur(8px);
}

.service-card__copy {
    position: relative;
    z-index: 3;
    padding: 22px;
}

.service-card__copy small {
    display: block;
    margin-bottom: 7px;
    color: var(--yellow);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-card__copy strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(18px, 1.55vw, 25px);
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.scene-note {
    position: absolute;
    left: var(--page-pad);
    bottom: 7vh;
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scene--manifesto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.manifesto-line {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(54px, 9.5vw, 150px);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 0.78;
    text-transform: uppercase;
    white-space: nowrap;
    will-change: transform, opacity;
}

.manifesto-line:nth-child(2) { align-self: flex-end; }
.manifesto-line span { color: var(--yellow); }

.manifesto-stats {
    position: absolute;
    right: var(--page-pad);
    bottom: 7vh;
    display: flex;
    gap: clamp(24px, 5vw, 80px);
}

.manifesto-stats div {
    display: grid;
    gap: 2px;
}

.manifesto-stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 500;
}

.manifesto-stats span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(210px, 20vw, 340px);
    aspect-ratio: 0.78;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: #11151b;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.54);
    cursor: pointer;
    will-change: transform, opacity;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.82));
}

.story-card__copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
}

.story-card__copy small {
    display: block;
    color: var(--yellow);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-card__copy strong {
    display: block;
    margin-top: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    line-height: 1.1;
}

.scene-link {
    position: absolute;
    left: var(--page-pad);
    bottom: 7vh;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
}

.scene--finale {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.finale-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: min(56vw, 760px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 213, 27, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(255, 213, 27, 0.04), inset 0 0 100px rgba(128, 232, 255, 0.03);
    opacity: 0.34;
    transform: translate(-50%, -50%);
}

.finale-ring::before, .finale-ring::after {
    content: "";
    position: absolute;
    inset: 13%;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    animation: orbit 24s linear infinite;
}

.finale-ring::after {
    inset: 31%;
    border-style: solid;
    border-color: rgba(255, 213, 27, 0.2);
    animation-direction: reverse;
    animation-duration: 13s;
}

.finale-ring img {
    width: 13%;
    opacity: 0.26;
}

.scene--finale > *:not(.finale-ring) {
    position: relative;
    z-index: 2;
}

.scene--finale h2 {
    margin: 20px 0 32px;
    font-size: clamp(58px, 8.4vw, 132px);
}

.latest-project {
    position: relative;
    z-index: 6;
    height: 400vh;
    min-height: 3000px;
    color: #f7f8fa;
    background: #05070a;
}

.latest-project__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at var(--latest-light-x, 20%) 64%, rgba(26, 89, 255, 0.18), transparent 30%),
        linear-gradient(145deg, #080b10 0%, #030407 62%, #0a0d13 100%);
}

.latest-project__sticky::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.17;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 58px 58px;
    transform: perspective(760px) rotateX(67deg) scale(1.6) translateY(22%);
    transform-origin: bottom center;
    mask-image: linear-gradient(to bottom, transparent 28%, #000 74%);
}

.latest-project__atmosphere,
.latest-project__atmosphere i {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.latest-project__atmosphere i:first-child {
    background: linear-gradient(106deg, transparent 32%, rgba(255, 213, 27, 0.14) 49%, transparent 54%);
    transform: translateX(var(--latest-sweep, -22%));
    filter: blur(16px);
}

.latest-project__atmosphere i:nth-child(2) {
    inset: 18% -15%;
    border-radius: 50%;
    border: 1px solid rgba(100, 185, 255, 0.16);
    box-shadow: 0 0 140px rgba(30, 105, 255, 0.14), inset 0 0 120px rgba(255, 213, 27, 0.05);
    transform: rotate(var(--latest-rotate, 0deg)) scale(var(--latest-atmosphere-scale, .85));
}

.latest-project__atmosphere i:last-child {
    background: linear-gradient(to right, rgba(5,7,10,.96), transparent 18%, transparent 82%, rgba(5,7,10,.96));
}

.latest-project__head {
    position: absolute;
    top: 14vh;
    left: var(--page-pad);
    right: var(--page-pad);
    z-index: 7;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: none;
}

.latest-project__head h2 {
    margin: 14px 0 0;
    max-width: 760px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(48px, 6.5vw, 108px);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.075em;
}

.latest-project__head h2 em { color: var(--yellow); font-style: normal; }

.latest-project__head > p {
    width: min(32vw, 440px);
    margin: 6px 0 0;
    color: rgba(255,255,255,.56);
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.7;
}

.latest-project__word {
    position: absolute;
    left: 50%;
    bottom: 2.5vh;
    z-index: 0;
    color: rgba(255,255,255,.022);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(150px, 31vw, 520px);
    font-weight: 700;
    letter-spacing: -.09em;
    line-height: .7;
    transform: translateX(-50%);
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(255,255,255,.09);
}

.latest-project__viewport {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    perspective: 1500px;
    perspective-origin: 50% 60%;
}

.latest-project__track {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.latest-card {
    position: absolute;
    top: 61%;
    left: 50%;
    width: clamp(270px, 29vw, 470px);
    height: min(55vh, 670px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 3px;
    background: #11161e;
    box-shadow: 0 40px 110px rgba(0,0,0,.68);
    transform-style: preserve-3d;
    transition: border-color 260ms ease, filter 260ms ease;
    will-change: transform, opacity;
    cursor: zoom-in;
}

.latest-card:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 5px;
}

.latest-card--wide { width: clamp(320px, 38vw, 620px); }

.latest-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 48%, rgba(3,5,8,.15) 62%, rgba(3,5,8,.94));
}

.latest-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(255,213,27,0);
    transition: box-shadow 280ms ease;
}

.latest-card.is-active {
    border-color: rgba(255,213,27,.46);
    filter: saturate(1.12) contrast(1.03);
}

.latest-card.is-active::after { box-shadow: inset 0 0 0 1px rgba(255,213,27,.3), inset 0 -80px 100px rgba(0,0,0,.2); }

.latest-card__image,
.latest-card__image img { width: 100%; height: 100%; }

.latest-card__image img {
    display: block;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

.latest-card.is-active .latest-card__image img { transform: scale(1); }

.latest-card figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
}

.latest-card figcaption > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(255,213,27,.5);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 800;
}

.latest-card figcaption div { display: grid; gap: 3px; }
.latest-card figcaption strong { font-size: 14px; }
.latest-card figcaption small { color: rgba(255,255,255,.56); font-size: 10px; }
.latest-card__open { margin-left: auto; color: var(--yellow); font-size: 20px; font-weight: 500; }

.latest-project__footer {
    position: absolute;
    right: var(--page-pad);
    bottom: 30px;
    left: var(--page-pad);
    z-index: 8;
    display: grid;
    grid-template-columns: auto minmax(80px, 320px) auto;
    align-items: center;
    justify-content: end;
    gap: 18px;
    pointer-events: none;
}

.latest-project__counter { display: flex; align-items: baseline; gap: 5px; font-family: "Space Grotesk", sans-serif; }
.latest-project__counter strong { color: var(--yellow); font-size: 27px; font-weight: 600; }
.latest-project__counter span,
.latest-project__footer > span { color: rgba(255,255,255,.44); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.latest-project__rail { width: min(22vw, 320px); height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.latest-project__rail i { display: block; width: 100%; height: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; }

.content-surface {
    position: relative;
    z-index: 8;
    overflow: hidden;
    padding: 150px var(--page-pad);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 80% 10%, rgba(128, 232, 255, 0.05), transparent 25%),
        linear-gradient(180deg, #090c11, #0d1117 55%, #090b0f);
}

.content-surface::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    box-shadow: 0 0 40px rgba(255, 213, 27, 0.32);
}

.content-shell {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.content-intro {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 10vw;
    align-items: end;
}

.content-intro .micro-label {
    grid-column: 1 / -1;
    color: var(--yellow);
}

.content-intro h2 {
    margin: 0;
    font-size: clamp(54px, 7vw, 112px);
}

.content-intro > p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(16px, 1.35vw, 20px);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principles article {
    min-height: 280px;
    padding: 34px clamp(24px, 3vw, 48px) 40px;
    border-right: 1px solid var(--line);
}

.principles article:last-child { border-right: 0; }
.principles article > span { color: var(--yellow); font-family: "Space Grotesk", monospace; font-size: 11px; }
.principles h3 { margin: 80px 0 12px; font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -0.035em; }
.principles p { margin: 0; color: rgba(255, 255, 255, 0.52); font-size: 14px; }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin: 170px 0 46px;
}

.section-head h2 {
    margin: 12px 0 0;
    font-size: clamp(48px, 6vw, 88px);
}

.section-head > p {
    width: min(400px, 100%);
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-tile {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #11151a;
}

.service-tile:nth-child(1), .service-tile:nth-child(5) {
    grid-column: span 2;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 700ms ease;
}

.service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 28%, rgba(4, 7, 10, 0.08) 46%, rgba(4, 7, 10, 0.94));
}

.service-tile:hover img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.service-tile__copy {
    position: absolute;
    left: clamp(24px, 3vw, 42px);
    right: clamp(24px, 3vw, 42px);
    bottom: 32px;
    z-index: 2;
}

.service-tile__copy span {
    color: var(--yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-tile__copy h3 {
    max-width: 470px;
    margin: 9px 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(25px, 2.4vw, 40px);
    letter-spacing: -0.055em;
    line-height: 1;
}

.service-tile__copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.story-strip {
    display: grid;
    grid-auto-columns: minmax(230px, 22vw);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 24px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.08);
}

.story-strip__item {
    position: relative;
    aspect-ratio: 0.74;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #12161c;
    cursor: pointer;
    scroll-snap-align: start;
}

.story-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.story-strip__item:hover img { transform: scale(1.045); }

.story-strip__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 42%, rgba(0, 0, 0, 0.88));
}

.story-strip__copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    text-align: left;
}

.story-strip__copy span { color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.story-strip__copy strong { display: block; margin-top: 4px; font-family: "Space Grotesk", sans-serif; font-size: 20px; line-height: 1.1; }

.contact-section {
    position: relative;
    z-index: 8;
    overflow: hidden;
    padding: 150px var(--page-pad);
    border-top: 1px solid var(--line);
    background: #07090d;
}

.contact-section__glow {
    position: absolute;
    right: -15vw;
    bottom: -35vw;
    width: 70vw;
    height: 70vw;
    border: 1px solid rgba(255, 213, 27, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 160px rgba(255, 213, 27, 0.05), inset 0 0 160px rgba(128, 232, 255, 0.025);
}

.contact-section__glow::after {
    content: "";
    position: absolute;
    inset: 18%;
    border: 1px dashed rgba(255, 255, 255, 0.10);
    border-radius: inherit;
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(70px, 10vw, 160px);
    width: min(1360px, 100%);
    margin: 0 auto;
}

.contact-copy h2 {
    margin: 24px 0 28px;
    font-size: clamp(56px, 7vw, 104px);
}

.contact-copy > p {
    color: rgba(255, 255, 255, 0.55);
}

.contact-links {
    display: grid;
    margin-top: 54px;
    border-top: 1px solid var(--line);
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-links span { color: rgba(255, 255, 255, 0.43); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-links strong { font-size: 13px; text-align: right; }

.contact-form {
    display: grid;
    gap: 26px;
    align-self: end;
    padding: clamp(28px, 4vw, 58px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    outline: 0;
    padding: 10px 2px 13px;
    background: transparent;
    color: var(--white);
    resize: vertical;
    transition: border-color 180ms ease;
}

.contact-form input:focus, .contact-form textarea:focus { border-color: var(--yellow); }
.contact-form .button { justify-self: start; border: 0; }

.site-footer {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 38px var(--page-pad);
    border-top: 1px solid var(--line);
    background: #05070a;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    text-align: center;
}

.site-footer > div {
    display: flex;
    justify-self: end;
    gap: 18px;
    font-size: 11px;
    font-weight: 700;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.story-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.story-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 7, 0.88);
    backdrop-filter: blur(18px);
}

.story-player {
    position: relative;
    z-index: 2;
    width: min(430px, 100%);
    height: min(88vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 26px;
    background: #11151b;
    box-shadow: 0 40px 130px rgba(0, 0, 0, 0.65);
}

.story-player > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-player.is-gallery {
    width: min(1080px, 96vw);
    height: min(88vh, 820px);
    background: #05070a;
}

.story-player.is-gallery > img {
    object-fit: contain;
}

.story-player.is-gallery::after {
    background: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 24%, transparent 78%, rgba(0,0,0,.42));
}

.story-player::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.66), transparent 26%, transparent 70%, rgba(0, 0, 0, 0.74));
}

.story-player__progress {
    position: absolute;
    top: 13px;
    left: 16px;
    right: 54px;
    z-index: 4;
    display: flex;
    gap: 4px;
}

.story-player__progress span {
    flex: 1;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.story-player__progress span::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
}

.story-player__progress span.is-seen::after,
.story-player__progress span.is-current::after { transform: scaleX(1); }

.story-player__close {
    position: absolute;
    top: 26px;
    right: 13px;
    z-index: 5;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    color: #fff;
    cursor: pointer;
    font-size: 24px;
}

.story-player__head {
    position: absolute;
    top: 52px;
    left: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
}

.story-player__head > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 213, 27, 0.56);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    color: var(--yellow);
    font-size: 9px;
    font-weight: 800;
}

.story-player__head div { display: grid; }
.story-player__head strong { font-size: 13px; }
.story-player__head small { color: rgba(255, 255, 255, 0.62); font-size: 10px; }

.story-player__nav {
    position: absolute;
    top: 110px;
    bottom: 80px;
    z-index: 4;
    width: 35%;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

.story-player__nav--prev { left: 0; }
.story-player__nav--next { right: 0; }

.story-player__cta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

@media (max-width: 1080px) {
    .topbar { grid-template-columns: 1fr auto; }
    .topnav { display: none; }
    .scene--portal { grid-template-columns: 1fr 1.4fr 1fr; }
    .service-card { width: clamp(180px, 22vw, 250px); }
    .content-intro { gap: 6vw; }
    .contact-layout { gap: 70px; }
}

@media (max-width: 820px) {
    :root { --page-pad: 20px; }
    .topbar { padding-top: 14px; padding-bottom: 14px; }
    .brand__mark { width: 38px; height: 38px; }
    .brand__type small { display: none; }
    .topbar__cta { gap: 9px; padding: 8px 9px 8px 15px; }
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
    .experience { height: 460vh; min-height: 3150px; }
    .site-loader { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .energy-tunnel span { width: 92vw; }
    .chromatic-orb { width: 62vw; }
    .experience__sticky { min-height: 560px; }
    .latest-project { height: 320vh; min-height: 2300px; }
    .latest-project__sticky { min-height: 560px; }
    .latest-project__head { top: 12vh; display: block; }
    .latest-project__head h2 { font-size: clamp(44px, 13vw, 70px); }
    .latest-project__head > p { display: none; }
    .latest-card { top: 62%; width: 72vw; height: 52vh; max-height: 560px; }
    .latest-card--wide { width: 78vw; }
    .latest-project__footer { grid-template-columns: auto 1fr; bottom: 18px; gap: 12px; }
    .latest-project__footer > span { display: none; }
    .latest-project__rail { width: 100%; }
    .scene { padding-top: 90px; padding-bottom: 60px; }
    .intro-copy { width: 96%; }
    .intro-copy h1 { font-size: clamp(54px, 17vw, 92px); }
    .intro-copy__lead { font-size: 15px; }
    .intro-hud { display: none; }
    .chapter-meter { right: 14px; }
    .chapter-meter__rail { height: 110px; }
    .chapter-meter__name { display: none; }
    .scene--portal { display: block; }
    .portal { position: absolute; top: 50%; left: 50%; width: min(80vw, 480px); transform: translate(-50%, -50%); }
    .portal-copy--left { position: absolute; left: 20px; bottom: 58px; margin: 0; }
    .portal-copy--right { position: absolute; top: 100px; right: 32px; text-align: right; }
    .portal-copy--right h2 { font-size: clamp(36px, 10vw, 58px); }
    .scene-heading--services, .scene-heading--stories { top: 12vh; }
    .scene-heading h2 { font-size: clamp(42px, 12vw, 68px); }
    .service-card { width: min(53vw, 235px); }
    .scene-note, .scene-link { bottom: 5vh; }
    .manifesto-line { font-size: clamp(48px, 14vw, 90px); line-height: 0.88; white-space: normal; }
    .manifesto-line:nth-child(2) { text-align: right; }
    .manifesto-stats { left: 20px; right: 20px; bottom: 6vh; justify-content: space-between; gap: 14px; }
    .manifesto-stats strong { font-size: 22px; }
    .manifesto-stats span { font-size: 8px; }
    .story-card { width: min(58vw, 250px); }
    .scene--finale h2 { font-size: clamp(56px, 15vw, 90px); }
    .finale-ring { width: 90vw; }
    .content-surface, .contact-section { padding-top: 100px; padding-bottom: 100px; }
    .content-intro { grid-template-columns: 1fr; gap: 28px; }
    .content-intro h2 { font-size: clamp(48px, 14vw, 78px); }
    .principles { grid-template-columns: 1fr; margin-top: 70px; }
    .principles article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
    .principles article:last-child { border-bottom: 0; }
    .principles h3 { margin-top: 52px; }
    .section-head { display: grid; margin-top: 110px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-tile, .service-tile:nth-child(1), .service-tile:nth-child(5) { grid-column: auto; min-height: 430px; }
    .story-strip { grid-auto-columns: minmax(220px, 76vw); }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .contact-copy h2 { font-size: clamp(54px, 15vw, 82px); }
    .site-footer { grid-template-columns: 1fr; text-align: center; }
    .site-footer .brand { justify-self: center; }
    .site-footer > div { justify-self: center; }
    .field-row { grid-template-columns: 1fr; }

    .mobile-dock {
        position: fixed;
        right: 10px;
        bottom: calc(9px + env(safe-area-inset-bottom));
        left: 10px;
        z-index: 95;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        padding: 6px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 19px;
        background: rgba(10,13,18,.9);
        box-shadow: 0 14px 38px rgba(0,0,0,.38);
        backdrop-filter: blur(16px) saturate(1.12);
    }

    .mobile-dock a {
        display: grid;
        min-width: 0;
        min-height: 50px;
        place-items: center;
        align-content: center;
        gap: 3px;
        border-radius: 14px;
        color: rgba(255,255,255,.58);
    }

    .mobile-dock a[aria-current="page"] { background: rgba(255,213,27,.1); color: var(--yellow); }
    .mobile-dock span { font-size: 17px; line-height: 1; }
    .mobile-dock small { overflow: hidden; font-size: 9px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

    .mobile-lite .particle-field,
    .mobile-lite .lidar-field,
    .mobile-lite .energy-tunnel,
    .mobile-lite .chromatic-orb,
    .mobile-lite .velocity-flare,
    .mobile-lite .signal-shards,
    .mobile-lite .scanline,
    .mobile-lite .stage-noise { display: none; }
    .mobile-lite .stage-bg__video { display: none; }
    .mobile-lite .stage-bg__aurora { opacity: .22; filter: blur(46px); }
    .mobile-lite .system-frame { opacity: .46; }
    .mobile-lite .latest-project__atmosphere { opacity: .42; }
    .mobile-lite .latest-card { box-shadow: 0 24px 60px rgba(0,0,0,.48); }
    .story-player.is-gallery { width: calc(100vw - 20px); height: min(82svh, 720px); border-radius: 18px; }
}

@media (max-width: 520px) {
    .brand__type strong { font-size: 14px; }
    .topbar__cta { font-size: 10px; }
    .scene--intro { align-items: flex-end; padding-bottom: 96px; }
    .intro-copy h1 { margin-top: 15px; }
    .intro-actions .button { width: 100%; }
    .portal-copy--left { max-width: 210px; }
    .portal-copy--right { top: 86px; }
    .scene-heading--services, .scene-heading--stories { max-width: calc(100% - 56px); }
    .story-player { height: min(84vh, 690px); }
    .contact-form { padding: 24px 20px; }
    .contact-links a { display: grid; gap: 4px; }
    .contact-links strong { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    .particle-field { display: none; }
    .experience { height: auto; min-height: 0; }
    .experience__sticky { position: relative; height: auto; overflow: visible; }
    .stage-bg { position: fixed; height: 100vh; }
    .scene { position: relative; min-height: 100vh; opacity: 1 !important; visibility: visible; transform: none !important; }
    .scene--portal { display: grid; }
    .scene--services, .scene--stories { display: block; min-height: auto; padding-top: 130px; }
    .scene-heading { position: relative; top: auto; left: auto; }
    .service-cluster, .story-deck { position: relative; inset: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
    .service-card, .story-card { position: relative; top: auto; left: auto; width: 100%; opacity: 1 !important; transform: none !important; }
    .scene-note, .scene-link { position: relative; left: auto; bottom: auto; display: inline-flex; margin-top: 28px; }
    .chapter-meter, .scroll-cue { display: none; }
    .latest-project { height: auto; min-height: 0; padding: 130px 0 80px; }
    .latest-project__sticky { position: relative; height: auto; min-height: 0; overflow: visible; }
    .latest-project__head { position: relative; top: auto; display: block; margin: 0 var(--page-pad) 36px; }
    .latest-project__head > p { width: min(700px,100%); margin-top: 20px; }
    .latest-project__viewport { position: relative; inset: auto; overflow-x: auto; perspective: none; }
    .latest-project__track { position: relative; inset: auto; display: flex; width: max-content; gap: 18px; padding: 0 var(--page-pad) 24px; }
    .latest-card, .latest-card--wide { position: relative; top: auto; left: auto; width: min(74vw,420px); height: 60vh; min-height: 480px; opacity: 1 !important; transform: none !important; }
    .latest-project__footer, .latest-project__word { display: none; }
}

@media (prefers-reduced-motion: reduce) and (max-width: 820px) {
    .scene--portal { display: block; min-height: 100vh; }
    .service-cluster, .story-deck { grid-template-columns: 1fr; }
}
