/* ============================================================
   $Q4 — THE COIN OF THE SEASON
   BLACK × CHROME × RADIOACTIVE GREEN
   ============================================================ */

:root {
  --black: #000000;
  --elevated: #050505;
  --panel: #090909;
  --q4-green: #B8DF03;
  --q4-green-rgb: 184, 223, 3;
  --q4-bright: #D0FF14;
  --chrome: #C9CDD1;
  --text: #E9ECE4;
  --text-dim: #8B9186;
  --text-faint: #4A4F46;
  --line: rgba(var(--q4-green-rgb), .14);
  --line-dim: rgba(255, 255, 255, .06);

  --font-d: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-m: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --nav-h: 64px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-inout: cubic-bezier(.83, 0, .17, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  color-scheme: dark;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--q4-green-rgb), .35) #000;
}
html, body { background: var(--black); }

body {
  font-family: var(--font-d);
  font-weight: 400;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
body.lock { overflow: hidden; }

::selection { background: var(--q4-green); color: #000; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(var(--q4-green-rgb), .3); border-radius: 3px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--text); }
em { font-style: normal; color: var(--q4-green); }

:focus-visible {
  outline: 1px solid var(--q4-green);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  padding: 10px 16px; background: var(--q4-green); color: #000;
  font-size: 11px; letter-spacing: .14em; transition: top .2s;
}
.skip-link:focus-visible { top: 12px; }

/* ---------- helpers ---------- */
.mono {
  font-family: var(--font-m);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.container { width: min(1600px, 92vw); margin-inline: auto; }
.center { text-align: center; }
.green { color: var(--q4-green); }
.micro { font-size: 10px; color: var(--text-faint); letter-spacing: .22em; }

.sec-tag {
  font-size: 10px;
  color: rgba(var(--q4-green-rgb), .75);
  letter-spacing: .3em;
  margin-bottom: 28px;
}
.sec-tag::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: rgba(var(--q4-green-rgb), .5);
  vertical-align: middle;
  margin-right: 12px;
}

.sec-title {
  font-size: clamp(1.9rem, 4.3vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 600;
  text-wrap: balance;
  margin-bottom: 36px;
}
.sec-title span { display: block; }
.sec-title.huge { font-size: clamp(2.2rem, 5.4vw, 5.2rem); line-height: .94; letter-spacing: -.045em; }
.sec-title .green { text-shadow: 0 0 60px rgba(var(--q4-green-rgb), .35); }

.body-text {
  font-size: clamp(.92rem, 1.1vw, 1.08rem);
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 56ch;
}
.body-text.center { margin-inline: auto; }

/* ============================================================
   FIXED LAYERS
   ============================================================ */
#webgl {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
}
#webgl canvas { display: block; width: 100%; height: 100%; }

.bg-ambience {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: .8;
  background:
    radial-gradient(90vmax 70vmax at 72% 30%, rgba(var(--q4-green-rgb), .05), transparent 60%),
    radial-gradient(70vmax 70vmax at 15% 85%, rgba(var(--q4-green-rgb), .03), transparent 55%);
  transition: opacity 1.2s var(--ease-out), background 1.2s var(--ease-out);
  mix-blend-mode: screen;
}
body[data-zone="void"] .bg-ambience { opacity: .25; }
body[data-zone="grid"] .bg-ambience { opacity: .55; }
body[data-zone="editorial"] .bg-ambience { opacity: .65; }
body[data-zone="orbital"] .bg-ambience { opacity: .7; }
body[data-zone="particles"] .bg-ambience { opacity: .9; }

.bg-grid {
  position: fixed; inset: -2px; z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--q4-green-rgb), .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--q4-green-rgb), .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(85vmax 85vmax at 50% 40%, rgba(0,0,0,.9), transparent 75%);
  -webkit-mask-image: radial-gradient(85vmax 85vmax at 50% 40%, rgba(0,0,0,.9), transparent 75%);
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
body[data-zone="grid"] .bg-grid,
body[data-zone="orbital"] .bg-grid { opacity: 1; }
body[data-zone="editorial"] .bg-grid { opacity: .4; }

.fx-scan {
  position: fixed; inset: 0; z-index: 48;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.014) 0 1px, transparent 1px 3px);
  opacity: .5;
}
.fx-grain {
  position: fixed; inset: -50%; z-index: 49;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grainShift 1.1s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-6%, 4%); }
  50% { transform: translate(4%, -7%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(5%, 6%); }
}
.fx-vignette {
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none;
  background: radial-gradient(120vmax 90vmax at 50% 45%, transparent 55%, rgba(0,0,0,.55) 100%);
}

