:root {
  color-scheme: dark;

  /* Dark executive palette */
  --color-bg: #080b10;
  --color-bg-elevated: #111820;
  --color-bg-card: #151d28;
  --color-text: #eef1f6;
  --color-text-muted: #8b95a8;
  --color-accent: #c8a45c;
  --color-accent-hover: #ddbc72;
  --color-accent-muted: rgb(200 164 92 / 0.14);
  --color-border: #1e2836;
  --color-border-accent: rgb(200 164 92 / 0.35);
  --color-glow: rgb(200 164 92 / 0.12);

  /* Typography */
  --font-sans: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", Times, serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(1.75rem, 4vw, 2.5rem);
  --text-hero: clamp(2.5rem, 6vw, 4rem);

  --leading-tight: 1.15;
  --leading-normal: 1.65;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(3.5rem, 8vw, 6rem);

  /* Layout */
  --max-width: 72rem;
  --header-height: 4.25rem;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 180ms;
  --duration-normal: 420ms;
  --duration-slow: 750ms;
  --duration-hero: 1100ms;

  /* Radius & shadow */
  --radius-sm: 0.375rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 2px 8px rgb(0 0 0 / 0.35);
  --shadow-md: 0 16px 48px rgb(0 0 0 / 0.45);
  --shadow-glow: 0 0 60px var(--color-glow);
}
