:root {
  /* Color palette */
  --bg-primary: #0B0D10;
  --bg-secondary: #12151B;
  --bg-tertiary: #1A1E27;
  --bg-elevated: #21262F;
  --bg-glass: rgba(11, 13, 16, 0.85);
  --bg-overlay: rgba(11, 13, 16, 0.97);

  --accent: #C9A84C;
  --accent-dim: #A8893D;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --accent-subtle: rgba(201, 168, 76, 0.08);
  --accent-fill-light: rgba(201, 168, 76, 0.06);
  --accent-fill: rgba(201, 168, 76, 0.18);
  --accent-muted: rgba(201, 168, 76, 0.3);

  --text-primary: #E8ECF1;
  --text-secondary: #8B95A5;
  --text-muted: #5A6477;
  --text-dim: rgba(232, 236, 241, 0.65);

  --border: #1E2330;
  --border-light: #2A3040;

  /* Typography */
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.45vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  --text-hero: clamp(2.75rem, 1.5rem + 5vw, 5rem);

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

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