/* ════════════════════════════════════════════════
   ANALOGALCHEMY — landing
   palette drawn from the app: deep navy + molten gold
   ════════════════════════════════════════════════ */

:root {
  --ink:        #0b1020;   /* page background          */
  --ink-2:      #11182e;   /* raised panels            */
  --ink-3:      #1a2240;   /* borders / hairlines      */
  --gold:       #e8a33d;   /* primary accent           */
  --gold-soft:  #d9b36a;
  --parchment:  #f0e9d8;   /* headline ivory           */
  --mist:       #9aa3c0;   /* body text                */
  --faint:      #5e6890;   /* labels                   */
  --bass:    #a78bfa;
  --drums:   #f87171;
  --guitar:  #60a5fa;
  --other:   #4ade80;
  --piano:   #facc15;
  --vocals:  #fb923c;
  --serif: "Instrument Serif", Georgia, serif;
  --sans:  "Space Grotesk", -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--mist);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (max-width: 760px) { body { cursor: auto; } }

::selection { background: var(--gold); color: var(--ink); }

.mono { font-family: var(--mono); letter-spacing: 0.14em; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── grain ─────────────────────────────────────── */
.grain {
  position: fixed; inset: -100%;
  pointer-events: none; z-index: 90; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-3%,2%); }
  50% { transform: translate(2%,-3%); } 75% { transform: translate(-2%,-2%); }
}

/* ── cursor ────────────────────────────────────── */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.cursor { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(232,163,61,0.45);
  transition: width .3s, height .3s, border-color .3s, background .3s;
}
.cursor-ring.is-hover { width: 56px; height: 56px; background: rgba(232,163,61,0.08); border-color: var(--gold); }
@media (hover: none), (max-width: 760px) { .cursor, .cursor-ring { display: none; } }

/* ── loader ────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem; color: var(--gold);
}
.loader__sigil { width: 88px; height: 88px; animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader__count { font-size: 1.05rem; color: var(--parchment); }
.loader__label { font-size: 0.6rem; color: var(--faint); }

/* ── nav ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(rgba(11,16,32,0.85), rgba(11,16,32,0));
  backdrop-filter: blur(2px);
  transition: transform .45s ease;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo { display: flex; align-items: center; gap: .55rem; color: var(--parchment); font-weight: 500; letter-spacing: .02em; }
.nav__mark { width: 22px; height: 22px; color: var(--gold); }
.nav__links { display: flex; gap: clamp(1rem, 3vw, 2.4rem); font-size: .62rem; }
.nav__links a { color: var(--faint); transition: color .25s; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s;
}
.nav__links a:hover { color: var(--parchment); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: .62rem; color: var(--gold);
  border: 1px solid rgba(232,163,61,0.4); border-radius: 999px;
  padding: .55em 1.2em; transition: background .3s, color .3s;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* ── hero ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 6rem 1.5rem 5rem;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__over { font-size: .62rem; color: var(--gold); margin-bottom: 1.1rem; }
.hero__seo {
  font-size: .66rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 2.2rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 400; color: var(--parchment);
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.98; letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; will-change: transform; }
.hero__sub {
  max-width: 540px; margin: 2.2rem auto 0;
  font-size: clamp(.95rem, 1.4vw, 1.08rem); color: var(--mist);
}
.hero__sub strong { color: var(--parchment); font-weight: 500; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__meta {
  position: absolute; bottom: 1.6rem; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  font-size: .58rem; color: var(--faint);
}
.hero__scroll { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-soft); }
.hero__scroll i {
  width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent);
  display: inline-block; animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 760px) { .hero__meta span:first-child, .hero__meta span:last-child { display: none; } .hero__meta { justify-content: center; } }

/* ── buttons ───────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: .95em 2.1em; border-radius: 999px; font-size: .92rem; font-weight: 500;
  overflow: hidden; transition: color .35s, border-color .35s;
}
.btn span { position: relative; z-index: 1; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold::before {
  content: ""; position: absolute; inset: 0; background: var(--parchment);
  transform: translateY(101%); transition: transform .45s cubic-bezier(.65,0,.35,1);
}
.btn--gold:hover::before { transform: translateY(0); }
.btn--ghost { border: 1px solid var(--ink-3); color: var(--mist); font-size: .68rem; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--big { padding: 1.15em 2.6em; font-size: 1.05rem; }

/* ── marquee ───────────────────────────────────── */
.marquee {
  padding: 1.4rem 0; border-top: 1px solid var(--ink-3); border-bottom: 1px solid var(--ink-3);
  overflow: hidden; display: grid; gap: 1.1rem;
  background: var(--ink-2);
}
.marquee__track { display: flex; gap: 2.8rem; width: max-content; font-size: .68rem; color: var(--faint); }
.marquee__track span { white-space: nowrap; }
.marquee__track span::after { content: "·"; margin-left: 2.8rem; color: var(--gold); }

