/**
 * Voice Notes Lab – Design tokens from app theme
 * Source: mobile/src/constants/theme.ts
 */

:root {
  /* Brand */
  --electric-magenta: #FF02F0;
  --vivid-orange: #FC6D2D;
  --deep-purple: #6647F0;
  --electric-blue: #0091FF;

  /* Neutrals */
  --white: #FFFFFF;
  --black: #000000;

  /* Light grays */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Semantic */
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;

  /* Gradients (CSS) */
  --gradient-pulse: linear-gradient(90deg, #7C3AED 0%, #C084FC 100%);
  --gradient-flow: linear-gradient(135deg, var(--deep-purple) 0%, var(--electric-blue) 100%);
  --gradient-sunset: linear-gradient(90deg, var(--vivid-orange) 0%, var(--electric-magenta) 50%, var(--deep-purple) 100%);

  /* Typography – Poppins (match app) */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* Spacing (4px grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  /* Animation */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
}
