/*
 * CSS Variables - Notion-Style Dark Theme
 * All design tokens and theme variables
 */

:root {
  /* Background Colors - More subtle, less gradient */
  --bg-primary: #191919;
  --bg-secondary: #1f1f1f;
  --bg-tertiary: #252525;
  --bg-surface: #2a2a2a;
  --bg-elevated: #2f2f2f;
  --bg-hover: #353535;
  
  /* Text Colors - Higher contrast */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;
  --text-inverse: #0a0a0a;
  
  /* Accent Colors - More vibrant, Notion-style */
  --accent-primary: #3b82f6;
  --accent-primary-hover: #2563eb;
  --accent-secondary: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-purple: #8b5cf6;
  
  /* Semantic Colors */
  --success: #10b981;
  --success-hover: #059669;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #06b6d4;
  
  /* Border Colors - More subtle */
  --border-primary: #333333;
  --border-secondary: #3f3f3f;
  --border-hover: #525252;
  
  /* Shadows - Softer, more natural */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  
  /* Spacing - Consistent 4px grid */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  
  /* Border Radius - More subtle */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions - Snappier */
  --transition-fast: 120ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 250ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Type scale
   * Use --font-* for sizes, --text-* is reserved for color tokens.
   * --font-2xs  tiny sub-labels, payout lines inside compact buttons
   * --font-xs   option labels, comment strip, badge text
   * --font-sm   compact button area, footer stats, dense body text
   * --font-base standard small text (btn-sm, supporting copy)
   * --font-md   body copy, card-header, h5/h6
   * --font-lg   compact card title (slightly above base heading)
   * --font-xl   prominent card titles (.card-title)
   */
  --font-2xs: 0.7rem;
  --font-xs: 0.75rem;
  --font-sm: 0.8rem;
  --font-base: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.05rem;
  --font-xl: 1.125rem;
}