#flash {
  position: fixed; inset: 0; z-index: 80;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(60vmax 60vmax at 50% 50%, rgba(var(--q4-green-rgb), .95), rgba(var(--q4-green-rgb), .35) 45%, rgba(0, 0, 0, .96) 78%);
}
#shockwave {
  position: fixed; left: 50%; top: 50%; z-index: 81;
  width: 60vmin; height: 60vmin;
  margin: -30vmin 0 0 -30vmin;
  border: 2px solid rgba(var(--q4-green-rgb), .9);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(var(--q4-green-rgb), .5), inset 0 0 60px rgba(var(--q4-green-rgb), .3);
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}
#flash.above { z-index: 96; }
#shockwave.above { z-index: 97; }
#progressLine {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--q4-green-rgb), .9), var(--q4-bright));
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(var(--q4-green-rgb), .6);
}

/* ============================================================
   INTRO
   ============================================================ */
#intro {
  position: fixed; inset: 0; z-index: 95;
  background: var(--black);
  display: grid; place-items: center;
}
#intro.done { display: none; }
.intro-stage { position: relative; text-align: center; }
.intro-q {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.8rem, 12vw, 10.5rem);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--text-faint);
  text-shadow: none;
  will-change: transform, opacity;
}
.intro-q.q4 {
  color: var(--q4-green);
  text-shadow: 0 0 22px rgba(var(--q4-green-rgb), .5), 0 0 70px rgba(var(--q4-green-rgb), .25);
}
.intro-meta {
  font-size: 9px;
  letter-spacing: .5em;
  color: var(--text-faint);
  margin-bottom: 32px;
}
.intro-meta.armed { color: var(--q4-green); }
.intro-char { display: inline-block; will-change: transform, filter, opacity; }
.intro-line {
  margin: 30px auto 0;
  width: 150px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}
.intro-line i {
  position: absolute; inset: 0;
  background: var(--q4-green);
  transform: scaleX(0);
  transform-origin: left center;
}
#shockwave.thin {
  border-width: 1px;
  box-shadow: 0 0 24px rgba(var(--q4-green-rgb), .3);
}
.intro-tag {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(var(--q4-green-rgb), .85);
  letter-spacing: .42em;
  opacity: 0;
}
.intro-skip {
  position: absolute; right: 28px; bottom: 24px;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: .26em;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.08);
  transition: color .25s, border-color .25s;
}
.intro-skip:hover { color: var(--q4-green); border-color: rgba(var(--q4-green-rgb), .4); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: clamp(16px, 3vw, 40px);
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(var(--q4-green-rgb), .12);
  transform: translateY(-100%);
  transition: transform .8s var(--ease-out);
}
.nav.in { transform: translateY(0); }

.nav-logo { display: flex; align-items: baseline; gap: 6px; }
.nav-logo-mark {
  font-weight: 700; font-size: 22px; letter-spacing: -.04em;
  color: var(--text);
  transition: color .3s, text-shadow .3s;
}
.nav-logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--q4-green);
  box-shadow: 0 0 10px rgba(var(--q4-green-rgb), .9);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.nav-logo:hover .nav-logo-mark { color: var(--q4-green); text-shadow: 0 0 24px rgba(var(--q4-green-rgb), .6); }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.nav-links { display: flex; gap: clamp(14px, 2.2vw, 34px); }
.nav-link {
  position: relative;
  font-size: 10px;
  color: var(--text-dim);
  padding: 6px 2px;
  transition: color .3s;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--q4-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 40px; height: 40px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--text);
  transition: transform .35s var(--ease-out), top .35s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* ============================================================
   BUTTONS / CA
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  letter-spacing: .2em;
  padding: 16px 30px;
  overflow: hidden;
  white-space: nowrap;
  transition: color .3s var(--ease-out), border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease-out);
}
.btn:hover::before { transform: translateX(120%); }

.btn-primary {
  background: var(--q4-green);
  color: #000;
  font-weight: 500;
  box-shadow: 0 0 0 rgba(var(--q4-green-rgb), 0);
}
.btn-primary:hover { box-shadow: 0 0 44px rgba(var(--q4-green-rgb), .45); }

.btn-ghost {
  border: 1px solid rgba(var(--q4-green-rgb), .3);
  color: var(--text);
  background: rgba(0, 0, 0, .3);
}
.btn-ghost:hover { border-color: rgba(var(--q4-green-rgb), .8); color: var(--q4-green); }

.btn-buy {
  font-size: 10px;
  padding: 11px 20px;
  background: var(--q4-green);
  color: #000;
  font-weight: 500;
}
.btn-buy:hover { box-shadow: 0 0 30px rgba(var(--q4-green-rgb), .5); }

