@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-400.b07da7aa3e4f.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-500.02e18aa1a344.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-700.549a12cc5504.woff2") format("woff2");
}

:root {
  /* Brand */
  --color-navy: #0d345b;
  --color-navy-ink: #0a2744;
  /* Steel blue: live #1248f7 mixed toward grey/navy so it sits with the logo */
  --color-blue: #3e6aa3;
  --color-blue-deep: #2c4d73;
  --color-mint: #38e995;
  --color-mint-ink: #0b6b3f;

  /* Neutrals */
  --color-ink: #222222;
  --color-body: #3a3a3a;
  --color-muted: #6b7280;
  --color-line: #d4d9e0;
  --color-page: #eef1f4;   /* canvas — cool grey instead of paper white */
  --color-fill: #e5e9ee;   /* alt bands */
  --color-card: #f6f7f9;   /* cards lift off the grey */
  --color-input: #e8eaee;
  --color-white: #ffffff;  /* text/glyphs on dark, hero CTA fill only */
  --color-danger: #b42318;
  --color-success: #067647;

  /* Surfaces */
  --color-hero: linear-gradient(120deg, var(--color-blue-deep) 0%, var(--color-blue) 100%);
  --color-hero-hover: linear-gradient(180deg, #000000 0%, #333333 100%);
  --color-footer: var(--color-navy);

  /* Type */
  --font-sans: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 0.9375rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: clamp(1.75rem, 4vw, 2.25rem);
  --fs-hero: clamp(2rem, 5vw, 2.75rem);
  --lh-body: 1.8;
  --lh-tight: 1.3;
  --tracking-wide: 0.08em;
  --tracking-section: 0.06em;

  /* Space (8px grid) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;

  /* Structure */
  --radius: 4px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 24px -16px rgba(13, 52, 91, 0.25);
  --shadow-cta: 0 10px 40px -20px rgba(255, 255, 255, 0.65);
  --header-h: 5.5rem;
  --wrap: 72rem;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Motion */
  --ease: 150ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ease: 1ms;
  }
}
