/* Styles the public static website. */
:root {
	color-scheme: light;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif;
	color: #1d252c;
	background: #f7f5ef;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px clamp(20px, 5vw, 72px);
	background: #ffffff;
	border-bottom: 1px solid #ddd8cc;
}

.brand {
	font-weight: 700;
}

nav {
	display: flex;
	gap: 18px;
	font-size: 14px;
}

.hero {
	min-height: 58vh;
	padding: 72px clamp(20px, 8vw, 112px);
	background:
		linear-gradient(120deg, rgba(29, 37, 44, 0.9), rgba(29, 37, 44, 0.5)),
		url("/hero.png");
	background-position: center;
	background-size: cover;
	color: #ffffff;
}

.hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(42px, 7vw, 78px);
	line-height: 1;
}

.hero p {
	max-width: 600px;
	font-size: 18px;
}

.kicker {
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 13px;
}

.button {
	display: inline-block;
	margin-top: 18px;
	padding: 12px 18px;
	background: #d4a017;
	color: #1d252c;
	font-weight: 700;
	border-radius: 4px;
}

.band {
	padding: 56px clamp(20px, 8vw, 112px);
}

.muted {
	background: #e8ece8;
}

.band h2 {
	margin: 0 0 24px;
	font-size: 30px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

article {
	padding: 20px;
	background: #ffffff;
	border: 1px solid #ddd8cc;
	border-radius: 6px;
}

article h3 {
	margin: 0 0 8px;
}

article p {
	margin: 0;
}

li + li {
	margin-top: 8px;
}

footer {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 28px clamp(20px, 5vw, 72px);
	background: #1d252c;
	color: #ffffff;
}

footer p {
	margin: 0;
}

@media (max-width: 640px) {
	.topbar,
	footer {
		align-items: flex-start;
		flex-direction: column;
	}

	nav {
		flex-wrap: wrap;
	}
}
