/* ═══════════════════════════════════════════════════════════════
   INTELLEGY HUB — Design Tokens
   Ported 1:1 from index.html :root
   ═══════════════════════════════════════════════════════════════ */

:root {
	/* COLORS */
	--color-bg: #0a0d14;
	--color-bg-secondary: #0e1218;
	--color-bg-card: rgba(255, 255, 255, 0.03);
	--color-primary: #4a90e2;
	--color-accent: #4a90e2;
	--color-accent-glow: rgba(74, 144, 226, 0.4);
	--color-text: #ffffff;
	--color-text-body: #a0aab5;
	--color-text-muted: #6b7685;
	--color-border: rgba(255, 255, 255, 0.08);
	--color-border-accent: rgba(74, 144, 226, 0.12);
	--color-success: #4caf50;
	--color-warning: #ff9800;
	--color-danger: #f44336;

	/* TYPOGRAPHY */
	--font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* SPACING */
	--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-20: 5rem;
	--space-24: 6rem;

	/* SHAPE */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
	--radius-full: 9999px;

	/* SHADOWS */
	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 20px 60px rgba(0, 0, 0, 0.45);
	--shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(74, 144, 226, 0.06);
	--shadow-glow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 20px rgba(74, 144, 226, 0.15);

	/* BEHAVIOUR */
	--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-base: 300ms ease;
	--transition-slow: 500ms ease;
	--hover-lift: translateY(-6px);
	--hover-scale: scale(1.02);

	/* LAYOUT */
	--header-height: 76px;
	--container-max: 1240px;
}
