/* Sacred Numbers — front-end v2 "The Dive".
   Act 1 is a scroll-scrubbed frame sequence ending on a static sigil; all motion
   in the arrival/generator is UI motion (button pulse, reels, reveal).
   Palette: deep cosmic ground, gold sigil light, soft violet depth. */

/* ============ self-hosted web fonts (no runtime Google hotlink) ============ */
/* Display serif — ceremonial headings. */
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}
/* Reading serif — calm, readable body prose. */
@font-face {
  font-family: "EB Garamond"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/eb-garamond-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond"; font-style: italic; font-weight: 400;
  font-display: swap; src: url("../fonts/eb-garamond-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/eb-garamond-latin-600-normal.woff2") format("woff2");
}
/* Geometric sans — UI / chrome / numerals. */
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}

:root {
  --bg: #07060d;
  --bg-2: #0d0b1a;
  --indigo: #0d0b1e;
  --ink: #ece7f5;
  --ink-dim: #9a93b3;
  --gold: #e8c66a;
  --gold-soft: #f6e4ad;
  --violet: #6d5bd0;
  --line: rgba(232, 198, 106, 0.22);
  --seal-ms: 600ms;
  --wipe-ms: 800ms;

  /* Type system (Pashur may swap exact faces; the wiring is the point). */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif; /* headings */
  --font-serif:   "EB Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif; /* reading prose */
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif; /* UI / chrome */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--indigo);
  color: var(--ink);
  font: 16px/1.6 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.muted { color: var(--ink-dim); font-size: 0.9rem; }

/* ---------- skip link ---------- */
.skip-link {
  position: fixed; top: -60px; left: 1rem; z-index: 100;
  background: var(--gold-soft); color: #120c02; padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px; text-decoration: none; font-size: 0.9rem;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; }

/* ---------- persistent mute ---------- */
.mute {
  position: fixed; top: 1rem; right: 1rem; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13, 11, 26, 0.7); color: var(--gold);
  border: 1px solid var(--line); cursor: pointer; font-size: 1.1rem;
  backdrop-filter: blur(6px);
}
.mute__off { display: none; }
.mute[aria-pressed="true"] .mute__on { display: none; }
.mute[aria-pressed="true"] .mute__off { display: inline; }

/* ================= ACT 1 — THE DIVE ================= */
/* Tall section: its scroll length drives the scrub. The pin stays put. */
.dive { position: relative; height: 500svh; background: var(--indigo); }
body[data-mode="entitled"] .dive { height: 240svh; } /* condensed dive for Flow B */

.dive__pin {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
}
.dive__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.dive__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 4;
  font: 600 0.6rem/1.4 ui-monospace, monospace; letter-spacing: 0.13em;
  color: rgba(246, 228, 173, 0.55); text-transform: uppercase;
  border: 1px dashed rgba(246, 228, 173, 0.3); padding: 0.3rem 0.5rem; border-radius: 6px;
}
.dive__badge em { color: var(--ink-dim); font-style: normal; }

/* Pinned phase texts, each in its own negative-space zone. */
.dive__texts { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.phase {
  position: absolute; max-width: min(32rem, 82vw); will-change: opacity, transform;
  padding: 1rem 1.2rem; border-radius: 14px;
  background: radial-gradient(120% 120% at 50% 50%, rgba(7, 6, 14, 0.55), rgba(7, 6, 14, 0) 78%);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.85);
}
.phase h1 { font-size: clamp(1.8rem, 5.4vw, 3.2rem); margin: 0; line-height: 1.12; }
.phase p { font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin: 0; color: var(--gold-soft); }
.phase .quiet { color: var(--ink); font-style: italic; }

.pos-upper-center { top: 12%; left: 50%; transform: translateX(-50%); text-align: center; }
.pos-left-third   { top: 50%; left: 5%;  transform: translateY(-50%); text-align: left;  max-width: min(24rem, 42vw); }
.pos-right-third  { top: 50%; right: 5%; transform: translateY(-50%); text-align: right; max-width: min(24rem, 42vw); }
.pos-lower-third  { bottom: 13%; left: 50%; transform: translateX(-50%); text-align: center; }

