:root {
	--ink: #172033;
	--muted: #5f6878;
	--line: #dce2ea;
	--paper: #ffffff;
	--wash: #f5f8fb;
	--soft: #eaf1f6;
	--navy: #12385f;
	--green: #2f7d62;
	--shadow: 0 24px 60px rgba(23, 32, 51, 0.1);
}

* {
	box-sizing: border-box;
}

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

a {
	color: var(--navy);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.site-header,
main {
	width: min(860px, calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0 16px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--navy);
	text-decoration: none;
}

.brand:hover {
	text-decoration: none;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	background: var(--navy);
}

.brand-name {
	font-size: 1rem;
	font-weight: 850;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 0.95rem;
	font-weight: 750;
}

.home-hero {
	padding: 58px 0 34px;
}

.support-page {
	max-width: 760px;
}

.contact-section {
	padding: 22px 0 28px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.support-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 28px 0 58px;
	padding: 20px 0;
}

.support-band h2 {
	max-width: 460px;
	margin: 0;
	color: var(--navy);
	font-size: clamp(1.35rem, 3vw, 2rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.utility-page,
.notice-page {
	display: grid;
	min-height: 68vh;
	align-items: center;
	padding: 48px 0 80px;
}

.utility-panel,
.notice-panel {
	padding: clamp(26px, 6vw, 46px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--paper);
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

h1 {
	max-width: 620px;
	margin: 0 0 16px;
	color: var(--navy);
	font-size: clamp(2.45rem, 6vw, 4.4rem);
	line-height: 1.02;
	letter-spacing: 0;
}

.lede,
.notice-panel p {
	max-width: 620px;
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 1.02rem;
}

.contact-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.contact-list a,
.contact-list div {
	display: grid;
	gap: 5px;
	font-weight: 800;
}

.contact-list span {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid var(--line);
	border-radius: 6px;
	font-weight: 850;
	text-decoration: none;
}

.button:hover {
	text-decoration: none;
}

.button.primary {
	border-color: var(--navy);
	color: #fff;
	background: var(--navy);
}

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

@media (max-width: 560px) {
	.site-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-header,
	main {
		width: min(100% - 28px, 860px);
	}

	.home-hero {
		padding: 42px 0 30px;
	}

	.support-band {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 56px;
	}

	.contact-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.actions,
	.button {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}
}
