/* ═══════════════════════════════════════════════════════════════
   mantramaker v2 — GENJOT
   pitch black · kinetic type · scroll = pedal = power
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #050308;
  --cream: #F2E9DC;
  --ember: #FFB570;
  --ember-deep: #FF8A3D;
  --violet: #9D7BFF;
  --dim: #453e52;
  --line: rgba(242, 233, 220, 0.1);
  --display: 'Clash Display', sans-serif;
  --body: 'DM Sans', sans-serif;
  --serif: 'Instrument Serif', serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.no-cursor, body.no-cursor a, body.no-cursor button { cursor: none; }

::selection { background: var(--ember-deep); color: #1a0d02; }
a { color: var(--ember); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--ember); outline-offset: 4px;
}

.mono { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; }
.kicker { color: var(--ember); margin-bottom: 2.2rem; }
.mark {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -0.15em;
}
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ember); }

/* ── chrome: noise, cursor, hud ─────────────────────────── */
#noise {
  position: fixed; inset: -50%; z-index: 80; 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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: noise-shift 0.6s steps(3) infinite;
}
@keyframes noise-shift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1%); }
  66% { transform: translate(1%, -2%); }
}

#cursor {
  position: fixed; top: 0; left: 0; z-index: 99; pointer-events: none;
  width: 22px; height: 22px; line-height: 0;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
  display: none;
  filter: drop-shadow(0 0 10px rgba(255, 138, 61, 0.7));
}
#cursor img { width: 100%; height: 100%; }
body.no-cursor #cursor { display: block; }
#cursor.grow { width: 44px; height: 44px; }

.hud {
  position: fixed; bottom: 1.1rem; left: 1.4rem; z-index: 60;
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--dim);
  mix-blend-mode: screen;
}
.hud-label { color: var(--ember); }
.hud-bar {
  width: 110px; height: 3px; background: rgba(242, 233, 220, 0.14);
  overflow: hidden; border-radius: 2px;
}
.hud-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ember), var(--ember-deep));
  box-shadow: 0 0 10px var(--ember-deep);
}
.hud-pct { color: var(--cream); min-width: 4ch; }

/* ── ritual ──────────────────────────────────────────────── */
#ritual {
  position: fixed; inset: 0; z-index: 95;
  -webkit-user-select: none; user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  touch-action: none;
  transition: opacity 0.6s, visibility 0.6s;
}
#ritual.done { opacity: 0; visibility: hidden; }
.ritual-core { position: relative; width: 120px; height: 120px; }
.ritual-ring { width: 120px; height: 120px; transform: rotate(-90deg); }
.ring-bg, .ring-fg { fill: none; stroke-width: 2; }
.ring-bg { stroke: rgba(242, 233, 220, 0.12); }
.ring-fg {
  stroke: var(--ember);
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.8));
}
.ritual-glyph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  animation: glyph-idle 3s ease-in-out infinite;
}
.ritual-glyph img { width: 44px; height: 44px; }
@keyframes glyph-idle { 50% { transform: rotate(90deg) scale(1.12); } }
.ritual-label { color: var(--cream); opacity: 0.8; }
.ritual-skip {
  position: absolute; bottom: 1.6rem; right: 1.8rem;
  background: none; border: none; color: var(--dim); cursor: pointer;
  font-size: 0.7rem; letter-spacing: 0.16em;
}
.ritual-skip:hover { color: var(--ember); }
.ritual-echoes {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.echo {
  position: absolute;
  font-family: var(--display); font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 181, 112, 0.5);
  white-space: nowrap;
  animation: echo-fade 1.1s ease-out forwards;
}
@keyframes echo-fade {
  from { opacity: 0; transform: scale(0.92); }
  25% { opacity: 1; }
  to { opacity: 0; transform: scale(1.12); }
}
#flash {
  position: fixed; inset: 0; z-index: 94;
  background: var(--ember);
  opacity: 0; pointer-events: none;
}

