.spx-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	flex: 0 0 auto;
	border-bottom: 0;
	background: linear-gradient(180deg, rgb(2 5 10 / 78%), transparent);
	transition:
		background-color var(--spx-transition-fast),
		border-color var(--spx-transition-fast),
		box-shadow var(--spx-transition-fast);
}

.spx-header.is-scrolled,
.spx-header.is-menu-open {
	background: rgb(3 6 11 / 92%);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 22%);
}

body.admin-bar .spx-header {
	top: 32px;
}

.spx-header__inner {
	position: relative;
	display: grid;
	min-height: var(--spx-header-height);
	align-items: center;
	grid-template-columns: auto 1fr auto;
	gap: var(--spx-space-md);
}

.spx-header__brand {
	display: inline-flex;
	width: 4.5rem;
	align-items: center;
	grid-column: 1;
	grid-row: 1;
	text-decoration: none;
}

.spx-header__brand img {
	width: 100%;
	filter: brightness(0) invert(1);
}

.spx-header__panel {
	display: flex;
	grid-column: 1 / -1;
	grid-row: 2;
	flex-direction: column;
	gap: var(--spx-space-xl);
	padding-block: var(--spx-space-lg) var(--spx-space-xl);
}

.spx-js .spx-header__panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	visibility: hidden;
	max-height: calc(100vh - var(--spx-header-height) - var(--spx-space-xl));
	max-height: calc(100dvh - var(--spx-header-height) - var(--spx-space-xl));
	overflow-y: auto;
	padding-inline: var(--spx-space-lg);
	transform: translateY(-0.5rem);
	border: var(--spx-border-width) solid var(--spx-color-border);
	border-top-color: rgb(255 255 255 / 8%);
	border-radius: 0 0 var(--spx-radius-md) var(--spx-radius-md);
	opacity: 0;
	background: rgb(3 6 11 / 98%);
	box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 45%);
	pointer-events: none;
	transition:
		opacity var(--spx-transition-fast),
		transform var(--spx-transition-fast),
		visibility var(--spx-transition-fast);
}

