/* ============================================================
   DISCO — Late-Night PC Club
   Layout scheme: C — full-bleed-grid (12-col, edge field 24px / 16px mobile,
   faint vertical grid lines). Spacing scale: regular (96/56, 48 mobile).
   Do not mix container schemes. All tokens in :root.
   ============================================================ */

:root {
  /* palette */
  --c-bg-light: #f5e9ff;   /* single contrast section */
  --c-bg-dark:  #0b0712;   /* main background */
  --c-ink-inv:  #f5e9ff;   /* text on dark */
  --c-ink:      #0b0712;   /* text on light */
  --c-a1:       #ff2fb9;   /* magenta spot */
  --c-a2:       #22e0ff;   /* cyan spot */

  /* alpha helpers */
  --line:       rgba(255,47,185,0.35);
  --line-soft:  rgba(255,47,185,0.10);
  --grid-line:  rgba(245,233,255,0.06);

  /* fonts */
  --f-display: "Righteous", "Arial Black", sans-serif;
  --f-body:    "Radio Canada", system-ui, sans-serif;

  /* radius / border */
  --r-card: 16px;
  --border: 1px solid var(--line);

  /* spacing (8px step) */
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px; --s-5: 40px; --s-6: 56px;

  /* section rhythm — regular */
  --sec-y: 96px;
  --block-y: 56px;
  --edge: 24px;
}

@media (max-width: 768px) {
  :root { --sec-y: 48px; --block-y: 40px; --edge: 16px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--c-ink-inv);
  background: var(--c-bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(40px, 6.5vw, 88px); }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
p { margin: 0 0 var(--s-2); }

/* ---------- utilities ---------- */
.u-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-a1); color: var(--c-ink); padding: 10px 18px; border-radius: 0 0 12px 0;
}
.u-skip:focus { left: 0; }

.u-reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.u-reveal.is-in { opacity: 1; transform: none; }

/* ---------- full-bleed grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-4);
  padding-inline: var(--edge);
  position: relative;
}
/* faint vertical grid lines through the page */
.grid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(
    to right, transparent, transparent calc((100% - 2 * var(--edge)) / 12 - 1px),
    var(--grid-line) calc((100% - 2 * var(--edge)) / 12 - 1px),
    var(--grid-line) calc((100% - 2 * var(--edge)) / 12)
  );
  background-position: var(--edge) 0;
  background-size: calc(100% - 2 * var(--edge)) 100%;
  background-repeat: no-repeat;
}
.grid > * { position: relative; z-index: 1; }

.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-12 { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .col-span-5, .col-span-6, .col-span-7, .col-span-8 { grid-column: 1 / -1; }
}

.s-block { padding-block: var(--sec-y); }

/* ---------- motif: glow spots ---------- */
.card__spot, .log__mark {
  position: absolute; top: -14px; right: -8px; width: 88px; height: 88px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 40% 40%, rgba(255,47,185,0.45), transparent 68%);
  filter: blur(4px);
}
.log__mark { top: 6px; left: -6px; right: auto; width: 26px; height: 26px; filter: none;
  background: radial-gradient(circle at 40% 40%, var(--c-a1), rgba(255,47,185,0.15) 62%); }

.dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px;
  vertical-align: baseline;
  background: radial-gradient(circle at 40% 40%, var(--c-a2), rgba(34,224,255,0.2) 70%);
}

/* glow word — night/PC club with two side spots */
.glow-word { position: relative; white-space: nowrap; color: var(--c-a1); }
.glow-word::before, .glow-word::after {
  content: ""; position: absolute; top: 50%; width: 0.5em; height: 0.5em; border-radius: 50%;
  transform: translateY(-50%); opacity: .8;
}
.glow-word::before { left: -0.7em; background: radial-gradient(circle, var(--c-a1), transparent 70%); }
.glow-word::after  { right: -0.7em; background: radial-gradient(circle, var(--c-a2), transparent 70%); }

/* ---------- mirrorball emblem (dots) ---------- */
.ball {
  position: relative; width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  background: radial-gradient(circle at 34% 30%, rgba(255,47,185,0.5), rgba(11,7,18,0.9) 72%);
  border: 1px solid var(--line);
  display: inline-block;
}
.ball--sm { width: 26px; height: 26px; }
.ball__dot {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-a1); left: 50%; top: 50%;
  opacity: 0; transform: translate(-50%, -50%);
}
.ball.is-built .ball__dot { animation: ballAssemble .9s ease forwards; }
.ball__dot:nth-child(1){ --tx:-9px; --ty:-8px; animation-delay:.02s; }
.ball__dot:nth-child(2){ --tx: 8px; --ty:-9px; animation-delay:.08s; }
.ball__dot:nth-child(3){ --tx:11px; --ty: 3px; animation-delay:.14s; }
.ball__dot:nth-child(4){ --tx: 3px; --ty:10px; animation-delay:.20s; }
.ball__dot:nth-child(5){ --tx:-8px; --ty: 8px; animation-delay:.26s; }
.ball__dot:nth-child(6){ --tx:-11px; --ty:-2px; animation-delay:.32s; }
.ball__dot:nth-child(7){ --tx: 0px; --ty: 0px; animation-delay:.38s; }
@keyframes ballAssemble {
  from { opacity: 0; transform: translate(calc(-50% + var(--tx) * 3), calc(-50% + var(--ty) * 3)); }
  to   { opacity: .9; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))); }
}

