/* THRUU tokens — Mono B&W editorial theme.
 * Mirrors THEMES.mono in docs/wireframes/screens/_shared.jsx.
 * Token NAMES are kept (--pitch-*, --gold-*, --win, etc.) so component CSS
 * stays untouched; only the VALUES shift to the monochrome palette.
 */
:root {
  /* surface (was "pitch") — white → mid-gray scale */
  --pitch-950: #fafafa;
  --pitch-900: #ffffff;
  --pitch-850: #f4f4f2;
  --pitch-800: #ececea;
  --pitch-700: #dcdcd8;
  --pitch-600: #a8a8a4;
  /* ink — near-black → mid-gray */
  --ink-0: #000000;
  --ink-1: #0a0a0a;
  --ink-2: #4a4a48;
  --ink-3: #8a8a86;
  /* accent (was "gold") — all black in mono. Hierarchy via weight/space, not hue */
  --gold-400: #1a1a1a;
  --gold-500: #000000;
  --gold-600: #000000;
  --gold-700: #000000;
  /* signal — all black in mono; differentiate via iconography, not color */
  --win: #000000;
  --loss: #000000;
  --warn: #000000;
  --info: #000000;
  /* tactic */
  --attack: #000000;
  --defense: #4a4a48;
  --pass: #8a8a86;
  /* fonts */
  --font-display: "Anton", "Oswald", -apple-system, sans-serif;
  --font-ui: "Pretendard", "Apple SD Gothic Neo", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  /* fx — neutral drop-shadow only, no neon glow in mono */
  --gold-glow: 0 0 0 1px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
}
