* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-offset);
}
body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
a {
	color: inherit;
	text-decoration: none;
}
main {
	position: relative;
	z-index: 1;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}
section {
	padding: 72px 0;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
	scroll-margin-top: var(--header-offset);
}
.band-soft {
	background: var(--soft);
}
.band-dark {
	background: #0b1026;
	color: #e9ecf8;
	border-bottom: 0;
}
.band-dark .kicker {
	color: #c4c9e0;
	border-color: #8b92b3;
}
.band-dark h2 {
	color: #fff;
}
.band-dark .lede,
.band-dark .muted,
.band-dark .price-note,
.band-dark .price-footnote {
	color: #b8bfd8;
}
.band-dark .panel {
	color: var(--ink);
}
.band-dark .panel .muted,
.band-dark .panel h3,
.band-dark .price-card .amount small,
.band-dark .price-footnote {
	color: var(--muted);
}
.band-dark .price-card .amount {
	color: var(--ink);
}
h1,
h2 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.045em;
	text-wrap: balance;
}
h1 {
	margin: 16px 0 10px;
	font-size: clamp(36px, 6vw, 68px);
	line-height: 1.02;
}
section h2 {
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.08;
	margin: 0 0 12px;
}
h3 {
	margin: 0 0 8px;
	font-size: 19px;
	letter-spacing: -0.02em;
	font-weight: 700;
}
p {
	margin: 0 0 12px;
}
.muted {
	color: var(--muted);
}
.lede {
	font-size: 18px;
	max-width: 760px;
	color: var(--muted);
}
.section-head {
	max-width: 820px;
	margin-bottom: 28px;
}
.kicker {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent-dark);
	font-weight: 800;
	margin-bottom: 10px;
	padding: 3px 8px;
	border: 1px dashed var(--accent-dark);
	border-radius: 6px;
}
.grid {
	display: grid;
	gap: 18px;
	align-items: stretch;
}
.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.visually-hidden {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	white-space: nowrap;
}
@media (max-width: 980px) {
	.two,
	.three,
	.four {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.wrap {
		padding: 0 18px;
	}
	section {
		padding: 36px 0;
	}
}
