:root {
  /* Background — Dark Navy */
  --bg-primary: #0F1621;
  --bg-secondary: #0F1621;
  --bg-tertiary: #1A2332;
  --bg-overlay: rgba(15, 22, 33, 0.85);
  --bg-overlay-light: rgba(15, 22, 33, 0.7);

  /* Text — With Gold Accent */
  --text-primary: #FFFFFF;
  --text-secondary: #abb8c3;
  --text-muted: #6b7a8a;
  --text-accent: #d3bb8a;

  /* Borders — Navy Tones */
  --border-color: #1E2A3A;
  --border-hover: #FFFFFF;
  --border-radius: 6px;
  --border-radius-sm: 4px;
  --border-radius-lg: 8px;

  /* Shadows — Minimal */
  --shadow-card: none;
  --shadow-glow: none;

  /* Typography — Display + Heading + Body */
  --font-display: 'Metal', sans-serif;
  --font-heading: 'Work Sans', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes — Dramatic Scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 4rem;

  /* Hero Typography — Viewport-based */
  --font-size-hero: 12vw;
  --font-size-section: 4vw;
  --font-size-stat: 12vw;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.1em;
  --tracking-wider: 0.2em;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: 0;

  /* Layout */
  --container-max: 1400px;
  --container-padding: 2rem;
  --header-height: 100px;

  /* Transitions — Cinematic */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.8s ease;
  --transition-slower: 1.2s ease;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-header: 200;
  --z-menu: 250;
  --z-modal: 300;
  --z-toast: 400;
}

/* Tablet */
@media (max-width: 1199px) {
  :root {
    --font-size-hero: 11vw;
    --font-size-section: 7vw;
    --font-size-stat: 10vw;
    --container-padding: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --font-size-hero: 13vw;
    --font-size-section: 9vw;
    --font-size-stat: 18vw;
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
    --header-height: 84px;
    --container-padding: 1rem;
    --space-4xl: 1.5rem;
    --space-3xl: 2rem;
  }
}