.spx-js .spx-header.is-menu-open .spx-header__panel {
	visibility: visible;
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.spx-header__menu,
.spx-header__language-menu {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.spx-header__menu {
	flex-direction: column;
	gap: var(--spx-space-xs);
}

.spx-header__menu a {
	position: relative;
	display: flex;
	padding-block: var(--spx-space-xs);
	font-family: var(--spx-font-display);
	font-size: clamp(1.75rem, 8vw, 2.5rem);
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

.spx-header__menu a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	transform-origin: right;
	background: var(--spx-color-primary);
	content: "";
	transition: transform var(--spx-transition-fast);
}

.spx-header__menu a:hover::after,
.spx-header__menu a:focus-visible::after,
.spx-header__menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.spx-header__language-menu {
	gap: var(--spx-space-md);
}

.spx-header__language-menu a {
	color: var(--spx-color-text-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.spx-header__language-menu a:hover,
.spx-header__language-menu a:focus-visible,
.spx-header__language-menu .current-menu-item > a,
.spx-header__language-menu .current-language-item > a {
	color: var(--spx-color-text);
}

.spx-header__tools {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: var(--spx-space-sm);
	grid-column: 3;
	grid-row: 1;
}

.spx-header__account,
.spx-header__cart,
.spx-header__toggle {
	display: inline-flex;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	border: 0;
	color: var(--spx-color-text);
	background: transparent;
}

.spx-header__account,
.spx-header__cart {
	position: relative;
	text-decoration: none;
}

.spx-header__account:hover,
.spx-header__account:focus-visible,
.spx-header__cart:hover,
.spx-header__cart:focus-visible {
	color: var(--spx-color-primary);
}

.spx-header__account-icon,
.spx-header__cart-icon {
	width: 1.5rem;
	height: 1.5rem;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.spx-header__cart-count {
	position: absolute;
	top: 0.15rem;
	right: 0;
	display: grid;
	min-width: 1.1rem;
	height: 1.1rem;
	place-items: center;
	padding-inline: 0.2rem;
	border-radius: 999px;
	background: var(--spx-color-primary);
	color: var(--spx-color-background);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1;
}

.spx-header__toggle {
	position: relative;
	display: none;
	flex-direction: column;
	gap: 0.3rem;
	cursor: pointer;
}

.spx-js .spx-header__toggle {
	display: inline-flex;
}

.spx-header__toggle span {
	width: 1.5rem;
	height: 1.5px;
	background: currentcolor;
	transition:
		transform var(--spx-transition-fast),
		opacity var(--spx-transition-fast);
}

.spx-header.is-menu-open .spx-header__toggle span:first-child {
	transform: translateY(0.405rem) rotate(45deg);
}

.spx-header.is-menu-open .spx-header__toggle span:nth-child(2) {
	opacity: 0;
}

.spx-header.is-menu-open .spx-header__toggle span:last-child {
	transform: translateY(-0.405rem) rotate(-45deg);
}

@media (min-width: 64rem) {
	:root {
		--spx-header-height: 5rem;
	}

	.spx-header__inner {
		grid-template-columns: minmax(7rem, 1fr) auto minmax(7rem, 1fr);
		gap: var(--spx-space-xl);
	}

	.spx-header__brand {
		width: 5.25rem;
	}

	.spx-header__panel,
	.spx-js .spx-header__panel {
		position: static;
		display: flex;
		visibility: visible;
		align-items: center;
		grid-column: 2;
		grid-row: 1;
		flex-direction: row;
		gap: var(--spx-space-xl);
		max-height: none;
		overflow: visible;
		padding: 0;
		transform: none;
		border: 0;
		opacity: 1;
		background: transparent;
		box-shadow: none;
		pointer-events: auto;
	}

	.spx-header__languages {
		position: absolute;
		right: calc(6rem + var(--spx-space-md));
	}

	.spx-header__menu {
		flex-direction: row;
		gap: var(--spx-space-xl);
	}

	.spx-header__menu a {
		padding-block: 0.5rem;
		font-family: var(--spx-font-body);
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.4;
	}

	.spx-header__menu a::after {
		height: 1px;
	}

	.spx-js .spx-header__toggle {
		display: none;
	}
}

@media (max-width: 48.875rem) {
	body.admin-bar .spx-header {
		top: 46px;
	}
}

@media (max-width: 37.5rem) {
	body.admin-bar .spx-header {
		top: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.spx-js .spx-header__panel,
	.spx-header__menu a::after,
	.spx-header__toggle span {
		transition: none;
	}
}

.spx-button {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.2rem;
	border-radius: var(--spx-radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition:
		border-color var(--spx-transition-fast),
		background-color var(--spx-transition-fast),
		box-shadow var(--spx-transition-fast),
		transform var(--spx-transition-fast);
}

.spx-button--outline {
	border: 1px solid var(--spx-color-primary);
	background: rgb(3 6 11 / 52%);
	box-shadow: inset 0 0 0 1px rgb(215 43 255 / 15%);
}

.spx-button--outline:hover,
.spx-button--outline:focus-visible {
	border-color: var(--spx-color-focus);
	background: rgb(215 43 255 / 14%);
	box-shadow: 0 0 1.5rem rgb(215 43 255 / 22%);
	transform: translateY(-1px);
}

.spx-hero {
	--spx-neon-grid-width: 100%;

	position: relative;
	display: grid;
	min-height: clamp(35rem, 88svh, 52rem);
	overflow: hidden;
	background: #02050a;
	isolation: isolate;
}

.spx-hero::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
	content: "";
	background: linear-gradient(to right, rgb(12 12 20 / 95%) 0%, rgb(12 12 20 / 45%) 50%, rgb(12 12 20 / 0%) 100%);
}

.spx-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 33%;
	pointer-events: none;
	background: linear-gradient(to top, #0c0c14, rgb(12 12 20 / 0%));
	content: "";
}

.spx-hero__media {
	position: absolute;
	z-index: 0;
	inset: 0;
}

.spx-hero__image,
.spx-hero__motion {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 54% 37%;
}

.spx-hero__motion {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 700ms ease;
}

.spx-hero__motion.is-ready {
	opacity: 1;
}

.spx-hero__fx {
	position: absolute;
	z-index: 2;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.spx-neon-grid {
	position: absolute;
	inset: 0 0 0 auto;
	width: var(--spx-neon-grid-width, 50%);
	background-image: url("../images/spinnax-hero-grid.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 100% 100%;
	filter: brightness(1.02) saturate(1.08);
	mix-blend-mode: screen;
	pointer-events: none;
}

.spx-neon-grid--bloom {
	opacity: 0.1;
	filter: blur(14px) brightness(1.1) saturate(1.15);
	mix-blend-mode: plus-lighter;
}

.spx-hero__bloom {
	display: block;
}

.spx-app__fx path {
	vector-effect: non-scaling-stroke;
}

@supports not (mix-blend-mode: plus-lighter) {
	.spx-neon-grid--bloom {
		mix-blend-mode: screen;
	}
}

.spx-hero__inner {
	position: relative;
	z-index: 3;
	display: flex;
	min-height: 100%;
	align-items: flex-end;
	padding-block: clamp(8rem, 33svh, 18rem) clamp(2rem, 7vw, 4.5rem);
}

.spx-hero__content {
	width: min(100%, 34rem);
}

.spx-hero__wordmark {
	width: clamp(12rem, 58vw, 20rem);
	margin-bottom: var(--spx-space-md);
	filter: brightness(0) invert(1);
}

.spx-hero__tagline {
	margin-bottom: 0.4rem;
	font-size: clamp(0.8rem, 3vw, 1rem);
	font-weight: 600;
	letter-spacing: 0.25em;
	line-height: 1.3;
	text-transform: uppercase;
}

.spx-hero__text {
	max-width: 31rem;
	margin-bottom: var(--spx-space-lg);
	color: var(--spx-color-text-muted);
	font-size: clamp(0.875rem, 2.4vw, 1rem);
}

.spx-hero__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--spx-space-sm);
}

.spx-hero__video {
	position: absolute;
	right: 0;
	bottom: clamp(2rem, 7vw, 4.5rem);
	display: inline-flex;
	align-items: center;
	gap: var(--spx-space-xs);
	color: var(--spx-color-text);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.spx-hero__video-icon {
	display: grid;
	width: 3.25rem;
	height: 3.25rem;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 65%);
	border-radius: 50%;
	background: rgb(3 6 11 / 45%);
	box-shadow: 0 0 1.5rem rgb(215 43 255 / 18%);
	transition: border-color var(--spx-transition-fast), background-color var(--spx-transition-fast), transform var(--spx-transition-fast);
}

.spx-hero__video svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentcolor;
}

.spx-hero__video:hover .spx-hero__video-icon,
.spx-hero__video:focus-visible .spx-hero__video-icon {
	border-color: var(--spx-color-primary);
	background: rgb(215 43 255 / 16%);
	transform: scale(1.04);
}

body.spx-video-open,
body.spx-app-lightbox-open {
	overflow: hidden;
}

.spx-video-dialog {
	width: min(calc(100vw - 2rem), 70rem);
	max-width: none;
	max-height: calc(100dvh - 2rem);
	padding: 0;
	overflow: visible;
	border: 1px solid rgb(215 43 255 / 50%);
	border-radius: var(--spx-radius-md);
	background: #02050a;
	box-shadow: 0 2rem 7rem rgb(0 0 0 / 80%), 0 0 3rem rgb(215 43 255 / 16%);
	color: var(--spx-color-text);
}

.spx-video-dialog::backdrop {
	background: rgb(0 2 7 / 88%);
	backdrop-filter: blur(0.5rem);
}

.spx-video-dialog__panel,
.spx-video-dialog__frame {
	width: 100%;
}

.spx-video-dialog__panel {
	position: relative;
}

.spx-video-dialog__frame {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--spx-radius-md);
	background:
		radial-gradient(circle at 70% 45%, rgb(215 43 255 / 14%), transparent 38%),
		#02050a;
}

.spx-video-dialog__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.spx-video-dialog__consent {
	display: flex;
	width: min(100%, 38rem);
	height: 100%;
	min-height: 16rem;
	margin-inline: auto;
	padding: clamp(2rem, 6vw, 4rem);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: var(--spx-space-md);
	text-align: center;
}

.spx-video-dialog__consent p {
	max-width: 34rem;
	margin: 0;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.spx-video-dialog__consent-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--spx-space-sm);
}

.spx-video-dialog__preferences {
	padding: 0.65rem 0.25rem;
	border: 0;
	background: transparent;
	color: var(--spx-color-text-muted);
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 0.25em;
	cursor: pointer;
}

.spx-video-dialog__preferences:hover,
.spx-video-dialog__preferences:focus-visible {
	color: var(--spx-color-primary);
}

.spx-video-dialog__close {
	position: absolute;
	top: -0.8rem;
	right: -0.8rem;
	z-index: 2;
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 55%);
	border-radius: 50%;
	background: #080b12;
	color: #fff;
	box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 55%);
	cursor: pointer;
}

.spx-video-dialog__close:hover,
.spx-video-dialog__close:focus-visible {
	border-color: var(--spx-color-primary);
	color: var(--spx-color-primary);
}

.spx-video-dialog__close svg {
	width: 1.2rem;
	height: 1.2rem;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-width: 1.75;
}

@media (max-width: 47.999rem) {
	.spx-hero__video {
		top: 37%;
		right: auto;
		bottom: auto;
		left: 50%;
		flex-direction: column;
		transform: translate(-50%, -50%);
		text-align: center;
	}
}

.spx-features {
	position: relative;
	padding-block: 0 clamp(2.25rem, 3.5vw, 3rem);
	background:
		linear-gradient(180deg, rgb(3 6 11 / 96%), var(--spx-color-background) 20%),
		var(--spx-color-background);
}

.spx-hero + .spx-features {
	border-top: 0;
}

.spx-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.spx-features__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--spx-space-xs);
}

