/* ================================
   BASE / TOKENS / RESET
================================ */

:root{
  --bg:#07070b;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --line:rgba(255,255,255,.12);
  --gold:#d7c08a;
  --shadow:0 22px 90px rgba(0,0,0,.55);
  --r:22px;
  --max:1120px;
  --font:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

*{ box-sizing:border-box; }

html, body{
  width:100%;
  height:100%;
  margin:0;
  padding:0;
}

/* ✅ IMPORTANT:
   I removed "overflow:hidden" from the global reset.
   Use it only on release page via body.releasePage (in release.css) */
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(215,192,138,.12), transparent 60%),
    radial-gradient(1000px 700px at 90% 30%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }

.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }
.page{ min-height:60vh; }

.muted{ color:var(--muted); }
.small{ font-size:.92rem; }

.h1{
  font-size:clamp(2rem,4vw,2.8rem);
  margin:0;
  line-height:1.1;
}

.accent{
  background:linear-gradient(90deg, rgba(215,192,138,1), rgba(255,255,255,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(14px);
  filter:blur(6px);
  transition:.7s;
  will-change:transform,opacity;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
  filter:none;
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; filter:none; }
}
