/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* Brand palette */
  --gold-500: #FDC200;
  --gold-600: #FCB810;
  --gold-100: #FFF1BF;
  --hlcp-blue: #496DDD;   /* HLCP programme blue, from the HLCP brand mark */
  --blue-100: #DCEEF7;  /* the 2.0 sky-blue wash: all solid bands, chips */
  --blue-50:  #EEF6FA;  /* faint blue tint surfaces */
  --green-50: #E3F2EA;  /* faint green tint, print callouts and tags */
  --purple-50: #EFE9F7; /* faint purple tint, print callouts and tags */
  --grey-600: #5A5A59;  /* grey button hover (brand grey darkened ~10%) */
  --cream-300: #FEF6D6;
  --cream-100: #FFFBEB;
  --white: #FFFFFF;
  --ink: #1C2B29;
  --grey-500: #646463;
  --charcoal: #2B2B28;   /* footer ground: deep enough for AA links at 0.92 white */

  /* Type */
  --font-display: 'Plus Jakarta Sans', 'Plus Jakarta Sans Fallback', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Inter Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fs-display: clamp(2.9rem, 6vw + 0.6rem, 5rem);
  --fs-h1: clamp(2.4rem, 4vw + 0.5rem, 3.5rem);
  --fs-h2: clamp(1.9rem, 2.4vw + 0.6rem, 2.75rem);
  --fs-h3: clamp(1.35rem, 1vw + 0.9rem, 1.6rem);
  --fs-h4: 1.15rem;
  --fs-lead: clamp(1.125rem, 0.4vw + 1rem, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.8rem;

  /* Space (4px base) */
  --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;

  /* Radius: the bubble language */
  --r-btn: 999px;
  --r-card: 24px;
  --r-card-lg: 36px;
  --r-bubble: 36px 36px 36px 10px;      /* speech-bubble tail, bottom-left */
  --r-bubble-flip: 36px 36px 10px 36px; /* tail bottom-right */
  --r-chip: 12px 12px 12px 4px;

  /* Shadows, ink-tinted */
  --shadow-soft: 0 4px 16px rgba(28, 43, 41, 0.07);
  --shadow-card: 0 14px 36px rgba(28, 43, 41, 0.10);
  --shadow-lift: 0 22px 48px rgba(28, 43, 41, 0.14), 0 0 0 3px rgba(253, 194, 0, 0.28);
  --shadow-gold: 0 10px 26px rgba(253, 194, 0, 0.32);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 160ms;
  --dur-base: 320ms;
  --dur-reveal: 640ms;

  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --z-header: 100;
  --z-menu: 200;
}