/* ── nav ─────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  mix-blend-mode: difference;
}
.nav-brand {
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  color: var(--cream); text-decoration: none;
}
.nav-brand .glyph {
  width: 1.25em; height: 1.25em;
  display: inline-block; vertical-align: -0.28em;
  transition: transform 0.5s;
}
.nav-brand:hover .glyph { transform: rotate(180deg); }
.btn-pill {
  color: var(--cream); text-decoration: none;
  border: 1px solid rgba(242, 233, 220, 0.4);
  padding: 0.55em 1.2em; border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.btn-pill:hover { background: var(--cream); color: #050308; }

/* ── type system ─────────────────────────────────────────── */
.mega {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.4rem, 13vw, 12.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.mega em { text-transform: none; letter-spacing: 0; font-weight: 400; }
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-in { display: inline-block; transform: translateY(115%); }
body.ready .line-in { transform: none; }
.tail { font-style: normal; font-size: 0.42em; vertical-align: super; line-height: 0; }
.tail .mark { width: 1em; height: 1em; vertical-align: 0; }

/* ── hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem clamp(1.2rem, 4vw, 3rem) 3rem;
  position: relative;
  overflow: hidden;
}
#magic {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-spot {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(420px circle at var(--mx, 78%) var(--my, 30%), rgba(157, 123, 255, 0.09), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(242, 233, 220, 0.03) 79px 80px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(242, 233, 220, 0.03) 79px 80px);
}
.hero-mascot {
  position: absolute; z-index: 1;
  right: 2vw; bottom: -2vh;
  width: clamp(280px, 31vw, 540px);
  mix-blend-mode: screen;
  opacity: 0.95;
  filter: drop-shadow(0 0 60px rgba(255, 138, 61, 0.15));
  -webkit-mask-image: radial-gradient(74% 74% at 50% 47%, #000 55%, transparent 80%);
  mask-image: radial-gradient(74% 74% at 50% 47%, #000 55%, transparent 80%);
}
#hero .mega { position: relative; z-index: 2; }
.hero-foot {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1.7rem; margin-top: 3rem;
  max-width: 46ch; /* keeps the CTA on the left, clear of the mascot */
}
.hero-sub { color: #b7abc9; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.btn-main {
  display: inline-block;
  font-weight: 500; font-size: 1rem;
  color: #1a0d02; text-decoration: none;
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  padding: 1em 2em; border-radius: 100px;
  box-shadow: 0 0 40px rgba(255, 138, 61, 0.25);
  will-change: transform;
}
.scroll-cue {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  color: var(--dim); display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.cue-line {
  width: 1px; height: 44px; background: var(--dim); overflow: hidden; position: relative;
}
.cue-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ember);
  animation: cue-drop 1.6s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes cue-drop { from { transform: translateY(-100%); } to { transform: translateY(100%); } }

/* ── marquee ─────────────────────────────────────────────── */
.marquee {
  overflow: clip; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex; white-space: nowrap; will-change: transform;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  color: var(--dim);
}
.marquee-track span { padding-right: 0; }

/* ── genjot ──────────────────────────────────────────────── */
#genjot { height: 420vh; position: relative; }
.genjot-sticky {
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem clamp(1.2rem, 4vw, 3rem) 3rem;
  overflow: hidden;
}
.genjot-kicker { color: var(--ember); margin-bottom: 2rem; }
.genjot-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  flex: 1; min-height: 0;
}
.manifesto { position: relative; }
.manifesto p {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  line-height: 1.38;
  letter-spacing: 0.01em;
  position: absolute; inset: auto 0;
  top: 50%; transform: translateY(-50%);
  opacity: 0; visibility: hidden;
}
.manifesto p.active { opacity: 1; visibility: visible; }
.manifesto .w {
  color: var(--dim);
  filter: blur(5px);
  display: inline-block;
  transition: color 0.3s, filter 0.3s, transform 0.3s;
  transform: translateY(0.12em);
}
.manifesto .w.lit { color: var(--cream); filter: blur(0); transform: none; }
.manifesto .w.hot.lit { color: var(--ember); }
.genjot-stage { position: relative; height: min(78vh, 100%); min-height: 320px; }
#genjot-canvas {
  width: 100%; height: 100%; display: block;
  -webkit-mask-image: radial-gradient(60% 64% at 50% 52%, #000 46%, transparent 75%);
  mask-image: radial-gradient(60% 64% at 50% 52%, #000 46%, transparent 75%);
}

/* ── services rows ───────────────────────────────────────── */
#services { padding: clamp(7rem, 16vh, 12rem) clamp(1.2rem, 4vw, 3rem); }
.rows { list-style: none; border-top: 1px solid var(--line); }
.row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(0, 34ch);
  align-items: center; gap: 1.5rem;
  padding: 2.2rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.row-idx { color: var(--dim); transition: color 0.3s; }
.row-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.2rem, 6.4vw, 5.4rem);
  line-height: 0.94; text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 233, 220, 0.55);
  transition: color 0.35s, -webkit-text-stroke-color 0.35s, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.row-desc {
  color: var(--dim);
  font-size: 0.95rem;
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.35s;
}
.row:hover, .row:focus-visible, .row.touched {
  padding-left: 1.4rem;
}
.row:hover .row-title, .row:focus-visible .row-title, .row.touched .row-title {
  color: var(--ember);
  -webkit-text-stroke-color: transparent;
  transform: skewX(-6deg);
}
.row:hover .row-desc, .row:focus-visible .row-desc, .row.touched .row-desc {
  opacity: 1; transform: none; color: #b7abc9;
}
.row:hover .row-idx { color: var(--ember); }
.rows-note { color: var(--dim); margin-top: 2rem; text-align: right; }