.ca-row {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 34px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, .6);
  font-size: 11px;
}
.ca-row.center { margin-inline: auto; }
.ca-label { color: rgba(var(--q4-green-rgb), .8); font-size: 10px; }
.ca-value { color: var(--text-dim); letter-spacing: .12em; max-width: 46vw; overflow: hidden; text-overflow: ellipsis; }
.ca-copy {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--q4-green);
  padding: 6px 10px;
  border: 1px solid rgba(var(--q4-green-rgb), .35);
  transition: background .25s, color .25s, box-shadow .25s;
}
.ca-copy:hover { background: rgba(var(--q4-green-rgb), .12); }
.ca-copy.copied { background: var(--q4-green); color: #000; box-shadow: 0 0 24px rgba(var(--q4-green-rgb), .6); }
.ca-copy[disabled] { opacity: .35; pointer-events: none; }

.live-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--q4-green);
  margin-right: 10px;
  box-shadow: 0 0 12px rgba(var(--q4-green-rgb), 1);
  animation: pulseDot 1.8s ease-in-out infinite;
  vertical-align: middle;
}

/* ============================================================
   HERO
   ============================================================ */
.s-hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  z-index: 10;
}
.hero-meta {
  position: absolute; left: clamp(10px, 2vw, 28px); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 42px;
  font-size: 9px; color: var(--text-faint); letter-spacing: .3em;
  writing-mode: vertical-rl;
}
.hero-ghost {
  position: absolute; right: -2vw; top: 50%;
  transform: translateY(-52%);
  font-size: clamp(20rem, 55vw, 58rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--q4-green-rgb), .07);
  user-select: none;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; }
