:root {
  /* surfaces */
  --bg0: #0b0d12;
  --bg1: #12151d;
  --bg2: #181c26;
  --bg3: #1f2431;
  --border: #2a3040;
  --border-strong: #3a4256;
  /* text */
  --text-1: #e8ebf2;
  --text-2: #a8b0c2;
  --text-3: #6b7488;
  /* accent */
  --accent: #6c8cff;
  --accent-soft: rgba(108, 140, 255, 0.15);
  /* status palette (single source of truth for all views) */
  --status-running: #58a6ff;
  --status-done: #3fb950;
  --status-failed: #f85149;
  --status-blocked: #f0883e;
  --status-review: #d29922;
  --status-cancelled: #8b949e;
  --status-paused: #bc8cff;
  --status-todo: #8b949e;
  --status-backlog: #6b7488;
  /* typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', Consolas, monospace;
  --fs-xs: 11px;
  --fs-sm: 12.5px;
  --fs-md: 14px;
  --fs-lg: 16px;
  --fs-xl: 20px;
  /* spacing & radius */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px; --sp-6: 32px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg0);
  color: var(--text-1);
  font-family: var(--font);
  font-size: var(--fs-md);
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
code, .mono { font-family: var(--mono); font-size: var(--fs-sm); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
