/* ============================================================
   ProLiftix — Typography tokens
   Single typeface: Inter (next/font in the app). UI-first,
   tight tracking on headings, tabular numerals for all data.
   ============================================================ */

:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Type scale (px) — matches the app's Tailwind usage */
  --text-2xs: 0.625rem;  /* 10px — badge counts */
  --text-xs: 0.75rem;    /* 12px — descriptions, meta */
  --text-sm: 0.875rem;   /* 14px — body / table / labels (default UI size) */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px — metric values */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px — page titles, card titles */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px — marketing / numbers */
  --text-5xl: 3rem;      /* 48px */

  /* Weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Tracking — headings pull in slightly (tracking-tight in app) */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;     /* uppercase eyebrows / dividers */

  /* Semantic roles */
  --font-display: var(--weight-bold) var(--text-2xl) / var(--leading-tight) var(--font-sans);
  --font-page-title: var(--weight-bold) var(--text-2xl) / var(--leading-tight) var(--font-sans);
  --font-card-title: var(--weight-semibold) var(--text-2xl) / var(--leading-none) var(--font-sans);
  --font-body: var(--weight-normal) var(--text-sm) / var(--leading-normal) var(--font-sans);
  --font-label: var(--weight-medium) var(--text-sm) / var(--leading-snug) var(--font-sans);
  --font-meta: var(--weight-normal) var(--text-xs) / var(--leading-snug) var(--font-sans);
  --font-metric: var(--weight-semibold) var(--text-lg) / var(--leading-none) var(--font-sans);
}
