/* ── Design Tokens ── */
:root {
  --bg-deep: #0c1117;
  --bg-surface: #141c26;
  --bg-elevated: #1a2433;
  --bg-card: #1e2a3a;

  --text-primary: #eef2f6;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-cyan: #2dd4bf;
  --accent-cyan-dim: rgba(45, 212, 191, 0.15);
  --accent-amber: #f59e0b;
  --accent-amber-dim: rgba(245, 158, 11, 0.12);

  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(45, 212, 191, 0.35);

  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
