:root {
  /* ─── Colors ─── */
  --color-bg:           #030B1A;
  --color-bg-surface:   #0A1628;
  --color-bg-elevated:  #0F2040;
  --color-bg-card:      #0D1F3C;
  --color-bg-card-alt:  #071530;

  --color-accent:       #00B4FF;
  --color-accent-dim:   #0080CC;
  --color-accent-glow:  rgba(0, 180, 255, 0.18);
  --color-accent-2:     #00FFD4;

  --color-text:         #E8F4FF;
  --color-text-muted:   #7A9BB5;
  --color-text-dim:     #4A6A85;

  --color-border:       rgba(0, 180, 255, 0.12);
  --color-border-mid:   rgba(0, 180, 255, 0.25);
  --color-border-hi:    rgba(0, 180, 255, 0.5);

  --color-white:        #FFFFFF;
  --color-gradient-hero: linear-gradient(135deg, #030B1A 0%, #061830 50%, #030B1A 100%);

  /* ─── Spacing ─── */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* ─── 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:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

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

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-base:   1.6;
  --leading-loose:  1.8;

  --tracking-tight:  -0.03em;
  --tracking-normal: 0em;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.15em;

  /* ─── Border Radius ─── */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* ─── Shadows ─── */
  --shadow-sm:         0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:         0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:         0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow-sm:    0 0 20px rgba(0, 180, 255, 0.15);
  --shadow-glow:       0 0 40px rgba(0, 180, 255, 0.25);
  --shadow-glow-lg:    0 0 80px rgba(0, 180, 255, 0.3);

  /* ─── Transitions ─── */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ─── Layout ─── */
  --container-max:  1280px;
  --container-wide: 1440px;
  --nav-height:     72px;
  --section-gap:    var(--space-3xl);
}
