/* Pack archive and single. */

.packgrid {
	display: grid;
	/* Fixed columns, so a lone card keeps the width of its neighbours. */
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 1.875rem);
	/* margin:0 would cancel the auto centring .section > * applies. */
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

@media (max-width: 899px) {
	.packgrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.packgrid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Related packs scroll sideways below the desktop grid, or always when more than three. */
.packgrid--row {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.5rem;
}

.packgrid--row::-webkit-scrollbar {
	display: none;
}

.packgrid--row .packcard {
	flex: 0 0 min(78vw, 340px);
	scroll-snap-align: start;
}

@media (max-width: 899px) {
	.packgrid--related {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
	}

	.packgrid--related::-webkit-scrollbar {
		display: none;
	}

	.packgrid--related .packcard {
		flex: 0 0 min(78vw, 340px);
		scroll-snap-align: start;
	}
}

.packcard {
	display: flex;
}

.packcard__link {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
	/* Cards stretch to the tallest in the row. */
	height: 100%;
	padding: 20px 20px 28px;
	border: 1.5px solid rgb(58 58 54 / 9%);
	border-radius: 28px;
	background: var(--sr-cream);
	color: inherit;
	text-decoration: none;
}

.packcard__link:hover {
	border-color: rgb(58 58 54 / 30%);
}

.packcard__media {
	position: relative;
	display: block;
	border-radius: 20px;
	background: var(--sr-beige);
	aspect-ratio: 3 / 4;
}

.packcard__media img {
	border-radius: 20px;
	overflow: hidden;
}

.packcard__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.packcard__price {
	position: absolute;
	inset-inline-end: 14px;
	/* Straddles the bottom edge of the image, as drawn. */
	inset-block-end: -26px;
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border: 5px solid var(--sr-cream);
	border-radius: 50%;
	background: var(--sr-teal);
	color: var(--sr-cream);
	font-size: 18px;
	font-weight: 900;
}

.packcard__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.5625rem;
	padding: 20px 8px 0;
}

.packcard__title {
	font-size: 1.375rem;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.packcard__meta {
	font-size: 14.5px;
	font-weight: 700;
	opacity: 0.78;
}

.packcard__text {
	font-size: 15px;
	line-height: 1.58;
	opacity: 0.8;
}

.packcard__cta {
	/* Pushed to the bottom so the buttons line up however long the copy runs. */
	margin-top: auto;
	padding-top: 0.75rem;
	align-self: stretch;
}

/* ---------------------------------------------------------------- single */

.pack__top {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 5rem);
	padding-inline: var(--sr-gutter);
	background: var(--sr-cream);
}

.pack__ground {
	position: absolute;
	inset: 0;
	pointer-events: none;
	color: rgb(58 58 54 / 26%);
}

/* One soft circle, as drawn — the heavy accent and arc belonged to the beige
   version of this band. */
.pack__accent {
	position: absolute;
	inset-inline-end: -150px;
	inset-block-start: 60px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgb(0 184 170 / 9%);
}