.hero-eyebrow {
  font-size: 10px;
  color: rgba(var(--q4-green-rgb), .9);
  letter-spacing: .32em;
  margin-bottom: 30px;
}
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 600;
  max-width: 16ch;
}
.ht-line.ht-green {
  font-size: clamp(1.2rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -.015em;
  margin-top: 20px;
}
.ht-line { display: block; overflow: hidden; }
.ht-inner { display: inline-block; will-change: transform; }
.ht-green .ht-inner {
  color: var(--q4-green);
  text-shadow: 0 0 80px rgba(var(--q4-green-rgb), .4);
}
.hero-sub {
  margin-top: 30px;
  font-size: clamp(.92rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 52ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-ctas.center { justify-content: center; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  font-size: 9px; letter-spacing: .34em;
  color: var(--text-faint);
}
.hs-arrow { display: inline-block; animation: arrowDrop 1.8s var(--ease-inout) infinite; color: var(--q4-green); }
@keyframes arrowDrop { 0%, 100% { transform: translateY(-2px); opacity: .4; } 50% { transform: translateY(4px); opacity: 1; } }

.portal-zone { height: 130vh; position: relative; z-index: 5; }

/* ============================================================
   THESIS
   ============================================================ */
.s-thesis { position: relative; z-index: 10; padding-block: 16vh 22vh; }
.thesis-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 70px);
  margin-top: clamp(30px, 5vh, 60px);
}
.thesis-punch { font-size: clamp(1rem, 1.3vw, 1.2rem); color: var(--text); line-height: 1.5; }

/* ============================================================
   QUARTERS — SIGNATURE
   ============================================================ */
.s-quarters { position: relative; z-index: 10; }
.q-pin {
  position: relative;
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.q-tag { position: absolute; top: calc(var(--nav-h) + 26px); left: 50%; transform: translateX(-50%); }
.q-stage { position: relative; text-align: center; }
.q-big {
  font-size: clamp(6.5rem, 20vw, 16rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.06em;
  color: #17181A;
  will-change: transform, opacity, filter;
  transition: color .5s, text-shadow .5s;
}
.q-big.lit-1 { color: #33362F; }
.q-big.lit-2 { color: #5A6B1F; text-shadow: 0 0 60px rgba(var(--q4-green-rgb), .18); }
.q-big.lit-3 {
  color: var(--q4-green);
  text-shadow:
    0 0 40px rgba(var(--q4-green-rgb), .9),
    0 0 140px rgba(var(--q4-green-rgb), .55),
    0 0 300px rgba(var(--q4-green-rgb), .3);
}
.q-word {
  margin-top: 18px;
  font-size: clamp(11px, 1.4vw, 15px);
  letter-spacing: .6em;
  color: var(--text-dim);
}
.q-marks {
  position: absolute; bottom: 116px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 34px;
  font-size: 10px; letter-spacing: .2em;
}
.q-marks span { color: var(--text-faint); transition: color .4s, text-shadow .4s; }
.q-marks span.on { color: var(--text-dim); }
.q-marks span.hot { color: var(--q4-green); text-shadow: 0 0 18px rgba(var(--q4-green-rgb), .8); }
.q-line {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  width: max-content; max-width: 92vw;
  text-align: center;
  font-size: 10px; letter-spacing: .26em;
  color: var(--text-faint);
}

/* ============================================================
   CYCLE RING
   ============================================================ */
.s-ring { position: relative; z-index: 10; padding-block: 20vh; }
.ring-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.ring-wrap { max-width: 560px; margin-inline: auto; width: 100%; }
#ringSvg { width: 100%; height: auto; overflow: visible; }
.ring-base { fill: none; stroke: rgba(255,255,255,.05); stroke-width: 1; }
.ring-inner { fill: none; stroke: rgba(255,255,255,.03); stroke-width: 1; }
.ring-ticks line { stroke: rgba(255,255,255,.12); stroke-width: 1; }
.ring-arc {
  fill: none;
  stroke: #1E201E;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke .6s, filter .6s;
}
.ring-arc.trail { stroke: rgba(var(--q4-green-rgb), .3); }
.ring-arc-q4.armed {
  stroke: var(--q4-green);
  filter: drop-shadow(0 0 10px rgba(var(--q4-green-rgb), .7));
}
.ring-label { fill: var(--text-faint); font-size: 10px; text-anchor: middle; dominant-baseline: middle; letter-spacing: .3em; font-family: var(--font-m); }
.ring-label-q4 { fill: var(--text-dim); }
.ring-label-q4.armed { fill: var(--q4-green); filter: drop-shadow(0 0 6px rgba(var(--q4-green-rgb), .8)); }
.ring-pulse {
  fill: var(--q4-bright);
  filter: drop-shadow(0 0 8px rgba(var(--q4-green-rgb), 1));
}
.ring-center {
  fill: var(--text);
  font-family: var(--font-d);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -.04em;
}
.ring-center-sub { fill: var(--text-faint); font-size: 9px; letter-spacing: .4em; }

/* ============================================================
   SEASON — CHROME FIGURE
   ============================================================ */
.s-season {
  position: relative; z-index: 10;
  min-height: 110vh;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  align-items: center;
  overflow: hidden;
  padding-block: 8vh;
}
.season-art {
  position: relative;
  height: min(105vh, 1000px);
  margin-left: -4vw;
}
.season-art img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
  filter: contrast(1.06) saturate(1.1) brightness(.98);
  will-change: transform;
}
.season-rim {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 42% at 52% 46%, rgba(var(--q4-green-rgb), .16), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.season-copy { position: relative; padding-right: clamp(16px, 5vw, 80px); }
.season-list { margin: 34px 0; display: grid; gap: 12px; }
.season-list li {
  font-size: 11px; letter-spacing: .3em;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}
.season-list li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--q4-green);
}

/* ============================================================
   MARKET TERMINAL
   ============================================================ */
.s-market { position: relative; z-index: 10; padding-block: 18vh 0; }
.term-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-dim);
  border: 1px solid var(--line-dim);
  margin-top: clamp(24px, 4vh, 48px);
}
.term-cell {
  background: rgba(5, 5, 5, .88);
  padding: clamp(16px, 2vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.term-cell:hover { background: rgba(9, 9, 9, .95); }
.term-cell::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(var(--q4-green-rgb), .0), rgba(var(--q4-green-rgb), .5), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}
.term-cell:hover::after { transform: translateX(0); }
.term-cell.wide { grid-column: span 3; }
.term-k { font-size: 9px; color: var(--text-faint); letter-spacing: .28em; }
.term-v {
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  font-weight: 600; letter-spacing: -.02em;
  margin-top: auto;
}
.term-status { color: var(--q4-green); text-shadow: 0 0 24px rgba(var(--q4-green-rgb), .5); }
.term-cell canvas { width: 100%; height: 80px; margin-top: auto; }

.ticker {
  margin-top: 12vh;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0,0,0,.6);
}
.ticker-row {
  display: flex;
  width: max-content;
  padding-block: 14px;
  animation: tickerMove 30s linear infinite;
}
.ticker-group {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(var(--q4-green-rgb), .75);
  white-space: nowrap;
}
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ============================================================
   CAPITAL
   ============================================================ */
.s-capital { position: relative; z-index: 10; padding-block: 20vh 14vh; overflow: hidden; }
.capital-grid {
  display: grid;
  grid-template-columns: minmax(300px, 44fr) minmax(300px, 56fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.capital-art {
  position: relative;
  aspect-ratio: 1;
  max-width: 720px;
  justify-self: end;
  width: 100%;
  border: 1px solid rgba(255,255,255,.05);
}
.capital-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.14) saturate(.8);
  transition: filter .4s;
}
.capital-art img.cap-lit {
  filter: brightness(1.05) contrast(1.08) saturate(1.12);
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  --mx: 50%; --my: 50%;
  -webkit-mask-image: radial-gradient(190px 190px at var(--mx) var(--my), rgba(0,0,0,1) 0%, rgba(0,0,0,.85) 45%, transparent 72%);
  mask-image: radial-gradient(190px 190px at var(--mx) var(--my), rgba(0,0,0,1) 0%, rgba(0,0,0,.85) 45%, transparent 72%);
  opacity: 0;
  transition: opacity .35s;
}
.capital-art:hover .cap-lit, .capital-art.touch-lit .cap-lit { opacity: 1; }
.capital-line {
  position: absolute; left: 0; right: 0; bottom: 4vh;
  width: 100%; height: clamp(90px, 14vw, 240px);
  pointer-events: none;
}
#capitalPolyline {
  stroke: var(--q4-green);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(var(--q4-green-rgb), .7));
}

