:root {
	color-scheme: light;
	font-family:
		Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #171717;
	background: #f7f7f4;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

a {
	color: inherit;
}

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

header,
footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

header {
	min-height: 72px;
	border-bottom: 1px solid #deded8;
}

.brand {
	font-weight: 800;
	font-size: 20px;
	text-decoration: none;
}

nav {
	display: flex;
	gap: 18px;
	font-size: 14px;
	color: #4d4d47;
}

nav a {
	text-decoration: none;
}

main {
	flex: 1;
}

.hero {
	padding: 96px 0 64px;
}

.eyebrow,
.updated {
	color: #6a6a62;
	font-size: 14px;
	margin: 0 0 14px;
}

h1,
h2,
p {
	margin-top: 0;
}

h1 {
	font-size: clamp(42px, 7vw, 72px);
	line-height: 0.98;
	letter-spacing: 0;
	margin-bottom: 24px;
}

h2 {
	font-size: 22px;
	margin-bottom: 12px;
}

p {
	color: #3e3e39;
	line-height: 1.65;
}

.lead {
	font-size: 20px;
	max-width: 680px;
}

.section {
	border-top: 1px solid #deded8;
	padding: 36px 0 80px;
}

.section-heading {
	margin-bottom: 22px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.product {
	min-height: 220px;
	border: 1px solid #d6d6cf;
	border-radius: 8px;
	padding: 24px;
	background: #fffffb;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
}

.product h3 {
	font-size: 24px;
	margin: 0 0 12px;
}

.store-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.store-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid #c9c9c0;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
}

.document {
	max-width: 760px;
	padding: 64px 0 80px;
}

.document h1 {
	font-size: 48px;
	line-height: 1.05;
}

.document h2 {
	margin-top: 36px;
}

footer {
	min-height: 80px;
	border-top: 1px solid #deded8;
	color: #6a6a62;
	font-size: 14px;
}

@media (max-width: 720px) {
	header,
	footer {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding: 18px 0;
	}

	nav {
		flex-wrap: wrap;
	}

	.hero {
		padding: 64px 0 48px;
	}

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