/* Mantice design tokens — the single source of truth for every page. */
:root {
  color-scheme: dark;
  --bg: #071019;
  --panel: #0c1826;
  --surface: #0e1b2a;
  --surface-2: #122334;
  --surface-3: #182c3f;
  --border: #1d3345;
  --border-strong: #2a4a61;
  --text: #e9f4fc;
  --muted: #8ca6b8;
  --subtle: #5d7a8d;
  --accent: #56d9ff;
  --accent-2: #4fe3a8;
  --violet: #9d86ff;
  --warn: #ffc857;
  --danger: #ff6b7d;
  --ok: var(--accent-2);
  --shadow: 0 18px 60px rgb(0 0 0 / 38%);
  --radius: 12px;
  --radius-s: 9px;
  --sidebar-w: 232px;
  /* legacy aliases (routing arena + codex oauth styles) */
  --cyan: var(--accent);
  --mint: var(--accent-2);
  --purple: var(--violet);
  --bad: var(--danger);
  --panel-2: var(--surface-2);
  --panel-3: var(--surface-3);
  --line: var(--border);
  --line-hot: var(--border-strong);
  --quiet: var(--subtle);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}