/* ---------- buttons: pills with two edge spots ---------- */
.btn {
  --spot-l: var(--c-a1); --spot-r: var(--c-a2);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px; font-family: var(--f-body); font-weight: 600;
  font-size: 15px; letter-spacing: .02em; cursor: pointer; border: var(--border);
  overflow: hidden; isolation: isolate; transition: color .3s ease;
}
.btn::before, .btn::after {
  content: ""; position: absolute; top: 50%; width: 42px; height: 42px; border-radius: 50%;
  transform: translateY(-50%); z-index: -1; filter: blur(6px); transition: opacity .45s ease, transform .45s ease;
}
.btn::before { left: -6px;  background: var(--spot-l); opacity: .9; }
.btn::after  { right: -6px; background: var(--spot-r); opacity: .9; }
.btn:hover::before { background: var(--spot-r); }
.btn:hover::after  { background: var(--spot-l); }
.btn--primary { background: var(--c-a1); color: var(--c-ink); border-color: transparent; }
.btn--primary::before, .btn--primary::after { opacity: .55; }
.btn--ghost { background: rgba(245,233,255,0.04); color: var(--c-ink-inv); }
.btn:focus-visible { outline: 2px solid var(--c-a2); outline-offset: 3px; }

/* ---------- floor path divider ---------- */
.floorpath {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px;
  max-width: 320px; margin: 0 auto; padding-inline: var(--edge);
}
.floorpath span {
  aspect-ratio: 1; border-radius: 4px; background: rgba(245,233,255,0.05);
  border: 1px solid var(--line-soft);
}
.floorpath span.is-lit {
  background: radial-gradient(circle at 40% 40%, var(--c-a1), rgba(255,47,185,0.2) 70%);
  border-color: var(--line);
}

/* ============================================================
   NAV — nav-transparent-frost
   ============================================================ */
.nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 100;
  width: min(1200px, calc(100% - 28px));
  display: flex; align-items: center; gap: var(--s-4);
  padding: 5px 8px 5px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(11,7,18,0.45);
  backdrop-filter: blur(10px);
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease, top .35s ease;
}
.nav::before { /* magenta→cyan gradient hairline that lights up on scroll */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(100deg, var(--c-a1), var(--c-a2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .35; pointer-events: none; transition: opacity .35s ease;
}
.nav--frosted {
  background: rgba(11,7,18,0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.nav--frosted::before { opacity: .75; }
.nav__logo { display: flex; align-items: center; gap: 9px; margin-right: auto; }
.nav__logo .ball { width: 28px; height: 28px; }
.nav__brand { display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.nav__word {
  font-family: var(--f-display); font-size: 20px; letter-spacing: .05em;
  text-shadow: 0 0 10px color-mix(in srgb, var(--c-a1) 40%, transparent);
}
.nav__badge {
  font-size: 9.5px; letter-spacing: .16em; font-weight: 600; text-transform: uppercase;
  color: color-mix(in srgb, var(--c-ink-inv) 60%, transparent);
}
.nav__links { display: flex; gap: 2px; }
.nav__links a {
  font-size: 14px; font-weight: 500; opacity: .82; position: relative;
  padding: 6px 12px; border-radius: 999px;
  transition: opacity .25s ease, background-color .25s ease;
}
.nav__links a:hover, .nav__links a.is-active {
  opacity: 1; background: color-mix(in srgb, var(--c-a2) 13%, transparent);
}
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__status {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
  color: color-mix(in srgb, var(--c-ink-inv) 74%, transparent);
}
.nav__pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-a2);
  box-shadow: 0 0 6px var(--c-a2);
  animation: navPulse 2s ease-out infinite;
}
@keyframes navPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--c-a2) 65%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.nav__cta { padding: 8px 18px; font-size: 14px; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--c-ink-inv); border-radius: 2px; }

.nav__mobile {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: rgba(11,7,18,0.97); backdrop-filter: blur(14px);
  padding: 84px var(--edge) var(--s-5); display: flex; flex-direction: column; gap: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a { font-family: var(--f-display); font-size: 22px; }

@media (max-width: 980px) {
  .nav__status { display: none; }
}
@media (max-width: 820px) {
  .nav__links, .nav__right { display: none; }
  .nav__toggle { display: flex; }
}

/* ============================================================
   HERO — hero-countdown
   ============================================================ */
.s-hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 120px var(--edge) var(--sec-y);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.06) brightness(.7); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(11,7,18,0.35), transparent 60%),
    linear-gradient(180deg, rgba(11,7,18,0.55) 0%, rgba(11,7,18,0.82) 100%);
}
.hero__drift { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; opacity: .8; }
.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero__lead { font-size: clamp(16px, 2vw, 19px); max-width: 640px; margin-top: var(--s-3); color: rgba(245,233,255,0.9); }