/* ── process: horizontal night ───────────────────────────── */
#process { height: 440vh; position: relative; }
.process-sticky {
  position: sticky; top: 0; height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(90% 120% at 50% 130%, rgba(255, 138, 61, 0.08), transparent 60%),
    var(--bg);
}
.process-kicker { padding: 0 clamp(1.2rem, 4vw, 3rem); margin-bottom: 3rem; }
.process-track {
  display: flex; gap: clamp(2rem, 6vw, 6rem);
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  will-change: transform;
  width: max-content;
}
.panel { width: min(72vw, 620px); flex-shrink: 0; }
.panel { position: relative; }
.panel-stage {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 181, 112, 0.7);
  display: block;
}
.panel-stage i {
  font-style: normal;
  font-size: 0.38em;
  -webkit-text-stroke: 1px rgba(157, 123, 255, 0.55);
  vertical-align: baseline;
}
.panel-art {
  position: absolute; top: -1.5rem; right: clamp(0.5rem, 3vw, 3.5rem);
  width: clamp(110px, 12vw, 190px);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
  pointer-events: none;
}
.panel h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1;
  text-transform: uppercase;
  margin: 1.2rem 0 0.8rem;
}
.panel p { color: #b7abc9; max-width: 44ch; }
.process-bar {
  margin: 3.5rem clamp(1.2rem, 4vw, 3rem) 0;
  height: 2px; background: rgba(242, 233, 220, 0.12);
}
#process-fill {
  display: block; width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--ember-deep));
  box-shadow: 0 0 12px var(--ember-deep);
}

/* ── proof ───────────────────────────────────────────────── */
#proof { padding: clamp(7rem, 16vh, 12rem) clamp(1.2rem, 4vw, 3rem); }
.proof-wall {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 2.2rem 1.6rem 2.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.4s;
}
.stat:hover { background: #0d0715; }
.stat-big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 0.98;
  color: var(--ember);
}
.stat-label { color: var(--dim); font-size: 0.88rem; }
.clients { margin-top: 4rem; }
.clients-label { color: var(--dim); margin-bottom: 1.6rem; }
.clients-belt {
  overflow: clip;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex; align-items: center; gap: clamp(2.2rem, 5vw, 4.5rem);
  width: max-content;
  animation: clients-scroll 55s linear infinite;
}
.clients-track img {
  height: 30px; width: auto;
  filter: brightness(0) invert(0.92);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.clients-track img:hover { opacity: 1; }
@keyframes clients-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; width: auto; }
}

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; perspective: 900px; }
.case {
  position: relative;
  border: 1px solid var(--line); border-radius: 16px;
  padding: 1.8rem 1.6rem 3.6rem;
  text-decoration: none; color: var(--cream);
  background:
    radial-gradient(140% 100% at var(--gx, 50%) 0%, rgba(157, 123, 255, 0.14), transparent 55%),
    #0a0612;
  transform-style: preserve-3d;
  transition: border-color 0.3s;
  will-change: transform;
}
.case:hover { border-color: rgba(255, 181, 112, 0.6); }
.case-tag { color: var(--violet); display: block; margin-bottom: 1.1rem; }
.case h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem); line-height: 1.15;
}
.case-arrow {
  position: absolute; right: 1.3rem; bottom: 1.1rem;
  color: var(--ember); line-height: 0;
  transition: transform 0.3s;
}
.case:hover .case-arrow { transform: translate(4px, -4px) scale(1.2); }

