/*
 * Indivd Analytics — Design Tokens (placeholder)
 *
 * These CSS custom properties define the visual design system.
 * When brand-designer tokens arrive, swap values here — all
 * components reference these variables, not hardcoded colors.
 */

:root {
  /* ── Colors (neutral theme — placeholder) ── */
  --color-bg: #0f0f13;
  --color-surface: #1a1a24;
  --color-surface-hover: #22223a;
  --color-surface-elevated: #262635;
  --color-border: #2a2a3e;
  --color-border-light: #3a3a4e;
  --color-text: #e8e8ee;
  --color-text-muted: #8888a0;
  --color-text-secondary: #b0b0c8;
  --color-primary: #6c5ce7;
  --color-primary-hover: #7c6cf7;
  --color-primary-light: rgba(108, 92, 231, 0.15);
  --color-success: #00d68f;
  --color-warning: #f5a623;
  --color-error: #ff6b6b;
  --color-info: #4da6ff;

  /* ── Typography ── */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, Consolas, monospace;
  --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-size-3xl: 2rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ── 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;
  --space-12: 48px;
  --space-16: 64px;

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

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* ── Layout ── */
  --sidebar-width: 240px;
  --header-height: 60px;
}