.pill-badge {
  display: inline-block; font-size: 11px; letter-spacing: .18em; font-weight: 600;
  text-transform: uppercase; color: var(--c-a1); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 16px; margin-bottom: var(--s-3);
}

.hero__countdown {
  display: inline-flex; flex-direction: column; gap: 6px; margin: var(--s-4) 0;
  padding: 16px 24px; border: var(--border); border-radius: var(--r-card);
  background: rgba(11,7,18,0.4);
}
.hero__countdown-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.hero__clock {
  font-family: var(--f-display); font-size: clamp(28px, 5vw, 44px);
  font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 4px;
}
.hero__clock .sep { opacity: .5; }
.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-top: var(--s-3); }

/* ============================================================
   Section heads
   ============================================================ */
.s-head { margin-bottom: var(--block-y); }
.s-kicker {
  display: inline-block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--c-a1); margin-bottom: var(--s-2);
}
.s-intro { max-width: 640px; margin-top: var(--s-3); font-size: 17px; opacity: .9; }

/* ---------- light contrast section ---------- */
.s-light { background: var(--c-bg-light); color: var(--c-ink); }
.s-light .s-kicker { color: #7c3aed; }
.s-light .card__spot { background: radial-gradient(circle at 40% 40%, rgba(124,58,237,0.28), transparent 70%); }
.s-light .glow-word { color: #7c3aed; }

/* ============================================================
   Cards / stations
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.card {
  position: relative; overflow: hidden; border: var(--border); border-radius: var(--r-card);
  padding: var(--s-5); background:
    radial-gradient(140% 90% at 100% 0%, rgba(255,47,185,0.10), transparent 55%),
    rgba(245,233,255,0.03);
}
.card--photo { padding: 0; display: flex; flex-direction: column; }
.card--photo img { aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(1.06) contrast(1.06); }
.card--photo .card__body { padding: var(--s-5); position: relative; }
.card__seats { font-family: var(--f-display); color: var(--c-a2); margin: 8px 0 var(--s-2); font-size: 18px; }
.card h3 { margin-top: 8px; }

.cards--single { grid-template-columns: 1fr; margin-top: var(--s-4); }
.card--feature {
  background: radial-gradient(150% 100% at 0% 0%, rgba(255,47,185,0.16), rgba(245,233,255,0.03) 60%);
  border-color: var(--c-a1);
}
.card--feature .pill-badge { margin-bottom: var(--s-2); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* ---------- rates ---------- */
.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.rate {
  position: relative; overflow: hidden; border: var(--border); border-radius: var(--r-card);
  padding: var(--s-5); background: rgba(245,233,255,0.03);
}
.rate--feature {
  background: radial-gradient(150% 100% at 0% 0%, rgba(255,47,185,0.16), rgba(245,233,255,0.03) 60%);
  border-color: var(--c-a1);
}
.rate__meta { font-size: 13px; letter-spacing: .04em; color: var(--c-a1); margin: 10px 0 var(--s-2); }
@media (max-width: 900px) { .rates { grid-template-columns: 1fr; } }

/* ---------- hardware specs ---------- */
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.spec { border: 1px solid rgba(11,7,18,0.15); border-radius: var(--r-card); padding: var(--s-5); }
.spec__n { font-family: var(--f-display); font-size: clamp(40px, 6vw, 64px); color: #7c3aed; display: block; line-height: 1; }
.spec__n small { font-size: .4em; }
.spec h3 { margin: var(--s-2) 0 8px; }
@media (max-width: 900px) { .specs { grid-template-columns: 1fr; } }

/* ============================================================
   Lounge — zigzag
   ============================================================ */
.zigzag__row { align-items: center; gap: var(--s-6); }
.zigzag__media { position: relative; }
.zigzag__media img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--r-card);
  filter: saturate(1.08) contrast(1.06);
}
.mask-circle {
  position: absolute; right: -18px; bottom: -18px; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--c-a2), rgba(34,224,255,0.15) 60%, transparent 72%);
  border: 1px solid var(--line); pointer-events: none;
}
.refrain { font-family: var(--f-display); color: var(--c-a1); font-size: 18px; margin-top: var(--s-3); }

