:root {
  /* Backgrounds */
  --bg-deep: #0b1220;
  --bg-base: #0f172a;
  --bg-raised: #111827;
  --bg-surface: #1e293b;
  --bg-hover: #334155;

  /* Borders */
  --border-subtle: #1e293b;
  --border-default: #334155;
  --border-strong: #475569;

  /* Text */
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0f172a;

  /* Accent — actions */
  --accent-start: #16a34a;
  --accent-start-hover: #15803d;
  --accent-stop: #dc2626;
  --accent-stop-hover: #b91c1c;
  --accent-info: #2563eb;
  --accent-export: #7c3aed;
  --accent-export-hover: #6d28d9;
  --accent-guide: #0e7490;
  --accent-slow: #fb923c;
  --accent-pii: #f472b6;
  --accent-ai: #14b8a6;

  /* HTTP method badges */
  --method-get: #3b82f6;
  --method-post: #22c55e;
  --method-put: #f59e0b;
  --method-patch: #a855f7;
  --method-delete: #ef4444;

  /* Status */
  --status-2xx: #22c55e;
  --status-3xx: #eab308;
  --status-4xx: #fb923c;
  --status-5xx: #ef4444;

  /* Typography */
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 20px;
  --text-2xl: 28px;
  --text-3xl: 40px;
  --text-4xl: 52px;

  /* Spacing (8px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-focus: 0 0 0 2px var(--bg-base), 0 0 0 4px var(--accent-info);

  /* Landing page (slightly lighter hero) */
  --landing-bg: #0b1220;
  --landing-surface: rgba(15, 23, 42, 0.85);
}
