:root {
	color-scheme: light;
	--background: #efefef;
	--text: #222;
	--muted: rgba(34, 34, 34, 0.72);
	--cta: #00b5ff;
	--page-width: min(100% - 2rem, 760px);
}

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	margin: 0;
	min-height: 100vh;
	background: var(--background);
	color: var(--text);
	font-family:
		ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono",
		Menlo, monospace;
	font-size: 16px;
	line-height: 1.45;
}

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

.site-header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1.5rem;
	width: var(--page-width);
	margin: 0 auto;
	padding: 2.5rem 0 3.875rem;
	font-weight: 700;
}

.brand {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.cta {
	transition:
		color 160ms ease,
		background-color 160ms ease,
		opacity 160ms ease;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.625rem;
	padding: 0 1rem;
	background: var(--cta);
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

.cta:hover {
	opacity: 0.82;
}

.content {
	width: var(--page-width);
	margin: 0 auto;
	padding-bottom: 7rem;
}

.intro {
	max-width: 102rem;
}

h1 {
	margin: 0 0 1.65rem;
	max-width: 72rem;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 700;
}

p {
	margin: 0 0 2.75rem;
	max-width: 98rem;
	color: var(--muted);
}

.section-heading {
	display: inline-block;
	margin: 0 0 2.35rem;
	padding-bottom: 0.18rem;
	border-bottom: 1px solid var(--text);
	color: var(--text);
	font-size: 16px;
	line-height: 1.45;
	font-weight: 700;
}

.section-heading-spaced {
	margin-top: 4rem;
}

.lead-in {
	margin-bottom: 1.65rem;
}

.bullet-list {
	display: grid;
	gap: 1.65rem;
	max-width: 82rem;
	margin: 0;
	padding: 0;
	color: var(--muted);
	list-style: none;
}

.bullet-list li {
	position: relative;
	padding-left: 1.7rem;
}

.bullet-list li::before {
	content: "*";
	position: absolute;
	left: 0;
	color: var(--cta);
	font-weight: 700;
}

.closing-line {
	margin: 0;
	color: var(--text);
}

.closing-line a {
	color: var(--cta);
	text-decoration: underline;
	text-decoration-color: var(--text);
	text-underline-offset: 0.16em;
}

@media (max-width: 760px) {
	.site-header {
		grid-template-columns: 1fr auto;
		gap: 1rem;
		padding: 1.25rem 0 3rem;
	}
}
