:root {
  /* Colors */
  --bg-void: #131313;
  --surface-1: #1f1f1f;
  --surface-2: #2a2a2a;
  --accent-purple: #8516FF;
  --accent-cyan: #7BE4FF;
  --accent-magenta: #E000CC;
  --cta-orange: #E8723A;
  --text-primary: #f5f5f5;
  --text-secondary: rgba(245, 245, 245, 0.82);
  --text-tertiary: rgba(245, 245, 245, 0.68);
  --glass-bg: rgba(19, 19, 19, 0.6);
  --ghost-border: rgba(226, 226, 226, 0.15);

  /* Glassmorphism */
  --glass-surface: rgba(31, 31, 31, 0.6);
  --glass-blur: blur(20px);
  --glass-border: rgba(226, 226, 226, 0.08);

  /* Neon underglow */
  --glow-purple: rgba(133, 22, 255, 0.04);
  --glow-cyan: rgba(123, 228, 255, 0.04);
  --glow-orange: rgba(232, 114, 58, 0.04);
  --glow-purple-strong: rgba(133, 22, 255, 0.12);
  --glow-cyan-strong: rgba(123, 228, 255, 0.12);
  --glow-orange-strong: rgba(232, 114, 58, 0.12);

  /* Typography — Archivo only */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-label: 'Archivo', sans-serif;

  /* Type scale */
  --text-hero: clamp(3.5rem, 7vw, 6rem);
  --text-section: clamp(2.25rem, 4.5vw, 3.5rem);
  --text-subsection: clamp(1.5rem, 2.5vw, 2rem);
  --text-body-lg: 1.0625rem;
  --text-body-md: 0.9375rem;
  --text-body-sm: 0.8125rem;
  --text-label: 0.75rem;

  /* Weight scale */
  --weight-black: 900;
  --weight-extrabold: 800;
  --weight-bold: 700;
  --weight-semibold: 600;
  --weight-medium: 500;
  --weight-regular: 400;
  --weight-light: 300;

  --leading-tight: 1.05;
  --leading-snug: 1.2;
  --leading-body: 1.65;
  --tracking-display: -0.03em;
  --tracking-tight: -0.02em;
  --tracking-label: 0.12em;

  /* Spacing — aggressive vertical padding */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 10rem;
  --space-6xl: 12rem;

  /* Borders */
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Animations */
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-glacial: 1200ms;
  --stagger-delay: 100ms;

  /* Layout */
  --max-width: 1200px;
  --section-padding: var(--space-6xl) var(--space-lg);
}