.spx-feature-card {
	display: flex;
	min-width: 0;
	min-height: 13rem;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--spx-space-md);
	padding: clamp(0.75rem, 3.5vw, 1.25rem);
	border: var(--spx-border-width) solid var(--spx-color-border);
	border-radius: var(--spx-radius-md);
	background: transparent;
}

.spx-feature-card:last-child:nth-child(odd) {
	min-height: 8.5rem;
	align-items: center;
	grid-column: 1 / -1;
	flex-direction: row;
}

.spx-feature-card__visual {
	display: grid;
	width: 100%;
	min-height: clamp(4.5rem, 20vw, 7rem);
	place-items: center;
	overflow: hidden;
	border-radius: var(--spx-radius-sm);
}

.spx-feature-card__icon {
	width: clamp(4rem, 19vw, 6rem);
	height: clamp(4rem, 19vw, 6rem);
	fill: none;
	stroke: var(--spx-color-primary);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	filter: drop-shadow(0 0 0.65rem rgb(215 43 255 / 28%));
}

.spx-feature-card__image {
	width: 100%;
	height: clamp(5.5rem, 24vw, 8rem);
}

.spx-feature-card__image--fit-cover {
	object-fit: cover;
}

.spx-feature-card__image--fit-contain {
	object-fit: contain;
}

.spx-feature-card:last-child:nth-child(odd) .spx-feature-card__visual {
	width: clamp(4.5rem, 24vw, 7rem);
	min-height: 4.5rem;
	flex: 0 0 auto;
}

.spx-feature-card:last-child:nth-child(odd) .spx-feature-card__image {
	height: clamp(4.5rem, 22vw, 6.5rem);
}

.spx-feature-card h3 {
	margin-bottom: 0.35rem;
	font-family: var(--spx-font-body);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
}

.spx-feature-card p {
	margin-bottom: 0;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.72rem, 2.8vw, 0.85rem);
	line-height: 1.55;
}

@media (min-width: 48rem) {
	.spx-hero {
		--spx-neon-grid-width: 92%;

		min-height: clamp(42rem, 78vh, 58rem);
	}

	.spx-hero__image {
		object-position: 50% 35%;
	}

	.spx-hero__inner {
		padding-block: 10rem 5rem;
	}

	.spx-hero__actions {
		width: min(100%, 25rem);
	}

	.spx-features__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: var(--spx-space-md);
	}

	.spx-feature-card,
	.spx-feature-card:last-child:nth-child(odd) {
		min-height: 17rem;
		align-items: stretch;
		grid-column: auto;
		flex-direction: column;
	}

	.spx-feature-card:last-child:nth-child(odd) .spx-feature-card__visual {
		width: 100%;
		min-height: clamp(4.5rem, 20vw, 7rem);
	}

	.spx-feature-card:last-child:nth-child(odd) .spx-feature-card__image {
		height: clamp(5.5rem, 24vw, 8rem);
	}
}

@media (min-width: 64rem) {
	.spx-hero {
		--spx-neon-grid-width: 82%;
	}
}

@media (min-width: 80rem) {
	.spx-hero {
		width: min(calc(100% - clamp(3rem, 6vw, 8rem)), 90rem);
		margin-inline: auto;
	}
}

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

/* Home section foundations. */
.spx-section-heading {
	max-width: 38rem;
	margin-bottom: clamp(var(--spx-space-lg), 4vw, var(--spx-space-xl));
}

.spx-section-heading h2,
.spx-app h2,
.spx-about h2 {
	margin-bottom: 0;
	font-size: clamp(2.5rem, 10vw, 4.5rem);
	font-weight: 500;
	letter-spacing: -0.02em;
}

.spx-section-heading--compact h2 {
	font-size: clamp(2rem, 8vw, 3.5rem);
}

.spx-component-notice {
	margin: 0;
	padding: var(--spx-space-lg);
	border: var(--spx-border-width) solid var(--spx-color-border);
	border-radius: var(--spx-radius-md);
	color: var(--spx-color-text-muted);
	background: var(--spx-color-surface);
}

/* FREAK introduction and WooCommerce plans. */
.home .spx-freak-plans {
	background:
		radial-gradient(circle at 12% 32%, rgb(119 0 169 / 10%), transparent 28rem),
		var(--spx-color-background);
}

