/*
 * IncubeSocial — Design Tokens
 * Single source of truth for brand color + type tokens.
 * Consumed by style.css and any block/pattern CSS in this theme.
 *
 * Fonts: Google Fonts CDN (Phase 1 fast pass — see functions.php for the
 * enqueue + preconnect). TODO Phase 2: self-host Sora + Inter as woff2
 * via @font-face for performance/privacy and drop the Google CDN calls.
 */

:root {
	/* Brand colors — semantic tokens */
	--color-navy-dark: #0D132B;
	--color-grey-light: #F2F4F7;
	--color-purple-primary: #6C3AED;
	--color-pink-accent: #FF4D8D;
	--color-orange-accent: #FF8A00;
	--color-blue-accent: #00B4FF;

	/* Signature gradient — mark / hero / CTAs ONLY. Never flood a full page. */
	--gradient-signature: linear-gradient(
		90deg,
		var(--color-purple-primary) 0%,
		var(--color-pink-accent) 35%,
		var(--color-orange-accent) 65%,
		var(--color-blue-accent) 100%
	);

	/* Typography */
	--font-heading: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
