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

* {
	box-sizing: border-box;
}
body {
	margin: 0;
}
.site-header {
	padding: 1rem max(1.25rem, calc((100% - 70rem) / 2));
	background: #172033;
}
.brand {
	color: #fff;
	font-weight: 750;
	text-decoration: none;
}
.container {
	width: min(70rem, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 4rem 0;
}
.hero {
	max-width: 48rem;
	margin-bottom: 3.5rem;
}
.eyebrow {
	color: #5b54da;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
h1 {
	margin: 0.35rem 0 1rem;
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.045em;
}
.lede {
	color: #586174;
	font-size: 1.15rem;
	line-height: 1.7;
}
.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
h2 {
	font-size: 1.5rem;
}
.button {
	border: 0;
	border-radius: 0.5rem;
	padding: 0.7rem 1rem;
	cursor: pointer;
	color: #fff;
	background: #5b54da;
	font: inherit;
	font-weight: 700;
}
.button:hover {
	background: #4942c5;
}
.button:focus-visible {
	outline: 3px solid #9d98ff;
	outline-offset: 2px;
}
.table-card {
	overflow-x: auto;
	border: 1px solid #dde2ec;
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 10px 30px rgb(23 32 51 / 7%);
}
table {
	width: 100%;
	border-collapse: collapse;
}
caption {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
th,
td {
	padding: 1rem 1.15rem;
	border-bottom: 1px solid #e8ebf1;
	text-align: left;
	white-space: nowrap;
}
th {
	color: #687084;
	background: #fafbfc;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
tbody tr:last-child td {
	border-bottom: 0;
}
tbody tr:hover {
	background: #fafaff;
}
.number {
	text-align: right;
	font-variant-numeric: tabular-nums;
}
.out-of-stock {
	color: #b42318;
	font-size: 0.85rem;
	font-weight: 700;
}
.htmx-indicator {
	display: none;
	margin: 1rem 0;
	color: #687084;
}
.htmx-request.htmx-indicator,
.htmx-request .htmx-indicator {
	display: block;
}

@media (max-width: 40rem) {
	.container {
		padding-top: 2.5rem;
	}
	.hero {
		margin-bottom: 2rem;
	}
	th,
	td {
		padding: 0.8rem;
	}
}