/* ============================================================
   CLOCK
   ============================================================ */
.s-clock { position: relative; z-index: 10; padding-block: 22vh; }
.clock-box {
  max-width: 900px;
  text-align: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(var(--q4-green-rgb), .05), transparent 60%),
    rgba(3, 3, 3, .8);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.clock-box .sec-tag { justify-content: center; }
.clock-mode {
  font-size: 11px; letter-spacing: .5em;
  color: var(--q4-green);
  margin-bottom: 34px;
  text-shadow: 0 0 24px rgba(var(--q4-green-rgb), .5);
}
.hud-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid rgba(var(--q4-green-rgb), .55);
}
.hc-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.hc-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.hc-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.hc-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.clock-cells {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 18px);
  flex-wrap: wrap;
}
.c-cell {
  min-width: clamp(86px, 11vw, 150px);
  padding: clamp(16px, 2.2vw, 26px) clamp(10px, 1.6vw, 22px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 40%),
    radial-gradient(120% 100% at 50% 120%, rgba(var(--q4-green-rgb), .07), transparent 60%),
    rgba(0, 0, 0, .75);
  border: 1px solid rgba(var(--q4-green-rgb), .16);
  box-shadow: inset 0 0 30px rgba(0,0,0,.8), 0 0 24px rgba(var(--q4-green-rgb), .06);
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center;
}
.c-val {
  font-family: var(--font-m);
  font-size: clamp(1.5rem, 3.4vw, 2.9rem);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 28px rgba(var(--q4-green-rgb), .45);
  white-space: nowrap;
}
.c-unit { font-size: 8px; letter-spacing: .34em; color: var(--text-faint); }
.c-sep {
  align-self: center;
  font-family: var(--font-m);
  color: rgba(var(--q4-green-rgb), .5);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  animation: pulseDot 2s ease-in-out infinite;
}
.clock-ticks {
  display: flex;
  gap: 3px;
  margin: 34px auto 0;
  width: min(640px, 88%);
  height: 12px;
}
.clock-ticks span {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  transform: skewX(-14deg);
  transition: background .4s, box-shadow .4s;
}
.clock-ticks span.on {
  background: linear-gradient(180deg, var(--q4-bright), rgba(var(--q4-green-rgb), .65));
  box-shadow: 0 0 10px rgba(var(--q4-green-rgb), .6);
}
.clock-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--text-faint);
}
.clock-meta #clockSub { color: var(--text-dim); }

/* ============================================================
   GLOBAL
   ============================================================ */
.s-global {
  position: relative; z-index: 10;
  min-height: 160vh;
  padding-top: 16vh;
  display: flex; flex-direction: column; align-items: center;
}
.globe-hit {
  position: relative;
  width: min(72vmin, 700px);
  height: min(72vmin, 700px);
  margin-top: 4vh;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
}
.globe-hit:active { cursor: grabbing; }
.city-labels { position: fixed; inset: 0; pointer-events: none; z-index: 4; opacity: 0; transition: opacity .6s; }
.city-label {
  position: absolute;
  font-size: 9px; letter-spacing: .26em;
  color: rgba(var(--q4-green-rgb), .8);
  text-shadow: 0 0 12px rgba(0, 0, 0, .9);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition: opacity .3s;
}
.city-label::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--q4-green);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(var(--q4-green-rgb), 1);
}
.global-note { margin-top: 6vh; margin-bottom: 10vh; }

/* ============================================================
   TOKENOMICS
   ============================================================ */