.spx-freak-plans__grid {
	display: grid;
	gap: clamp(var(--spx-space-xl), 7vw, var(--spx-space-3xl));
}

.spx-freak {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.15fr) minmax(7.5rem, 0.85fr);
	gap: var(--spx-space-md);
}

.spx-freak__title {
	margin-bottom: var(--spx-space-md);
	font-size: clamp(3rem, 15vw, 5rem);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.spx-freak__text {
	max-width: 27rem;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.8125rem, 3.2vw, 1rem);
}

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

.spx-freak__visual {
	position: relative;
	min-width: 0;
	margin: 0;
}

.spx-freak__visual::before {
	position: absolute;
	inset: 18% -10%;
	border-radius: 50%;
	background: rgb(215 43 255 / 20%);
	filter: blur(2.5rem);
	content: "";
}

.spx-freak__image {
	position: relative;
	width: 100%;
	max-height: 22rem;
	object-fit: contain;
	filter: drop-shadow(0 1.5rem 2rem rgb(0 0 0 / 60%));
}

.spx-freak__fallback {
	position: relative;
	display: grid;
	min-height: 14rem;
	place-items: center;
}

.spx-freak__sensor-mark {
	position: absolute;
	right: 5%;
	bottom: 12%;
	width: 78%;
	height: 34%;
	transform: perspective(20rem) rotateX(56deg) rotateZ(-8deg);
	border: 1px solid rgb(255 255 255 / 22%);
	border-radius: 0.3rem;
	background: linear-gradient(135deg, #a8753d, #e1b36f 52%, #79502d);
	box-shadow: 0 1rem 1.5rem rgb(0 0 0 / 55%);
}

.spx-freak__phone-screen {
	position: absolute;
	top: 0;
	left: 16%;
	display: grid;
	width: 46%;
	height: 72%;
	place-items: center;
	border: 0.35rem solid #20232b;
	border-radius: 1rem;
	background: linear-gradient(160deg, #f5f1fb 10%, #bb4fff 55%, #290447);
	color: #0a0d13;
	font-family: var(--spx-font-display);
	font-size: 1.5rem;
	font-weight: 700;
}

.spx-plans__grid {
	display: grid;
	gap: var(--spx-space-xs);
}

.spx-plans {
	scroll-margin-top: calc(var(--spx-header-height) + var(--spx-space-lg));
}

.spx-plans > .spx-section__eyebrow {
	font-family: var(--spx-font-body);
	text-align: center;
}

.spx-plan-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: var(--spx-space-md);
	padding: clamp(0.75rem, 3.4vw, 1.25rem);
	border: var(--spx-border-width) solid var(--spx-color-border);
	border-radius: var(--spx-radius-md);
	background:
		linear-gradient(135deg, rgb(215 43 255 / 5%), transparent 48%),
		rgb(7 10 15 / 88%);
}

.spx-plan-card__header {
	display: grid;
	align-items: center;
	grid-template-columns: 3.25rem minmax(0, 1fr) auto;
	gap: var(--spx-space-sm);
}

.spx-plan-card__icon {
	display: grid;
	width: 3.25rem;
	height: 3.25rem;
	place-items: center;
	color: var(--spx-color-primary);
}

.spx-plan-card__icon svg,
.spx-plan-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.spx-plan-card__icon svg {
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	filter: drop-shadow(0 0 0.5rem rgb(215 43 255 / 28%));
}

.spx-plan-card__icon text {
	fill: currentcolor;
	stroke: none;
	font-family: var(--spx-font-body);
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
}

.spx-plan-card__title {
	margin: 0;
	font-family: var(--spx-font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
}

.spx-plan-card__title span {
	display: block;
}

.spx-plan-card__price,
.spx-merch-card__price {
	white-space: nowrap;
	font-size: clamp(0.75rem, 3vw, 0.95rem);
	font-weight: 500;
}

.spx-plan-card__price del,
.spx-merch-card__price del {
	margin-right: 0.35rem;
	color: var(--spx-color-text-muted);
	font-size: 0.78em;
}

.spx-plan-card__price ins,
.spx-merch-card__price ins {
	color: inherit;
	text-decoration: none;
}

.spx-plan-card__benefits {
	display: grid;
	gap: 0.3rem;
	margin: 0;
	padding: 0;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.7rem, 2.8vw, 0.8125rem);
	line-height: 1.45;
	list-style: none;
}

.spx-plan-card__benefits li {
	position: relative;
	padding-left: 1.35rem;
}

.spx-plan-card__benefits li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--spx-color-text);
	content: "✓";
}

.spx-plan-card__button {
	width: 100%;
	margin-top: auto;
	text-align: center;
}

.spx-plan-card__availability {
	display: grid;
	min-height: 2.75rem;
	place-items: center;
	margin-top: auto;
	border: 1px solid var(--spx-color-border);
	border-radius: var(--spx-radius-sm);
	color: var(--spx-color-text-muted);
	font-size: 0.75rem;
}

/* Merchandise. */
.spx-merch {
	background: #05080d;
}

.spx-merch__grid {
	display: grid;
	gap: var(--spx-space-sm);
}

.spx-merch-card {
	position: relative;
	display: grid;
	min-height: 13rem;
	overflow: hidden;
	grid-template-columns: minmax(0, 1.1fr) minmax(8rem, 0.9fr);
	border-radius: var(--spx-radius-md);
	background: #d8d9dd;
	color: #090b10;
}

.spx-merch-card--image-left .spx-merch-card__content {
	grid-column: 2;
}

.spx-merch-card--image-left .spx-merch-card__visual {
	grid-column: 1;
	grid-row: 1;
}

.spx-merch-card__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1rem, 4vw, 2rem);
}

.spx-merch-card h3 {
	margin-bottom: var(--spx-space-sm);
	font-family: var(--spx-font-body);
	font-size: clamp(0.875rem, 3.7vw, 1.15rem);
	font-weight: 600;
	line-height: 1.25;
}

.spx-merch-card p {
	margin-bottom: var(--spx-space-sm);
	font-size: clamp(0.7rem, 2.7vw, 0.85rem);
	line-height: 1.5;
}

