:root {
	--background: #f8f8f6;
	--text: #171a18;
	--muted: #6f756f;
	--line: #dedfdb;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	background: var(--background);
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
}

.page {
	display: flex;
	width: min(100% - 48px, 720px);
	min-height: 100vh;
	margin: 0 auto;
	padding: 48px 0;
	flex-direction: column;
	justify-content: space-between;
}

.intro {
	padding-top: 12vh;
}

.eyebrow,
.app-label {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

h1,
h2 {
	margin: 0;
	font-weight: 400;
	letter-spacing: -0.055em;
}

h1 {
	max-width: 10ch;
	font-size: clamp(3.5rem, 10vw, 7rem);
	line-height: 0.94;
}

.app {
	max-width: 440px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.app-label {
	margin-bottom: 16px;
}

h2 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1;
}

.app-description {
	max-width: 34ch;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.page {
		width: min(100% - 32px, 720px);
		padding: 32px 0;
	}

	.intro {
		padding-top: 10vh;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto;
	}
}
