/**
 * Litzi Design Tokens
 * Central place for all colors, spacing, typography
 */

:root {
  /* Colors - Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-elevated: #1f1f1f;
  --bg-input: #1a1a1a;
  
  /* Colors - Borders */
  --border-primary: #262626;
  --border-secondary: #333333;
  --border-tertiary: #404040;
  --border-subtle: #1a1a1a;
  
  /* Colors - Text */
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-tertiary: #a3a3a3;
  --text-muted: #737373;
  --text-faint: #525252;
  
  /* Colors - Brand */
  --brand-primary: #22c55e;
  --brand-hover: #16a34a;
  --brand-muted: #065f46;
  
  /* Colors - Semantic */
  --color-success: #4ade80;
  --color-warning: #fbbf24;
  --color-error: #ef4444;
  --color-info: #60a5fa;
  
  /* Colors - Badges */
  --badge-appointment-bg: #422006;
  --badge-appointment-text: #fbbf24;
  --badge-winding-bg: #1e3a5f;
  --badge-winding-text: #60a5fa;
  --badge-dividend-bg: #14532d;
  --badge-dividend-text: #4ade80;
  --badge-unknown-bg: #262626;
  --badge-unknown-text: #737373;
  
  /* Colors - Score Tiers */
  --score-tier1-bg: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --score-tier1-text: #000000;
  --score-tier2-bg: #065f46;
  --score-tier2-text: #6ee7b7;
  --score-tier3-bg: #1e3a5f;
  --score-tier3-text: #93c5fd;
  --score-tier4-bg: #262626;
  --score-tier4-text: #737373;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.7rem;
  --font-size-sm: 0.75rem;
  --font-size-base: 0.85rem;
  --font-size-md: 0.9rem;
  --font-size-lg: 1rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2rem;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  
  /* Spacing */
  --space-1: 4px;
  --space-2: 6px;
  --space-3: 8px;
  --space-4: 10px;
  --space-5: 12px;
  --space-6: 16px;
  --space-7: 20px;
  --space-8: 24px;
  --space-9: 32px;
  --space-10: 40px;
  --space-11: 48px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.2s ease;
  
  /* Layout */
  --max-width: 1400px;
  --sidebar-width: 280px;
  --header-height: 64px;
}
