/* Design System - CSS Variables */
/* Matches mobile app: /home/ghost/in-ear-shadow-mobile/theme/colors.ts */

:root {
  /* Backgrounds */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --bg-overlay: rgba(0, 0, 0, 0.6);

  /* Borders */
  --border-subtle: #1F1F1F;
  --border-default: #2A2A2A;
  --border-strong: #3A3A3A;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1A1;
  --text-tertiary: #6B6B6B;
  --text-muted: #4A4A4A;

  /* Accent - Primary brand color */
  --accent-blue: #3B82F6;
  --accent-blue-light: #60A5FA;
  --accent-blue-muted: rgba(59, 130, 246, 0.15);
  --accent-blue-dark: #2563EB;

  /* Semantic colors */
  --success: #22C55E;
  --success-muted: rgba(34, 197, 94, 0.15);
  --warning: #F59E0B;
  --warning-muted: rgba(245, 158, 11, 0.15);
  --error: #EF4444;
  --error-muted: rgba(239, 68, 68, 0.15);

  /* Status colors */
  --status-listening: #22C55E;
  --status-processing: #3B82F6;
  --status-ready: #A1A1A1;
  --status-paused: #F59E0B;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Courier New', monospace;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Layout */
  --max-width: 1200px;
  --sidebar-width: 240px;
  --header-height: 64px;
}
