/**
 * LumQuote design tokens — Stripe-inspired B2B SaaS palette
 */
:root {
  /* Brand */
  --color-primary: #635bff;
  --color-primary-hover: #4f46e5;
  --color-primary-muted: #f0efff;
  --color-primary-ring: rgba(99, 91, 255, 0.25);

  /* Neutrals */
  --color-bg: #f6f9fc;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-border: #e3e8ee;
  --color-border-strong: #c7d2e0;
  --color-text: #0a2540;
  --color-text-secondary: #425466;
  --color-text-muted: #697386;
  --color-text-inverse: #ffffff;

  /* Semantic */
  --color-success: #0d9488;
  --color-success-bg: #ecfdf5;
  --color-warning: #d97706;
  --color-warning-bg: #fffbeb;
  --color-danger: #df1b41;
  --color-danger-bg: #fef2f2;
  --color-info: #3b82f6;
  --color-info-bg: #eff6ff;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --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.625;

  /* 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;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 8px 24px rgba(10, 37, 64, 0.12);
  --shadow-focus: 0 0 0 3px var(--color-primary-ring);

  /* Layout */
  --app-max-width: 1400px;
  --app-topbar-height: 56px;
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
}
