:root {
	--color-bg: var(--theme-palette-color-7, #fafbfc);
	--color-surface: var(--theme-palette-color-8, #ffffff);
	--color-text: var(--theme-text-color, #3a4f66);
	--color-text-muted: var(--theme-palette-color-3, #3a4f66);
	--color-heading: var(--theme-headings-color, #192a3d);
	--color-primary: var(--theme-palette-color-1, #2872fa);
	--color-primary-hover: var(--theme-palette-color-2, #1559ed);
	--color-border: var(--theme-border-color, #e1e8ed);
	--color-focus: var(--color-primary);
	--color-error: #b42318;
	--color-success: #027a48;
	--color-warning: #b54708;

	--font-body: var(--theme-font-family, var(--theme-font-stack-default, system-ui, sans-serif));
	--font-heading: var(--theme-font-family, var(--theme-font-stack-default, system-ui, sans-serif));

	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 2rem;
	--text-4xl: clamp(2rem, 5vw, 3.2rem);

	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-24: 6rem;

	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);

	--container-sm: 40rem;
	--container-md: 64rem;
	--container-lg: 80rem;
	--container-xl: var(--theme-normal-container-max-width, 1290px);
	--container-narrow: var(--theme-narrow-container-max-width, 750px);

	--z-dropdown: 100;
	--z-sticky: 200;
	--z-overlay: 300;
	--z-modal: 400;

	--transition-fast: 150ms ease;
	--transition-base: 220ms ease;

	--focus-ring-width: 2px;
	--focus-ring-offset: 3px;
	--focus-ring: 0 0 0 var(--focus-ring-width) var(--color-focus);
	--target-size: 44px;
}
