/* AcidBase Mastery — Design tokens
   Matched to Tony Leo's portfolio aesthetic */

:root {
  /* Core palette */
  --bg: #0d0c0a;
  --text: #e8e4dc;
  --text-dim: #4a4845;
  --accent: #c4a35a;
  --teal: #5a8a87;
  --coral: #b87a6a;
  --lavender: #8a7a9a;

  /* Semantic */
  --correct: #5a8a6a;
  --incorrect: #b87a6a;
  --surface: rgba(90, 138, 135, 0.03);
  --surface-border: rgba(90, 138, 135, 0.1);
  --surface-hover: rgba(90, 138, 135, 0.06);
  --divider: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --pad-x: 5vw;
  --pad-section: 15vh;

  /* Misc */
  --radius: 0px;
  --transition: 0.4s ease;
}