/* ── manifesto ─────────────────────────────────── */
.manifesto { padding: clamp(7rem, 16vh, 12rem) clamp(1.5rem, 8vw, 6rem); max-width: 1100px; margin: 0 auto; }
.manifesto__text {
  font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.32; color: var(--faint); font-weight: 400;
}
.manifesto__text .w { transition: color .35s ease, text-shadow .35s ease; }
.manifesto__text .w.lit { color: var(--parchment); }
.manifesto__text .w.lit.em { color: var(--gold); font-style: italic; text-shadow: 0 0 28px rgba(232,163,61,.35); }

/* ── chapters ──────────────────────────────────── */
.chapter { padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 5rem); max-width: 1380px; margin: 0 auto; }
.chapter--dark {
  max-width: none;
  background: var(--ink-2);
  border-top: 1px solid var(--ink-3); border-bottom: 1px solid var(--ink-3);
}
.chapter--dark > * { max-width: 1380px; margin-left: auto; margin-right: auto; }
.chapter__head { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.chapter__num { display: block; font-size: .62rem; color: var(--gold); margin-bottom: 1.2rem; }
.chapter__title {
  font-family: var(--serif); font-weight: 400; color: var(--parchment);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem); line-height: 1.04;
}
.chapter__title em { color: var(--gold); font-style: italic; }
.wrd { display: inline-block; white-space: nowrap; }
.chapter__title .char { display: inline-block; will-change: transform, opacity; }
.chapter__grid {
  display: grid; grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.chapter__grid--flip { grid-template-columns: 7fr minmax(280px, 5fr); }
.chapter__grid--flip .chapter__copy { order: 2; }
.chapter__copy p { font-size: clamp(.98rem, 1.3vw, 1.12rem); margin-bottom: 1.8rem; }
.chapter__copy strong { color: var(--gold-soft); font-weight: 500; }
.chapter__list { list-style: none; display: grid; gap: .85rem; font-size: .66rem; color: var(--mist); }
.chapter__list i { color: var(--gold); font-style: normal; margin-right: .6rem; }
@media (max-width: 920px) {
  .chapter__grid, .chapter__grid--flip { grid-template-columns: 1fr; }
  .chapter__grid--flip .chapter__copy { order: 0; }
}

/* ── screenshots ───────────────────────────────── */
.shot {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.65), 0 0 0 1px rgba(232,163,61,.06);
  transform-style: preserve-3d; will-change: transform;
}
.shot--wide { margin-top: clamp(2.5rem, 6vh, 4.5rem); }
.shot__chrome {
  display: flex; align-items: center; gap: .45rem;
  padding: .65rem .9rem; font-size: .56rem; color: var(--faint);
  background: #0d1326; border-bottom: 1px solid var(--ink-3);
}
.shot__chrome i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); }
.shot__chrome i:nth-child(1) { background: #f87171aa; }
.shot__chrome i:nth-child(2) { background: #facc15aa; }
.shot__chrome i:nth-child(3) { background: #4ade80aa; }
.shot__chrome span { margin-left: .6rem; }
.shot img, .shot video { width: 100%; display: block; }
.shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(125deg, rgba(232,163,61,.10), transparent 35%);
}

/* ── stem lab ──────────────────────────────────── */
.stemlab { padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 5rem); max-width: 1380px; margin: 0 auto; }
.stemlab__sub { margin-top: 1.4rem; max-width: 480px; }
.stems { display: grid; gap: .65rem; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.stems__row {
  display: grid; grid-template-columns: 86px 1fr auto; align-items: center; gap: 1.1rem;
  padding: .7rem 1.1rem; border: 1px solid var(--ink-3); border-radius: 10px;
  background: var(--ink-2); will-change: transform, opacity;
}
.stems__label { font-size: .6rem; }
.stems__tools { font-size: .54rem; color: var(--faint); }
.stems__wave { display: flex; align-items: center; gap: 3px; height: 38px; overflow: hidden; }
.stems__wave b {
  flex: 1 0 auto; width: 4px; border-radius: 2px;
  background: currentColor; min-height: 2px;
  transform-origin: center; will-change: transform;
}
.stems__row[data-stem="bass"]   { color: var(--bass); }
.stems__row[data-stem="drums"]  { color: var(--drums); }
.stems__row[data-stem="guitar"] { color: var(--guitar); }
.stems__row[data-stem="other"]  { color: var(--other); }
.stems__row[data-stem="piano"]  { color: var(--piano); }
.stems__row[data-stem="vocals"] { color: var(--vocals); }
.stems__row .stems__label { color: inherit; }
@media (max-width: 640px) { .stems__tools { display: none; } .stems__row { grid-template-columns: 70px 1fr; } }

/* ── local ─────────────────────────────────────── */
.local {
  text-align: center;
  padding: clamp(7rem, 18vh, 13rem) clamp(1.5rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,163,61,0.07), transparent 70%),
    var(--ink);
}
.local__title {
  font-family: var(--serif); font-weight: 400; color: var(--parchment);
  font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: 1.02;
}
.local__title em { color: var(--gold); font-style: italic; }
.local__title .line { display: block; overflow: hidden; }
.local__title .word { display: inline-block; }
.local__sub { max-width: 520px; margin: 2rem auto 0; }
.local__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--ink-3);
  border: 1px solid var(--ink-3); border-radius: 14px; overflow: hidden;
  max-width: 980px; margin: 4rem auto 0;
}
.stat { background: var(--ink); padding: 2.2rem 1.4rem; }
.stat__num { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold); font-weight: 500; }
.stat__unit { font-size: 1.1rem; color: var(--gold-soft); }
.stat p { font-size: .8rem; color: var(--faint); margin-top: .4rem; }

