/* aidvize — Typography tokens
   ==================================================================
   One typeface family does almost all the work: Plus Jakarta Sans.
   Display sizes run heavy (700–800) and tight; body stays 400–500.
   JetBrains Mono appears in code blocks, API snippets, and metrics. */

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

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

  /* ---- Type scale (px) — modular, tuned for product + marketing ---- */
  --text-display-2xl: 76px;
  --text-display-xl:  60px;
  --text-display-lg:  48px;
  --text-h1:          38px;
  --text-h2:          30px;
  --text-h3:          24px;
  --text-h4:          20px;
  --text-lg:          18px;
  --text-base:        16px;
  --text-sm:          14px;
  --text-xs:          13px;
  --text-2xs:         11px;

  /* ---- Line heights ---- */
  --leading-tight:   1.05;
  --leading-snug:    1.2;
  --leading-normal:  1.45;
  --leading-relaxed: 1.65;

  /* ---- Letter spacing ---- */
  --tracking-tighter: -0.03em;
  --tracking-tight:   -0.015em;
  --tracking-normal:  0;
  --tracking-wide:    0.02em;
  --tracking-caps:    0.08em;  /* uppercase eyebrows / labels */
}
