/* ============================================================
   Advertice — design tokens
   ============================================================ */
:root {
  --bg: #0A0B0D;
  --panel: #111316;
  --panel-2: #16191d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ECEDEE;
  --muted: #8A9098;
  --muted-2: #5c636b;

  --accent: #2E857A;
  --accent-bright: #3DA493;
  --accent-glow: rgba(46, 133, 122, 0.35);

  /* warm secondary — About section only */
  --warm-bg: #14110e;
  --warm-panel: #1c1813;
  --warm-tint: #c9b79e;

  --font-display: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
em { font-style: normal; color: var(--accent-bright); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

/* Keyboard focus — visible accent ring. Only fires for keyboard nav (focus-visible),
   so it never shows for mouse users (who also have the custom cursor hiding cursor:none). */
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }
.modal__close:focus-visible { outline-offset: 2px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ============================================================
   Logo mark
   ============================================================ */
.mark { width: 100%; height: auto; color: var(--accent); }
.mark--sm { width: 26px; }

/* ============================================================
   Scroll progress
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--border); z-index: 90;
}
.scroll-progress__bar {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__word { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 0.7rem; --pad-x: 1.2rem;
  position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: #04130f; background: var(--accent);
  border-radius: 999px; border: 1px solid var(--accent-bright);
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent-bright); transform: translateY(101%);
  transition: transform 0.35s var(--ease);
}
.btn:hover { box-shadow: 0 10px 40px -8px var(--accent-glow); }
.btn:hover::after { transform: translateY(0); }
.btn--lg { --pad-y: 1rem; --pad-x: 1.8rem; font-size: 1.05rem; }
.btn--nav { --pad-y: 0.55rem; --pad-x: 1rem; font-size: 0.85rem; }

/* ============================================================
   Section shell + shared type
   ============================================================ */
/* Sections are translucent so the WebGL network persists behind the whole page */
.section { position: relative; padding-block: clamp(5rem, 12vh, 9rem); z-index: 2;
  background: rgba(7, 16, 14, 0.34); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  border-top: 1px solid rgba(255, 255, 255, 0.05); }
.section[data-theme="dark"] { background: rgba(9, 16, 18, 0.40); }
.section[data-theme="warm"] { background: rgba(22, 18, 14, 0.40); }
/* keep text crisp over the brighter network */
.section :is(h1, h2, h3, h4, p, li, blockquote) { text-shadow: 0 1px 18px rgba(3, 10, 9, 0.55); }
/* hero + final fully clear so the scene reads at full strength */
.hero--3d, .final { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-top: 0; }
/* sections size to their content (natural flow, no big empty gaps); text reveals on scroll */
.eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.eyebrow--accent { color: var(--accent-bright); }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); max-width: 16ch; margin-bottom: 2.5rem; }

/* reveal (only active when html.anim) */
html.anim .reveal { opacity: 0; transform: translateY(28px); }

/* ============================================================
   1 · Hero
   ============================================================ */
.hero { min-height: 100svh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(46,133,122,0.28), transparent 70%),
    radial-gradient(35% 35% at 72% 60%, rgba(61,164,147,0.16), transparent 70%),
    radial-gradient(45% 45% at 50% 90%, rgba(46,133,122,0.12), transparent 70%);
  filter: blur(20px);
  animation: meshDrift 24s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.15); }
}
.hero__inner { position: relative; z-index: 2; max-width: 920px; }
.hero__mark { width: clamp(96px, 16vw, 168px); margin: 0 auto 2.2rem; }
.hero__title {
  font-size: clamp(2.4rem, 7vw, 5.4rem); font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.line { display: block; overflow: hidden; }
.line > span { display: block; }
.hero__sub { max-width: 60ch; margin: 0 auto 2.4rem; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); }

.hero__scrollcue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scrollcue-line { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.hero__scrollcue-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--accent-bright); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(300%);} }

/* film grain */
.grain {
  position: absolute; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   2 · Problem
   ============================================================ */
.problem__lead { font-size: clamp(3rem, 11vw, 9rem); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 3rem; }
.line--xl { line-height: 0.95; }
.problem__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.problem__copy { font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--text); }
.problem__list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.problem__list li {
  font-size: 1.05rem; color: var(--muted); padding-left: 1.6rem; position: relative;
  border-left: 1px solid var(--border); padding-block: 0.4rem;
}
.problem__list li::before { content: "—"; position: absolute; left: 0.6rem; color: var(--accent); }

/* ============================================================
   3 · Approach / steps
   ============================================================ */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.step:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-family: var(--font-mono); color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }
.step__title { font-size: 1.5rem; margin: 0.8rem 0 0.6rem; }
.step__copy { color: var(--muted); }

/* ============================================================
   4 · METIS
   ============================================================ */
.metis__intro { max-width: 62ch; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.35rem); margin-bottom: 3rem; }
.metis__intro em { color: var(--accent-bright); }
.metis__stage { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.25rem; align-items: stretch; margin-bottom: 3rem; }

