/**
 * THE SUPPLEMENT PRESS — Design Tokens & CSS Variables
 * Restrained 2-Color Brand System (#142033 Deep Navy & #008F78 Muted Teal)
 */

:root {
  /* Exactly Two Brand Colors */
  --tsp-navy: #142033;
  --color-primary: #142033;

  --tsp-teal: #008F78;
  --color-secondary: #008F78;
  --color-accent: #008F78;
  --color-accent-hover: #007a67;

  /* Editorial Neutrals */
  --color-surface: #ffffff;
  --color-surface-subtle: #f8fafc;
  --color-background: #ffffff;
  
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;

  /* Standard Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-body: 1.0625rem;/* 17px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-h3: 1.5rem;     /* 24px */
  --font-size-h2: 2.125rem;   /* 34px */
  --font-size-h1: 2.75rem;    /* 44px */

  --line-height-body: 1.6;
  --line-height-heading: 1.2;

  /* Standard Spacing Scale */
  --tsp-space-1: 8px;
  --tsp-space-2: 12px;
  --tsp-space-3: 16px;
  --tsp-space-4: 24px;
  --tsp-space-5: 32px;
  --tsp-space-6: 48px;
  --tsp-space-7: 64px;
  --tsp-space-8: 80px;

  --spacing-xs: var(--tsp-space-1);
  --spacing-sm: var(--tsp-space-2);
  --spacing-md: var(--tsp-space-4);
  --spacing-lg: var(--tsp-space-5);
  --spacing-xl: var(--tsp-space-6);
  --spacing-xxl: var(--tsp-space-8);

  /* Layout & Cards */
  --container-max-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(20, 32, 51, 0.05);
  --shadow-md: 0 4px 12px rgba(20, 32, 51, 0.08);
  --shadow-lg: 0 10px 25px rgba(20, 32, 51, 0.12);

  --transition-fast: 180ms ease;
  --transition-medium: 250ms ease;
}
