/* ═══════════════════════════════════════════════════════════════════════════
   VELTRIX × VTX — LAB

   One page, two worlds. Black and silver for the label, black and red for the
   platform; the flip in the middle turns one into the other. Everything that
   moves is transform, opacity or filter — the compositor's three — and every
   motion stops under prefers-reduced-motion.

   [data-world] on <body> is the single switch: colours, glows and the switch
   button all read it.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #000;
  --ink: #fff;
  --dim: rgba(255, 255, 255, .5);
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .2);
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, .12);
  --red: #ff0026;
  --red-2: #ff2a44;
  --display: 'Anton', 'Impact', sans-serif;
  --poppins: 'Poppins', 'Inter', sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad: clamp(20px, 4vw, 64px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-cartoon: cubic-bezier(.34, 1.56, .64, 1);
}
body[data-world='vtx'] {
  --accent: #ff0026;
  --accent-soft: rgba(255, 0, 38, .16);
  --dim: rgba(255, 255, 255, .55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  transition: background .8s;
}
body[data-world='vtx'] { background: #050203; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: none; }
.defs { position: absolute; width: 0; height: 0; }

/* ── Fixed layers ── */
#gl { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; display: block; touch-action: pan-y; }
.grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  animation: grain .7s steps(8) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 25% { transform: translate(-4px, 3px); }
  50% { transform: translate(3px, -4px); } 75% { transform: translate(-3px, -2px); } 100% { transform: translate(0, 0); }
}
.vignette { position: fixed; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, .75) 100%); }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 1000; background: #000;
  display: grid; place-items: center; align-content: center; gap: 22px;
}
.loader-word { display: flex; gap: .02em; font-family: var(--display); font-size: clamp(56px, 12vw, 160px); line-height: 1; letter-spacing: -.02em; }
.loader-word span { display: inline-block; opacity: 0; transform: translateY(60px) rotate(-8deg) scale(.6); }
.loader-bar { width: min(280px, 50vw); height: 2px; background: rgba(255, 255, 255, .12); overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 100%; background: #fff; transform: scaleX(0); transform-origin: left; }
.loader-hint { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--dim); }

/* The ink wipe: three blobs, distorted by a turbulence filter, that swallow
   the screen then spit it back out. Filter on the group, not the blobs: one
   displacement pass instead of three. */