.terminal { background: #0c0e10; border: 1px solid var(--border-strong); border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }
.terminal__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); background: var(--panel-2); }
.terminal__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--muted-2); }
.terminal__bar .dot:first-child { background: #e0635e; }
.terminal__bar .dot:nth-child(2) { background: #e0b14e; }
.terminal__bar .dot:nth-child(3) { background: var(--accent-bright); }
.terminal__title { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); margin-left: 0.5rem; }
.terminal__body { font-family: var(--font-mono); font-size: clamp(0.74rem, 1.2vw, 0.86rem); line-height: 1.85; padding: 1.25rem; min-height: 320px; white-space: pre-wrap; color: var(--text); }
.terminal__body .t-prompt { color: var(--accent-bright); }
.terminal__body .t-arrow { color: var(--muted); }
.terminal__body .t-ok { color: var(--accent-bright); }
.terminal__body .t-cursor { display: inline-block; width: 8px; height: 1.05em; background: var(--accent-bright); vertical-align: -0.18em; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.flow { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); display: grid; place-items: center; padding: 1.5rem; }
.flow__svg { width: 100%; max-width: 360px; }
.flow__links path { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0.5; }
.flow__nodes rect { fill: var(--panel-2); stroke: var(--border-strong); stroke-width: 1; }
.flow__nodes .node.is-on rect { stroke: var(--accent); fill: rgba(46,133,122,0.12); }
.flow__nodes text { fill: var(--text); font-family: var(--font-mono); font-size: 12px; text-anchor: middle; }

.metis__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.metis__point { border-top: 1px solid var(--border); padding-top: 1.2rem; }
.metis__point h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.metis__point p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   5 · Proof
   ============================================================ */
.proof { text-align: center; }
.proof__inner { display: grid; place-items: center; }
.proof__stat { display: flex; align-items: flex-start; justify-content: center; gap: 0.2rem; line-height: 1; }
.proof__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 22vw, 18rem); letter-spacing: -0.05em; background: linear-gradient(180deg, #fff, var(--accent-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof__unit { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 7vw, 5rem); color: var(--accent-bright); margin-top: 0.4em; }
.proof__label { font-size: clamp(1.2rem, 3vw, 2rem); font-family: var(--font-display); font-weight: 600; margin-top: 0.5rem; }
.proof__copy { max-width: 52ch; margin: 1.4rem auto 0; color: var(--muted); }

/* ============================================================
   6 · How it works
   ============================================================ */
.how__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.how__card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.how__card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.how__idx { font-family: var(--font-mono); color: var(--accent); font-size: 0.8rem; }
.how__card h3 { font-size: 1.3rem; margin: 0.7rem 0 0.6rem; }
.how__card p { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   7 · Operator (warm)
   ============================================================ */
.operator { background: transparent; }
.operator__inner { max-width: 760px; margin-inline: auto; }
.operator__photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius); border: 1px solid rgba(201,183,158,0.18);
  background: linear-gradient(160deg, var(--warm-panel), #100d0a);
  display: grid; place-items: center; color: rgba(201,183,158,0.5);
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em;
}
.operator .eyebrow { color: var(--warm-tint); }
.operator .eyebrow::before { background: var(--warm-tint); }
.operator__title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.operator__copy { color: #d9cdbb; font-size: 1.08rem; margin-bottom: 1.1rem; max-width: 52ch; }
.operator__quote {
  margin-top: 2rem; padding: 1.5rem 1.75rem; border-left: 2px solid var(--warm-tint);
  background: rgba(201,183,158,0.05); border-radius: 0 12px 12px 0;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; color: #f0e7d8; font-style: italic;
}

/* ============================================================
   8 · Final CTA
   ============================================================ */
.final { text-align: center; overflow: hidden; }
.final__bg { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; opacity: 0.06; }
.final__mark { width: min(70vw, 620px); }
.final__inner { position: relative; z-index: 2; display: grid; place-items: center; }
.final__title { font-size: clamp(2rem, 5.5vw, 4rem); max-width: 18ch; margin-bottom: 1.2rem; }
.final__sub { color: var(--muted); max-width: 48ch; margin-bottom: 2.4rem; font-size: 1.1rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding-block: 2.5rem; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 600; }
.footer__legal { color: var(--muted-2); font-size: 0.85rem; }
.footer__top { color: var(--muted); font-size: 0.85rem; transition: color 0.2s; }
.footer__top:hover { color: var(--accent-bright); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .problem__grid,
  .metis__stage,
  .operator__inner { grid-template-columns: 1fr; }
  .steps,
  .metis__points,
  .how__track { grid-template-columns: 1fr 1fr; }
  .operator__media { max-width: 360px; }
}
@media (max-width: 560px) {
  .steps,
  .metis__points,
  .how__track { grid-template-columns: 1fr; }
  .nav__word { display: none; }
  .terminal__body { min-height: 260px; }
}

/* ============================================================
   WebGL backdrop + preloader + 3D hero (everswap-style)
   ============================================================ */
:root { --bg: #07100e; } /* dark teal base to match the 3D fog */

html.is-loading, html.is-loading body { height: 100%; overflow: hidden; }

.webgl-wrap {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* diamond, expanded by JS on reveal */
}
#webgl { display: block; width: 100%; height: 100%; }
.webgl-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(135% 95% at 50% 12%, transparent 60%, rgba(5,16,14,0.32) 100%),
    linear-gradient(180deg, rgba(5,16,14,0.04), rgba(5,16,14,0.28));
}
.webgl-wrap .grain { position: absolute; inset: -50%; opacity: 0.04; }

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; gap: 1.4rem;
  grid-auto-flow: row; background: #05100e;
}
.preloader__mark { width: clamp(64px, 9vw, 104px); animation: prePulse 2.4s var(--ease) infinite; }
@keyframes prePulse { 0%,100% { opacity: 0.55; transform: scale(0.97); } 50% { opacity: 1; transform: scale(1.02); } }
.preloader__count { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.5rem, 7vw, 4.5rem); color: var(--text); letter-spacing: -0.03em; }
.preloader__pct { color: var(--accent-bright); font-size: 0.5em; vertical-align: super; margin-left: 0.1em; }
.preloader__word { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.5em; color: var(--muted-2); text-indent: 0.5em; }

