:root {
  /* ---- Brand color ---- */
  --navy-900: #0e1e35;
  --navy-800: #142c4c;
  --navy-700: #1c3a63;
  --navy-050: #eef2f7;

  --orange-600: #cf5f1e;
  --orange-500: #e07a2c;
  --orange-050: #fdf1e6;

  --white: #ffffff;
  --neutral-050: #f7f8fa;
  --neutral-100: #eef0f3;
  --neutral-300: #cdd3db;
  --neutral-500: #6b7684;
  --neutral-700: #3c4552;
  --neutral-900: #1a1f27;

  --success-600: #2f7d4f;

  /* ---- Typography ---- */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Public Sans", "Helvetica Neue", Arial, sans-serif;

  --fs-2xs: 0.75rem;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 2.875rem;
  --fs-4xl: 3.5rem;

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;

  /* ---- Spacing scale ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* ---- Shape / elevation ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 30, 53, 0.08);
  --shadow-md: 0 6px 20px rgba(14, 30, 53, 0.12);
  --shadow-lg: 0 16px 40px rgba(14, 30, 53, 0.18);

  /* ---- Layout ---- */
  --container-max: 1200px;
  --header-height: 76px;
  --sticky-bar-height: 60px;

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