#wipe { position: fixed; inset: -20vmax; z-index: 900; pointer-events: none; filter: url(#ink); display: none; }
.wipe-blob { position: absolute; left: 50%; top: 50%; width: 10vmax; height: 10vmax; border-radius: 50%; background: var(--accent); transform: translate(-50%, -50%) scale(0); }
.wipe-blob.b2 { background: #fff; }
.wipe-blob.b3 { background: #000; }

/* ── Cursor ── */
.cursor { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.cursor-dot, .cursor-ring, .cursor-label { position: absolute; top: 0; left: 0; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-ring { width: 44px; height: 44px; border: 1px solid #fff; border-radius: 50%; transform: translate(-50%, -50%); transition: width .25s var(--ease-out), height .25s var(--ease-out), background .2s; }
.cursor-ring.hot { width: 90px; height: 90px; background: #fff; }
.cursor-label { font-family: var(--mono); font-size: 9px; letter-spacing: .22em; color: #fff; opacity: 0; transform: translate(-50%, 34px); transition: opacity .2s; white-space: nowrap; }
.cursor-label.show { opacity: 1; }
@media (hover: none), (pointer: coarse) { body, button { cursor: auto; } .cursor { display: none; } }

/* ── Chrome ── */
.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px var(--pad);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, .35); border-bottom: 1px solid var(--line);
}
.brand { text-decoration: none; display: grid; overflow: hidden; height: 16px; }
.brand span { grid-area: 1 / 1; transition: transform .6s var(--ease-cartoon), opacity .4s; white-space: nowrap; }
.brand-vtx { font-family: var(--poppins); font-weight: 900; letter-spacing: -.02em; font-size: 15px; line-height: 16px; text-transform: none; transform: translateY(120%); opacity: 0; }
.brand-vtx i { color: var(--red); font-style: italic; }
body[data-world='vtx'] .brand-veltrix { transform: translateY(-120%); opacity: 0; }
body[data-world='vtx'] .brand-vtx { transform: none; opacity: 1; }
.top-nav { display: flex; gap: 30px; }
.top-nav a { color: var(--dim); text-decoration: none; position: relative; transition: color .2s; }
.top-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.top-nav a:hover { color: #fff; }
.top-nav a:hover::after { transform: scaleX(1); }
.top-nav .nav-vtx { color: var(--red-2); }

/* The switch. The saber-glow button, kept from the real sites. */
.switch { position: relative; display: inline-flex; padding: 0; border: 0; background: none; isolation: isolate; transition: transform .28s var(--ease-cartoon); }
.switch:hover { transform: scale(1.05); }
.switch-glow { position: absolute; inset: -26px -34px; z-index: -2; pointer-events: none; background: radial-gradient(closest-side, var(--accent-soft), transparent 72%); filter: blur(12px); animation: breathe 3.4s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.switch-ring { position: absolute; inset: -1.5px; z-index: -1; overflow: hidden; }
.switch-ring::before {
  content: ''; position: absolute; left: 50%; top: 50%; width: 260%; aspect-ratio: 1; translate: -50% -50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--accent) 34deg, #fff 56deg, transparent 96deg, transparent 180deg, var(--accent) 214deg, #fff 236deg, transparent 276deg);
  animation: spin 4.5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.switch-face { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; background: linear-gradient(180deg, #151517, #050506); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; white-space: nowrap; overflow: hidden; }
body[data-world='vtx'] .switch-face { background: linear-gradient(180deg, #2a0410, #0a0104); }
.switch-icon { font-style: normal; font-size: 15px; color: var(--accent); transition: transform .5s var(--ease-cartoon); }
.switch:hover .switch-icon { transform: rotate(180deg); }

.rail { position: fixed; left: var(--pad); top: 50%; z-index: 50; font-family: var(--mono); font-size: 9px; letter-spacing: .3em; color: rgba(255, 255, 255, .28); transform: rotate(-90deg) translateX(-50%); transform-origin: left; white-space: nowrap; pointer-events: none; }
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 101; background: transparent; }
.progress i { display: block; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 12px var(--accent); }

/* ── Layout ── */
main { position: relative; z-index: 3; }
.chapter { position: relative; padding: 140px var(--pad); max-width: 1440px; margin: 0 auto; }
.sec-head { display: grid; grid-template-columns: 180px 1fr 180px; align-items: end; gap: 28px; margin-bottom: 60px; }
.sec-head .num, .sec-head .meta { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; color: var(--dim); line-height: 1.8; }
.sec-head .meta { text-align: right; }
.sec-head h2 { margin: 0; font-family: var(--display); font-size: clamp(44px, 8vw, 128px); line-height: .9; letter-spacing: -.02em; text-transform: uppercase; }
.sec-head h2 em { font-style: normal; color: var(--accent); }
.reveal-line { opacity: 0; transform: translateY(24px); }

/* Split text: every letter / word is its own span, styled here, moved by GSAP. */
.split { display: inline-block; white-space: nowrap; }
.split .ch { display: inline-block; transform-origin: 50% 100%; will-change: transform; }
.split-words .w { display: inline-block; margin-right: .22em; transform-origin: 50% 100%; }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 60px; padding-top: 120px; }
.hero-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .32em; color: var(--dim); margin-bottom: 22px; }
.hero-eyebrow b { color: var(--accent); font-weight: 400; margin: 0 8px; }
.hero-title { margin: 0 0 22px; font-family: var(--display); font-size: clamp(84px, 17vw, 300px); line-height: .82; letter-spacing: -.035em; text-transform: uppercase; pointer-events: none; }
.hero-title .line { display: block; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .5); }
.hero-title .outline.red { -webkit-text-stroke-color: var(--red); }
.hero-sub { max-width: 620px; margin: 0 0 26px; font-size: 15px; line-height: 1.6; color: var(--dim); }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line-strong); padding-top: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: rgba(255, 255, 255, .5); text-transform: uppercase; }
.hero-meta strong { display: block; margin-top: 6px; font-family: var(--display); font-size: clamp(22px, 3.2vw, 44px); letter-spacing: 0; color: #fff; }
.hero-meta .end { text-align: right; }
.turn-hint { position: absolute; right: var(--pad); top: 46%; font-family: var(--mono); font-size: 9px; letter-spacing: .3em; color: rgba(255, 255, 255, .45); display: flex; align-items: center; gap: 10px; pointer-events: none; }
.turn-hint i { font-style: normal; font-size: 15px; color: var(--accent); animation: turn 2.6s cubic-bezier(.65, 0, .35, 1) infinite; }
@keyframes turn { 0%, 55% { transform: rotate(0); opacity: .55; } 75% { transform: rotate(180deg); opacity: 1; } 100% { transform: rotate(360deg); opacity: .55; } }
.hero-vtx .hero-title .line:first-child { color: var(--red); }

/* ── Buttons ── */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; border: 1px solid rgba(255, 255, 255, .25); background: #fff; color: #000;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; text-decoration: none;
  overflow: hidden; transition: transform .3s var(--ease-cartoon), background .2s, color .2s, border-color .2s;
}
.btn i { font-style: normal; transition: transform .3s var(--ease-cartoon); }
.btn:hover { transform: translateY(-3px) rotate(-1deg); }
.btn:hover i { transform: translate(3px, -3px); }
.btn:active { transform: scale(.96); }
.btn.ghost { background: transparent; color: #fff; }
.btn.ghost:hover { background: rgba(255, 255, 255, .08); }
.btn.red { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 40px -10px var(--red); }
.btn.big { padding: 20px 36px; font-size: 11.5px; }

/* ── Marquee ── */
.marquee { position: relative; z-index: 3; overflow: hidden; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); background: #000; padding: 20px 0; }
.marquee-track { display: flex; align-items: center; gap: 56px; white-space: nowrap; width: max-content; font-family: var(--display); font-size: clamp(34px, 5vw, 64px); text-transform: uppercase; letter-spacing: -.02em; animation: marquee 30s linear infinite; }
.marquee-track .o { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .5); }
.marquee-track i { width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Manifesto ── */
.manifesto-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.manifesto-big { font-family: var(--display); font-size: clamp(40px, 6.4vw, 104px); line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
.mline { display: block; transform-origin: 0 100%; }
.mline em { font-style: normal; color: var(--accent); }
.mline.strike { color: rgba(255, 255, 255, .3); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: .08em; }
.mline.red { color: var(--red); }
.manifesto-side { border-left: 1px solid var(--line-strong); padding-left: 32px; }
.manifesto-side p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.7; color: var(--dim); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 28px; }
.stat { background: #000; padding: 18px 14px; font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); transform-origin: 50% 100%; }
.stat b { display: block; font-family: var(--display); font-size: 34px; letter-spacing: 0; color: #fff; margin-bottom: 6px; }

/* ── Catalogue ring ──
   Ten covers on a CSS 3D carousel. Each figure is rotated on Y by its slot and
   pushed out along Z; the whole ring turns with scroll and with the drag. */
.ring-stage { position: relative; height: clamp(360px, 52vh, 560px); perspective: 1400px; perspective-origin: 50% 40%; }
.ring { position: absolute; inset: 0; transform-style: preserve-3d; transform: rotateY(var(--ry, 0deg)); will-change: transform; }
.ring figure { position: absolute; left: 50%; top: 50%; width: clamp(150px, 20vw, 260px); aspect-ratio: 1; margin: 0; transform-style: preserve-3d; transform: translate(-50%, -50%) rotateY(var(--a)) translateZ(var(--z)); }
.ring figure img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 30px 60px -30px #000, 0 0 0 1px rgba(255, 255, 255, .1); backface-visibility: hidden; }
.ring figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .7)); pointer-events: none; }
.ring-title { position: absolute; left: 50%; bottom: -10px; translate: -50% 0; font-family: var(--display); font-size: clamp(30px, 5vw, 72px); letter-spacing: -.02em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .6); pointer-events: none; white-space: nowrap; }
.ring-cta { display: flex; justify-content: center; margin-top: 64px; }

/* ── Team ── */
.owners { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.owner { position: relative; display: grid; grid-template-columns: 180px 1fr; gap: 28px; padding: 32px; border: 1px solid var(--line-strong); background: #000; overflow: hidden; transform-origin: 50% 60%; }
.owner-portrait { aspect-ratio: 1; overflow: hidden; filter: grayscale(1) contrast(1.1); transition: filter .5s; }
.owner-portrait img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .8s var(--ease-out); }
.owner:hover .owner-portrait { filter: none; }
.owner:hover .owner-portrait img { transform: scale(1.08); }
.owner-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: .24em; color: var(--dim); margin-bottom: 14px; }
.owner-top .tag { color: var(--accent); }
.owner h3 { margin: 0; font-family: var(--display); font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -.02em; text-transform: uppercase; line-height: 1; }
.owner .role { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--dim); margin: 8px 0 16px; text-transform: uppercase; }
.owner blockquote { margin: 0 0 16px; font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, .78); border-left: 2px solid var(--accent); padding-left: 14px; }
.owner a { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #fff; text-decoration: none; }
.tilt { transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .18s ease-out; }

/* ── The flip ── */
/* The two words live in the upper third; the logo turns in the space below
   them, anchored there by the scene. Centring both was the previous layout,
   and the logo turned straight through the type. */
.flip { min-height: 100vh; display: grid; place-items: start center; text-align: center; padding-top: 22vh; padding-bottom: 0; }
.flip-word { font-family: var(--display); font-size: clamp(56px, 11vw, 180px); line-height: .9; letter-spacing: -.03em; text-transform: uppercase; }
.flip-word.two { color: var(--red); }
.flip-hint { margin-top: 30px; font-family: var(--mono); font-size: 9px; letter-spacing: .3em; color: var(--dim); }

/* ── Reel ── */
.reel { text-align: center; padding-top: 60px; padding-bottom: 60px; }
.reel-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .32em; color: var(--dim); margin-bottom: 28px; }
.reel-stage { position: relative; height: clamp(60px, 9vw, 130px); }
.reel-stage span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--poppins); font-weight: 900; font-size: clamp(34px, 7vw, 104px); line-height: 1; letter-spacing: -.045em; text-transform: uppercase; white-space: nowrap; opacity: 0; }
.reel-stage span:nth-child(2n) { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .85); }
.reel-stage span:nth-child(3n) { color: var(--red); -webkit-text-stroke: 0; }
.reel-bar { position: relative; width: min(360px, 60%); height: 2px; margin: 26px auto 0; background: rgba(255, 255, 255, .08); overflow: hidden; }
.reel-bar i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--red), #fff); transform: scaleX(0); transform-origin: left; }

