/* ============================================================
   tokens.css — design tokens, theming, the dojo palette
   ============================================================ */

:root {
  /* ---- Medal colours ----
     Stars, result screens and skill cards all read these, so a gold
     card and a gold star are the same gold everywhere. */
  --gold: #ffc93c;
  --silver: #c9d4e5;
  --bronze: #d08b4f;
  --xp: #6fe3a0; /* the colour of a reward */
  --streak: #ff6b3d; /* the colour of pressure */

  /* ---- Semantic accents ---- */
  --accent: #ff9f1c;
  --accent-2: #7c5cff;
  --accent-grad: linear-gradient(120deg, #ff9f1c, #7c5cff);
  --ok: #34c759;
  --warn: #ffb020;
  --bad: #ff5d73;

  /* ---- Radii ---- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* ---- Spacing scale ---- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;

  /* ---- Type ---- */
  --font: "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Code", "JetBrains Mono", Consolas, "SF Mono", ui-monospace, monospace;

  --t-xs: 0.78rem;
  --t-sm: 0.88rem;
  --t-base: 1rem;
  --t-md: 1.09rem;
  --t-lg: 1.35rem;
  --t-xl: 1.75rem;
  --t-2xl: 2.35rem;
  --t-3xl: 3.1rem;

  /* Reading comfort — this is a study tool, not a marketing page */
  --leading: 1.72;
  --measure: 68ch;

  --dur: 260ms;
  --ease: cubic-bezier(0.22, 0.75, 0.28, 1);
}

/* ---------------- DARK (default) ---------------- */
:root,
[data-theme="dark"] {
  --bg: #070c14;
  --bg-2: #0c1220;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --surface-solid: #121a2c;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);

  --ink: #eaf1fb;
  --ink-2: #b4c1d8;
  --ink-3: #7c89a4;

  --glow: radial-gradient(900px 520px at 8% -10%, rgba(255, 159, 28, 0.24), transparent 62%),
    radial-gradient(760px 480px at 96% 4%, rgba(124, 92, 255, 0.24), transparent 60%),
    radial-gradient(700px 600px at 62% 104%, rgba(255, 107, 61, 0.1), transparent 62%);

  --shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  --grid-line: rgba(255, 255, 255, 0.055);
  --grid-axis: rgba(255, 255, 255, 0.28);
  --plane-bg: rgba(255, 255, 255, 0.03);
}

/* ---------------- LIGHT (paper / study mode) ---------------- */
[data-theme="light"] {
  --bg: #f5f7fc;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #eef2fa;
  --surface-solid: #ffffff;
  --line: rgba(16, 24, 46, 0.11);
  --line-strong: rgba(16, 24, 46, 0.22);

  --ink: #101a2e;
  --ink-2: #45536f;
  --ink-3: #74809a;

  --accent: #c26a00;
  --accent-2: #5a3fd6;

  /* Medals need darker values on white or gold vanishes entirely. */
  --gold: #b8860b;
  --silver: #7d8ba1;
  --bronze: #a3672f;
  --xp: #12905c;
  --streak: #d9451c;

  --ok: #17913c;
  --warn: #b57400;
  --bad: #cf2740;

  --glow: radial-gradient(900px 520px at 8% -10%, rgba(255, 159, 28, 0.16), transparent 60%),
    radial-gradient(760px 480px at 96% 4%, rgba(124, 92, 255, 0.14), transparent 58%);

  --shadow: 0 12px 30px rgba(16, 24, 46, 0.09);
  --grid-line: rgba(16, 24, 46, 0.07);
  --grid-axis: rgba(16, 24, 46, 0.4);
  --plane-bg: rgba(16, 24, 46, 0.02);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur: 1ms;
  }
}
