/**
 * Clarke Design Tokens
 * CSS Custom Properties for consistent styling across the app
 */

:root {
  /* Colors */
  --clarke-bg: #ffffff;
  --clarke-card-bg: #f4f1ec;
  --clarke-title: #3d2b25;
  --clarke-heading: #606161;
  --clarke-text: #1e1e1e;
  --clarke-text-muted: #000000;
  --clarke-btn-bg: #000000;
  --clarke-btn-text: #ffffff;
  --clarke-checkbox-border: #606161;

  /* Typography */
  --clarke-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --clarke-title-size: 32px;
  --clarke-heading-size: 24px;
  --clarke-body-size: 14px;
  --clarke-small-size: 12px;

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

  /* Radii */
  --clarke-radius-sm: 8px;
  --clarke-radius-lg: 29px;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
