/* Anthropic Design System — Tokens
   Single source of truth for all colors, spacing, radii */

:root {
  /* Primary palette */
  --ant-primary: #d97757;
  --ant-dark: #141413;
  --ant-light: #faf9f5;
  --ant-bg-secondary: #f3f1eb;
  --ant-border: #e8e6dc;

  /* Text */
  --ant-text: #141413;
  --ant-text-secondary: #6b6b60;

  /* Status */
  --ant-success: #788c5d;
  --ant-danger: #dc2626;
  --ant-warning: #b8860b;
  --ant-info: #5b7e9a;

  /* Elevation */
  --ant-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);

  /* Radius */
  --ant-radius: 12px;
  --ant-radius-sm: 8px;

  /* Spacing */
  --ant-space-xs: 4px;
  --ant-space-sm: 8px;
  --ant-space-md: 16px;
  --ant-space-lg: 24px;
  --ant-space-xl: 32px;

  /* Font */
  --ant-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Bootstrap overrides */
  --bs-primary: #d97757;
  --bs-primary-rgb: 217, 119, 87;
  --bs-success: #788c5d;
  --bs-success-rgb: 120, 140, 93;
  --bs-danger: #dc2626;
  --bs-danger-rgb: 220, 38, 38;
  --bs-warning: #b8860b;
  --bs-warning-rgb: 184, 134, 11;
  --bs-info: #5b7e9a;
  --bs-info-rgb: 91, 126, 154;
  --bs-body-bg: #faf9f5;
  --bs-body-color: #141413;
  --bs-border-color: #e8e6dc;
  --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
