/* ============================================================
   Eros Decoded — Typography tokens
   Tight, heavy, confident. Display is set TIGHT with negative
   tracking; labels are set WIDE in uppercase.
   ============================================================ */
:root {
  --font-display: 'Archivo Black', 'Archivo', Helvetica, Arial, sans-serif;
  --font-text: 'Archivo', Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

  /* --- Weights --- */
  --fw-regular: 400;   /* @kind font */
  --fw-medium: 500;    /* @kind font */
  --fw-semibold: 600;  /* @kind font */
  --fw-bold: 700;      /* @kind font */
  --fw-extrabold: 800; /* @kind font */
  --fw-black: 900;     /* @kind font */

  /* --- Display scale (headlines, set in Archivo Black) --- */
  --type-display-xl: 900 clamp(3.25rem, 11vw, 6.5rem)/0.92 var(--font-display);
  --type-display-lg: 900 clamp(2.5rem, 8vw, 4.5rem)/0.94 var(--font-display);
  --type-display-md: 900 clamp(2rem, 5.5vw, 3.25rem)/0.96 var(--font-display);
  --type-display-sm: 900 clamp(1.5rem, 3.5vw, 2.25rem)/1.0 var(--font-display);

  /* --- Stat numbers --- */
  --type-stat: 900 clamp(2.5rem, 6vw, 4rem)/0.9 var(--font-display);

  /* --- Body --- */
  --type-lead: 400 clamp(1.125rem, 2.2vw, 1.5rem)/1.55 var(--font-text);
  --type-body: 400 1.0625rem/1.6 var(--font-text);
  --type-body-sm: 400 0.9375rem/1.55 var(--font-text);

  /* --- Labels / eyebrows / buttons (uppercase, wide) --- */
  --type-eyebrow: 700 0.8125rem/1 var(--font-text);
  --type-button: 700 0.9375rem/1 var(--font-text);
  --type-caption: 500 0.8125rem/1.4 var(--font-text);

  /* --- Tracking --- */
  --track-display: -0.025em;   /* tight headlines */
  --track-tight: -0.01em;
  --track-normal: 0;           /* @kind other */
  --track-wide: 0.12em;        /* eyebrows */
  --track-button: 0.08em;      /* button labels */
  --track-eyebrow: 0.22em;     /* widest — section kickers */
}
