:root {
  /* Colors */
  --color-bg: #0b0b0c;
  --color-bg-soft: #141416;
  --color-surface: #1b1b1e;
  --color-text: #f5f5f5;
  --color-text-muted: #a1a1aa;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-accent: #d8ff3e;
  --color-accent-hover: #c4eb32; /* Typography */
  --font-sans:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --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: 3rem;
  --text-hero: clamp(3rem, 8vw, 7rem); /* Layout */
  --container: 1200px;
  --header-height: 76px; /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem; /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 999px; /* Effects */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --transition: 180ms ease;
}