/* ── the coven ───────────────────────────────────────────── */
#team { padding: clamp(7rem, 16vh, 12rem) clamp(1.2rem, 4vw, 3rem) 0; }
.team-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.05;
  margin-bottom: 3rem;
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  perspective: 900px;
}
.wizard {
  text-align: center;
  will-change: transform;
  transform-style: preserve-3d;
}
.wizard img {
  width: min(100%, 340px);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(72% 72% at 50% 46%, #000 52%, transparent 78%);
  mask-image: radial-gradient(72% 72% at 50% 46%, #000 52%, transparent 78%);
  filter: drop-shadow(0 0 40px rgba(255, 138, 61, 0.12));
  transition: filter 0.4s, transform 0.4s;
}
.wizard:hover img { filter: drop-shadow(0 0 70px rgba(255, 138, 61, 0.3)); transform: translateY(-8px); }
.wizard h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  margin-top: -0.6rem;
}
.wizard-role { color: var(--ember); display: block; margin-top: 0.45rem; }
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .wizard { margin-bottom: 1rem; }
}

/* ── dawn ────────────────────────────────────────────────── */
#dawn {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem clamp(1.2rem, 4vw, 3rem) 0;
}
.sun {
  position: absolute; left: 50%; bottom: -35vh;
  width: 130vmin; height: 130vmin;
  transform: translateX(-50%) scale(0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 112, 0.9) 0%, rgba(255, 138, 61, 0.45) 32%, rgba(157, 123, 255, 0.12) 58%, transparent 70%);
  filter: blur(8px);
  will-change: transform, opacity;
  opacity: 0.25;
}
.dawn-mascot {
  width: clamp(180px, 22vw, 330px);
  mix-blend-mode: screen;
  margin-bottom: -1rem;
  position: relative; z-index: 1;
}
.dawn-mega { position: relative; z-index: 1; font-size: clamp(2.6rem, 8.4vw, 7.5rem); }
.dawn-sub { position: relative; z-index: 1; color: #b7abc9; margin: 1.6rem 0 2.4rem; font-size: 1.1rem; }
.btn-dawn { position: relative; z-index: 1; font-size: 1.15rem; padding: 1.1em 2.4em; }
.dawn-mail { position: relative; z-index: 1; margin-top: 1.4rem; color: var(--dim); font-size: 0.9rem; }
footer {
  position: relative; z-index: 1; margin-top: 7rem; padding: 2.2rem 1rem 2.4rem; width: 100vw;
  border-top: 1px solid rgba(242, 233, 220, 0.18);
  background: linear-gradient(rgba(5, 3, 8, 0.25), rgba(5, 3, 8, 0.72));
}
.foot-links { display: flex; gap: 2rem; justify-content: center; margin-bottom: 1.1rem; flex-wrap: wrap; }
.foot-links a { color: #d8cfe6; text-decoration: none; text-shadow: 0 1px 6px rgba(5, 3, 8, 0.8); }
.foot-links a:hover { color: var(--ember); }
.foot-legal {
  color: #cabfd9; font-size: 0.72rem; max-width: 64ch; margin: 0 auto;
  text-shadow: 0 1px 6px rgba(5, 3, 8, 0.8);
}

/* ── responsive ──────────────────────────────────────────── */
@media (max-width: 940px) {
  .genjot-grid { grid-template-columns: 1fr; align-items: end; }
  .genjot-stage { order: -1; height: 38svh; min-height: 220px; }
  .manifesto { min-height: 40svh; }
  .manifesto p { font-size: clamp(1.05rem, 4.6vw, 1.4rem); }
  .row { grid-template-columns: 3rem minmax(0, 1fr); }
  .row-desc { grid-column: 2; opacity: 1; transform: none; }
  .proof-wall { grid-template-columns: 1fr 1fr; }
  .cases { grid-template-columns: 1fr; }
  .hero-mascot { right: 50%; transform: translateX(50%); width: min(72vw, 420px); opacity: 0.85; }
  .hero-foot { margin-top: 42vh; }
  #hero .mega { font-size: clamp(3.2rem, 15vw, 6rem); }
}
@media (max-width: 520px) {
  .proof-wall { grid-template-columns: 1fr; }
  .btn-main { width: 100%; text-align: center; }
  .hud { left: 50%; transform: translateX(-50%); }
}

/* ── reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #genjot, #process { height: auto; }
  .genjot-sticky, .process-sticky { position: static; height: auto; }
  .manifesto p { position: static; transform: none; opacity: 1; visibility: visible; margin-bottom: 1.6rem; }
  .manifesto .w { color: var(--cream); filter: none; transform: none; }
  .manifesto .w.hot { color: var(--ember); }
  .process-track { flex-direction: column; width: auto; }
  .panel { width: auto; margin-bottom: 3rem; }
  .line-in { transform: none; }
  .scroll-cue, #noise { display: none; }
}
