/* ══════════════════════════════════════════
   DESIGN TOKENS — single source of truth
══════════════════════════════════════════ */
:root {
  /* Colors */
  --bg:           #0d0f14;
  --surface:      #141720;
  --surface2:     #1c2030;
  --border:       #252a3a;
  --accent:       #e8c97a;
  --accent2:      #6ee7b7;
  --accent3:      #f87171;
  --accent-blue:  #6075e8;
  --accent-blue-l:#8899ff;
  --grace-color:  #f59e0b;
  --text:         #e8eaf0;
  --text-dim:     #9ca3af;
  --text-muted:   #6b7280;

  /* Radii */
  --r:  12px;
  --rs: 8px;
  --rxs:5px;

  /* Typography */
  --font-mono: 'DM Mono', monospace;
  --font-sans: 'DM Sans', sans-serif;
  --font-serif:'Playfair Display', serif;

  /* Shadows */
  --shadow: 0 8px 40px rgba(0,0,0,.5);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(232,201,122,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(110,231,183,.04) 0%, transparent 60%);
}

/* ── Animations ── */
@keyframes fadeIn { from { opacity:0; transform:translateY(8px) } to { opacity:1; transform:none } }
@keyframes modalIn { from { opacity:0; transform:scale(.93) translateY(16px) } to { opacity:1; transform:none } }
.fade-in { animation: fadeIn .4s ease; }

/* ── Scrollbar ── */
* { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
