/* ADIE Solutions — Typography & webfonts
   Display/headings: Archivo (echoes the wide, bold geometric ADIE wordmark).
   Body: Mulish (clean humanist sans for running copy & UI).
   Data/tariffs: IBM Plex Mono.
   NOTE: loaded from Google Fonts CDN as the nearest match to the brand's
   marketing material — confirm/replace with official brand fonts if different. */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Mulish:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* ---- Families ---- */
  --font-display: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Mulish', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* ---- Weights ---- */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-black:    900;

  /* ---- Type scale (1.25 major-third-ish, tuned for B2B) ---- */
  --text-display: 4.5rem;   /* 72px hero */
  --text-h1:      3rem;     /* 48px */
  --text-h2:      2.25rem;  /* 36px */
  --text-h3:      1.625rem; /* 26px */
  --text-h4:      1.25rem;  /* 20px */
  --text-lg:      1.125rem; /* 18px */
  --text-base:    1rem;     /* 16px */
  --text-sm:      0.875rem; /* 14px */
  --text-xs:      0.75rem;  /* 12px */

  /* ---- Line heights ---- */
  --leading-tight:   1.08;
  --leading-snug:    1.25;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* ---- Letter spacing ---- */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em; /* eyebrow / overline ALL-CAPS labels */
}