.spx-merch-card__price {
	margin-bottom: var(--spx-space-md);
}

.spx-merch-card__button {
	min-height: 2.25rem;
	padding: 0.5rem 0.85rem;
	border: 1px solid #7d1391;
	background: #080a10;
	color: #fff;
}

.spx-merch-card__visual {
	min-width: 0;
	margin: 0;
}

.spx-merch-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.spx-merch-card__fallback {
	display: grid;
	height: 100%;
	place-items: center;
	background: linear-gradient(135deg, #22252b, #050609);
	color: var(--spx-color-primary);
	font-family: var(--spx-font-display);
	font-size: 3rem;
	font-weight: 700;
}

.spx-merch__empty {
	display: grid;
	min-height: 11rem;
	place-items: center;
	padding: var(--spx-space-xl);
	border: var(--spx-border-width) solid var(--spx-color-border);
	border-radius: var(--spx-radius-md);
	background:
		radial-gradient(circle at 50% 0%, rgb(215 43 255 / 16%), transparent 65%),
		var(--spx-color-surface);
	text-align: center;
}

.spx-merch__empty p {
	margin: 0;
	color: var(--spx-color-text-muted);
}

/* App. */
.spx-app {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 78%, rgb(121 0 214 / 20%), transparent 36rem),
		#02050a;
	isolation: isolate;
}

.spx-app__fx {
	position: absolute;
	z-index: -1;
	inset: 42% -25% -10% 15%;
	color: rgb(168 45 255 / 25%);
	pointer-events: none;
}

.spx-app__fx svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 0.75rem rgb(215 43 255 / 20%));
}

.spx-app__grid {
	display: grid;
	gap: var(--spx-space-xl);
}

.spx-app h2,
.spx-about h2 {
	margin-bottom: var(--spx-space-xl);
}

.spx-app__features {
	display: grid;
	gap: var(--spx-space-md);
}

.spx-app-feature {
	display: grid;
	align-items: start;
	grid-template-columns: 2rem minmax(0, 1fr);
	gap: var(--spx-space-sm);
}

.spx-app-feature__icon {
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	overflow: hidden;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--spx-color-primary), #5f179a);
	box-shadow: 0 0 1rem rgb(215 43 255 / 20%);
}

.spx-app-feature__icon svg,
.spx-app-feature__icon img {
	width: 1.25rem;
	height: 1.25rem;
	object-fit: contain;
}

.spx-app-feature__icon svg {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.spx-app-feature h3 {
	margin-bottom: 0.15rem;
	font-family: var(--spx-font-body);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
}

.spx-app-feature p {
	max-width: 28rem;
	margin: 0;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.75rem, 3vw, 0.875rem);
	line-height: 1.55;
}

.spx-app__cta {
	width: fit-content;
	margin-top: var(--spx-space-lg);
}

.spx-app__cta.is-disabled {
	cursor: default;
	opacity: 0.55;
}

.spx-store-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem;
	margin-top: var(--spx-space-xl);
}

.spx-store-link {
	display: inline-flex;
	align-items: center;
	border-radius: 0.375rem;
	text-decoration: none;
}

.spx-store-link img {
	display: block;
	width: auto;
	height: 2.5rem;
	max-width: 100%;
}

a.spx-store-link:focus-visible {
	outline: 2px solid var(--spx-color-primary);
	outline-offset: 0.25rem;
}

.spx-app__visual {
	position: relative;
	display: grid;
	min-height: clamp(22rem, 105vw, 35rem);
	place-items: center;
}

.spx-app__image {
	width: min(100%, 34rem);
	max-height: 38rem;
	object-fit: contain;
	filter: drop-shadow(0 2rem 2.5rem rgb(0 0 0 / 65%));
}

.spx-phone-stack {
	position: relative;
	width: min(80vw, 22rem);
	height: clamp(21rem, 98vw, 32rem);
}