/* ── Modules: flipping tiles ── */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; perspective: 1400px; }
.tile { aspect-ratio: 1 / .95; transform-origin: 50% 100%; }
.tile-in { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .7s var(--ease-cartoon); }
.tile:hover .tile-in { transform: rotateY(180deg); }
.tile-front, .tile-back { position: absolute; inset: 0; padding: 22px; border: 1px solid var(--line-strong); backface-visibility: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.tile-front { background: linear-gradient(160deg, #141014, #050305); }
.tile-front span { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--red); }
.tile-front b { font-family: var(--display); font-size: clamp(22px, 2.2vw, 34px); line-height: 1; letter-spacing: -.01em; text-transform: uppercase; }
.tile-back { transform: rotateY(180deg); background: var(--red); color: #fff; font-size: 13px; line-height: 1.55; justify-content: center; }

/* ── Screens (WebGL panels; DOM only carries captions) ── */
.screens { padding-top: 0; padding-bottom: 0; }
.screens-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: space-between; padding: 120px 0 60px; pointer-events: none; }
.screens-track { height: 260vh; }
.screen-caption { max-width: 520px; }
.sc-idx { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--dim); }
.sc-title { display: block; margin: 10px 0 8px; font-family: var(--display); font-size: clamp(34px, 5vw, 72px); letter-spacing: -.02em; text-transform: uppercase; line-height: .95; }
.sc-body { margin: 0; font-size: 15px; color: var(--dim); }

/* ── Plans ── */
.plans { display: flex; justify-content: center; }
.plan-card { position: relative; width: min(520px, 100%); padding: 40px 36px; border: 1px solid rgba(255, 0, 38, .55); background: linear-gradient(180deg, #14060a, #050203); box-shadow: 0 0 90px -30px var(--red); transform-origin: 50% 50%; }
.plan-card .num { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--red-2); }
.price { margin: 14px 0 18px; }
.price b { font-family: var(--display); font-size: 84px; line-height: 1; letter-spacing: -.02em; }
.price span { font-family: var(--mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); margin-left: 12px; }
.plan-card p { margin: 0 0 22px; color: var(--dim); font-size: 14px; line-height: 1.6; }
.plan-card strong { color: #fff; }
.plan-card ul { list-style: none; margin: 0 0 26px; padding: 0; }
.plan-card li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 13.5px; }
.plan-card li::before { content: '—'; color: var(--red); margin-right: 10px; }
.stamp { position: absolute; right: 22px; top: 22px; padding: 8px 12px; border: 2px solid var(--red); color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .3em; transform: rotate(-12deg) scale(0); opacity: 0; }

/* ── Submit ── */
.rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px; }
.rule { padding: 22px; border: 1px solid var(--line-strong); font-size: 14px; line-height: 1.6; color: var(--dim); transform-origin: 0 100%; }
.rule span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--accent); margin-bottom: 8px; }
.rule b { color: #fff; }
.submit-cta { display: flex; justify-content: center; }

/* ── Footer ── */
.foot { position: relative; z-index: 3; padding: 80px var(--pad) 40px; border-top: 1px solid var(--line-strong); background: #000; }
.foot-mark { font-family: var(--display); font-size: clamp(80px, 18vw, 300px); line-height: .8; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .3); text-transform: uppercase; margin-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; font-size: 13px; color: var(--dim); }
.foot-grid .k { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .28em; color: rgba(255, 255, 255, .35); margin-bottom: 8px; }
.foot-grid a { color: #fff; text-decoration: none; }
.foot-line { margin-top: 40px; font-family: var(--mono); font-size: 9px; letter-spacing: .2em; color: rgba(255, 255, 255, .3); text-transform: uppercase; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .sec-head { grid-template-columns: 1fr; gap: 12px; }
  .sec-head .meta { text-align: left; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-strong); padding-top: 24px; }
  .owners { grid-template-columns: 1fr; }
  .owner { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .rules { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .top-nav { display: none; }
  .rail, .turn-hint { display: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr; }
  .switch-text { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .marquee-track, .switch-glow, .switch-ring::before, .turn-hint i { animation: none; }
  .reveal-line { opacity: 1; transform: none; }
  .tilt { transform: none; transition: none; }
  .tile:hover .tile-in { transition: none; }
}