/* ── cta ───────────────────────────────────────── */
.cta {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(8rem, 20vh, 14rem) 1.5rem;
}
.cta__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.cta__over { position: relative; z-index: 2; font-size: .62rem; color: var(--gold); margin-bottom: 1.6rem; }
.cta__over s { opacity: .45; margin-right: .15em; }
.cta__title {
  position: relative; z-index: 2;
  font-family: var(--serif); font-weight: 400; color: var(--parchment);
  font-size: clamp(3rem, 9vw, 7.5rem); line-height: 1.02;
}
.cta__title em { color: var(--gold); font-style: italic; }
.cta__title .char { display: inline-block; }
.cta__actions { position: relative; z-index: 2; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.cta__fine { position: relative; z-index: 2; margin-top: 2.4rem; font-size: .58rem; color: var(--faint); }

/* ── footer ────────────────────────────────────── */
.footer { border-top: 1px solid var(--ink-3); padding: 2rem clamp(1.2rem, 4vw, 3rem); }
.footer__row { display: flex; justify-content: space-between; align-items: center; font-size: .56rem; color: var(--faint); }
.footer__sigil { color: var(--gold); font-size: 1rem; }
.footer__row a { color: var(--gold-soft); text-decoration: none; }
.footer__row a:hover { color: var(--gold); }

/* ── nav right / language toggle ───────────────── */
.nav__right { display: flex; align-items: center; gap: .7rem; }
.nav__lang {
  font-size: .62rem; color: var(--mist); background: none;
  border: 1px solid var(--ink-3); border-radius: 999px;
  padding: .55em 1.05em; cursor: inherit;
  transition: border-color .3s, color .3s;
}
.nav__lang:hover { border-color: var(--gold); color: var(--gold); }

/* ── interactive tag orbit ─────────────────────── */
.orbit-demo {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  border: 1px solid var(--ink-3); border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 55% at 50% 52%, rgba(232,163,61,0.06), transparent 70%),
    var(--ink-2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.65);
}
.orbit-demo__chrome {
  display: flex; align-items: center; gap: .45rem;
  padding: .65rem .9rem; font-size: .56rem; color: var(--faint);
  background: #0d1326; border-bottom: 1px solid var(--ink-3);
}
.orbit-demo__chrome i { width: 9px; height: 9px; border-radius: 50%; }
.orbit-demo__chrome i:nth-child(1) { background: #f87171aa; }
.orbit-demo__chrome i:nth-child(2) { background: #facc15aa; }
.orbit-demo__chrome i:nth-child(3) { background: #4ade80aa; }
.orbit-demo__chrome span { margin-left: .6rem; }
.orbit-demo__stage {
  position: relative; width: min(560px, 92%); aspect-ratio: 1;
  margin: 1.5rem auto; touch-action: none;
}
.orbit-demo__ring {
  position: absolute; left: 50%; top: 50%; width: var(--r); height: var(--r);
  transform: translate(-50%,-50%); border-radius: 50%;
  border: 1px dashed rgba(94,104,144,0.35);
  pointer-events: none;
}
.orbit-demo__ember {
  position: absolute; left: 50%; top: 50%; width: 18px; height: 18px;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: var(--gold); pointer-events: none;
  box-shadow: 0 0 22px 6px rgba(232,163,61,.55), 0 0 70px 30px rgba(232,163,61,.18);
  animation: emberPulse 2.6s ease-in-out infinite;
}
@keyframes emberPulse { 50% { box-shadow: 0 0 30px 10px rgba(232,163,61,.7), 0 0 90px 42px rgba(232,163,61,.24); } }
.orbit-tag {
  position: absolute; left: 50%; top: 50%;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .1em;
  color: var(--mist); background: var(--ink);
  border: 1px solid var(--ink-3); border-radius: 999px;
  padding: .5em 1.1em; cursor: grab; user-select: none;
  white-space: nowrap; will-change: transform;
  transition: border-color .25s, color .25s, box-shadow .25s, background .25s;
}
.orbit-tag.is-strong {
  color: var(--ink); background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 18px rgba(232,163,61,.5);
}
.orbit-tag.is-drag { cursor: grabbing; border-color: var(--gold); color: var(--gold); }
.orbit-tag.is-drag.is-strong { color: var(--ink); }
.orbit-demo__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 1.1rem; font-size: .58rem; color: var(--faint);
  border-top: 1px solid var(--ink-3); background: #0d1326;
}
.orbit-demo__readout { color: var(--gold-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orbit-demo__stir {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .14em;
  color: var(--gold); background: none; cursor: inherit;
  border: 1px solid rgba(232,163,61,.4); border-radius: 999px; padding: .55em 1.2em;
  transition: background .3s, color .3s; flex-shrink: 0;
}
.orbit-demo__stir:hover { background: var(--gold); color: var(--ink); }

/* ── listen / audio demos ──────────────────────── */
.hear {
  margin-top: clamp(2rem, 5vh, 3.5rem);
  border: 1px solid var(--ink-3); border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(232,163,61,0.06), transparent 70%),
    var(--ink-2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.65);
}
.hear__chrome {
  display: flex; align-items: center; gap: .45rem;
  padding: .65rem .9rem; font-size: .56rem; color: var(--faint);
  background: #0d1326; border-bottom: 1px solid var(--ink-3);
}
.hear__chrome i { width: 9px; height: 9px; border-radius: 50%; }
.hear__chrome i:nth-child(1) { background: #f87171aa; }
.hear__chrome i:nth-child(2) { background: #facc15aa; }
.hear__chrome i:nth-child(3) { background: #4ade80aa; }
.hear__chrome span { margin-left: .6rem; }
.hear__input {
  margin: 0; padding: 1.2rem 1.3rem .3rem;
  font-size: .82rem; line-height: 1.5; color: var(--gold-soft);
}
.hear__tabs {
  display: flex; flex-wrap: wrap; gap: .55rem;
  padding: 1rem 1.3rem;
}
.hear__tab {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .12em;
  color: var(--faint); background: none; cursor: pointer;
  border: 1px solid var(--ink-3); border-radius: 999px; padding: .6em 1.2em;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.hear__tab:hover { color: var(--gold); border-color: rgba(232,163,61,.5); }
.hear__tab.is-active {
  color: var(--ink); background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 18px rgba(232,163,61,.4);
}
.player {
  display: flex; align-items: center; gap: 1.1rem;
  padding: .3rem 1.3rem 1.5rem;
}
.player__audio { display: none; }
.player__dial {
  flex: none; position: relative; width: 58px; height: 58px;
  border: 0; background: none; padding: 0; cursor: pointer; overflow: visible;
}
.player__dial::before {
  content: ""; position: absolute; inset: -12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,163,61,.30), rgba(232,163,61,0) 68%);
  pointer-events: none; animation: dialAura 2.8s ease-in-out infinite;
}
@keyframes dialAura { 0%,100% { transform: scale(.9); opacity: .5; } 50% { transform: scale(1.12); opacity: .9; } }
.player.is-playing .player__dial::before { opacity: .35; animation-duration: 1.6s; }
.player__sparks { position: absolute; inset: 0; pointer-events: none; }
.player__sparks .spark {
  position: absolute; width: 4px; height: 4px; margin: -2px 0 0 -2px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px 1px rgba(232,163,61,.85);
  opacity: 0; animation: sparkle 2.4s ease-in-out infinite;
}
@keyframes sparkle { 0%,100% { opacity: 0; transform: scale(.2); } 8% { opacity: 1; transform: scale(1); } 32% { opacity: 0; transform: scale(.4); } }
.player.is-playing .player__sparks { opacity: .4; }
@media (prefers-reduced-motion: reduce) {
  .player__dial::before, .player__sparks .spark { animation: none !important; }
  .player__sparks .spark { opacity: .55; }
}
.player__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg, var(--ink-3) 0);
}
.player__ember {
  position: absolute; inset: 5px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 0 18px 3px rgba(232,163,61,.4);
  animation: emberPulse 2.6s ease-in-out infinite;
}
.player.is-playing .player__ember { animation-duration: 1.4s; }
.player__ic--play {
  width: 0; height: 0; margin-left: 3px;
  border-left: 13px solid var(--ink);
  border-top: 8px solid transparent; border-bottom: 8px solid transparent;
}
.player__ic--pause { display: none; gap: 4px; }
.player__ic--pause i { width: 4px; height: 15px; background: var(--ink); border-radius: 1px; }
.player.is-playing .player__ic--play { display: none; }
.player.is-playing .player__ic--pause { display: flex; }
.player__main { flex: 1; min-width: 0; }
.player__wave {
  position: relative; display: flex; align-items: center; gap: 2px;
  height: 46px; cursor: pointer;
}
.player__wave .bar {
  flex: 1; min-height: 2px; border-radius: 2px;
  background: rgba(94,104,144,.38); transform-origin: center;
  transition: background .1s;
}
.player.is-playing .player__wave .bar { animation: waveBreathe 1.5s ease-in-out infinite; }
@keyframes waveBreathe { 50% { transform: scaleY(.88); } }
.player__head {
  position: absolute; top: -3px; bottom: -3px; width: 2px; left: 0;
  background: var(--gold); box-shadow: 0 0 10px 2px rgba(232,163,61,.7);
  pointer-events: none;
}
.player__readout {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .7rem; font-size: .58rem; letter-spacing: .1em;
}
.player__meta { color: var(--gold-soft); }
.player__time { color: var(--faint); }
.player__cur { color: var(--gold-soft); }

/* ── voice chapter ─────────────────────────────── */
.steps {
  display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1rem;
  font-size: .6rem; color: var(--faint);
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.steps b { color: var(--faint); font-weight: 400; opacity: .5; }
.step { display: inline-flex; align-items: center; gap: .45rem; transition: color .4s; }
.step i {
  font-style: normal; color: var(--gold);
  opacity: 0; transform: scale(0); transition: opacity .35s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.step.is-done { color: var(--parchment); }
.step.is-done i { opacity: 1; transform: none; }
.epoch { margin-top: 2.2rem; }
.epoch__label { font-size: .6rem; color: var(--faint); margin-bottom: .55rem; }
.epoch__label b { color: var(--gold); font-weight: 500; }
.epoch__bar { height: 4px; background: var(--ink-3); border-radius: 2px; overflow: hidden; }
.epoch__bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 12px rgba(232,163,61,.6);
}
.voice__row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: clamp(2.5rem, 6vh, 4rem);
}
@media (max-width: 920px) { .voice__row { grid-template-columns: 1fr; } }

/* ── faq ───────────────────────────────────────── */
.faq__grid {
  display: grid; grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.faq__reqs { border: 1px solid var(--ink-3); border-radius: 14px; overflow: hidden; background: var(--ink-2); }
.reqs__head { padding: .8rem 1.1rem; font-size: .6rem; color: var(--gold); border-bottom: 1px solid var(--ink-3); background: #0d1326; }
.reqs { width: 100%; border-collapse: collapse; font-size: .6rem; }
.reqs th, .reqs td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--ink-3); }
.reqs th { color: var(--gold-soft); font-weight: 500; }
.reqs td:first-child { color: var(--faint); width: 86px; }
.reqs td { color: var(--mist); }
.reqs tr:last-child td { border-bottom: none; }
.faq__items { display: grid; }
.faq__item { border-bottom: 1px solid var(--ink-3); }
.faq__item:first-child { border-top: 1px solid var(--ink-3); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem .2rem; background: none; border: none; cursor: inherit;
  font-family: var(--sans); font-weight: 400; font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--parchment); text-align: left; transition: color .3s;
}
.faq__q:hover { color: var(--gold); }
.faq__q i {
  font-style: normal; font-family: var(--mono); color: var(--gold);
  transition: transform .35s ease; flex-shrink: 0;
}
.faq__item.is-open .faq__q i { transform: rotate(45deg); }
.faq__a { height: 0; overflow: hidden; }
.faq__a p { padding: 0 .2rem 1.4rem; max-width: 560px; font-size: .95rem; }
@media (max-width: 920px) { .faq__grid { grid-template-columns: 1fr; } }

/* ── reveal defaults (gsap sets final state) ───── */
[data-reveal] { opacity: 0; transform: translateY(36px); }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .grain, .loader__sigil { animation: none; }
}
