/* Design tokens from BRANDING.md */
:root {
  --color-primary: #0a2540;
  --color-accent: #f97316;
  --color-accent-hover: #ea6c10;
  --color-green: #63b77f;
  --color-green-light: #e8f5ee;
  --color-light: #f8fafc;
  --color-text: #374151;
  --color-link: #2563eb;
  --color-warning: #f59e0b;
  --color-white: #ffffff;
  --color-border: #e2e8f0;

  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --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;

  --container-max: 1200px;
  --container-padding: 1.5rem;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 8px 24px rgba(10, 37, 64, 0.12);
}