/* ============================================================
   Night log — timeline
   ============================================================ */
.log { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.log__item {
  position: relative; padding: var(--s-5) var(--s-4) var(--s-4) var(--s-5);
  border: var(--border); border-radius: var(--r-card); background: rgba(245,233,255,0.03);
}
.log__item h3 { font-size: 20px; margin-bottom: var(--s-2); }
@media (max-width: 900px) { .log { grid-template-columns: 1fr; } }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.gallery__item { margin: 0; position: relative; border-radius: var(--r-card); overflow: hidden; border: var(--border); }
.gallery__item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(1.06) contrast(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 16px; font-size: 13px;
  background: linear-gradient(180deg, transparent, rgba(11,7,18,0.9)); color: var(--c-ink-inv);
}
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: var(--s-2); max-width: 860px; }
.faq__item { border: 1px solid rgba(11,7,18,0.15); border-radius: var(--r-card); background: rgba(11,7,18,0.02); overflow: hidden; }
.faq__item summary {
  position: relative; cursor: pointer; list-style: none; padding: var(--s-3) var(--s-5) var(--s-3) 56px;
  font-family: var(--f-display); font-size: 18px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .card__spot {
  top: 50%; left: 16px; right: auto; transform: translateY(-50%); width: 26px; height: 26px; filter: none;
  background: radial-gradient(circle at 40% 40%, #7c3aed, rgba(124,58,237,0.15) 65%);
}
.faq__item summary::after {
  content: "+"; position: absolute; right: var(--s-4); top: 50%; transform: translateY(-50%);
  font-family: var(--f-display); color: #7c3aed;
}
.faq__item[open] summary::after { content: "–"; }
.faq__body { padding: 0 var(--s-5) var(--s-3) 56px; }

/* ============================================================
   Book form
   ============================================================ */
.book__grid { align-items: start; gap: var(--s-6); }
.book__form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.field label { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
.field input, .field select {
  font-family: var(--f-body); font-size: 15px; color: var(--c-ink-inv);
  background: rgba(245,233,255,0.04); border: var(--border); border-radius: 12px; padding: 13px 16px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input::placeholder { color: rgba(245,233,255,0.4); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--c-a1);
  box-shadow: 0 0 0 3px rgba(255,47,185,0.18);
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#formStatus { margin: 0; font-size: 14px; }
#formStatus.success { color: var(--c-a1); }
#formStatus.error { color: var(--c-a2); }
@media (max-width: 620px) { .book__form { grid-template-columns: 1fr; } }

/* ============================================================
   Footer — footer-minimal-centered
   ============================================================ */
.footer {
  text-align: center; padding: var(--sec-y) var(--edge) var(--s-6);
  border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.footer__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 30px; letter-spacing: .04em; }
.footer__tag { opacity: .7; margin: 0; font-style: italic; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); }
.footer__links a { font-size: 14px; opacity: .85; }
.footer__links a:hover { opacity: 1; color: var(--c-a1); }
.footer__hours { font-size: 14px; opacity: .8; margin: 0; }
.footer__disclaimer {
  font-family: var(--f-display); font-size: 16px; color: var(--c-a1);
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 24px; margin: var(--s-2) 0;
}
.footer__contact { font-style: normal; font-size: 14px; opacity: .8; margin: 0; line-height: 1.7; max-width: 46ch; }
.footer__contact a { color: var(--c-a1); }
.footer__contact a:hover { text-decoration: underline; }
.footer__copy { font-size: 13px; opacity: .55; margin: 0; }

/* ============================================================
   Legal pages (disco-docs) — narrow column
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; padding: 120px var(--edge) var(--sec-y); }
.legal__head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s-6); }
.legal__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 26px; letter-spacing: .04em; }
.legal h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: var(--s-2); }
.legal__updated { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--c-a1); margin-bottom: var(--s-5); }
.legal h2 { font-size: clamp(22px, 3vw, 30px); margin: var(--s-6) 0 var(--s-2); }
.legal ul { list-style: none; padding: 0; margin: 0 0 var(--s-3); }
.legal li { position: relative; padding-left: 26px; margin-bottom: var(--s-2); }
.legal li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--c-a1), rgba(255,47,185,0.2) 70%);
}
.legal a { color: var(--c-a1); }
.legal a:hover { text-decoration: underline; }
.legal__foot { margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line-soft); text-align: center; }
.legal__foot .footer__disclaimer { display: inline-block; }

/* ============================================================
   Reduced motion — kill all motion (interactivity stays available)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .u-reveal { opacity: 1; transform: none; }
  .ball.is-built .ball__dot { animation: none; opacity: .9; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))); }
  .hero__drift { display: none; }
}