.pack__inner {
	position: relative;
	display: grid;
	/* min-width:auto lets the flex track's max-content width blow the column
	   out past the viewport, which the section then clips. */
	grid-auto-columns: minmax(0, 1fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	max-width: var(--sr-container);
	margin-inline: auto;
	align-items: start;
}

.pack__inner > * {
	min-width: 0;
}

@media (min-width: 900px) {
	.pack__inner {
		grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
		gap: clamp(2rem, 5vw, 4.5rem);
		align-items: start;
	}
}

.pack__eyebrow {
	margin: 0 0 0.625rem;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #00756c;
}

.pack__title {
	margin: 0 0 0.625rem;
	font-size: clamp(2rem, 4.6vw, 3.25rem);
	font-weight: 900;
	line-height: 1.06;
	letter-spacing: -0.022em;
	text-wrap: balance;
}

.pack__meta {
	margin: 0 0 1rem;
	font-size: 15px;
	font-weight: 700;
	opacity: 0.8;
}

.pack__lede {
	margin: 0 0 1.25rem;
	font-size: clamp(1rem, 1.7vw, 1.0625rem);
	line-height: 1.6;
	opacity: 0.82;
	max-width: 46ch;
}

.pack__price {
	margin: 0 0 1.25rem;
	font-size: 2.25rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.pack__actions {
	margin: 0 0 1.5rem;
}

.pack__cta {
	min-width: 220px;
}

.pack__points {
	display: grid;
	gap: 0.75rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.5;
}

.pack__points li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 0.625rem;
	align-items: start;
}

.pack__tick {
	width: 20px;
	height: 20px;
	margin-top: 1px;
	color: var(--sr-teal);
}

.pack__sample a {
	font-size: 15px;
	font-weight: 800;
	color: #00756c;
	text-underline-offset: 3px;
}

/* ---------------------------------------------------------------- gallery */

.gallery {
	position: relative;
}

.gallery__viewport {
	aspect-ratio: 500 / 690;
	border-radius: 28px;
	overflow: hidden;
}

.gallery__track {
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	.gallery__track {
		transition: none;
	}
}

.gallery__slide {
	flex: 0 0 100%;
	min-width: 0;
	height: 100%;
	box-sizing: border-box;
}

.gallery__media {
	display: block;
	width: 100%;
	height: 100%;
	/* The gallery mixes portrait covers, square listing images and video, so
	   contain rather than crop. */
	object-fit: contain;
}

.gallery__media--video {
	background: var(--sr-cream);
}

.gallery__controls,
.row__controls {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
}

/* Card rows: the arrows only show once row.js finds the row overflows. */
.row {
	position: relative;
	z-index: 1;
}

/* display:flex above would otherwise beat the hidden attribute. */
.row__controls[hidden],
.gallery__controls[hidden] {
	display: none;
}

.gallery__arrow,
.row__arrow {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1.5px solid rgb(58 58 54 / 55%);
	border-radius: 50%;
	background: transparent;
	color: var(--sr-charcoal);
	cursor: pointer;
}

.gallery__arrow svg,
.row__arrow svg {
	width: 20px;
	height: 20px;
}

.gallery__arrow:hover:not(:disabled),
.row__arrow:hover:not(:disabled) {
	background: rgb(58 58 54 / 8%);
}

.gallery__arrow:disabled,
.row__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.gallery__dots {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gallery__dot {
	display: block;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: none;
	cursor: pointer;
	position: relative;
}

.gallery__dot::before {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: 50%;
	background: rgb(58 58 54 / 28%);
}

.gallery__dot[aria-current="true"]::before {
	inset: 6px;
	background: var(--sr-teal);
}

/* ------------------------------------------------------------ body blocks */

/* ----------------------------------------------------------------- crumbs */

.crumbs {
	padding: clamp(0.75rem, 1.6vw, 1.25rem) var(--sr-gutter) 0;
	background: var(--sr-cream);
}

.crumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	align-items: center;
	max-width: var(--sr-container);
	margin: 0 auto;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 700;
}

.crumbs__list li + li::before {
	content: "/";
	margin-inline-end: 0.625rem;
	opacity: 0.35;
}

.crumbs__list a {
	color: inherit;
	opacity: 0.72;
	text-underline-offset: 3px;
}

.crumbs__list [aria-current="page"] {
	color: #00756c;
}

.pack__flags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin: 0 0 1.125rem;
}

