/* Altered Capital — typography.
   Display/headline: Poppins (nearest Google Fonts match to the wordmark —
   geometric, single-storey 'a'; SUBSTITUTION, see readme.md).
   Body/UI: Hanken Grotesk. Data/labels: IBM Plex Mono. */
:root{
  --font-display:'Poppins','Helvetica Neue',Arial,sans-serif;
  --font-body:'Hanken Grotesk','Helvetica Neue',Arial,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,monospace;

  --weight-regular:400;
  --weight-medium:500;
  --weight-semibold:600;
  --weight-bold:700;

  /* Display scale (marketing headlines) */
  --text-hero:clamp(3rem,7.2vw,7.5rem);      /* 48 → 120 */
  --text-display-1:clamp(2.5rem,4.8vw,4.5rem); /* 40 → 72 */
  --text-display-2:clamp(2rem,3.4vw,3.25rem);  /* 32 → 52 */
  --text-display-3:1.75rem;   /* 28 */
  --text-stat:clamp(2.25rem,3vw,3rem);

  /* Text scale */
  --text-lead:1.375rem;   /* 22 */
  --text-body-lg:1.125rem;/* 18 */
  --text-body-md:1rem;    /* 16 */
  --text-body-sm:0.875rem;/* 14 */
  --text-caption:0.8125rem;/* 13 */
  --text-label:0.6875rem; /* 11 — mono eyebrow */

  /* Line heights */
  --leading-hero:0.94; /* @kind other */
  --leading-display:1.06; /* @kind other */
  --leading-snug:1.25; /* @kind other */
  --leading-body:1.55; /* @kind other */
  --leading-loose:1.7; /* @kind other */

  /* Tracking */
  --tracking-hero:-0.03em;
  --tracking-display:-0.02em;
  --tracking-body:0em;
  --tracking-label:0.16em;  /* eyebrows / mono labels, uppercase */
  --tracking-wide:0.06em;
}