.spx-phone {
	position: absolute;
	display: flex;
	overflow: hidden;
	align-items: center;
	flex-direction: column;
	border: 0.45rem solid #292c35;
	border-radius: 2rem;
	background:
		linear-gradient(170deg, transparent 48%, rgb(224 23 255 / 44%) 49%, transparent 50%),
		radial-gradient(circle at 50% 78%, #861ec1, transparent 36%),
		linear-gradient(160deg, #071018, #17031f 68%, #05060b);
	box-shadow: 0 2rem 3rem rgb(0 0 0 / 65%), inset 0 0 1.5rem rgb(215 43 255 / 18%);
}

.spx-phone::before {
	width: 34%;
	height: 0.7rem;
	margin-top: 0.3rem;
	border-radius: 0 0 0.55rem 0.55rem;
	background: #292c35;
	content: "";
}

.spx-phone span {
	align-self: flex-start;
	margin: 1.2rem;
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.spx-phone strong {
	margin: auto;
	font-family: var(--spx-font-display);
	font-size: clamp(3.5rem, 18vw, 6rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 0.72;
	text-align: center;
}

.spx-phone i {
	width: 70%;
	height: 2.2rem;
	margin: auto 0 1.2rem;
	border: 1px solid rgb(255 255 255 / 28%);
	border-radius: 999px;
}

.spx-phone--back {
	top: 0;
	right: 0;
	width: 60%;
	height: 82%;
	transform: rotate(10deg);
}

.spx-phone--back strong {
	font-size: 2rem;
	transform: rotate(-90deg);
}

.spx-phone--front {
	bottom: 0;
	left: 5%;
	width: 64%;
	height: 88%;
	transform: rotate(-7deg);
}

/* About. */
.spx-about {
	padding-bottom: 0;
	background: #03060b;
}

.spx-about__grid {
	display: grid;
	gap: var(--spx-space-xl);
}

.spx-about__text {
	max-width: 38rem;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.8125rem, 3.2vw, 1rem);
}

.spx-about__social {
	display: inline-flex;
	align-items: center;
	gap: var(--spx-space-sm);
	margin-top: var(--spx-space-md);
	color: var(--spx-color-text-muted);
	font-size: 0.8125rem;
	text-decoration: none;
}

.spx-about__social svg {
	width: 2rem;
	height: 2rem;
	fill: none;
	stroke: #fff;
	stroke-width: 1.6;
	padding: 0.3rem;
	border-radius: 0.45rem;
	background: linear-gradient(145deg, var(--spx-color-primary), #5f179a);
}

.spx-about__social:hover,
.spx-about__social:focus-visible {
	color: var(--spx-color-primary);
}

.spx-about__visual {
	position: relative;
	width: calc(100% + var(--spx-container-padding) + var(--spx-container-padding));
	overflow: hidden;
	margin: 0 calc(var(--spx-container-padding) * -1);
}

.spx-about__visual::before {
	display: none;
}

.spx-about__image {
	width: 100%;
	height: clamp(20rem, 110vw, 37rem);
	object-fit: cover;
	object-position: 42% center;
}

/* App screenshot slider. */
.spx-app-slider {
	--spx-app-slide-width: min(70vw, 18rem);
	--spx-app-phone-width: 10.75rem;

	position: relative;
	margin-block: clamp(2.5rem, 7vw, 5rem);
	padding-block: clamp(2rem, 5vw, 3.5rem);
	overflow: hidden;
	border-block: var(--spx-border-width) solid rgb(215 43 255 / 18%);
	background:
		radial-gradient(circle at 50% 38%, rgb(215 43 255 / 15%), transparent 26rem),
		linear-gradient(180deg, rgb(10 13 19 / 54%), rgb(3 6 11 / 22%));
}

.spx-app-slider__header {
	width: min(100% - 2rem, 56rem);
	margin: 0 auto clamp(1.25rem, 3vw, 2rem);
	text-align: center;
}

.spx-app-slider__header h2 {
	margin: 0;
	font-size: clamp(2rem, 6vw, 3.5rem);
}

.spx-app-slider__viewport {
	position: relative;
}

.spx-app-slider__track {
	display: grid;
	grid-auto-columns: var(--spx-app-slide-width);
	grid-auto-flow: column;
	gap: clamp(1rem, 4vw, 2.25rem);
	margin: 0;
	padding: 0 max(0px, calc((100% - var(--spx-app-slide-width)) / 2)) var(--spx-space-md);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-padding-inline: max(0px, calc((100% - var(--spx-app-slide-width)) / 2));
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
	list-style: none;
	-webkit-overflow-scrolling: touch;
}

.spx-app-slider__track::-webkit-scrollbar {
	display: none;
}

.spx-app-slider__slide {
	min-width: 0;
	scroll-snap-align: center;
	scroll-snap-stop: always;
}

.spx-app-slider__phone {
	position: relative;
	width: min(100%, var(--spx-app-phone-width));
	margin: 0 auto;
	padding: 0.45rem;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 2.25rem;
	background: linear-gradient(145deg, #272b35, #080a0f 42%, #191c24);
	box-shadow: 0 1.75rem 4rem rgb(0 0 0 / 48%), 0 0 2.5rem rgb(215 43 255 / 10%);
}

.spx-app-slider__phone::before {
	position: absolute;
	top: 0.85rem;
	left: 50%;
	z-index: 2;
	width: 28%;
	height: 0.38rem;
	border-radius: 999px;
	background: rgb(2 3 7 / 82%);
	content: "";
	transform: translateX(-50%);
}

.spx-app-slider__screen {
	position: relative;
	aspect-ratio: 590 / 1280;
	overflow: hidden;
	border-radius: 1.82rem;
	background: #080511;
}

.spx-app-slider__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spx-app-slider__zoom {
	position: absolute;
	right: 0.65rem;
	bottom: 0.65rem;
	z-index: 3;
	display: none;
	width: 2.35rem;
	height: 2.35rem;
	padding: 0;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 56%);
	border-radius: 50%;
	background: rgb(3 6 11 / 78%);
	color: #fff;
	box-shadow: 0 0.75rem 1.75rem rgb(0 0 0 / 48%), 0 0 1.25rem rgb(215 43 255 / 16%);
	backdrop-filter: blur(0.45rem);
	cursor: zoom-in;
	transition: border-color var(--spx-transition-fast), background-color var(--spx-transition-fast), transform var(--spx-transition-fast);
}

.spx-js .spx-app-slider__zoom {
	display: grid;
}

.spx-app-slider__zoom:hover,
.spx-app-slider__zoom:focus-visible {
	border-color: var(--spx-color-primary);
	background: rgb(215 43 255 / 26%);
	transform: scale(1.06);
}

.spx-app-slider__zoom svg {
	width: 1.05rem;
	height: 1.05rem;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-width: 1.7;
}

.spx-app-slider__copy {
	width: min(100%, 23rem);
	margin: var(--spx-space-sm) auto 0;
	text-align: center;
}

.spx-app-slider__copy h3 {
	margin-bottom: var(--spx-space-xs);
	font-size: clamp(1.35rem, 5vw, 1.8rem);
}

.spx-app-slider__copy p {
	margin: 0;
	color: var(--spx-color-text-muted);
	font-size: 0.875rem;
}

.spx-app-slider__controls {
	display: none;
	min-height: 2.75rem;
	align-items: center;
	justify-content: center;
	gap: var(--spx-space-sm);
	margin-top: var(--spx-space-md);
}

.spx-js .spx-app-slider__controls {
	display: flex;
}

.spx-app-slider__arrow {
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	place-items: center;
	border: 1px solid var(--spx-color-border);
	border-radius: 50%;
	background: rgb(10 13 19 / 80%);
	color: var(--spx-color-text);
	cursor: pointer;
	transition: border-color var(--spx-transition-fast), color var(--spx-transition-fast), opacity var(--spx-transition-fast);
}

.spx-app-slider__arrow:hover,
.spx-app-slider__arrow:focus-visible {
	border-color: var(--spx-color-primary);
	color: var(--spx-color-primary);
}

.spx-app-slider__arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

.spx-app-slider__dots {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.spx-app-slider__dots button {
	width: 0.45rem;
	height: 0.45rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgb(255 255 255 / 28%);
	cursor: pointer;
	transition: width var(--spx-transition-fast), background-color var(--spx-transition-fast);
}

.spx-app-slider__dots button.is-active {
	width: 1.25rem;
	border-radius: 999px;
	background: var(--spx-color-primary);
}

.spx-app-slider__status {
	min-width: 2.9rem;
	color: var(--spx-color-text-muted);
	font-size: 0.7rem;
	font-variant-numeric: tabular-nums;
	text-align: center;
}

.spx-app-lightbox {
	width: min(calc(100vw - 1.25rem), 60rem);
	max-width: none;
	max-height: calc(100dvh - 1.25rem);
	padding: 0;
	overflow: visible;
	border: 1px solid rgb(215 43 255 / 42%);
	border-radius: var(--spx-radius-md);
	background:
		radial-gradient(circle at 50% 38%, rgb(215 43 255 / 12%), transparent 32rem),
		#02050a;
	box-shadow: 0 2rem 7rem rgb(0 0 0 / 84%), 0 0 3rem rgb(215 43 255 / 14%);
	color: var(--spx-color-text);
}

.spx-app-lightbox::backdrop {
	background: rgb(0 2 7 / 92%);
	backdrop-filter: blur(0.6rem);
}

.spx-app-lightbox__panel {
	position: relative;
	display: grid;
	min-height: min(46rem, calc(100dvh - 1.25rem));
	padding: clamp(3rem, 7vw, 4.25rem) clamp(0.55rem, 2.5vw, 1.5rem) clamp(1rem, 3vw, 1.75rem);
	align-items: center;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(0.3rem, 1.5vw, 1rem);
}

.spx-app-lightbox__close {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	z-index: 3;
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 48%);
	border-radius: 50%;
	background: rgb(8 11 18 / 92%);
	color: #fff;
	cursor: pointer;
}

.spx-app-lightbox__close:hover,
.spx-app-lightbox__close:focus-visible,
.spx-app-lightbox__arrow:hover,
.spx-app-lightbox__arrow:focus-visible {
	border-color: var(--spx-color-primary);
	color: var(--spx-color-primary);
}

.spx-app-lightbox__close svg {
	width: 1.15rem;
	height: 1.15rem;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-width: 1.75;
}

.spx-app-lightbox__arrow {
	display: grid;
	width: clamp(2.35rem, 6vw, 3rem);
	height: clamp(2.35rem, 6vw, 3rem);
	padding: 0;
	place-items: center;
	border: 1px solid var(--spx-color-border);
	border-radius: 50%;
	background: rgb(10 13 19 / 86%);
	color: var(--spx-color-text);
	cursor: pointer;
	transition: border-color var(--spx-transition-fast), color var(--spx-transition-fast), transform var(--spx-transition-fast);
}

.spx-app-lightbox__arrow:active {
	transform: scale(0.95);
}

.spx-app-lightbox__figure {
	display: grid;
	min-width: 0;
	margin: 0;
	justify-items: center;
	gap: var(--spx-space-md);
	touch-action: pan-y;
}

.spx-app-lightbox__media {
	display: grid;
	width: 100%;
	min-height: 12rem;
	place-items: center;
}

.spx-app-lightbox__media img {
	display: block;
	width: auto;
	max-width: min(100%, 36.875rem);
	height: auto;
	max-height: min(66dvh, 64rem);
	border: 1px solid rgb(255 255 255 / 14%);
	border-radius: clamp(0.9rem, 2vw, 1.5rem);
	box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 55%), 0 0 2rem rgb(215 43 255 / 10%);
}

.spx-app-lightbox__caption {
	width: min(100%, 36rem);
	text-align: center;
}

.spx-app-lightbox__status {
	margin: 0 0 0.35rem;
	color: var(--spx-color-primary);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.spx-app-lightbox__caption h3 {
	margin: 0 0 0.35rem;
	font-size: clamp(1.4rem, 4vw, 2.1rem);
}

.spx-app-lightbox__caption > p:last-child {
	margin: 0;
	color: var(--spx-color-text-muted);
	font-size: clamp(0.82rem, 2vw, 0.95rem);
}

@media (max-width: 35rem) {
	.spx-app-lightbox__panel {
		grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
	}

	.spx-app-lightbox__media img {
		max-height: 62dvh;
	}
}

/* News. */
.spx-news {
	background: #05080d;
}

.spx-news__grid {
	display: grid;
	gap: var(--spx-space-md);
}

.spx-news-card {
	min-width: 0;
	overflow: hidden;
	border: var(--spx-border-width) solid var(--spx-color-border);
	border-radius: var(--spx-radius-md);
	background: var(--spx-color-surface);
}

.spx-news-card__link {
	display: grid;
	height: 100%;
	text-decoration: none;
}

.spx-news-card__visual {
	aspect-ratio: 16 / 10;
	margin: 0;
	overflow: hidden;
	background: var(--spx-color-surface-raised);
}

.spx-news-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.spx-news-card__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: var(--spx-space-lg);
}

.spx-news-card time {
	margin-bottom: var(--spx-space-sm);
	color: var(--spx-color-primary);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.spx-news-card h3 {
	margin-bottom: var(--spx-space-sm);
	font-family: var(--spx-font-body);
	font-size: clamp(1rem, 4.5vw, 1.3rem);
	font-weight: 600;
	line-height: 1.3;
}

.spx-news-card p {
	margin-bottom: var(--spx-space-lg);
	color: var(--spx-color-text-muted);
	font-size: 0.8125rem;
}

.spx-news-card__more {
	margin-top: auto;
	font-size: 0.75rem;
	font-weight: 600;
}

.spx-news-card__link:hover .spx-news-card__image,
.spx-news-card__link:focus-visible .spx-news-card__image {
	transform: scale(1.035);
}

.spx-news-card__link:hover .spx-news-card__more,
.spx-news-card__link:focus-visible .spx-news-card__more {
	color: var(--spx-color-primary);
}

@media (min-width: 48rem) {
	.spx-app-slider {
		--spx-app-slide-width: min(20rem, 30vw);
		--spx-app-phone-width: 11.5rem;
	}

	.spx-freak {
		grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.8fr);
	}

	.spx-merch__grid,
	.spx-news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spx-news-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.spx-app__grid {
		align-items: center;
		grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
	}

	.spx-app__visual {
		min-height: 38rem;
	}

	.spx-about {
		padding-block: 0;
	}

	.spx-about__grid {
		width: 100%;
		max-width: none;
		align-items: stretch;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0;
	}

	.spx-about__content {
		width: 100%;
		padding: clamp(2.25rem, 3.5vw, 3rem) var(--spx-container-padding);
		padding-left: max(var(--spx-container-padding), calc((100vw - var(--spx-container-width)) / 2));
	}

	.spx-about__visual {
		width: 100%;
		min-height: clamp(38rem, 44vw, 46rem);
		margin: 0;
	}

	.spx-about__visual::before {
		position: absolute;
		z-index: 1;
		inset: 0;
		display: block;
		background: linear-gradient(90deg, var(--spx-color-background), transparent 24%);
		content: "";
		pointer-events: none;
	}

	.spx-about__image {
		position: absolute;
		inset: 0;
		height: 100%;
		min-height: 0;
		object-position: center 42%;
	}
}

@media (min-width: 64rem) {
	.spx-freak-plans__grid {
		align-items: start;
		grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 2.22fr);
		gap: clamp(var(--spx-space-xl), 4vw, var(--spx-space-2xl));
	}

	.spx-freak {
		display: flex;
		min-height: 28rem;
		flex-direction: column;
	}

	.spx-freak__visual {
		width: 100%;
		margin-top: auto;
	}

	.spx-freak__image {
		max-height: 17rem;
	}

	.spx-plans__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--spx-space-sm);
	}

	.spx-plan-card {
		min-height: 28rem;
		padding: var(--spx-space-lg);
	}

	.spx-plan-card__header {
		justify-items: center;
		grid-template-columns: 1fr;
		text-align: center;
	}

	.spx-plan-card__icon {
		width: 4.5rem;
		height: 4.5rem;
	}

	.spx-plan-card__title {
		font-size: 0.875rem;
	}

	.spx-plan-card__price {
		margin-top: var(--spx-space-md);
		font-size: 1rem;
	}

	.spx-plan-card__benefits {
		margin-top: var(--spx-space-sm);
	}

	.spx-merch__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spx-merch-card {
		min-height: 18rem;
	}

	.spx-news__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.spx-news-card:last-child:nth-child(odd) {
		grid-column: auto;
	}
}

