/* Design tokens — single source of truth for resume theming */
:root {
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --color-bg: #ffffff;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  /* Align with approved export: navy headline + accents (was teal #0f766e in early modular pass) */
  --color-name-heading: #1e3a8f;
  --color-accent: #1e40af;
  --color-border: #e5e7eb;
  --color-chip-bg: #f9fafb;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.5rem;
  --space-2xl: 2rem;

  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.875rem;
  --text-md: 0.9375rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;

  --line-tight: 1.25;
  --line-snug: 1.35;
  --line-normal: 1.45;

  --resume-max-width: 720px;
}
