/* ==========================================================================
   LiveTelePro — Design Tokens
   ========================================================================== */

:root {
	/* Brand colors (overridable via Customizer, see inc/customizer.php) */
	--color-primary: #2563EB;
	--color-primary-dark: #1D4ED8;
	--color-secondary: #06B6D4;
	--color-success: #10B981;
	--color-danger: #EF4444;
	--color-warning: #F59E0B;

	--gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	--gradient-radial: radial-gradient(circle at top right, rgba(37, 99, 235, 0.25), transparent 60%);

	/* Typography */
	--font-display: 'Poppins', 'Segoe UI', sans-serif;
	--font-body: 'Inter', 'Segoe UI', sans-serif;
	--font-ui: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

	--fs-xs: 0.75rem;
	--fs-sm: 0.875rem;
	--fs-base: 1rem;
	--fs-lg: 1.125rem;
	--fs-xl: 1.5rem;
	--fs-2xl: 2rem;
	--fs-3xl: 2.75rem;
	--fs-4xl: 3.5rem;

	/* Spacing scale */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-24: 6rem;

	/* Radii & shadow */
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-full: 999px;

	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
	--shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.18);
	--shadow-glow: 0 0 40px rgba(37, 99, 235, 0.35);

	--container-width: 1280px;
	--transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode (default) */
:root,
[data-theme='dark'] {
	--color-bg: #0F172A;
	--color-bg-elevated: #131E33;
	--color-surface: rgba(255, 255, 255, 0.04);
	--color-surface-border: rgba(255, 255, 255, 0.08);
	--color-text: #F8FAFC;
	--color-text-muted: #94A3B8;
	--glass-bg: rgba(19, 30, 51, 0.55);
	--glass-border: rgba(255, 255, 255, 0.08);
	--neumorph-shadow: 8px 8px 16px rgba(0, 0, 0, 0.35), -8px -8px 16px rgba(255, 255, 255, 0.03);
}

/* Light mode */
[data-theme='light'] {
	--color-bg: #F8FAFC;
	--color-bg-elevated: #FFFFFF;
	--color-surface: rgba(15, 23, 42, 0.03);
	--color-surface-border: rgba(15, 23, 42, 0.08);
	--color-text: #0F172A;
	--color-text-muted: #475569;
	--glass-bg: rgba(255, 255, 255, 0.6);
	--glass-border: rgba(15, 23, 42, 0.06);
	--neumorph-shadow: 8px 8px 16px rgba(15, 23, 42, 0.08), -8px -8px 16px rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
	:root {
		--transition-base: 0ms;
		--transition-slow: 0ms;
	}
}
