/* === Design Tokens === */
:root {
  /* Colors */
  --color-bg: #070707;
  --color-bg-alt: #0d0a09;
  --color-bg-card: #141110;
  --color-bg-card-hover: #1b1514;
  --color-surface: #120f0e;
  --color-border: #2a2320;
  --color-border-light: #3a302d;

  --color-text: #f6f2ef;
  --color-text-secondary: #b8aea8;
  --color-text-muted: #7e746e;

  --color-accent-rgb: 255, 74, 54;
  --color-accent: #ff4a36;
  --color-accent-hover: #ff2f19;
  --color-accent-soft: #ff7a63;
  --color-accent-glow: rgba(var(--color-accent-rgb), 0.18);
  --color-accent-subtle: rgba(var(--color-accent-rgb), 0.1);

  --color-success: #00c853;
  --color-white: #ffffff;

  /* Typography */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.2rem, 1.08rem + 0.35vw, 1.4rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 0.8vw, 1.9rem);
  --text-3xl: clamp(2rem, 1.55rem + 1.45vw, 2.8rem);
  --text-4xl: clamp(2.5rem, 2rem + 1.7vw, 3.6rem);
  --text-5xl: clamp(3.1rem, 2.2rem + 3vw, 4.8rem);
  --text-6xl: clamp(4rem, 2.9rem + 4vw, 6rem);

  --leading-tight: 1.04;
  --leading-snug: 1.22;
  --leading-normal: 1.6;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: clamp(2.5rem, 2rem + 1vw, 3.25rem);
  --space-3xl: clamp(3.5rem, 3rem + 1.6vw, 5rem);
  --space-4xl: clamp(5rem, 4rem + 3vw, 7.5rem);
  --space-5xl: clamp(6rem, 5rem + 4vw, 9rem);

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 860px;
  --header-height: 84px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 32px 70px rgba(0, 0, 0, 0.34);
  --shadow-glow: 0 18px 45px rgba(var(--color-accent-rgb), 0.18);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}
