/* Design tokens — dark-only v1. Do not add light mode. */
/* GitHub-dark-inspired palette for news.disruptr.dev. */
:root {
  /* Surfaces */
  --bg: #0d1117;
  --bg-elevated: #161b22;
  --bg-hover: #1f242c;
  --bg-active: #262c36;
  /* Borders */
  --border: #30363d;
  --border-subtle: #21262d;
  /* Text */
  --text: #e6edf3;
  --text-muted: #7d8590;
  --text-faint: #484f58;
  /* Accent */
  --accent: #58a6ff;
  --accent-hover: #79b8ff;
  /* Semantic */
  --success: #3fb950;
  --warning: #d29922;
  --danger: #f85149;
  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'SF Mono', 'JetBrains Mono', Consolas, 'Liberation Mono', monospace;
  /* Geometry */
  --radius: 6px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 150ms;
}
