@font-face {
	font-family: "Big Shoulders Display";
	src: url("fonts/big-shoulders-display-latin-800-normal.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Big Shoulders Display";
	src: url("fonts/big-shoulders-display-latin-600-normal.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Instrument Sans";
	src: url("fonts/instrument-sans-latin-400-normal.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Instrument Sans";
	src: url("fonts/instrument-sans-latin-600-normal.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--field: #5e2590;
	--field-deep: #3d1660;
	--pale: #d9c4ec;
	--ground: #16131f;
	--raised: #1f1b2b;
	--sunken: #120f19;
	--hairline: #2e2840;
	--ink: #ede9f4;
	--ink-2: #a79fbc;
	--ink-3: #8b82a3;
	--tint: #b07bdf;
	--in-stock: #3fbf7f;
	--display: "Big Shoulders Display", "Arial Narrow", sans-serif;
	--body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--wrap: 72rem;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ground);
	color: var(--ink);
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.6;
}

a {
	color: var(--tint);
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--ink);
}

:focus-visible {
	outline: 3px solid var(--ink);
	outline-offset: 3px;
	border-radius: 4px;
}

h1,
h2,
h3 {
	font-family: var(--display);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.01em;
	margin: 0;
}

p {
	margin: 0 0 1em;
}

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.skip {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--ink);
	color: var(--ground);
	padding: 0.5rem 1rem;
	z-index: 10;
}

.skip:focus {
	left: 1rem;
	top: 1rem;
}

.bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--ink);
	text-decoration: none;
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: 0.01em;
}

.brand img {
	width: 2rem;
	height: 2rem;
}

.nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.nav a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
}

.nav a:hover {
	text-decoration: underline;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 2.9rem;
	padding: 0 1.4rem;
	border-radius: 999px;
	font-family: var(--body);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: 2px solid transparent;
	white-space: nowrap;
}

.button-light {
	background: var(--ink);
	color: var(--field-deep);
}

.button-light:hover {
	background: #fff;
	color: var(--field-deep);
}

.button-line {
	border-color: rgba(237, 233, 244, 0.55);
	color: var(--ink);
}

.button-line:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.button-field {
	background: var(--field);
	color: #fff;
}

.button-field:hover {
	background: #6d2ca6;
	color: #fff;
}

.button svg {
	width: 1.25rem;
	height: 1.25rem;
	flex: none;
}

.nav .button {
	min-height: 2.4rem;
	padding: 0 1.1rem;
	font-size: 0.95rem;
}

.nav .button-light,
.nav .button-light:hover {
	color: var(--field-deep);
	text-decoration: none;
}

.hero {
	background:
		radial-gradient(
			120% 90% at 85% 10%,
			rgba(157, 95, 211, 0.55) 0%,
			rgba(94, 37, 144, 0) 60%
		),
		linear-gradient(180deg, var(--field) 0%, var(--field-deep) 100%);
	color: #fff;
	overflow: hidden;
}

.hero-body {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
	padding-top: clamp(2.5rem, 6vw, 5rem);
	padding-bottom: clamp(3.5rem, 8vw, 7rem);
}

.hero h1 {
	font-size: clamp(3.6rem, 9vw, 7.75rem);
	line-height: 0.88;
	margin-bottom: 1.5rem;
}

