:root {
	--color-navy: #0B1220;
	--color-primary: #2563EB;
	--color-blue: #3B82F6;
	--color-background: #F8FAFC;
	--color-white: #FFFFFF;
	--color-text: #0F172A;
	--color-muted: #64748B;
	--color-border: #E2E8F0;
	--color-success: #15803D;
	--color-warning: #B45309;
	--color-danger: #B91C1C;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
	--radius-small: 8px;
	--radius-medium: 12px;
	--radius-large: 16px;
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.5rem;
	--space-6: 2rem;
	--space-7: 3rem;
	--space-8: 4rem;
	--container-width: 1320px;
	--transition: 160ms ease;
	--shadow-small: 0 1px 3px rgb(15 23 42 / 0.08);
	--shadow-medium: 0 8px 24px rgb(15 23 42 / 0.1);
}

*,
*::before {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

body {
	min-height: 100vh;
	min-height: 100dvh;
	padding-bottom: var(--site-footer-height, 0px);
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fa-solid,
.fas {
	font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
	font-weight: 900;
}

.fa-regular,
.far {
	font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
	font-weight: 400;
}

.fa-brands,
.fab {
	font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", sans-serif;
	font-weight: 400;
}

[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 var(--space-3);
	color: var(--color-navy);
	font-family: var(--font-heading);
	line-height: 1.2;
}

p { margin: 0 0 var(--space-4); }
a { color: var(--color-primary); text-decoration-thickness: 0.08em; text-underline-offset: 0.15em; }
a:hover { color: var(--color-navy); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.6; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding-left: var(--space-5); }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
label { display: inline-block; margin-bottom: var(--space-2); font-weight: 600; }
input, select, textarea { width: 100%; }
textarea { min-height: 8rem; resize: vertical; }

:focus-visible {
	outline: 3px solid var(--color-blue);
	outline-offset: 3px;
}

::selection { background: var(--color-blue); color: var(--color-white); }