.pack__pill {
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: rgb(0 184 170 / 12%);
	color: #00756c;
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pack__flagnote {
	font-size: 14px;
	font-weight: 700;
	opacity: 0.72;
}

/* --------------------------------------------------------------- tour band */

.tour {
	--wave: clamp(32px, 5vw, 78px);

	position: relative;
	overflow: hidden;
	padding-block: calc(var(--wave) + clamp(1.5rem, 3vw, 2.5rem)) clamp(2.5rem, 5vw, 4rem);
	margin-block-end: 0;
	background: var(--sr-beige);
}

.tour__ground {
	position: absolute;
	inset: 0;
	max-width: none;
	margin-inline: 0;
	pointer-events: none;
}

.tour .section__head,
.tour .strip {
	position: relative;
	z-index: 1;
}

/* ------------------------------------------------------------ what it builds */

.builds {
	--wave: clamp(32px, 5vw, 78px);

	position: relative;
	/* clip rather than hidden, with a margin, so the bottom wave can paint a
	   couple of pixels past the band. The section's height lands on a
	   fractional pixel, and teal and cream antialiasing against each other on
	   that same row drew a hairline. */
	overflow: clip;
	overflow-clip-margin: 2px;
	/* Room for the waves, which sit inside the band. */
	padding-block: calc(var(--wave) + clamp(1.5rem, 3vw, 2.5rem));
	background: var(--sr-teal);
	color: var(--sr-cream);
	text-align: center;
}

/* Wave dividers, as drawn in the design: a band of the outgoing colour with
   the incoming colour filled below the curve. */
.wave {
	position: absolute;
	inset-inline: 0;
	display: block;
	width: 100%;
	height: var(--wave);
}

.wave--top {
	inset-block-start: 0;
}

.wave--bottom {
	inset-block-end: -2px;
}

.wave--from-cream { background: var(--sr-cream); }
.wave--from-beige { background: var(--sr-beige); }
.wave--from-teal { background: var(--sr-teal); }
.wave--to-cream path { fill: var(--sr-cream); }
.wave--to-beige path { fill: var(--sr-beige); }
.wave--to-teal path { fill: var(--sr-teal); }

.builds__ground {
	position: absolute;
	inset: 0;
	max-width: none;
	margin-inline: 0;
	pointer-events: none;
}

/* Clear of the wave. Bleeding off the top edge instead would read as the wave
   slicing the circle, because the wave is painted over it. */
.builds__disc {
	position: absolute;
	inset-inline-start: -140px;
	inset-block-start: calc(var(--wave) + 28px);
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgb(250 247 242 / 10%);
}

.builds .section__head,
.builds__grid {
	position: relative;
	z-index: 1;
}

.builds .section__eyebrow,
.builds .section__heading {
	color: var(--sr-cream);
}

.builds__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(0.875rem, 1.6vw, 1.25rem);
	/* margin:0 would cancel the auto centring .section > * applies. */
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.builds__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8125rem;
	text-align: center;
	padding: clamp(1.5rem, 2.4vw, 1.875rem) clamp(1.25rem, 2vw, 1.625rem);
	border-radius: 26px;
	background: var(--sr-cream);
	color: var(--sr-charcoal);
}

.builds__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgb(0 184 170 / 12%);
	color: var(--sr-teal);
}

.builds__icon svg {
	width: 23px;
	height: 23px;
}

.builds__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.builds__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.78;
}

.faqs {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: var(--sr-container);
	margin-inline: auto;
}

.faq {
	border: 1.5px solid rgb(58 58 54 / 10%);
	border-radius: 22px;
	background: var(--sr-white);
}

.faq__q {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: space-between;
	padding: 26px 30px;
	font-size: 1.21875rem;
	font-weight: 800;
	letter-spacing: -0.008em;
	cursor: pointer;
	list-style: none;
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__mark {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgb(0 184 170 / 12%);
	color: var(--sr-teal);
	transition: rotate 180ms ease;
}

.faq__mark svg {
	width: 15px;
	height: 15px;
}

/* The plus becomes a cross when the answer is showing. */
.faq[open] .faq__mark {
	rotate: 45deg;
}

@media (prefers-reduced-motion: reduce) {
	.faq__mark {
		transition: none;
	}
}

.faq__a {
	padding: 0 30px 26px;
	font-size: 1.03125rem;
	line-height: 1.66;
	opacity: 0.76;
	max-width: 740px;
}

.faq__a p {
	margin: 0 0 0.75rem;
}

.faq__a p:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------------- pair it with */

.pack__more {
	background: var(--sr-beige);
}


/* -------------------------------------------------------------- tour strip */

/* Full-bleed: the negative inline margin cancels the section's gutter, which
   is safer than 100vw (that would include the scrollbar and overflow). */
.strip {
	/* The row is one page tall; the pages size themselves off the band so a
	   whole page always fits rather than being cropped top and bottom. */
	--strip-inset: clamp(0.75rem, 2vw, 1.75rem);
	/* One row is ~2.5x longer than two, so it needs longer to travel at the
	   same pace. Duration is free here in a way it never was in a video. */
	--strip-cycle: 62s;

	position: relative;
	max-width: none;
	/* A fixed band the rows bleed out of, rather than a box the rows size.
	   Two full rows of pages would be over 700px tall. */
	height: clamp(240px, 26vw, 480px);
	margin: clamp(2rem, 4vw, 3rem) calc(-1 * var(--sr-gutter)) 0;
	overflow: hidden;
	/* Transparent so the section's colour runs between the pages. */
	background: transparent;
	isolation: isolate;
}

.strip__rows {
	position: absolute;
	inset: var(--strip-inset) 0;
	display: grid;
}

.strip__row {
	height: 100%;
	overflow: hidden;
}

.strip__track {
	display: flex;
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	align-items: center;
	height: 100%;
	width: max-content;
	animation: strip-drift var(--strip-cycle, 62s) linear infinite;
}

/* Each row renders its pages twice, so translating by exactly half the track
   lands on an identical frame and the loop has no seam. */
@keyframes strip-drift {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

.strip__row--right .strip__track {
	animation-direction: reverse;
}

.strip__page {
	flex: 0 0 auto;
	user-select: none;
	-webkit-user-drag: none;
	/* Height drives the size, so the whole page is always visible. */
	height: 100%;
	width: auto;
	background: var(--sr-white);
}

/* Keeps the edges calm without washing the pages out. */
.strip::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse at center, rgb(232 220 196 / 12%) 0%, rgb(232 220 196 / 8%) 45%, rgb(232 220 196 / 78%) 100%);
}

