/* tokens.css
 * Phase 1: Centralized design tokens extracted from legacy/base.css
 * Scope: colors, spacing, radii, shadows, typography family (sizes live in typography.css)
 */

:root {
	/* Colors */
	--color-primary: #3b82f6;
	--color-primary-hover: #2563eb;
	--color-secondary: #6b7280;
	--color-secondary-hover: #4b5563;
	--color-success: #10b981;
	--color-warning: #f59e0b;
	--color-error: #ef4444;
	--color-error-light: #fee2e2;
	--color-info: #3b82f6;

	/* Semantic reds */
	--color-red-50: #fef2f2;
	--color-red-200: #fecaca;
	--color-red-700: #b91c1c;

	/* Backgrounds */
	--color-background: #ffffff;
	--color-surface: #ffffff;
	--color-surface-hover: #f9fafb;

	/* Text */
	--color-text: #111827;
	--color-text-muted: #6b7280;
	--color-text-light: #9ca3af;

	/* Borders */
	--color-border: #e5e7eb;
	--color-border-light: #f3f4f6;

	/* Gray scale */
	--color-gray-50: #f9fafb;
	--color-gray-100: #f3f4f6;
	--color-gray-200: #e5e7eb;
	--color-gray-300: #d1d5db;
	--color-gray-400: #9ca3af;
	--color-gray-500: #6b7280;
	--color-gray-600: #4b5563;
	--color-gray-700: #374151;
	--color-gray-800: #1f2937;
	--color-gray-900: #111827;

	/* Border radius */
	--radius-sm: 0.25rem;
	--radius-md: 0.375rem;
	--radius-lg: 0.5rem;
	--radius-xl: 0.75rem;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

	/* Spacing scale */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-2xl: 3rem;

	/* Typography family */
	--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* End tokens */