/* ============================================================
   toekom.st — Typography tokens
   Two modes: Editorial (Bluu Next, serif, warm) and
   Analytical (IBM Plex Mono, dense, data-rich).
   Type scale uses a 1.25 ratio.
   ============================================================ */

:root {
  /* --- Families --- */
  --font-display: 'Bluu Next', Georgia, 'Times New Roman', serif;
  --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'SFMono-Regular', 'Consolas', monospace;

  /* --- Type scale (1.25 ratio) --- */
  --text-display:  clamp(3rem, 6vw, 4.5rem);   /* 48–72px — Bluu Next */
  --text-hero:     clamp(2rem, 4vw, 3rem);     /* 32–48px */
  --text-h1:       1.75rem;                     /* 28px */
  --text-h2:       1.375rem;                    /* 22px */
  --text-h3:       1.125rem;                    /* 18px */
  --text-body:     1rem;                        /* 16px */
  --text-small:    0.875rem;                    /* 14px */
  --text-caption:  0.75rem;                     /* 12px */

  /* --- Weights --- */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* --- Line height --- */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;

  /* --- Tracking --- */
  --tracking-tight:  -0.03em;  /* Bluu Next display */
  --tracking-snug:   -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-wider:  0.08em;   /* overline labels */
}
