:root {
  /* Colors — Rolex: deep, confident, permanent */
  --color-bg: #fafaf8;
  --color-bg-dark: #0a2e1f;
  --color-bg-dark-mid: #0d3d28;
  --color-bg-elevated: #ffffff;
  --color-bg-surface: #f2f2ef;
  --color-border: #e0e0db;
  --color-border-subtle: #eaeae6;

  --color-text-primary: #1a1a18;
  --color-text-secondary: #4a4a46;
  --color-text-muted: #6e6e69;
  --color-text-light: #ffffff;
  --color-text-light-muted: rgba(255, 255, 255, 0.7);

  --color-accent: #0b7d52;
  --color-accent-hover: #096842;
  --color-accent-light: #34d399;
  --color-accent-subtle: rgba(13, 150, 104, 0.06);
  --color-gold: #c8a951;

  /* Typography */
  --font-sans: '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: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-7xl: 6rem;

  --leading-tight: 1.05;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;

  /* Layout */
  --max-width: 1100px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 400ms ease;
  --transition-slow: 800ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
}