.hero .lede {
	font-size: clamp(1.1rem, 1.6vw, 1.25rem);
	color: var(--pale);
	max-width: 34rem;
	margin-bottom: 2rem;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.invite-note {
	margin: 1rem 0 0;
	color: var(--pale);
	font-size: 0.95rem;
}

.feed {
	position: relative;
	display: grid;
	gap: 0.9rem;
	max-width: 30rem;
	justify-self: end;
	width: 100%;
}

.ping {
	display: grid;
	grid-template-columns: 4px 1fr;
	background: var(--ground);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 18px 40px -18px rgba(18, 15, 25, 0.9);
	color: var(--ink);
	font-size: 0.9rem;
	line-height: 1.45;
	animation: arrive 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ping::before {
	content: "";
	background: var(--in-stock);
}

.ping.is-new::before {
	background: var(--tint);
}

.ping:nth-child(1) {
	animation-delay: 150ms;
}

.ping:nth-child(2) {
	animation-delay: 450ms;
	margin-left: 1.5rem;
}

.ping:nth-child(3) {
	animation-delay: 750ms;
	margin-left: 3rem;
}

.ping-body {
	padding: 0.85rem 1rem 0.9rem;
}

.ping-top {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	color: var(--ink-2);
	font-size: 0.8rem;
	margin-bottom: 0.2rem;
}

.ping-title {
	font-weight: 600;
	font-size: 1rem;
	color: var(--ink);
	margin-bottom: 0.5rem;
}

.ping-variants {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--ink-2);
	font-size: 0.82rem;
}

.ping-variants li::before {
	content: "";
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	margin-right: 0.4rem;
	background: var(--in-stock);
	vertical-align: 0.05em;
}

.ping-variants li.out {
	text-decoration: line-through;
	color: var(--ink-3);
}

.ping-variants li.out::before {
	background: var(--ink-3);
}

.ping-mention {
	display: inline-block;
	margin-top: 0.55rem;
	padding: 0.1rem 0.45rem;
	border-radius: 4px;
	background: rgba(124, 140, 248, 0.18);
	color: #c9d0ff;
	font-size: 0.8rem;
	font-weight: 600;
}

@keyframes arrive {
	from {
		opacity: 0;
		transform: translateY(-14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.facts {
	border-bottom: 1px solid var(--hairline);
}

.facts dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
}

.facts dl > div {
	padding: 2rem 0;
}

.facts dl > div + div {
	padding-left: 2rem;
	border-left: 1px solid var(--hairline);
}

.facts dt {
	color: var(--ink-2);
	font-size: 0.95rem;
}

.facts dd {
	margin: 0;
	order: -1;
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(2.6rem, 5vw, 3.75rem);
	line-height: 1;
	color: var(--ink);
}

.facts dl > div {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.section {
	padding: clamp(4rem, 9vw, 7rem) 0;
}

.section + .section {
	border-top: 1px solid var(--hairline);
}

.section-head {
	max-width: 40rem;
	margin-bottom: 3rem;
}

.section-head h2 {
	font-size: clamp(2.6rem, 5.5vw, 4.25rem);
	margin-bottom: 1rem;
}

.section-head p {
	color: var(--ink-2);
	font-size: 1.125rem;
}

.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	counter-reset: step;
}

.steps li {
	counter-increment: step;
	position: relative;
	padding-top: 4.75rem;
}

.steps li::before {
	content: counter(step);
	position: absolute;
	top: 0;
	left: 0;
	font-family: var(--display);
	font-weight: 800;
	font-size: 4.5rem;
	line-height: 1;
	color: var(--field);
	-webkit-text-stroke: 1px var(--tint);
}

.steps h3,
.features h3 {
	font-size: 1.9rem;
	font-weight: 600;
	line-height: 1.05;
	margin-bottom: 0.75rem;
}

.steps p,
.features p {
	color: var(--ink-2);
	max-width: 34ch;
}

.features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--hairline);
}

.features article {
	padding: 2.5rem 2.5rem 2.5rem 0;
	border-bottom: 1px solid var(--hairline);
}

.features article:nth-child(even) {
	padding-left: 2.5rem;
	padding-right: 0;
	border-left: 1px solid var(--hairline);
}

.features p {
	max-width: 42ch;
	margin: 0;
}

.stores {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.stores li {
	padding: 0.5rem 1rem;
	border: 1px solid var(--hairline);
	border-radius: 999px;
	background: var(--raised);
	font-weight: 600;
	font-size: 0.95rem;
}

.faq {
	max-width: 48rem;
}

.faq details {
	border-bottom: 1px solid var(--hairline);
}

.faq details:first-child {
	border-top: 1px solid var(--hairline);
}

.faq summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.3rem 0;
	font-weight: 600;
	font-size: 1.125rem;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	font-family: var(--display);
	font-size: 2rem;
	line-height: 1;
	color: var(--tint);
	flex: none;
}

.faq details[open] summary::after {
	content: "\2212";
}

.faq details p {
	color: var(--ink-2);
	margin: 0 0 1.4rem;
	max-width: 62ch;
}

.closer {
	background: linear-gradient(180deg, var(--field) 0%, var(--field-deep) 100%);
	color: #fff;
	padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.closer .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
}

.closer h2 {
	font-size: clamp(2.8rem, 6vw, 4.75rem);
	max-width: 14ch;
}

.closer p {
	color: var(--pale);
	margin: 1rem 0 0;
	max-width: 36rem;
}

.footer {
	background: var(--sunken);
	padding: 3.5rem 0 2.5rem;
	font-size: 0.95rem;
	color: var(--ink-2);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.footer h2 {
	font-family: var(--body);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ink);
	margin-bottom: 0.9rem;
}

.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.footer a {
	color: var(--ink-2);
	text-decoration: none;
}

.footer a:hover {
	color: var(--ink);
	text-decoration: underline;
}

.footer .brand {
	font-size: 1.4rem;
	margin-bottom: 0.9rem;
}

.footer-note {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--hairline);
	font-size: 0.85rem;
	color: var(--ink-3);
}

.footer-note p {
	margin: 0 0 0.4rem;
}

.page-head {
	background: linear-gradient(180deg, var(--field) 0%, var(--field-deep) 100%);
	color: #fff;
}

