/* Sebyone — Typography tokens */
:root {
  --font-display: 'Chakra Petch', 'Titillium Web', system-ui, sans-serif; /* techno headings, wordmark-adjacent */
  --font-sans: 'Titillium Web', system-ui, -apple-system, 'Segoe UI', sans-serif; /* body + UI */
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace; /* data + code */

  /* Type scale (1.200 minor-third-ish, rounded) */
  --text-2xs: 0.6875rem; /* 11px */
  --text-xs: 0.75rem;    /* 12 */
  --text-sm: 0.8125rem;  /* 13 */
  --text-base: 0.9375rem;/* 15 — UI default */
  --text-md: 1rem;       /* 16 — body */
  --text-lg: 1.125rem;   /* 18 */
  --text-xl: 1.375rem;   /* 22 */
  --text-2xl: 1.75rem;   /* 28 */
  --text-3xl: 2.125rem;  /* 34 */
  --text-4xl: 2.75rem;   /* 44 */
  --text-5xl: 3.5rem;    /* 56 */
  --text-6xl: 4.5rem;    /* 72 */

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

  --leading-tight: 1.1;
  --leading-snug: 1.28;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.06em;
  --tracking-caps: 0.14em; /* uppercase techno labels */

  /* Role aliases */
  --font-heading: var(--font-display);
  --font-body: var(--font-sans);
  --font-label: var(--font-display);
}
