:root {
  /* Colors — Warm Noir */
  --bg: #0e0c0a;
  --surface-1: #1a1714;
  --surface-2: #231f1b;
  --accent: #f97316;
  --accent-glow: #fb923c;
  --text: #faf5f0;
  --text-secondary: #a8a29e;
  --text-muted: #78716c;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(249, 115, 22, 0.3);

  /* Score colors */
  --green: #4ade80;
  --warning: #f97316;
  --danger: #ef4444;
  --green-bg: rgba(74, 222, 128, 0.12);
  --warning-bg: rgba(249, 115, 22, 0.12);
  --danger-bg: rgba(239, 68, 68, 0.12);

  /* Spacing (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 56px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;

  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;

  /* Font weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.15);

  /* Layout */
  --max-width: 1080px;

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-overlay: 30;
  --z-modal: 40;
  --z-toast: 50;
}