.strip__cards {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-items: center;
	padding-inline: var(--sr-gutter);
	pointer-events: none;
}

.strip__card {
	grid-area: 1 / 1;
	box-sizing: border-box;
	width: min(100%, 720px);
	padding: clamp(1.25rem, 3vw, 2.125rem) clamp(1.25rem, 3.5vw, 3.375rem);
	border-radius: 28px;
	background: rgb(250 247 242 / 94%);
	box-shadow: 0 24px 70px rgb(58 58 54 / 18%);
	text-align: center;
	opacity: 0;
	animation: strip-card var(--card-cycle, 24s) linear infinite;
	animation-delay: calc(var(--i) * (var(--card-cycle, 24s) / var(--strip-cards, 6)));
}

/* Visible for one slot of the cycle: in, hold, out. */
@keyframes strip-card {
	0% { opacity: 0; transform: translateY(10px); }
	2.4% { opacity: 1; transform: none; }
	14.2% { opacity: 1; transform: none; }
	16.6% { opacity: 0; transform: translateY(-6px); }
	100% { opacity: 0; transform: translateY(10px); }
}

.strip__eyebrow {
	margin: 0 0 0.5rem;
	font-size: clamp(11px, 1.1vw, 13.5px);
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #00756c;
}

.strip__title {
	margin: 0;
	font-size: clamp(1.25rem, 3vw, 2.375rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.022em;
	text-wrap: balance;
}

.strip__skills {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(0.375rem, 0.8vw, 0.625rem);
	justify-content: center;
	margin: clamp(0.75rem, 1.6vw, 1.125rem) 0 0;
	padding: 0;
	list-style: none;
}

.strip__skills li {
	padding: clamp(0.375rem, 0.9vw, 0.625rem) clamp(0.625rem, 1.4vw, 1.125rem);
	border: 1.5px solid rgb(0 184 170 / 40%);
	border-radius: 999px;
	background: rgb(0 184 170 / 8%);
	font-size: clamp(12px, 1.2vw, 15px);
	font-weight: 700;
}

.strip__note {
	margin: clamp(0.5rem, 1.2vw, 0.875rem) 0 0;
	font-size: clamp(12px, 1.2vw, 15px);
	line-height: 1.5;
	opacity: 0.78;
}

.strip__toggle {
	position: absolute;
	inset-block-end: 14px;
	inset-inline-end: clamp(1rem, 4vw, 3rem);
	z-index: 3;
	min-height: 40px;
	padding: 0.5rem 1.125rem;
	border: none;
	border-radius: 999px;
	background: rgb(58 58 54 / 72%);
	color: var(--sr-cream);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	opacity: 0;
	transition: opacity 160ms ease;
}

.strip:hover .strip__toggle,
.strip__toggle:focus-visible,
.strip.is-paused .strip__toggle {
	opacity: 1;
}

/* Nothing moves until it is on screen, and never for anyone who asked for
   less motion. */
.strip:not(.is-playing) .strip__track,
.strip:not(.is-playing) .strip__card {
	animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
	.strip__track,
	.strip__card {
		animation: none;
	}

	.strip__card {
		opacity: 1;
	}

	/* With the animation off the cards would stack; show only the first. */
	.strip__card:not(:first-child) {
		display: none;
	}

	.strip__toggle {
		display: none;
	}
}

.tour .section__lede {
	max-width: 58ch;
	margin-inline: auto;
}

.tour .section__lede p {
	margin: 0 0 0.75rem;
}

.tour .section__lede p:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------------------- shop */

.shophead {
	padding: clamp(2rem, 4vw, 2.5rem) var(--sr-gutter) 0;
	background: var(--sr-cream);
	text-align: center;
}

.shophead__inner {
	max-width: var(--sr-container);
	margin-inline: auto;
}

.shophead__eyebrow {
	margin: 0 0 1rem;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #00756c;
}

.shophead__title {
	margin: 0 auto 0.875rem;
	max-width: 720px;
	font-size: clamp(2rem, 4.4vw, 3.25rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.shophead__lede {
	margin: 0 auto;
	max-width: 560px;
	font-size: clamp(1rem, 1.7vw, 1.15625rem);
	line-height: 1.6;
	opacity: 0.76;
}

.shopbar {
	padding: clamp(1.5rem, 3vw, 2.5rem) var(--sr-gutter) 0;
	background: var(--sr-cream);
}

.shopbar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
	justify-content: space-between;
	max-width: var(--sr-container);
	margin-inline: auto;
}

.shopbar__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	align-items: center;
}

.shopbar__filter {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0.6875rem 1.375rem;
	border: 1.5px solid rgb(58 58 54 / 20%);
	border-radius: 999px;
	color: var(--sr-charcoal);
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
}

.shopbar__filter:hover {
	border-color: rgb(58 58 54 / 45%);
}

.shopbar__filter.is-on {
	border-color: var(--sr-charcoal);
	background: var(--sr-charcoal);
	color: var(--sr-cream);
	font-weight: 800;
}

.shopbar__count {
	margin: 0;
	font-size: 14.5px;
	font-weight: 700;
	opacity: 0.72;
}

.packs {
	background: var(--sr-cream);
}

.packs__empty {
	text-align: center;
	opacity: 0.76;
}

/* ------------------------------------------------------------ coming soon */

.soon {
	--wave: clamp(32px, 5vw, 74px);

	position: relative;
	overflow: clip;
	overflow-clip-margin: 2px;
	/* Wave on the top edge only; the bottom sits flat on the next section. */
	padding-block: calc(var(--wave) + clamp(1.5rem, 3vw, 2.5rem)) clamp(2.5rem, 5vw, 4rem);
	background: var(--sr-beige);
}

.soon__ground {
	position: absolute;
	inset: 0;
	max-width: none;
	margin-inline: 0;
	pointer-events: none;
}

.soon__disc {
	position: absolute;
	inset-inline-start: -110px;
	inset-block-start: calc(var(--wave) + 180px);
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgb(0 184 170 / 16%);
}

.soon .section__head,
.soon__grid {
	position: relative;
	z-index: 1;
}

.soon__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(1rem, 2vw, 1.625rem);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

/* Below the desktop grid the cards scroll sideways, like the related packs. */
@media (max-width: 899px) {
	.soon__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
	}

	.soon__grid::-webkit-scrollbar {
		display: none;
	}

	.soon__card {
		flex: 0 0 min(78vw, 340px);
		scroll-snap-align: start;
	}
}