.s-tokenomics {
  position: relative; z-index: 10;
  min-height: 150vh;
  padding-block: 18vh;
  display: flex; flex-direction: column; align-items: center;
}
.tok-stage {
  position: relative;
  width: min(86vw, 780px);
  height: min(86vw, 780px);
  margin-top: 6vh;
  --orbit-r: calc(min(86vw, 780px) / 2 - 70px);
}
.tok-core {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.tok-core-text {
  display: block;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -.05em;
  color: var(--q4-green);
  text-shadow:
    0 0 50px rgba(var(--q4-green-rgb), .6),
    0 0 160px rgba(var(--q4-green-rgb), .35);
}
.tok-core-sub { display: block; margin-top: 14px; font-size: 9px; color: var(--text-faint); letter-spacing: .34em; }
.tok-orbit {
  position: absolute; inset: 0;
  animation: orbitSpin 70s linear infinite;
}
.tok-orbit.paused, .tok-orbit.paused .tok-chip-inner { animation-play-state: paused; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.tok-chip {
  position: absolute; left: 50%; top: 50%;
  transform: rotate(calc(var(--i) * 60deg)) translateX(var(--orbit-r));
}
.tok-chip-inner {
  transform: rotate(calc(var(--i) * -60deg));
  animation: chipCounter 70s linear infinite;
  display: flex; flex-direction: column; gap: 10px;
  min-width: 150px;
  padding: 18px 20px;
  margin: -44px 0 0 -75px;
  background: rgba(5, 5, 5, .9);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
@keyframes chipCounter {
  from { transform: rotate(calc(var(--i) * -60deg)); }
  to { transform: rotate(calc(var(--i) * -60deg - 360deg)); }
}
.tok-chip-inner:hover {
  border-color: rgba(var(--q4-green-rgb), .6);
  box-shadow: 0 0 40px rgba(var(--q4-green-rgb), .18);
}
.tok-v { font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; }
.tok-v.tba { color: var(--text-faint); font-weight: 400; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.s-community { position: relative; z-index: 10; padding-block: 20vh; }
.channels { margin-top: clamp(30px, 5vh, 60px); border-top: 1px solid var(--line); }
.channel {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: clamp(26px, 4vh, 44px) 10px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding-left .4s var(--ease-out);
}
.channel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(var(--q4-green-rgb), .09), transparent 55%);
  transform: translateX(-101%);
  transition: transform .6s var(--ease-out);
}
.channel:hover { padding-left: 26px; }
.channel:hover::before { transform: translateX(0); }
.ch-idx { font-size: 10px; color: var(--text-faint); letter-spacing: .3em; }
.ch-name {
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-weight: 600; letter-spacing: -.03em;
  transition: color .3s, text-shadow .3s;
}
.channel:hover .ch-name { color: var(--q4-green); text-shadow: 0 0 40px rgba(var(--q4-green-rgb), .4); }
.ch-action { font-size: 10px; color: var(--text-dim); letter-spacing: .26em; display: flex; align-items: center; gap: 10px; }
.ch-arrow { display: inline-block; transition: transform .35s var(--ease-out); color: var(--q4-green); }
.channel:hover .ch-arrow { transform: translateX(8px); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.s-manifesto { position: relative; z-index: 10; }
.mani-stage {
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 26px;
  text-align: center;
  padding-inline: 5vw;
}
.mani-line {
  font-size: clamp(11px, 1.5vw, 15px);
  letter-spacing: .5em;
  color: var(--text-dim);
}
.mani-big {
  font-size: clamp(2.2rem, 5.6vw, 5.4rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.05em;
  margin-block: 3vh;
}
.mani-big .green { text-shadow: 0 0 90px rgba(var(--q4-green-rgb), .5); }
.mani-brand { font-size: 11px; letter-spacing: .4em; color: var(--text-dim); }

/* ============================================================
   WATCH — PORTRAIT
   ============================================================ */
.s-watch {
  position: relative; z-index: 10;
  min-height: 130vh;
  display: grid; place-items: center;
  overflow: hidden;
}
.watch-art {
  position: absolute; inset: 0;
  --eyeLx: 36%; --eyeLy: 45%; --eyeRx: 62%; --eyeRy: 44%;
}
.watch-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  mix-blend-mode: screen;
  filter: brightness(.68) contrast(1.1) saturate(1.05);
  will-change: transform, filter;
}
.watch-eyes {
  position: absolute; inset: 0;
  background:
    radial-gradient(5vmax 3.2vmax at var(--eyeLx) var(--eyeLy), rgba(var(--q4-green-rgb), .55), transparent 70%),
    radial-gradient(5vmax 3.2vmax at var(--eyeRx) var(--eyeRy), rgba(var(--q4-green-rgb), .55), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
}
.watch-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.92), transparent 26%, transparent 62%, rgba(0,0,0,.94)),
    radial-gradient(120% 90% at 50% 50%, transparent 50%, rgba(0,0,0,.72));
}
.watch-copy { position: relative; z-index: 3; text-align: center; }
.watch-copy .sec-tag { justify-content: center; }
.watch-copy .sec-title { text-shadow: 0 6px 40px rgba(0,0,0,.9); }

/* ============================================================
   ENTER
   ============================================================ */
.s-enter {
  position: relative; z-index: 10;
  min-height: 110vh;
  display: grid; place-items: center;
  text-align: center;
  padding-block: 16vh;
}
.enter-title {
  font-size: clamp(3rem, 9vw, 8.6rem);
  line-height: .84;
  letter-spacing: -.06em;
  font-weight: 700;
  margin-bottom: 5vh;
}
.enter-title span { display: block; }
.enter-title .green {
  text-shadow:
    0 0 60px rgba(var(--q4-green-rgb), .65),
    0 0 220px rgba(var(--q4-green-rgb), .35);
}
.enter-inner .body-text { margin-bottom: 4vh; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 10;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .85);
  padding-block: 60px 34px;
}
.foot-grid {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 30px;
}
.foot-logo {
  font-size: 30px; font-weight: 700; letter-spacing: -.05em;
  color: var(--q4-green);
  text-shadow: 0 0 30px rgba(var(--q4-green-rgb), .4);
  display: block; margin-bottom: 8px;
}
.foot-brand p { font-size: 9px; color: var(--text-faint); letter-spacing: .3em; }
.foot-links { display: flex; gap: 30px; font-size: 10px; }
.foot-links a { color: var(--text-dim); letter-spacing: .26em; transition: color .3s; }
.foot-links a:hover { color: var(--q4-green); }
.foot-copy { font-size: 10px; color: var(--text-faint); letter-spacing: .2em; }
.foot-legal {
  margin-top: 44px;
  font-size: 9px;
  line-height: 2;
  letter-spacing: .16em;
  color: var(--text-faint);
  max-width: 900px;
}