@media (min-width: 80rem) {
	.spx-about {
		--spx-about-stage-width: min(calc(100vw - clamp(3rem, 6vw, 8rem)), 90rem);
	}

	.spx-about__grid {
		width: var(--spx-about-stage-width);
		margin-inline: auto;
	}

	.spx-about__content {
		padding-left: max(
			var(--spx-container-padding),
			calc((var(--spx-about-stage-width) - var(--spx-container-width)) / 2)
		);
	}
}

/* Single post hero and article. */
.spx-post-hero {
	position: relative;
	display: flex;
	width: 100%;
	min-height: clamp(25rem, 68vw, 43rem);
	margin-inline: auto;
	align-items: flex-end;
	overflow: hidden;
	background: #02050a;
	isolation: isolate;
}

.spx-post-hero::before,
.spx-post-hero::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
	pointer-events: none;
}

.spx-post-hero::before {
	background: linear-gradient(90deg, rgb(2 5 10 / 82%) 0%, rgb(2 5 10 / 32%) 60%, rgb(2 5 10 / 12%) 100%);
}

.spx-post-hero::after {
	background: linear-gradient(0deg, rgb(3 6 11 / 97%) 0%, rgb(3 6 11 / 62%) 28%, transparent 68%);
}

.spx-post-hero__media,
.spx-post-hero__fx {
	position: absolute;
	inset: 0;
}

