:root {
	--navy: #191e28;
	--navy-deep: #101620;
	--navy-soft: #242b38;
	--red: #d8201d;
	--red-dark: #b61614;
	--white: #f8f9fb;
	--light: #f4f5f7;
	--ink: #181d27;
	--gray: #68707f;
	--line: rgba(248, 249, 251, 0.15);
	--line-dark: rgba(24, 29, 39, 0.12);
	--font-display: "Industry Inc", "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
	--font-body: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--gutter: 24px;
	--container: 1180px;
}

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

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
	background: var(--navy-deep);
}

body {
	position: relative;
	min-width: 320px;
	margin: 0;
	overflow-x: hidden;
	color: var(--white);
	background: var(--navy);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

body::before {
	background-image:
		linear-gradient(rgba(248, 249, 251, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(248, 249, 251, 0.045) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 74%);
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 74%);
}

body::after {
	opacity: 0.22;
	mix-blend-mode: soft-light;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

::selection {
	color: var(--white);
	background: var(--red);
}

body.admin-bar .site-header {
	top: 46px;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:where(a, button):focus-visible {
	outline: 3px solid var(--white);
	outline-offset: 4px;
	box-shadow: 0 0 0 7px rgba(216, 32, 29, 0.42);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--navy-deep);
	background: var(--white);
	font-weight: 800;
	transform: translateY(-170%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header,
.site-main,
.site-footer,
.sticky-cta {
	position: relative;
	z-index: 1;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	padding: 18px 0;
	background: linear-gradient(to bottom, rgba(25, 30, 40, 0.92), rgba(25, 30, 40, 0.64), transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-header__inner,
.hero__inner,
.metrics__inner,
.section-inner,
.site-footer__inner {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.brand__mark {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
}

.brand__wordmark-img {
	display: none;
	width: 174px;
	height: auto;
}

.brand__wordmark {
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.42rem;
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.site-nav,
.header-cta {
	display: none;
}

.site-nav {
	align-items: center;
	gap: 30px;
	color: rgba(248, 249, 251, 0.76);
	font-size: 0.88rem;
	font-weight: 800;
}

.site-nav a {
	transition: color 160ms ease;
}

.site-nav a:hover {
	color: var(--white);
}

.header-cta {
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(248, 249, 251, 0.22);
	border-radius: 999px;
	color: var(--white);
	font-size: 0.86rem;
	font-weight: 900;
	background: rgba(248, 249, 251, 0.08);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover {
	transform: translateY(-2px);
	border-color: rgba(248, 249, 251, 0.42);
	background: rgba(248, 249, 251, 0.13);
}

.hero {
	min-height: 100svh;
	padding: 96px 0 52px;
	background:
		radial-gradient(circle at 82% 20%, rgba(216, 32, 29, 0.22), transparent 28rem),
		radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.07), transparent 22rem),
		linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 30px;
	align-items: center;
}

.hero__content {
	max-width: 760px;
}

.hero__eyebrow,
.section-eyebrow {
	margin: 0 0 18px;
	color: rgba(248, 249, 251, 0.74);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero__title {
	display: grid;
	gap: 0.05em;
	max-width: 12ch;
	margin: 0;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(60px, 14vw, 132px);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.78;
	text-transform: uppercase;
}

.hero__title span {
	display: block;
}

.hero__title em {
	color: var(--red);
	font-style: normal;
}

.hero__lead {
	max-width: 650px;
	margin: 26px 0 0;
	color: rgba(248, 249, 251, 0.8);
	font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	color: var(--white);
	background: var(--red);
	box-shadow: 0 18px 42px rgba(216, 32, 29, 0.34);
}

.button--primary:hover {
	background: var(--red-dark);
}

.button--ghost {
	color: var(--white);
	border-color: rgba(248, 249, 251, 0.24);
	background: rgba(248, 249, 251, 0.07);
}

.button--ghost:hover {
	border-color: rgba(248, 249, 251, 0.46);
	background: rgba(248, 249, 251, 0.12);
}

.trust-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.trust-chips li {
	padding: 8px 12px;
	border: 1px solid rgba(248, 249, 251, 0.14);
	border-radius: 999px;
	color: rgba(248, 249, 251, 0.78);
	font-size: 0.78rem;
	font-weight: 800;
	background: rgba(248, 249, 251, 0.06);
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	max-width: 620px;
	margin-top: 20px;
	overflow: hidden;
	border: 1px solid rgba(248, 249, 251, 0.12);
	border-radius: 22px;
	background: rgba(248, 249, 251, 0.1);
}

.hero-proof div {
	padding: 13px 12px;
	background: rgba(16, 22, 32, 0.46);
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(1.28rem, 5vw, 1.8rem);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.hero-proof span {
	margin-top: 6px;
	color: rgba(248, 249, 251, 0.58);
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.hero-media {
	width: min(100%, 470px);
	margin-inline: auto;
}

.hero-media__card {
	position: relative;
	aspect-ratio: 4 / 5;
	min-height: 430px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 34px;
	background:
		radial-gradient(circle at 70% 18%, rgba(216, 32, 29, 0.28), transparent 34%),
		linear-gradient(145deg, #222938, #090d13);
	box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
}

.hero-media__video,
.hero-media__poster,
.hero-media__fallback {
	width: 100%;
	height: 100%;
}

.hero-media__video,
.hero-media__poster {
	object-fit: cover;
	filter: saturate(0.82) contrast(1.08) brightness(0.82);
	transform: scale(1.02);
}

.hero-media__fallback {
	display: grid;
	place-items: center;
	color: rgba(248, 249, 251, 0.88);
	font-family: var(--font-display);
	font-size: clamp(4rem, 18vw, 7rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	background:
		linear-gradient(135deg, rgba(248, 249, 251, 0.08), rgba(248, 249, 251, 0)),
		radial-gradient(circle at 50% 34%, rgba(216, 32, 29, 0.32), transparent 18rem);
}

.hero-media__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 88% 14%, rgba(216, 32, 29, 0.42), transparent 16rem),
		linear-gradient(180deg, rgba(25, 30, 40, 0.05) 0%, rgba(25, 30, 40, 0.2) 42%, rgba(25, 30, 40, 0.88) 100%);
	pointer-events: none;
}

.hero-media__badge,
.hero-media__symbol,
.hero-media__info {
	position: absolute;
	z-index: 2;
}

.hero-media__badge {
	top: 18px;
	left: 18px;
	padding: 8px 12px;
	border: 1px solid rgba(248, 249, 251, 0.2);
	border-radius: 999px;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	background: rgba(16, 22, 32, 0.56);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.hero-media__symbol {
	top: 16px;
	right: 16px;
	width: 56px;
	height: 56px;
	color: var(--red);
	filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.34));
}

.hero-media__info {
	right: 16px;
	bottom: 16px;
	left: 16px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(248, 249, 251, 0.18);
	border-radius: 22px;
	background: rgba(16, 22, 32, 0.46);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.hero-media__info div {
	padding: 13px 14px;
	background: rgba(248, 249, 251, 0.08);
}

.hero-media__info dt,
.hero-media__info dd {
	margin: 0;
}

.hero-media__info dt {
	color: rgba(248, 249, 251, 0.58);
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-media__info dd {
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.62rem;
	font-weight: 900;
	line-height: 0.95;
}

.metrics {
	padding: 34px 0;
	background: var(--navy-deep);
	border-top: 1px solid rgba(248, 249, 251, 0.08);
	border-bottom: 1px solid rgba(248, 249, 251, 0.08);
}

.metrics__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(248, 249, 251, 0.1);
	border-radius: 24px;
	background: rgba(248, 249, 251, 0.08);
}

.metric {
	padding: 24px 18px;
	background: var(--navy);
}

.metric strong {
	display: block;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 9vw, 4rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.88;
	text-transform: uppercase;
}

.metric span {
	display: block;
	max-width: 15ch;
	margin-top: 10px;
	color: rgba(248, 249, 251, 0.66);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
}

.media-strip {
	overflow: hidden;
	padding: 26px 0;
	color: var(--ink);
	background: var(--white);
	border-bottom: 1px solid rgba(24, 29, 39, 0.08);
}

.media-strip__inner {
	width: min(100% - (var(--gutter) * 2), 1320px);
	margin-inline: auto;
}

.media-strip p {
	margin: 0 0 16px;
	color: var(--gray);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
}

.media-strip__viewport {
	position: relative;
	overflow: hidden;
}

.media-strip__viewport::before,
.media-strip__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 52px;
	pointer-events: none;
}

.media-strip__viewport::before {
	left: 0;
	background: linear-gradient(90deg, var(--white), rgba(248, 249, 251, 0));
}

.media-strip__viewport::after {
	right: 0;
	background: linear-gradient(270deg, var(--white), rgba(248, 249, 251, 0));
}

.media-strip__track {
	display: flex;
	width: max-content;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	animation: media-scroll 24s linear infinite;
}

.media-strip__track li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 156px;
	min-height: 56px;
	padding: 0 22px;
	border: 1px solid rgba(24, 29, 39, 0.12);
	border-radius: 999px;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.38rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
	background: #fff;
}

@keyframes media-scroll {
	to {
		transform: translateX(calc(-50% - 6px));
	}
}

.program {
	padding: 74px 0;
	color: var(--ink);
	background: var(--light);
}

.section-heading {
	max-width: 760px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.program .section-eyebrow {
	color: var(--red);
}

.section-heading h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(3rem, 9vw, 6.4rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.86;
	text-transform: uppercase;
}

.section-heading p:last-child {
	max-width: 640px;
	margin: 22px 0 0;
	color: var(--gray);
	font-size: 1.04rem;
}

.section-heading--center p:last-child {
	margin-inline: auto;
}

.program-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 34px;
}

.program-card {
	position: relative;
	display: flex;
	min-height: 340px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(248, 249, 251, 0.18);
	border-radius: 28px;
	color: var(--white);
	background-color: var(--navy-deep);
	background-position: center;
	background-size: cover;
	box-shadow: 0 28px 70px rgba(24, 29, 39, 0.18);
}

.program-card::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(16, 22, 32, 0.1) 0%, rgba(16, 22, 32, 0.62) 44%, rgba(16, 22, 32, 0.94) 100%),
		radial-gradient(circle at 82% 12%, rgba(216, 32, 29, 0.34), transparent 18rem);
	content: "";
}

.program-card > * {
	position: relative;
	z-index: 1;
}

.program-card--live {
	background-image: url("../img/program-live-coaching.webp");
}

.program-card--nutrition {
	background-image: url("../img/program-nutrition.webp");
}

.program-card--supplements {
	background-image: url("../img/program-supplements.webp");
}

.program-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: auto;
	border: 1px solid rgba(248, 249, 251, 0.26);
	border-radius: 999px;
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 900;
	background: rgba(216, 32, 29, 0.88);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.program-card h3 {
	margin: 76px 0 12px;
	font-family: var(--font-display);
	font-size: clamp(2.15rem, 8vw, 3.2rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.88;
	text-transform: uppercase;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
}

.program-card p {
	margin: 0;
	color: rgba(248, 249, 251, 0.82);
	font-weight: 600;
	text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

.results {
	padding: 76px 0;
	background:
		radial-gradient(circle at 14% 0%, rgba(216, 32, 29, 0.18), transparent 22rem),
		linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.results .section-eyebrow,
.reviews .section-eyebrow {
	color: rgba(248, 249, 251, 0.7);
}

.results .section-heading h2,
.reviews .section-heading h2,
.intake .section-heading h2 {
	color: var(--white);
}

.results .section-heading p:last-child,
.intake .section-heading p:last-child {
	color: rgba(248, 249, 251, 0.7);
}

.results-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 34px;
}

.result-card {
	overflow: hidden;
	border: 1px solid rgba(248, 249, 251, 0.12);
	border-radius: 30px;
	background: rgba(248, 249, 251, 0.08);
	box-shadow: 0 26px 78px rgba(0, 0, 0, 0.18);
}

.result-visual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 280px;
	background: #0a0f18;
}

.result-visual div {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 18px;
	overflow: hidden;
}

.result-visual div::before {
	content: "";
	position: absolute;
	inset: 24px 22%;
	border-radius: 999px 999px 28px 28px;
	background:
		radial-gradient(circle at 50% 18%, rgba(248, 249, 251, 0.62) 0 16%, transparent 17%),
		linear-gradient(180deg, rgba(248, 249, 251, 0.28), rgba(248, 249, 251, 0.06));
	filter: blur(0.2px);
}

.result-visual div:first-child {
	background:
		linear-gradient(180deg, rgba(25, 30, 40, 0.2), rgba(25, 30, 40, 0.9)),
		linear-gradient(135deg, #273040, #121822);
}

.result-visual div:last-child {
	background:
		radial-gradient(circle at 70% 18%, rgba(216, 32, 29, 0.34), transparent 12rem),
		linear-gradient(180deg, rgba(216, 32, 29, 0.08), rgba(16, 22, 32, 0.94)),
		linear-gradient(135deg, #2d1519, #141a24);
}

.result-visual--red div:last-child {
	background:
		radial-gradient(circle at 50% 18%, rgba(216, 32, 29, 0.48), transparent 11rem),
		linear-gradient(135deg, #351316, #161c27);
}

.result-visual span {
	position: relative;
	z-index: 1;
	padding: 7px 10px;
	border-radius: 999px;
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: rgba(16, 22, 32, 0.6);
}

.result-card__body {
	padding: 24px;
}

.result-card__body p,
.result-card__body h3,
.result-card__body span {
	margin: 0;
}

.result-card__body p {
	color: rgba(248, 249, 251, 0.56);
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.result-card__body h3,
.result-card--stat strong {
	display: block;
	margin-top: 8px;
	color: var(--red);
	font-family: var(--font-display);
	font-size: clamp(3.6rem, 15vw, 6rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.8;
	text-transform: uppercase;
}

.result-card__body span,
.result-card--stat p {
	display: block;
	margin-top: 16px;
	color: rgba(248, 249, 251, 0.68);
	font-weight: 700;
}

.result-card--stat {
	display: flex;
	min-height: 360px;
	padding: 28px;
	flex-direction: column;
	justify-content: center;
	background:
		radial-gradient(circle at 30% 12%, rgba(216, 32, 29, 0.24), transparent 16rem),
		rgba(248, 249, 251, 0.08);
}

.result-card--stat h3 {
	max-width: 11ch;
	margin: 14px 0 0;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 8vw, 3.9rem);
	font-weight: 900;
	line-height: 0.88;
	text-transform: uppercase;
}

.reviews {
	padding: 76px 0;
	background: var(--navy);
}

.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 34px;
}

.review-card {
	min-height: 310px;
	padding: 26px;
	border: 1px solid rgba(248, 249, 251, 0.12);
	border-radius: 30px;
	background: rgba(248, 249, 251, 0.08);
}

.review-card__stars {
	margin: 0 0 22px;
	color: var(--red);
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.review-card blockquote {
	margin: 0;
	color: rgba(248, 249, 251, 0.84);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.55;
}

.review-card div {
	margin-top: 30px;
}

.review-card strong,
.review-card span {
	display: block;
}

.review-card strong {
	color: var(--white);
	font-weight: 900;
}

.review-card span {
	margin-top: 3px;
	color: rgba(248, 249, 251, 0.55);
	font-size: 0.86rem;
	font-weight: 700;
}

.pricing {
	padding: 76px 0 86px;
	background:
		radial-gradient(circle at 50% 0%, rgba(216, 32, 29, 0.18), transparent 26rem),
		linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.pricing .section-eyebrow {
	color: rgba(248, 249, 251, 0.7);
}

.pricing .section-heading h2 {
	color: var(--white);
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 34px;
	align-items: stretch;
}

.pricing-more-label {
	order: 3;
	margin: 8px 0 0;
	color: rgba(248, 249, 251, 0.62);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.pricing-card {
	position: relative;
	display: flex;
	min-height: 286px;
	padding: 26px;
	flex-direction: column;
	border: 1px solid var(--line-dark);
	border-radius: 30px;
	color: var(--ink);
	background: var(--white);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.pricing-card--one {
	order: 4;
}

.pricing-card--three {
	order: 1;
}

.pricing-card--six {
	order: 2;
}

.pricing-card--twelve {
	order: 5;
}

.pricing-card--quiet {
	min-height: 250px;
	color: rgba(248, 249, 251, 0.9);
	border-color: rgba(248, 249, 251, 0.14);
	background: rgba(248, 249, 251, 0.08);
	box-shadow: none;
}

.pricing-card--best {
	border: 2px solid var(--red);
	box-shadow: 0 30px 88px rgba(216, 32, 29, 0.24), 0 28px 80px rgba(0, 0, 0, 0.24);
}

.pricing-card__badge {
	align-self: flex-start;
	margin: 0 0 18px;
	padding: 7px 11px;
	border-radius: 999px;
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	background: var(--red);
}

.pricing-card--best .pricing-card__badge {
	background: var(--ink);
}

.pricing-card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.7rem, 12vw, 4.2rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.84;
	text-transform: uppercase;
}

.pricing-card__price {
	margin: 22px 0 0;
	color: var(--red);
	font-family: var(--font-display);
	font-size: clamp(3.1rem, 13vw, 5.2rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 0.82;
	text-transform: uppercase;
}

.pricing-card--quiet .pricing-card__price {
	color: var(--white);
	font-size: clamp(2.6rem, 11vw, 3.5rem);
}

.pricing-card__copy {
	min-height: 48px;
	margin: 18px 0 24px;
	color: var(--gray);
	font-weight: 700;
}

.pricing-card--quiet .pricing-card__copy {
	color: rgba(248, 249, 251, 0.62);
}

.pricing-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: auto;
	padding: 0 18px;
	border-radius: 999px;
	color: var(--white);
	font-weight: 900;
	background: var(--red);
	transition: transform 180ms ease, background 180ms ease;
}

.pricing-card__cta:hover {
	transform: translateY(-2px);
	background: var(--red-dark);
}

.pricing-card--quiet .pricing-card__cta {
	color: var(--white);
	border: 1px solid rgba(248, 249, 251, 0.24);
	background: rgba(248, 249, 251, 0.08);
}

.pricing-card--quiet .pricing-card__cta:hover {
	background: rgba(248, 249, 251, 0.14);
}

.intake {
	padding: 76px 0;
	color: var(--white);
	background:
		radial-gradient(circle at 80% 0%, rgba(216, 32, 29, 0.2), transparent 24rem),
		linear-gradient(180deg, var(--navy-deep), #0b1018);
}

.intake__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: start;
}

.intake-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	padding: 20px;
	border: 1px solid rgba(248, 249, 251, 0.14);
	border-radius: 30px;
	background: rgba(248, 249, 251, 0.08);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field label {
	color: rgba(248, 249, 251, 0.72);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 54px;
	border: 1px solid rgba(248, 249, 251, 0.14);
	border-radius: 18px;
	color: var(--white);
	background: rgba(16, 22, 32, 0.72);
	font: inherit;
	font-weight: 700;
	padding: 0 16px;
}

.form-field textarea {
	min-height: 118px;
	padding-block: 14px;
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 2px solid var(--red);
	outline-offset: 2px;
}

.intake-form button {
	width: 100%;
	margin-top: 6px;
	cursor: pointer;
}

.intake-form__note {
	margin: 0;
	color: rgba(248, 249, 251, 0.58);
	font-size: 0.84rem;
	font-weight: 700;
}

.site-footer {
	padding: 42px 0 112px;
	color: rgba(248, 249, 251, 0.72);
	background: var(--navy-deep);
	border-top: 1px solid rgba(248, 249, 251, 0.08);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.38rem;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-logo img {
	width: 38px;
	height: 38px;
}

.site-footer p {
	margin: 0;
}

.site-footer__brand p + p {
	margin-top: 4px;
}

.site-footer__contact p,
.site-footer__guarantee p {
	margin-bottom: 6px;
	color: rgba(248, 249, 251, 0.48);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer__contact a,
.site-footer__guarantee strong {
	color: var(--white);
	font-size: 1.02rem;
	font-weight: 900;
}

.sticky-cta {
	position: fixed;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 60;
}

.sticky-cta[hidden] {
	display: none;
}

.sticky-cta .button {
	width: 100%;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36), 0 16px 38px rgba(216, 32, 29, 0.34);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 640px) {
	:root {
		--gutter: 32px;
	}

	.hero__actions {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.hero__actions .button {
		min-width: 176px;
	}

	.button {
		padding-inline: 24px;
		font-size: 0.95rem;
	}

	.hero-media__info {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.metrics__inner {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

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

	.intake-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 28px;
	}

	.form-field--wide,
	.intake-form button,
	.intake-form__note {
		grid-column: 1 / -1;
	}
}

@media (min-width: 783px) {
	body.admin-bar .site-header {
		top: 32px;
	}
}

@media (min-width: 900px) {
	.site-nav,
	.header-cta {
		display: inline-flex;
	}

	.brand__wordmark {
		display: none;
	}

	.brand__wordmark-img {
		display: block;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
		gap: clamp(44px, 7vw, 88px);
	}

	.hero {
		padding: 112px 0 64px;
	}

	.hero-media {
		width: 100%;
	}

	.hero-media__card {
		min-height: 610px;
	}

	.program,
	.results,
	.reviews,
	.pricing,
	.intake {
		padding-block: 104px;
	}

	.pricing-grid {
		grid-template-columns: 0.62fr 1fr 1fr 0.62fr;
		gap: 18px;
		align-items: center;
	}

	.pricing-more-label {
		display: none;
	}

	.pricing-card {
		order: initial;
	}

	.pricing-card--target {
		min-height: 362px;
		transform: translateY(-12px);
	}

	.pricing-card--quiet {
		min-height: 296px;
	}

	.sticky-cta {
		display: none !important;
	}

	.site-footer {
		padding-bottom: 48px;
	}

	.site-footer__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		align-items: start;
	}

	.intake__inner {
		grid-template-columns: 0.82fr 1fr;
		gap: 56px;
	}
}

@media (min-width: 1180px) {
	:root {
		--gutter: 44px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	.media-strip__track {
		animation: none;
		transform: none;
	}

	.button:hover,
	.header-cta:hover,
	.pricing-card__cta:hover {
		transform: none;
	}
}