/* ============================================================
   FLOATING UTILITIES
   ============================================================ */
.ca-pill {
  position: fixed; left: 24px; bottom: 24px; z-index: 55;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  font-size: 10px;
  background: rgba(0, 0, 0, .72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  pointer-events: none;
}
.ca-pill.in { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ca-pill .ca-value { max-width: 180px; }

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, .88);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-cta .btn { flex: 1; padding: 15px 10px; }
.mc-ca {
  font-size: 10px; letter-spacing: .2em;
  color: var(--q4-green);
  padding: 0 22px;
  border: 1px solid rgba(var(--q4-green-rgb), .35);
}

/* ============================================================
   CURSOR
   ============================================================ */
#cursor { display: none; }
@media (pointer: fine) {
  body.cursor-on, body.cursor-on a, body.cursor-on button { cursor: none; }
  body.cursor-on #cursor { display: block; }
  #cursor { position: fixed; left: 0; top: 0; z-index: 120; pointer-events: none; }
  .cursor-dot {
    position: fixed; left: 0; top: 0;
    width: 6px; height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: var(--q4-green);
    box-shadow: 0 0 10px rgba(var(--q4-green-rgb), .9);
    will-change: transform;
  }
  .cursor-ring {
    position: fixed; left: 0; top: 0;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border: 1px solid rgba(var(--q4-green-rgb), .45);
    border-radius: 50%;
    display: grid; place-items: center;
    transition: width .25s var(--ease-out), height .25s var(--ease-out),
                margin .25s var(--ease-out), background-color .25s, border-color .25s;
    will-change: transform;
  }
  .cursor-label {
    font-size: 8px; letter-spacing: .3em;
    color: #000; opacity: 0;
    transform: translateX(2px);
    transition: opacity .2s;
  }
  #cursor.is-link .cursor-ring { width: 52px; height: 52px; margin: -26px 0 0 -26px; border-color: rgba(var(--q4-green-rgb), .8); }
  #cursor.is-buy .cursor-ring { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(var(--q4-green-rgb), .92); border-color: var(--q4-green); }
  #cursor.is-view .cursor-ring, #cursor.is-drag .cursor-ring {
    width: 68px; height: 68px; margin: -34px 0 0 -34px;
    background: rgba(var(--q4-green-rgb), .92);
    border-color: var(--q4-green);
  }
  #cursor.is-view .cursor-label, #cursor.is-drag .cursor-label { opacity: 1; }
  #cursor.is-down .cursor-ring { transform: scale(.85); }
}

/* ============================================================
   GLOBE FALLBACK (no WebGL)
   ============================================================ */
