:root {
  /* Brand colors */
  --color-bg: #080808;
  --color-bg-secondary: #111111;
  --color-bg-elevated: #1a1a1a;
  --color-gold: #d4af37;
  --color-gold-bright: #f4d35e;
  --color-gold-deep: #a67c00;
  --color-text: #ffffff;
  --color-text-secondary: #b8b8b8;
  --color-text-muted: #7a7a7a;
  --color-success: #3ddc84;
  --color-warning: #ffb547;
  --color-error: #ff5a5f;
  --color-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.25rem, 2vw, 1.5rem);
  --text-2xl: clamp(2rem, 4vw, 3.5rem);
  --text-hero: clamp(3rem, 7vw, 6.75rem);

  /* Layout */
  --container: 75rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5.5rem, 11vw, 9rem);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;

  /* Surfaces and motion */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-gold: 0 0 2.5rem rgba(212, 175, 55, 0.14);
  --transition: 220ms ease;
  --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
