/* variables.css — Ignyx.io Design Tokens */
:root {
  /* Backgrounds */
  --bg: #f8f9fc;
  --bg2: #ffffff;
  --bg3: #f1f3f8;
  --bg4: #e8ecf4;

  /* Text */
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;

  /* Brand accent */
  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --accent-light: #eef2ff;
  --accent-rgb: 79, 70, 229;

  /* Semantic */
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --error: #ef4444;
  --error-light: #fee2e2;

  /* Vertical brand colors */
  --finance: #4f46e5;
  --finance-light: #eef2ff;
  --auto: #0ea5e9;
  --auto-light: #e0f2fe;
  --health: #10b981;
  --health-light: #d1fae5;
  --credit: #f59e0b;
  --credit-light: #fef3c7;
  --home: #ec4899;
  --home-light: #fce7f3;
  --legal: #8b5cf6;
  --legal-light: #ede9fe;

  /* Claymorphism shadows (light mode) */
  --clay-outer: 6px 8px 24px rgba(0, 0, 0, 0.10);
  --clay-inner-lt: inset 3px 3px 8px rgba(255, 255, 255, 0.8);
  --clay-inner-dk: inset -3px -3px 8px rgba(0, 0, 0, 0.08);
  --clay-shadow: var(--clay-outer), var(--clay-inner-lt), var(--clay-inner-dk);

  /* Card shadow (lighter) */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 6px 8px 24px rgba(0, 0, 0, 0.10);

  /* Border */
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Radius */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Spacing scale */
  --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;
  --space-16: 64px;
  --space-20: 80px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;

  /* Max widths */
  --max-content: 1200px;
  --max-narrow: 760px;
}
