/* ============================================
   NotaryPro Design Tokens
   Restrained federal/civic aesthetic
   ============================================ */

:root {
  /* ----- Color palette ----- */
  --navy: #0a2463;
  --navy-dark: #061539;
  --navy-light: #1e3a8a;
  
  --red: #b91c2c;
  --red-dark: #8b1521;
  --red-light: #dc2626;
  
  --white: #ffffff;
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  
  --gold: #c9a961;
  --gold-dark: #a8893f;
  
  /* ----- Neutrals ----- */
  --ink: #1a1f2e;
  --slate: #4a5568;
  --slate-light: #718096;
  --silver: #e2e8f0;
  --silver-light: #f1f5f9;
  
  /* ----- Semantic ----- */
  --success: #2f7d4f;
  --warning: #b8860b;
  --error: var(--red);
  
  /* ----- Typography ----- */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* ----- Spacing ----- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;
  
  /* ----- Layout ----- */
  --container-max: 1200px;
  --container-narrow: 720px;
  --container-wide: 1400px;
  
  /* ----- Borders & radius ----- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --border-thin: 1px solid var(--silver);
  --border-medium: 2px solid var(--silver);
  --border-accent: 3px solid var(--gold);
  
  /* ----- Shadows ----- */
  --shadow-sm: 0 1px 2px rgba(10, 36, 99, 0.05);
  --shadow-md: 0 4px 6px rgba(10, 36, 99, 0.07), 0 2px 4px rgba(10, 36, 99, 0.06);
  --shadow-lg: 0 10px 15px rgba(10, 36, 99, 0.1), 0 4px 6px rgba(10, 36, 99, 0.05);
  
  /* ----- Transitions ----- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}