/* ============================================================
   SNAP REPORT — Design Tokens
   Editorial palette: warm white + gold — FT meets The Economist
   ============================================================ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 1060px;
  --content-wide: 1320px;

  /* Radius — editorial: minimal, almost none */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 160ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── LIGHT MODE PALETTE ─────────────────────────────────── */
  /* Surfaces: warm off-white, editorial broadsheet feel */
  --color-bg:               #fafaf8;
  --color-surface:          #ffffff;
  --color-surface-2:        #ffffff;
  --color-surface-offset:   #f2f0eb;
  --color-surface-offset-2: #ece9e3;
  --color-surface-dynamic:  #e4e1da;
  --color-divider:          #e8e5df;
  --color-border:           #e0ddd7;

  /* Text */
  --color-text:         #1a1814;
  --color-text-muted:   #6b6760;
  --color-text-faint:   #b5b0a8;
  --color-text-inverse: #fafaf8;

  /* Primary accent — deep gold, used sparingly */
  --color-primary:           #b5820a;
  --color-primary-hover:     #8e6308;
  --color-primary-active:    #6b4806;
  --color-primary-highlight: #f5ead4;

  /* Secondary — navy, used only for inline accents, never large backgrounds */
  --color-navy:           #1b2a4a;
  --color-navy-hover:     #12203c;
  --color-navy-active:    #0c1728;
  --color-navy-highlight: #d0d7e8;

  /* Semantic */
  --color-success: #2d6a3f;
  --color-error:   #a03030;
  --color-warning: #b06010;

  /* Shadows — very subtle, editorial */
  --shadow-sm: 0 1px 3px rgb(26 24 20 / 0.06);
  --shadow-md: 0 4px 12px rgb(26 24 20 / 0.08);
  --shadow-lg: 0 12px 32px rgb(26 24 20 / 0.11);

  /* Fonts */
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ── DARK MODE ──────────────────────────────────────────────── */