.globe-fallback { display: none; }
html.no-webgl .globe-fallback {
  display: block;
  position: fixed; z-index: 1;
  right: 6vw; top: 50%;
  width: min(56vmin, 620px); height: min(56vmin, 620px);
  transform: translateY(-50%);
  pointer-events: none;
}
html.no-webgl .gf-sphere {
  width: 100%; height: 100%;
  border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 34% 30%, rgba(var(--q4-green-rgb), .16), transparent 44%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .2) 58%, rgba(var(--q4-green-rgb), .12) 76%, transparent 78%),
    radial-gradient(circle at 50% 50%, #030403 0%, #000 70%);
  border: 1px solid rgba(var(--q4-green-rgb), .2);
  box-shadow:
    0 0 90px rgba(var(--q4-green-rgb), .18),
    inset 0 0 120px rgba(var(--q4-green-rgb), .12);
}
html.no-webgl .gf-sphere span {
  font-size: clamp(4rem, 10vmin, 8rem);
  font-weight: 700;
  color: var(--q4-green);
  text-shadow: 0 0 50px rgba(var(--q4-green-rgb), .8);
  letter-spacing: -.05em;
}

/* ============================================================
   ART SLOTS
   ============================================================ */
.art-slot .slot-fallback { display: none; }
.art-slot.missing img { display: none; }
.art-slot.missing .slot-fallback {
  display: grid;
  place-items: center;
  position: absolute; inset: 0;
  overflow: hidden;
  background: radial-gradient(34% 26% at 50% 50%, rgba(var(--q4-green-rgb), .09), transparent 70%);
}
.capital-art.missing { border-color: transparent; }
.chrome-glyph {
  font-family: var(--font-d);
  font-size: clamp(4.5rem, 13vmin, 9rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  background: linear-gradient(168deg, #f4f7f5 0%, #b7bebb 26%, #404644 50%, #e2e6e4 72%, #596059 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 36px rgba(var(--q4-green-rgb), .32));
}
.season-art.missing, .watch-art.missing { min-height: 60vh; }

/* ============================================================
   MOTION OFF
   ============================================================ */
html.motion-off .tok-orbit,
html.motion-off .tok-chip-inner,
html.motion-off .hs-arrow,
html.motion-off .live-dot,
html.motion-off .nav-logo-dot,
html.motion-off .fx-grain { animation: none; }
html.motion-off .q-pin { height: auto; padding-block: 16vh; }
html.motion-off .q-big { color: var(--q4-green); text-shadow: 0 0 60px rgba(var(--q4-green-rgb), .4); }
html.motion-off .mani-stage { height: auto; padding-block: 16vh; }
html.motion-off .watch-eyes { opacity: .7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .term-grid { grid-template-columns: repeat(3, 1fr); }
  .term-cell.wide { grid-column: span 3; }
  .season-art { margin-left: -10vw; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 0 0;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 34px;
    background: rgba(0, 0, 0, .96);
    backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden;
    transition: opacity .4s, visibility .4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links .nav-link { font-size: 16px; }
  .nav-toggle { display: block; }

  .hero-meta { display: none; }
  .hero-title { max-width: none; }
  .hero-ghost { font-size: 24rem; right: -20vw; opacity: .8; }

  .ring-grid, .capital-grid { grid-template-columns: 1fr; }
  .capital-art { justify-self: stretch; }

  .s-season { grid-template-columns: 1fr; min-height: 0; padding-block: 14vh 10vh; }
  .season-art { height: 70vh; margin-left: 0; order: 2; }
  .season-copy { padding-inline: 6vw; order: 1; margin-bottom: 6vh; }

  .term-grid { grid-template-columns: 1fr 1fr; }
  .term-cell.wide { grid-column: span 2; }

  .tok-stage { width: 100%; height: auto; margin-top: 4vh; }
  .tok-core { position: relative; left: auto; top: auto; transform: none; margin-bottom: 40px; }
  .tok-orbit { position: relative; inset: auto; animation: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: min(92vw, 560px); margin-inline: auto; }
  .tok-chip { position: relative; left: auto; top: auto; transform: none; }
  .tok-chip-inner { animation: none; transform: none; margin: 0; min-width: 0; }

  .channel { grid-template-columns: 44px 1fr; }
  .ch-action { grid-column: 2; }

  .q-marks { gap: 22px; bottom: 108px; }
  .q-line { font-size: 9px; letter-spacing: .18em; max-width: 88vw; width: auto; }

  .ca-pill { display: none; }
  .mobile-cta { display: flex; }
  .footer { padding-bottom: 110px; }
  .s-global { min-height: 120vh; }
  .globe-hit { width: 86vw; height: 86vw; }
}

@media (max-width: 600px) {
  .sec-title { margin-bottom: 24px; }
  .thesis-cols { grid-template-columns: 1fr; }
  .term-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .ca-row { width: 100%; justify-content: space-between; gap: 8px; }
  .ca-value { max-width: 40vw; }
  .intro-skip { right: 14px; bottom: 14px; }
}
