/* Single source of truth: colors, fonts, spacing */
:root {
  /* Colors – dark scheme */
  --color-navy: #5a8ec9;
  --color-navy-dark: #1e3a5f;
  --color-navy-light: #8ec4f0;
  --color-white: #ffffff;
  --color-red: #c41e3a;
  --color-red-hover: #e03552;
  --color-text: #e5e5e5;
  --color-text-muted: #9ca3af;
  --color-bg: #1a1a1a;
  --color-bg-alt: #242424;
  --color-surface: #2d2d2d;
  --color-border: #404040;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-hero: 2.5rem;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-body: 1.6;
  --line-height-tight: 1.3;

  /* 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;

  /* Layout */
  --header-height: 4rem;
  --container-max: 1200px;
  --container-padding: var(--space-lg);

  /* Components */
  --radius-btn: 8px;
  --radius-card: 8px;
}

@media (min-width: 768px) {
  :root {
    --font-size-hero: 3rem;
  }
}
