/* ── 3dB Labs typography ───────────────────────────────────────
   Three-typeface system:
   · Inter — the workhorse. H2s are Inter Light 300 at 48px,
     sentence case. Subheads Inter Semibold 600. Body 15–16px/1.7.
   · Venera — display accent, used sparingly: hero headline,
     product names, brand stamps/lockups, tiny uppercase labels.
     ALWAYS uppercase + word-spacing 0.2em. Never body copy.
   · IBM Plex Mono — technical labels, data callouts, HUD captions.
─────────────────────────────────────────────────────────────── */
:root {
  /* families */
  --font-display: "Venera", sans-serif;
  --font-sans: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* Venera display settings (apply together) */
  --display-word-spacing: 0.2em;
  --display-transform: uppercase; /* @kind other */

  /* ── size scale ── */
  --text-hero: 50px;        /* Venera 400 / 1.05 / -0.01em */
  --text-product-name: 52px;/* Venera 700 / 1 */
  --text-h2: 48px;          /* Inter 300 / 1.1–1.25 / -0.01em */
  --text-h2-small: 42px;    /* contact-block H2 */
  --text-lockup: 32px;      /* Venera 700 / ls 0.35em */
  --text-h3: 22px;          /* Inter 600 / 1.3 (workflow headings) */
  --text-stamp: 18px;       /* Venera 700 / ls 0.12em */
  --text-card-heading: 18px;/* Inter 600 / 1.4 */
  --text-row-heading: 18px; /* Venera 700 / 1.2 (challenge rows) */
  --text-body-lg: 16px;     /* hero sub / 1.65 */
  --text-body: 15px;        /* default body / 1.65–1.7 */
  --text-body-sm: 14px;
  --text-ui: 13px;          /* footer links, variant names */
  --text-caption: 12px;
  --text-mono-label: 10px;  /* mono uppercase labels / ls 0.1–0.2em */
  --text-mono-btn: 9.5px;   /* button label / ls 0.12em */
  --text-mono-micro: 9px;   /* aux nav, footer column labels */
  --text-mono-hud: 8px;     /* HUD coordinates, canvas captions */

  /* ── line heights ── */
  --leading-display: 1.05;
  --leading-heading: 1.1;
  --leading-heading-loose: 1.25;
  --leading-body: 1.7;
  --leading-body-tight: 1.65;

  /* ── tracking ── */
  --tracking-heading: -0.01em;
  --tracking-mono-label: 0.1em;
  --tracking-mono-wide: 0.18em;
  --tracking-mono-widest: 0.2em;
  --tracking-stamp: 0.12em;
  --tracking-lockup: 0.35em;

  /* ── weights ── */
  --weight-h2: 300;
  --weight-body: 400;
  --weight-subhead: 600;
  --weight-display-hero: 400;
  --weight-display-stamp: 700;
  --weight-display-light: 300;
}