.scroll-hint {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 4;
  color: var(--ink-dim); font-size: 0.8rem; letter-spacing: 0.08em;
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ================= §2 LAYERED COSMOS BACKGROUND ================= */
/* Fixed cosmos image + darkening scrim for global readability; flat indigo is
   the loading / reduced-data fallback. A slow star/dust canvas sits above it. */
.cosmos {
  position: fixed; inset: 0; z-index: -2; background-color: var(--indigo);
  background-image:
    linear-gradient(rgba(7,6,14,0.44), rgba(7,6,14,0.62)),
    image-set(url("/static/img/cosmos_bg.webp") 1x);
  background-size: cover; background-position: center;
}
@media (max-width: 820px) {
  .cosmos { background-image:
    linear-gradient(rgba(7,6,14,0.48), rgba(7,6,14,0.66)),
    url("/static/img/cosmos_bg_1280.webp"); }
}
.stars { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* Sections are transparent so the cosmos shows through (and the sigil can
   screen-blend onto it). Gentle scrims live on the panels that need them. */
.generator {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 1.5rem; gap: 1.6rem; background: transparent;
}

/* ================= §3 SIGIL (generated core + code-drawn ring) ================= */
.arrival {
  width: min(92vw, 560px); aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  /* A soft dark backing right behind the sigil gives the screen-blended gold a
     dark ground to glow against, fading out so the cosmos still surrounds it. */
  background: radial-gradient(circle at 50% 50%, rgba(6,5,12,0.62), rgba(6,5,12,0.28) 46%, transparent 68%);
}
/* One composition only: core PNG + SVG ring, screen-blended onto the cosmos
   (black vanishes, glow preserved — no alpha cutout, no rectangular edge). */
/* CRITICAL: none of the blended core's ancestors (.sigil, .arrival, .generator)
   may become a stacking context, or the screen blend can't reach the cosmos.
   So NO transform/opacity/filter on .sigil; the blend + fade live on the leaves
   themselves (opacity on the same element as mix-blend-mode ramps the blended
   result in smoothly, without isolating it). */
.sigil { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.sigil__glow {
  position: absolute; inset: 6%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(232,198,106,0.18), rgba(232,198,106,0) 62%);
  opacity: 0;
}
.sigil__core, .sigil__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.sigil__core { object-fit: contain; mix-blend-mode: screen; opacity: 0; }
.sigil__ring, .sigil__ring-svg { display: block; width: 100%; height: 100%; }
.sigil__ring-svg { mix-blend-mode: screen; opacity: 0; }
/* Idle: the measured ring drifts very slowly; the core + glow stay still. */
.sigil__ring { animation: ring-rotate 300s linear infinite; transform-origin: 50% 50%; }

/* Arrival: each leaf fades its own opacity in (no wrapper isolation), then the
   glow breathes gently forever. */
.arrival.in .sigil__core     { animation: sigil-in 1.7s ease forwards; }
.arrival.in .sigil__ring-svg { animation: sigil-in 1.7s ease 0.25s forwards; }
.arrival.in .sigil__glow     { animation: sigil-in 2s ease 0.4s forwards, breathe-glow 6.5s ease-in-out 2s infinite; }
@keyframes sigil-in   { to { opacity: 1; } }
@keyframes ring-rotate { to { transform: rotate(360deg); } }
@keyframes breathe-glow {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50%      { opacity: 1;   transform: scale(1.03); }
}

/* ================= GENERATOR ================= */
.generator__lead { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; max-width: 32rem; text-align: center; color: var(--ink); margin: 0; }
.stage { position: relative; z-index: 2; text-align: center; }
.align {
  font: 600 1.3rem/1 var(--font-display); letter-spacing: 0.06em;
  color: #120c02; background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: none; border-radius: 999px; padding: 1.1rem 2.2rem; cursor: pointer;
  box-shadow: 0 0 0 0 rgba(232, 198, 106, 0.55);
  animation: breathe 4s ease-in-out infinite;
}
.align:active { transform: scale(0.97); }
.align__hint { margin-top: 1rem; color: var(--ink-dim); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
@keyframes breathe {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 24px 4px rgba(232, 198, 106, 0.25); }
  50%      { transform: scale(1.05); box-shadow: 0 0 46px 12px rgba(232, 198, 106, 0.5); }
}
body.drawing .align, body.drawn .align { animation: none; opacity: 0.25; pointer-events: none; }

/* ---------- reels ---------- */
.result { position: relative; z-index: 2; width: min(92vw, 640px); text-align: center; margin-top: 1rem; }
.reels { display: flex; gap: 0.6rem; justify-content: center; margin: 0 auto 1.4rem; }
.reel {
  width: clamp(48px, 15vw, 84px); height: clamp(66px, 21vw, 116px);
  border-radius: 12px; background: linear-gradient(180deg, #14102a, #0a0817);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 8px 20px rgba(0,0,0,0.6);
}
.reel__digit { font-size: clamp(2rem, 9vw, 3.4rem); color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.reel--spinning .reel__digit { animation: reelspin 90ms linear infinite; filter: blur(1.5px); }
@keyframes reelspin { from { transform: translateY(-40%); } to { transform: translateY(40%); } }
.reel--settled { animation: settlepop 260ms cubic-bezier(.2,1.4,.3,1); border-color: var(--gold); }
@keyframes settlepop { 0% { transform: scale(1.14); } 100% { transform: scale(1); } }

.flash {
  position: fixed; inset: 0; z-index: 40; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(246,228,173,0.85), transparent 60%);
  opacity: 0; animation: flash 520ms ease-out;
}
@keyframes flash { 0% { opacity: 0; } 20% { opacity: 1; } 100% { opacity: 0; } }

/* ---------- moment seal ---------- */
.seal {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.2rem;
  margin: 0 auto 1.6rem; padding: 0.9rem 1.4rem;
  border: 1px solid var(--line); border-radius: 14px; background: rgba(13,11,26,0.5);
}
.seal[data-in] { animation: stampin var(--seal-ms) cubic-bezier(.2,1.2,.3,1); }
@keyframes stampin { 0% { transform: rotate(-12deg) scale(1.4); opacity: 0; } 60% { opacity: 1; } 100% { transform: rotate(0) scale(1); opacity: 1; } }
.seal__glyph { font-size: 1.8rem; color: var(--gold); line-height: 1; }
.seal__line { font-size: 0.86rem; color: var(--ink); }
.seal__stamp { font: 500 0.7rem/1.4 ui-monospace, monospace; color: var(--ink-dim); }

/* ---------- free reading (static after entrance) ---------- */
.reading { position: relative; max-width: 40rem; margin: 0 auto; text-align: left; overflow: hidden; }
.reading__mask { position: absolute; inset: 0; z-index: 3; background: var(--indigo); transform-origin: top; }
.reading[data-wipe] .reading__mask { animation: wipe var(--wipe-ms) ease forwards; }
@keyframes wipe { from { transform: scaleY(1); } to { transform: scaleY(0); } }
.reading__number { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); margin: 0 0 0.6rem; }
.reading__body { font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.72; color: var(--ink); }
.reading__body p { margin: 0 0 1rem; }
.reading__body .astro { color: var(--gold-soft); font-style: italic; }
.reading__tier { color: var(--ink-dim); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }

/* ---------- depth cue ---------- */
.depth { display: block; margin: 2.4rem auto 0; text-decoration: none; color: var(--ink-dim); }
.depth__geo { display: block; height: 120px; margin: 0 auto 0.6rem; width: 2px;
  background: linear-gradient(var(--line), transparent); box-shadow: 0 0 30px 8px rgba(109,91,208,0.15); }
.depth__copy { font-size: 0.9rem; letter-spacing: 0.06em; }

/* ================= placeholders ================= */
.placeholder { position: relative; border: 1px dashed rgba(246,228,173,0.4); border-radius: 14px; }
.placeholder__tag {
  font: 600 0.62rem/1.4 ui-monospace, monospace; letter-spacing: 0.12em; text-transform: uppercase;
  color: #120c02; background: rgba(246,228,173,0.75); display: inline-block;
  padding: 0.3rem 0.55rem; border-radius: 0 0 8px 0; position: absolute; top: 0; left: 0;
}

/* ---------- birth form (Flow B) ---------- */
.birth { display: grid; gap: 0.9rem; max-width: 26rem; margin: 0.6rem auto 0; text-align: left; position: relative; }
.birth label { display: grid; gap: 0.3rem; font-size: 0.85rem; color: var(--ink-dim); }
.birth input { padding: 0.6rem 0.7rem; border-radius: 8px; border: 1px solid var(--line); background: #0a0817; color: var(--ink); font: inherit; }
.birth__unknown { grid-auto-flow: column; justify-content: start; align-items: center; gap: 0.5rem; }
.birth__note { color: var(--gold-soft); font-size: 0.85rem; }
.place-list {
  list-style: none; margin: 0; padding: 0.3rem; position: absolute; z-index: 6;
  left: 0; right: 0; top: auto; background: #0a0817; border: 1px solid var(--line);
  border-radius: 8px; max-height: 12rem; overflow: auto;
}
.place-list li { padding: 0.5rem 0.6rem; border-radius: 6px; cursor: pointer; color: var(--ink); font-size: 0.9rem; }
.place-list li:hover { background: rgba(232,198,106,0.14); }

/* ================= ACT 2 — premium (calmer) ================= */
.premium { max-width: 60rem; margin: 6rem auto; padding: 3rem 1.5rem; position: relative; }
.premium h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); text-align: center; margin-bottom: 2.4rem; }
.premium__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.premium__card { padding: 1.6rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(13,11,26,0.4); }
.premium__card ul { padding-left: 1.1rem; color: var(--ink-dim); }
.pdf-mock { aspect-ratio: 3/4; border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-dim); font: 600 0.7rem/1.6 ui-monospace, monospace; letter-spacing: 0.1em;
  background: repeating-linear-gradient(45deg, #0a0817, #0a0817 12px, #0d0b1a 12px, #0d0b1a 24px); }
.packages { margin-top: 3rem; text-align: center; }
.packages__row { display: flex; gap: 1rem; justify-content: center; margin: 1.4rem 0; flex-wrap: wrap; }
.pkg { padding: 1.4rem 1.8rem; border: 1px solid var(--line); border-radius: 12px; min-width: 8rem; }
.pkg--best { border-color: var(--gold); }
.pkg__n { display: block; font-size: 2rem; color: var(--gold); }
.btn { font: 600 0.95rem inherit; padding: 0.9rem 1.6rem; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: not-allowed; }
.btn--cta { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #120c02; border: none; margin-top: 1.4rem; }

.ad-slot { max-width: 60rem; margin: 2rem auto; min-height: 90px; }

/* ================= footer / SEO ================= */
.footer { max-width: 46rem; margin: 4rem auto 3rem; padding: 2rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); color: var(--ink-dim); }
.footer h2 { font-size: 1.2rem; color: var(--ink); }
.footer a { color: var(--gold); }
.disclaimer { font-size: 0.8rem; margin-top: 1.4rem; }

.notice { position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 60;
  background: rgba(13,11,26,0.92); border: 1px solid var(--line); color: var(--ink);
  padding: 0.8rem 1.2rem; border-radius: 10px; max-width: 90vw; font-size: 0.9rem; }

/* ================= mode visibility ================= */
body[data-mode="organic"]  [data-flow="B"] { display: none !important; }
body[data-mode="entitled"] [data-flow="A"] { display: none !important; }

/* ================= poster fallback (reduced motion / phones) ================= */
body.dive-poster .dive { height: auto; background: var(--indigo); }
body.dive-poster .dive__pin { position: static; height: auto; overflow: visible; padding: 1.5rem 1rem; }
body.dive-poster .dive__texts { position: static; inset: auto; pointer-events: auto; display: grid; gap: 2rem; }
body.dive-poster .phase {
  position: static; inset: auto; transform: none !important; opacity: 1 !important;
  max-width: 40rem; margin: 0 auto; text-align: center; background: none;
}
body.dive-poster .pos-left-third, body.dive-poster .pos-right-third { text-align: center; }
.phase__poster { width: 100%; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 1rem; display: block; }

/* ================= reduced motion ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .align, .scroll-hint, .reel--spinning .reel__digit, .reel--settled, .flash,
  .sigil__ring, .sigil__glow { animation: none !important; }
  .sigil__core, .sigil__ring-svg { animation: none !important; opacity: 1 !important; }
  .sigil__glow { opacity: 0.7 !important; }
  .reading[data-wipe] .reading__mask { animation: none !important; transform: scaleY(0); }
  .seal[data-in] { animation: none !important; }
  .reel--spinning .reel__digit { filter: none; }
  .stars { display: none; }               /* particles off; static cosmos remains */
}

/* ================= dormant dive (no real frames yet) ================= */
/* The scroll-scrubbed dive is hidden until the Seedance clips exist; the page
   opens directly on the arrival + generator. Markup stays in the DOM. */
body.no-dive .dive { display: none; }

/* ================= premium — honest, purchase-gated ================= */
.premium__intro { max-width: 42rem; margin: -1rem auto 2.4rem; text-align: center; color: var(--ink-dim); }
.pkg { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; position: relative; }
.pkg__label { color: var(--ink-dim); font-size: 0.85rem; letter-spacing: 0.04em; }
.pkg__price { color: var(--gold-soft); font-size: 1.15rem; margin-top: 0.2rem; }
.pkg__flag {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  font: 600 0.6rem/1 ui-monospace, monospace; letter-spacing: 0.1em; text-transform: uppercase;
  color: #120c02; background: var(--gold); padding: 0.25rem 0.5rem; border-radius: 999px; white-space: nowrap;
}
.packages__vat { margin-top: 0.4rem; }
/* Gated buttons: clearly non-interactive, honest "launching soon". */
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.btn--cta:disabled, .btn--cta[aria-disabled="true"] { filter: grayscale(0.35); }
.gated__note { color: var(--ink-dim); font-size: 0.82rem; margin-top: 0.8rem; }
.pdf.gated { text-align: center; margin-top: 1.6rem; }

/* ================= footer — legal + operator line ================= */
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin: 1.4rem 0 1rem; }
.footer__legal a { color: var(--gold); text-decoration: none; font-size: 0.9rem; }
.footer__legal a:hover { text-decoration: underline; }
.operator { font-size: 0.8rem; color: var(--ink-dim); margin: 0.2rem 0; }

/* ================= legal pages ================= */
.legal { max-width: 44rem; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.legal a { color: var(--gold); }
.legal__home { display: inline-block; margin-bottom: 2rem; color: var(--ink-dim); text-decoration: none; font-size: 0.85rem; }
.legal h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 0.4rem; }
.legal__updated { color: var(--ink-dim); font-size: 0.8rem; margin: 0 0 2rem; }
.legal h2 { font-size: 1.15rem; color: var(--gold-soft); margin: 2rem 0 0.6rem; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin: 0.35rem 0; }
.legal__review {
  border: 1px dashed rgba(246,228,173,0.4); border-radius: 10px; padding: 0.8rem 1rem;
  color: var(--gold-soft); font-size: 0.85rem; margin: 0 0 2rem; background: rgba(232,198,106,0.05);
}
.legal__footer { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 2.5rem; padding-top: 1.4rem; }
.legal__footer .operator, .legal__footer .disclaimer { color: var(--ink-dim); font-size: 0.8rem; }
.legal__footer nav { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.legal__footer nav a { font-size: 0.85rem; text-decoration: none; }
