:root {
	--navy: #12213b;
	--blue: #1c4f8f;
	--gold: #f5b942;
	--cream: #fff8ea;
	--white: #ffffff;
	--gray: #5d6677;
	--light: #f5f7fb;
	--border: #dfe5ef;
	--shadow: 0 18px 50px rgba(18, 33, 59, 0.16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--light);
	color: var(--navy);
	line-height: 1.6;
}

a {
	color: inherit;
}

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	background: var(--navy);
	color: var(--white);
	padding: 10px 14px;
	border-radius: 10px;
	z-index: 10;
}

.skip-link:focus {
	left: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 5;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.nav {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.brand-mark {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue), var(--navy));
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 26px;
	font-weight: 800;
	box-shadow: 0 8px 24px rgba(18, 33, 59, 0.22);
}

.brand strong {
	display: block;
	font-size: 16px;
	line-height: 1.2;
}

.brand small {
	display: block;
	color: var(--gray);
	font-size: 12px;
}

.nav-links {
	display: flex;
	gap: 18px;
	font-size: 15px;
	font-weight: 650;
}

.nav-links a {
	text-decoration: none;
	color: var(--gray);
}

.nav-links a:hover {
	color: var(--blue);
}

.hero {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 74px 0 48px;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	align-items: center;
	gap: 42px;
}

.hero-content h1 {
	font-size: clamp(38px, 6vw, 68px);
	line-height: 0.98;
	letter-spacing: -0.055em;
	margin: 0 0 22px;
}

.lead {
	font-size: clamp(18px, 2.3vw, 22px);
	color: var(--gray);
	max-width: 680px;
	margin: 0 0 30px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 12px;
	font-weight: 800;
	color: var(--blue);
	margin: 0 0 12px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid transparent;
}

.button.primary {
	background: var(--blue);
	color: var(--white);
	box-shadow: 0 12px 28px rgba(28, 79, 143, 0.28);
}

.button.secondary {
	background: var(--white);
	border-color: var(--border);
	color: var(--navy);
}

.hero-card {
	background: linear-gradient(160deg, var(--navy), var(--blue));
	border-radius: 34px;
	padding: 24px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 26px;
	pointer-events: none;
}

.hero-card img {
	position: relative;
	z-index: 1;
}

.section {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto 28px;
	padding: 54px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 30px;
	box-shadow: 0 10px 30px rgba(18, 33, 59, 0.06);
}

.split {
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: 38px;
}

.section h2 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.05;
	letter-spacing: -0.035em;
	margin: 0;
}

.section-copy p:first-child,
.contact p:first-child {
	margin-top: 0;
}

.section-copy p,
.section p {
	color: var(--gray);
	font-size: 17px;
}

.section-heading {
	max-width: 740px;
	margin-bottom: 28px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.card {
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 24px;
	background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--cream);
	display: grid;
	place-items: center;
	font-size: 24px;
	margin-bottom: 16px;
}

.card h3 {
	font-size: 20px;
	margin: 0 0 8px;
}

.card p {
	font-size: 15px;
	margin: 0;
}

.highlight {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 28px;
	align-items: center;
	background: linear-gradient(135deg, var(--cream), #ffffff);
}

.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.contact-box {
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 24px;
}

.contact-box p {
	margin: 0 0 10px;
}

.contact-box a {
	color: var(--blue);
	font-weight: 800;
}

.note {
	font-size: 14px !important;
	border-top: 1px solid var(--border);
	padding-top: 14px;
	margin-top: 16px !important;
}

.site-footer {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 26px 0 44px;
	color: var(--gray);
	font-size: 14px;
}

.site-footer p {
	margin: 0 0 6px;
}

.fine-print {
	font-size: 13px;
}

@media (max-width: 820px) {
	.nav {
		align-items: flex-start;
		padding: 14px 0;
		flex-direction: column;
		gap: 12px;
	}

	.nav-links {
		width: 100%;
		justify-content: space-between;
	}

	.hero,
	.split,
	.highlight,
	.contact {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 44px;
	}

	.section {
		padding: 28px;
	}

	.cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-actions .button {
		width: 100%;
	}

	.brand strong {
		font-size: 15px;
	}
}
