/* TOKENS - Visual foundation for ListoolAI */

:root {
  --bg-1: #0d1117;
  --bg-2: #161b22;
  --bg-3: #1c2128;

  --text-1: #ffffff;
  --text-2: #a9b1c7;

  --border: rgba(255,255,255,0.08);

  --brand: #4c8dff;
  --brand-hover: #3c76dd;
  --brand-light: rgba(76,141,255,0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.20);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(76,141,255,0.20);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  --font-main: 'Inter', sans-serif;
}

[data-theme="light"] {
  --bg-1: #f5f7fa;
  --bg-2: #ffffff;
  --bg-3: #e6ebf2;

  --text-1: #111827;
  --text-2: #4b5563;

  --border: rgba(0,0,0,0.1);

  --brand: #336dff;
  --brand-hover: #2758d9;
  --brand-light: rgba(51,109,255,0.16);
}