/* ==========================================================================
   Design tokens — Vocal (palette violette sur fond clair)
   ========================================================================== */
:root {
  /* Brand */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #ec4899;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #faf9ff;
  --bg-panel: #ffffff;
  --bg-elev: #f4f3fb;

  /* Text */
  --text-dark: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;

  /* Borders */
  --border: #e9e7f5;
  --border-strong: #d8d4ee;

  /* Status */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Effects */
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(236,72,153,0.06));
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-md: 0 4px 12px -2px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 40px -8px rgba(99,102,241,0.18);
  --shadow-xl: 0 24px 60px -12px rgba(99,102,241,0.25);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --container: 1200px;
  --radius-sm: 0.4rem;
  --radius-md: 0.65rem;
  --radius-lg: 1rem;
  --radius-xl: 1.4rem;
}
