/* ==========================================================================
   Design Tokens — FUTRIZE V4 (Ultimate)
   ========================================================================== */

:root {
  /* Colors */
  --background: #050507;
  --bg-elevated: #0a0a0a;
  --surface: #121212;
  --surface-hover: #1a1a1a;
  --foreground: #ffffff;
  --muted: #b0b0b0;
  --dimmed: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-visible: #1f1f1f;
  --border-light: #2a2a2a;
  --primary: #d10000;
  --primary-hover: #e52020;
  --primary-dark: #b60000;
  --primary-glow: rgba(209, 0, 0, 0.15);
  --success: #00c853;
  --overlay: rgba(5, 5, 7, 0.85);

  /* Typography */
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.25rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 2.5rem;
  --text-3xl: 3rem;
  --text-4xl: 3.5rem;

  /* Spacing (4px base) */
  --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;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --shadow-glow-strong: 0 0 40px rgba(209, 0, 0, 0.25);

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 700ms ease-out;

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;
}