.soon__card {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 20px 20px 28px;
	border-radius: 28px;
	background: rgb(250 247 242 / 50%);
}

.soon__media {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	align-items: center;
	justify-content: center;
	aspect-ratio: 3 / 4;
	border-radius: 20px;
	background: rgb(232 220 196 / 55%);
	overflow: hidden;
}

.soon__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.soon__media--image .soon__stage {
	position: absolute;
	inset-block-end: 14px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgb(250 247 242 / 92%);
	color: var(--sr-charcoal);
	opacity: 1;
}

.soon__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgb(250 247 242 / 90%);
	color: var(--sr-teal);
}

.soon__icon svg {
	width: 26px;
	height: 26px;
}

.soon__stage {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.76;
}

.soon__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.5rem;
	padding: 4px 8px 0;
}

.soon__title {
	font-size: 1.3125rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	opacity: 0.72;
}

.soon__when {
	font-size: 13.5px;
	font-weight: 700;
	opacity: 0.74;
}

.soon__cta {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: auto;
	padding: 0.6875rem 1.125rem;
	border: 2px solid rgb(58 58 54 / 20%);
	border-radius: 999px;
	color: var(--sr-charcoal);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.soon__cta:hover {
	border-color: rgb(58 58 54 / 45%);
}

/* --------------------------------------------------------------- roadmap */

.roadmap {
	background: var(--sr-cream);
}

.roadmap__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	max-width: var(--sr-container);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.roadmap__list li {
	padding: 0.75rem 1.375rem;
	border: 1.5px solid rgb(58 58 54 / 20%);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	opacity: 0.78;
}
