:root {
	--freyza-color-primary: #111827;
	--freyza-color-secondary: #2f6f5e;
	--freyza-color-accent: #7bae9e;
	--freyza-color-text: #1f2937;
	--freyza-color-muted: #6b7280;
	--freyza-color-border: #e5e7eb;
	--freyza-color-background: #ffffff;
	--freyza-color-section: #f8fafc;
	--freyza-color-success: #22c55e;
	--freyza-color-warning: #f59e0b;
	--freyza-color-error: #dc2626;
	--freyza-font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--freyza-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--freyza-content-width: 1200px;
	--freyza-radius-sm: 4px;
	--freyza-radius-md: 8px;
	--freyza-shadow-subtle: 0 18px 45px rgba(17, 24, 39, 0.06);
}

body {
	background: var(--freyza-color-background);
	color: var(--freyza-color-text);
	font-family: var(--freyza-font-body);
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--freyza-color-primary);
	font-family: var(--freyza-font-heading);
	letter-spacing: 0;
}

a {
	color: var(--freyza-color-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--freyza-color-secondary);
}

:focus-visible {
	outline: 2px solid var(--freyza-color-secondary);
	outline-offset: 3px;
}

.freyza-container {
	margin-inline: auto;
	max-width: var(--freyza-content-width);
	padding-inline: 20px;
	width: 100%;
}

.freyza-section {
	padding-block: clamp(56px, 8vw, 112px);
}

.freyza-section--soft {
	background: var(--freyza-color-section);
}