.spx-post-hero__media {
	z-index: 0;
}

.spx-post-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.spx-post-hero__fx {
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
}

.spx-post-hero__grid,
.spx-post-hero__bloom {
	width: min(86%, 65rem);
	opacity: 0.42;
}

.spx-post-hero__bloom {
	opacity: 0.08;
}

.spx-post-hero__inner {
	position: relative;
	z-index: 3;
	padding-block: clamp(5rem, 12vw, 8rem) clamp(2rem, 6vw, 4rem);
}

.spx-post-hero__inner h1,
.spx-single-post__header h1 {
	max-width: 58rem;
	margin-bottom: var(--spx-space-md);
	font-size: clamp(2.6rem, 10vw, 6.5rem);
	text-wrap: balance;
}

.spx-post-hero time,
.spx-single-post__header time {
	color: var(--spx-color-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.spx-single-post__header {
	padding-block: clamp(4rem, 10vw, 7rem) clamp(2rem, 5vw, 4rem);
}

.spx-single-post__body {
	width: min(calc(100% - var(--spx-container-padding) - var(--spx-container-padding)), 48rem);
	padding-block: clamp(2.5rem, 7vw, 5rem);
}

.spx-single-post__body > * + * {
	margin-top: var(--spx-space-lg);
}

.spx-single-post__body h2,
.spx-single-post__body h3,
.spx-single-post__body h4 {
	margin-top: clamp(2rem, 6vw, 3.5rem);
	margin-bottom: var(--spx-space-md);
}

.spx-single-post__body h2 {
	font-size: clamp(2rem, 7vw, 3.5rem);
}

.spx-single-post__body h3 {
	font-size: clamp(1.5rem, 5vw, 2.25rem);
}

.spx-single-post__body p,
.spx-single-post__body li {
	color: #d5d6dc;
}

.spx-single-post__body img {
	width: auto;
	max-width: 100%;
	border-radius: var(--spx-radius-md);
}

.spx-single-post__body a {
	color: var(--spx-color-primary);
}

.spx-single-post__pages {
	margin-top: var(--spx-space-xl);
}

@media (min-width: 80rem) {
	.spx-post-hero {
		width: min(calc(100% - clamp(3rem, 6vw, 8rem)), 90rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.spx-hero__motion {
		display: none;
	}

	.spx-news-card__image {
		transition: none;
	}
}