/* Custom cursor (mouse devices only — enabled via .has-cursor by JS) */
.cursor { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; display: none; will-change: transform; }
html.has-cursor .cursor { display: block; }
html.has-cursor * { cursor: none !important; }
.cursor-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 10px 1px rgba(63, 174, 155, 0.7); }
.cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(63, 174, 155, 0.55);
  transition: width 0.28s var(--ease), height 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease), opacity 0.28s var(--ease);
}
.cursor-ring.is-hover {
  width: 72px; height: 72px; border-color: transparent;
  background: radial-gradient(circle, rgba(63, 174, 155, 0.32), rgba(46, 133, 122, 0.04) 70%);
}
.cursor-ring.is-down { width: 26px; height: 26px; border-color: var(--accent-bright); }

/* When the booking modal is open, hand control back to the native cursor */
html.modal-open .cursor { display: none !important; }
html.has-cursor.modal-open * { cursor: auto !important; }
html.modal-open, html.modal-open body { overflow: hidden; }

/* ============================================================
   Booking modal (Calendly)
   ============================================================ */
/* hidden via visibility (not display) so the embedded calendar can preload in the background */
.modal { position: fixed; inset: 0; z-index: 9000; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.32s var(--ease), visibility 0.32s var(--ease); }
.modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 10, 9, 0.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal__panel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(960px, 94vw); height: min(86vh, 820px);
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--panel); border: 1px solid var(--border-strong); border-radius: 18px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.85);
}
.modal.is-open .modal__panel { animation: modalIn 0.4s var(--ease); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translate(-50%, -46%) scale(0.98); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.modal__head { display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border); }
.modal__head .mark { width: 22px; }
.modal__head span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.modal__close {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: transparent; color: var(--text);
  font-size: 1.3rem; line-height: 1; display: grid; place-items: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.modal__close:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--accent); transform: rotate(90deg); }
.modal__body { flex: 1; min-height: 0; background: #0f1518; }
.calendly-embed { width: 100%; height: 100%; }
.calendly-embed iframe { width: 100% !important; height: 100% !important; border: 0; }

/* Hero — tall, scroll-jacked over the 3D scene */
.hero--3d { min-height: 100svh; display: grid; place-items: center; padding: 0; overflow: visible; }
.hero__sticky {
  position: static; width: 100%; min-height: 100svh; display: grid; place-items: center; text-align: center;
}
.hero__overlay { position: relative; z-index: 2; max-width: 940px; }
.hero__tag { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 1.6rem; }
.hero--3d .hero__title { font-size: clamp(2.1rem, 5.6vw, 4.4rem); font-weight: 700; letter-spacing: -0.03em; max-width: 18ch; margin: 0 auto 1.4rem; text-shadow: 0 2px 40px rgba(0,0,0,0.5); }
.hero--3d .hero__sub { max-width: 52ch; margin: 0 auto 2.2rem; color: var(--text); opacity: 0.82; font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero__cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
}
.hero__cue-line { width: 1px; height: 46px; background: linear-gradient(var(--accent-bright), transparent); position: relative; overflow: hidden; }
.hero__cue-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--accent-bright); animation: cue 1.8s var(--ease) infinite; }

/* Proof unit (£ … M) sits beside the numeral */
.proof__stat { gap: 0.05em; }
.proof__unit { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 9vw, 7rem); color: var(--accent-bright); align-self: center; }

/* Final CTA over the 3D scene */
.final { text-align: center; min-height: 100svh; display: grid; place-items: center; }
.final__inner { display: grid; place-items: center; }

/* ============================================================
   Reduced motion — everything visible, no transforms, no 3D
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  html.is-loading, html.is-loading body { overflow: auto; height: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html.anim .reveal { opacity: 1 !important; transform: none !important; }
  .preloader { display: none !important; }
  .webgl-wrap { clip-path: none; background: radial-gradient(120% 90% at 50% 120%, #14463c, #07100e 70%); }
  .hero--3d { height: auto; min-height: 100svh; display: grid; place-items: center; }
  .hero__sticky { position: static; height: auto; min-height: 100svh; }
}