.page-head .title {
	padding-top: clamp(1.5rem, 4vw, 3rem);
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.page-head h1 {
	font-size: clamp(3rem, 8vw, 5.5rem);
	margin-bottom: 0.75rem;
}

.page-head p {
	color: var(--pale);
	margin: 0;
	max-width: 40rem;
}

.prose {
	max-width: 44rem;
	padding-top: clamp(2.5rem, 6vw, 4rem);
	padding-bottom: clamp(4rem, 8vw, 6rem);
}

.prose h2 {
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.05;
	margin: 2.75rem 0 0.9rem;
}

.prose h2:first-child {
	margin-top: 0;
}

.prose h3 {
	font-family: var(--body);
	font-size: 1.05rem;
	font-weight: 600;
	margin: 1.75rem 0 0.5rem;
	line-height: 1.4;
}

.prose p,
.prose li {
	color: #d4cee2;
}

.prose ul {
	padding-left: 1.2rem;
	margin: 0 0 1em;
}

.prose li + li {
	margin-top: 0.4rem;
}

.prose strong {
	color: var(--ink);
}

.prose .summary {
	background: var(--raised);
	border: 1px solid var(--hairline);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2.5rem;
}

.prose .summary p:last-child,
.prose .summary ul:last-child {
	margin-bottom: 0;
}

.table-scroll {
	overflow-x: auto;
	margin: 0 0 1.5em;
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.prose th,
.prose td {
	text-align: left;
	vertical-align: top;
	padding: 0.7rem 0.9rem 0.7rem 0;
	border-bottom: 1px solid var(--hairline);
	color: #d4cee2;
}

.prose th {
	color: var(--ink);
	font-weight: 600;
}

.prose code {
	font-size: 0.9em;
	background: var(--raised);
	padding: 0.1em 0.35em;
	border-radius: 4px;
	color: var(--ink);
}

.signin {
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	background:
		radial-gradient(
			90% 70% at 80% 0%,
			rgba(157, 95, 211, 0.5) 0%,
			rgba(94, 37, 144, 0) 60%
		),
		linear-gradient(180deg, var(--field) 0%, var(--field-deep) 100%);
	color: #fff;
}

.signin-card {
	align-self: center;
	justify-self: center;
	width: min(100% - 2 * var(--gutter), 30rem);
	background: var(--ground);
	color: var(--ink);
	border-radius: 18px;
	padding: clamp(1.75rem, 5vw, 2.75rem);
	box-shadow: 0 30px 60px -30px rgba(18, 15, 25, 0.95);
	margin: 2rem 0 3rem;
}

.signin-card h1 {
	font-size: clamp(2.75rem, 8vw, 3.5rem);
	margin-bottom: 0.75rem;
}

.signin-card p {
	color: var(--ink-2);
}

.signin-card .button {
	width: 100%;
	margin: 0.75rem 0 1.25rem;
	min-height: 3.2rem;
	font-size: 1.05rem;
}

.signin-card .fine {
	font-size: 0.875rem;
	margin: 0;
}

.signin-card .fine + .fine {
	margin-top: 0.75rem;
}

.signin-card ul {
	margin: 0 0 1.25rem;
	padding-left: 1.1rem;
	color: var(--ink-2);
	font-size: 0.95rem;
}

.signin-foot {
	padding: 1.5rem var(--gutter) 2rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 0.9rem;
}

.signin-foot a {
	color: var(--pale);
}

.lost {
	padding: clamp(4rem, 12vw, 8rem) 0;
}

.lost h1 {
	font-size: clamp(3.5rem, 10vw, 7rem);
	margin-bottom: 1rem;
}

.lost p {
	color: var(--ink-2);
	max-width: 32rem;
	margin-bottom: 2rem;
}

@media (max-width: 900px) {
	.hero-body {
		grid-template-columns: 1fr;
	}
	.feed {
		justify-self: start;
	}
	.steps {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}
	.footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.footer-grid > :first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 1rem;
	}
	.nav a:not(.button) {
		display: none;
	}
	.hero h1 {
		font-size: clamp(3.25rem, 16vw, 4.5rem);
	}
	.actions .button {
		flex: 1 1 100%;
	}
	.ping:nth-child(2) {
		margin-left: 0.75rem;
	}
	.ping:nth-child(3) {
		margin-left: 1.5rem;
	}
	.facts dl {
		grid-template-columns: 1fr;
	}
	.facts dl > div {
		padding: 1.25rem 0;
	}
	.facts dl > div + div {
		padding-left: 0;
		border-left: 0;
		border-top: 1px solid var(--hairline);
	}
	.features {
		grid-template-columns: 1fr;
	}
	.features article,
	.features article:nth-child(even) {
		padding: 2rem 0;
		border-left: 0;
	}
	.closer .button {
		width: 100%;
	}
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.ping {
		animation: none;
	}
}
