/**
 * AIImpish design tokens — dark premium, WCAG-minded contrast.
 * Near-black bg / light text / neon teal + violet accents.
 */

:root {
	/* Surfaces */
	--ai-bg: #0B0D10;
	--ai-surface: #12151A;
	--ai-border: #1E232B;

	/* Text */
	--ai-text: #E8EAED;
	--ai-muted: #9AA0A6;

	/* Accents */
	--ai-accent: #2EE6A6;
	--ai-accent-violet: #8B5CF6;

	/* Spacing scale */
	--ai-space-1: 0.25rem;
	--ai-space-2: 0.5rem;
	--ai-space-3: 0.75rem;
	--ai-space-4: 1rem;
	--ai-space-5: 1.5rem;
	--ai-space-6: 2rem;
	--ai-space-8: 3rem;

	/* Radius */
	--ai-radius: 10px;

	/* Typography — Inter / Geist with system fallbacks */
	--ai-font: "Inter", "Geist", system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Optional Google Fonts: load Inter when network available; system stack works offline. */
/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"); */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
