:root {
  color-scheme: light;
  --color-brand-blue: #2c56c1;
  --color-brand-blue-dark: #1f429b;
  --color-brand-blue-deep: #153174;
  --color-brand-blue-soft: #e8eefc;
  --color-campaign-lime: #c8f000;
  --color-campaign-orange: #f89828;
  --color-ink: #0b1220;
  --color-text: #172033;
  --color-text-muted: #64748b;
  --color-border: #cbd5e1;
  --color-surface: #ffffff;
  --color-surface-muted: #f6f8fc;
  --color-success: #147a42;
  --color-error: #c62828;
  --color-warning: #8a4b08;
  --color-warning-surface: #fff4d6;
  --color-on-brand: #ffffff;
  --color-on-accent: #0b1220;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --font-size-display-xl: clamp(3rem, 11vw, 6.5rem);
  --font-size-display-lg: clamp(2.5rem, 8vw, 5rem);
  --font-size-heading-1: clamp(2.125rem, 5vw, 3.75rem);
  --font-size-heading-2: clamp(1.75rem, 3.8vw, 2.75rem);
  --font-size-heading-3: clamp(1.375rem, 2.5vw, 1.75rem);
  --font-size-body-lg: 1.125rem;
  --font-size-body: 1rem;
  --font-size-body-sm: 0.875rem;
  --line-height-body: 1.65;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-section: clamp(4rem, 9vw, 8rem);
  --gutter-page: 1rem;
  --measure-content: 75rem;
  --measure-reading: 68ch;
  --radius-sm: .375rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-round: 999px;
  --shadow-raised: 0 .5rem 1.5rem rgba(11, 18, 32, .1);
  --shadow-focus: 0 0 0 .25rem rgba(200, 240, 0, .55);
  --duration-fast: 120ms;
  --duration-base: 180ms;
  --duration-enter: 280ms;
  --ease-standard: cubic-bezier(.2, .8, .2, 1);
  --text-scale: 1;
}
@media (min-width: 30rem) { :root { --gutter-page: 1.5rem; } }
@media (min-width: 48rem) { :root { --gutter-page: 2rem; } }
[data-text-size="large"] { --text-scale: 1.125; }
[data-text-size="xlarge"] { --text-scale: 1.25; }
[data-contrast="high"] {
  color-scheme: dark;
  --color-brand-blue: #fff;
  --color-brand-blue-dark: #fff;
  --color-brand-blue-deep: #000;
  --color-brand-blue-soft: #000;
  --color-ink: #fff;
  --color-text: #fff;
  --color-text-muted: #fff;
  --color-border: #fff;
  --color-surface: #000;
  --color-surface-muted: #000;
  --color-on-brand: #000;
  --shadow-raised: none;
}
@media (prefers-contrast: more) {
  :root:not([data-contrast="normal"]) {
    color-scheme: dark;
    --color-brand-blue: #fff;
    --color-brand-blue-deep: #000;
    --color-brand-blue-soft: #000;
    --color-ink: #fff;
    --color-text: #fff;
    --color-text-muted: #fff;
    --color-border: #fff;
    --color-surface: #000;
    --color-surface-muted: #000;
    --color-on-brand: #000;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root { --duration-fast: 0ms; --duration-base: 0ms; --duration-enter: 0ms; }
}
[data-motion="reduce"] { --duration-fast: 0ms; --duration-base: 0ms; --duration-enter: 0ms; }
