/* ============================================================
   M.A.T.T. Theme: Purple (Default)
   ─────────────────────────────────────────────────
   Deep space violet — the original MATT aesthetic.
   Extracted here so it can be swapped like any other theme.

   To activate:
     1. In base.html, replace the current theme <link> with:
        <link rel="stylesheet" href="/static/css/themes/purple.css">
     2. In .env: THEME_ACCENT=#7c6af7  THEME_ACCENT_DIM=#4b3fd1
   ============================================================ */

:root {
  --accent:     #7c6af7;
  --accent-dim: #4b3fd1;

  --bg:         #080b12;
  --surface:    #0f1320;
  --surface-2:  #171c2e;
  --border:     #1f2437;
  --border-2:   #2a3050;

  --text:       #dde1f5;
  --text-dim:   #4d566e;
  --text-mid:   #8892aa;

  --danger:     #ef4444;
  --success:    #10b981;
  --warning:    #f59e0b;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.5);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.7);

  --transition: 0.15s ease;

  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  14px;

  --font:       'Sora', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;
}
