/* Base design tokens and shared reset rules. */
:root {
	--avc-primary: #0d2d6c;
	--avc-secondary: #0d8b72;
	--avc-accent: #f97316;
	--avc-highlight: #d4a017;
	--avc-ink: #15213b;
	--avc-muted: #536176;
	--avc-surface: #ffffff;
	--avc-surface-alt: #f5f7fb;
	--avc-border: #d5dce8;
	--avc-focus: #b64f00;
	--avc-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--avc-font-heading: "Poppins", var(--avc-font-body);
	--avc-content: 72rem;
	--avc-reading: 46rem;
	--avc-space-1: .5rem;
	--avc-space-2: 1rem;
	--avc-space-3: 1.5rem;
	--avc-space-4: 2.5rem;
	--avc-space-5: 4rem;
	--avc-radius: .5rem;
	--avc-shadow: 0 .5rem 1.5rem rgb(13 45 108 / 10%);
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--avc-ink);
	background: var(--avc-surface);
	font-family: var(--avc-font-body);
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--avc-primary);
	text-underline-offset: .16em;
}

a:hover {
	color: var(--avc-secondary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid var(--avc-focus);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 var(--avc-space-2);
	color: var(--avc-primary);
	font-family: var(--avc-font-heading);
	line-height: 1.2;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p,
ul,
ol {
	margin: 0 0 var(--avc-space-2);
}

button,
input,
textarea,
select {
	font: inherit;
}
