/* ============================================================================
   FitnessPeak — marketing design system
   Palette: #ff006c (peak pink) · #00eed4 (signal cyan) · #0b0f09 (base)
   Served as a static file so the CSP can stay script-src/style-src 'self'.
   ========================================================================= */

:root {
	--bg: #0b0f09;
	--bg-raise: #10160e;
	--bg-card: #121a10;
	--bg-code: #080b07;

	--pink: #ff006c;
	--pink-soft: #ff4d95;
	--cyan: #00eed4;
	--cyan-soft: #6bfbe9;

	--fg: #e9efe7;
	--fg-dim: #a5b0a2;
	--fg-faint: #6f7a6d;

	--line: rgba(233, 239, 231, 0.09);
	--line-strong: rgba(233, 239, 231, 0.16);

	--grad: linear-gradient(115deg, var(--cyan) 0%, var(--pink) 100%);
	--grad-soft: linear-gradient(
		115deg,
		rgba(0, 238, 212, 0.14) 0%,
		rgba(255, 0, 108, 0.14) 100%
	);

	--radius: 14px;
	--radius-lg: 22px;
	--maxw: 1140px;
	--maxw-prose: 720px;

	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
		"Helvetica Neue", Arial, sans-serif;
	--mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
		"Liberation Mono", monospace;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

/* The whole page sits on a faint topographic grid — a nod to the peak mark
   without shipping another image request. */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(rgba(233, 239, 231, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(233, 239, 231, 0.028) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 40%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 40%, transparent 100%);
	pointer-events: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--cyan);
	text-decoration: none;
	transition: color 0.18s var(--ease);
}
a:hover {
	color: var(--cyan-soft);
}

::selection {
	background: var(--pink);
	color: #fff;
}

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

/* ── Layout ─────────────────────────────────────────────────────────────── */

.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.prose {
	max-width: var(--maxw-prose);
}

section {
	position: relative;
	padding: 76px 0;
}
section.tight {
	padding: 48px 0;
}
@media (max-width: 720px) {
	section {
		padding: 56px 0;
	}
}

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--pink);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 8px 0;
	z-index: 200;
}
.skip:focus {
	left: 0;
	color: #fff;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 15, 9, 0.78);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid var(--line);
}
.nav-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	height: 68px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 19px;
	letter-spacing: -0.03em;
	color: var(--fg);
	flex-shrink: 0;
}
.brand:hover {
	color: var(--fg);
}
.brand svg {
	width: 26px;
	height: 26px;
}
.brand em {
	font-style: normal;
	color: var(--pink);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: auto;
	font-size: 14.5px;
	font-weight: 500;
}
.nav-links a {
	color: var(--fg-dim);
	white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
	color: var(--fg);
}
@media (max-width: 900px) {
	.nav-links a.hide-sm {
		display: none;
	}
}
@media (max-width: 620px) {
	.nav-links {
		gap: 14px;
		font-size: 13.5px;
	}
	.nav-links a.hide-xs {
		display: none;
	}
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 24px;
	border-radius: 11px;
	font-weight: 650;
	font-size: 15.5px;
	line-height: 1;
	letter-spacing: -0.01em;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition:
		transform 0.18s var(--ease),
		box-shadow 0.18s var(--ease),
		background 0.18s var(--ease),
		border-color 0.18s var(--ease);
}
.btn:hover {
	transform: translateY(-2px);
}
.btn:active {
	transform: translateY(0);
}

.btn-primary {
	background: var(--pink);
	color: #fff;
	box-shadow: 0 8px 30px -8px rgba(255, 0, 108, 0.75);
}
.btn-primary:hover {
	background: var(--pink-soft);
	color: #fff;
	box-shadow: 0 14px 40px -10px rgba(255, 0, 108, 0.9);
}

.btn-ghost {
	background: rgba(233, 239, 231, 0.04);
	border-color: var(--line-strong);
	color: var(--fg);
}
.btn-ghost:hover {
	background: rgba(233, 239, 231, 0.08);
	border-color: var(--cyan);
	color: var(--fg);
}

.btn-sm {
	padding: 9px 16px;
	font-size: 14px;
	border-radius: 9px;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* ── Typography ─────────────────────────────────────────────────────────── */

h1,
h2,
h3,
h4 {
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 0 0 0.5em;
	font-weight: 800;
	color: #fff;
	text-wrap: balance;
}
h1 {
	font-size: clamp(2.4rem, 6vw, 4.15rem);
}
h2 {
	font-size: clamp(1.85rem, 3.9vw, 2.8rem);
}
h3 {
	font-size: clamp(1.2rem, 2.1vw, 1.45rem);
	letter-spacing: -0.025em;
}
h4 {
	font-size: 1.05rem;
	letter-spacing: -0.02em;
}
p {
	margin: 0 0 1.1em;
	color: var(--fg-dim);
	text-wrap: pretty;
}
.lead {
	font-size: clamp(1.06rem, 1.9vw, 1.28rem);
	line-height: 1.6;
	color: var(--fg-dim);
	max-width: 62ch;
}
strong {
	color: var(--fg);
	font-weight: 650;
}
/* inline-block confines the gradient box to this span rather than letting the
   ramp stretch across every line of the heading — over three lines the middle
   lands on a blue-purple that isn't in the palette. Keep these spans short. */
.grad {
	display: inline-block;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 18px;
}
.eyebrow::before {
	content: "";
	width: 22px;
	height: 2px;
	background: var(--grad);
	border-radius: 2px;
}
.section-head {
	max-width: 58ch;
	margin-bottom: 42px;
}
.center {
	text-align: center;
}
.center .section-head,
.center .lead {
	margin-left: auto;
	margin-right: auto;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
	position: relative;
	padding: clamp(62px, 9vw, 104px) 0 clamp(48px, 6vw, 72px);
	overflow: hidden;
}
/* Two aurora blobs in the brand colours, drifting slowly. Pure CSS so there's
   no image payload and it degrades to a flat colour under reduced-motion. */
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
	pointer-events: none;
	z-index: -1;
}
.hero::before {
	width: 620px;
	height: 620px;
	top: -280px;
	left: -140px;
	background: radial-gradient(circle, rgba(0, 238, 212, 0.5), transparent 68%);
	animation: drift1 22s ease-in-out infinite alternate;
}
.hero::after {
	width: 680px;
	height: 680px;
	top: -220px;
	right: -200px;
	background: radial-gradient(circle, rgba(255, 0, 108, 0.45), transparent 68%);
	animation: drift2 26s ease-in-out infinite alternate;
}
@keyframes drift1 {
	to {
		transform: translate3d(90px, 70px, 0) scale(1.15);
	}
}
@keyframes drift2 {
	to {
		transform: translate3d(-70px, 90px, 0) scale(1.1);
	}
}

.hero h1 {
	max-width: 15ch;
}
.hero.center h1 {
	margin-left: auto;
	margin-right: auto;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 15px 7px 9px;
	border-radius: 999px;
	background: rgba(233, 239, 231, 0.05);
	border: 1px solid var(--line-strong);
	font-size: 13.5px;
	font-weight: 550;
	color: var(--fg-dim);
	margin-bottom: 26px;
}
.pill b {
	display: inline-flex;
	align-items: center;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--grad);
	color: #04120f;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 22px;
	font-size: 14px;
	color: var(--fg-faint);
}
.trust span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.trust span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	flex-shrink: 0;
}

/* ── Cards & grids ──────────────────────────────────────────────────────── */

.grid {
	display: grid;
	gap: 18px;
}
.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
}
.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition:
		border-color 0.22s var(--ease),
		transform 0.22s var(--ease),
		background 0.22s var(--ease);
}
.card:hover {
	border-color: var(--line-strong);
	transform: translateY(-3px);
}
a.card:hover {
	border-color: rgba(0, 238, 212, 0.45);
}
.card h3 {
	margin-bottom: 8px;
	color: #fff;
}
.card p:last-child {
	margin-bottom: 0;
}
.card p {
	font-size: 15.5px;
	line-height: 1.6;
}
.card .ico {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	background: var(--grad-soft);
	border: 1px solid var(--line-strong);
	margin-bottom: 18px;
	font-size: 19px;
}
.card-num {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	color: var(--pink);
	letter-spacing: 0.1em;
	margin-bottom: 12px;
	display: block;
}
a.card {
	color: inherit;
	display: block;
}
a.card h3 {
	color: #fff;
}
.card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--cyan);
}

/* Featured card gets a gradient hairline border. */
.card.feature {
	background:
		linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
		var(--grad) border-box;
	border: 1px solid transparent;
}

/* ── Code ───────────────────────────────────────────────────────────────── */

code {
	font-family: var(--mono);
	font-size: 0.885em;
	background: rgba(0, 238, 212, 0.1);
	color: var(--cyan-soft);
	padding: 2px 6px;
	border-radius: 5px;
	word-break: break-word;
}

/* Identifiers in a table cell must not break mid-token — "read:recovery"
   splitting across two lines reads as two different scopes. The table already
   scrolls horizontally, so there is room to let them run. */
td code,
th code {
	white-space: nowrap;
}

.codeblock {
	position: relative;
	background: var(--bg-code);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin: 0 0 20px;
	overflow: hidden;
}
.codeblock-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 14px;
	border-bottom: 1px solid var(--line);
	background: rgba(233, 239, 231, 0.025);
	font-size: 12.5px;
	font-family: var(--mono);
	color: var(--fg-faint);
}
.codeblock pre {
	margin: 0;
	padding: 16px 18px;
	overflow-x: auto;
	font-family: var(--mono);
	font-size: 13.5px;
	line-height: 1.7;
	color: #d6e4d2;
	tab-size: 2;
}
.codeblock pre code {
	background: none;
	color: inherit;
	padding: 0;
	font-size: inherit;
}
.copy {
	background: rgba(233, 239, 231, 0.06);
	border: 1px solid var(--line-strong);
	color: var(--fg-dim);
	font-family: var(--font);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 11px;
	border-radius: 7px;
	cursor: pointer;
	transition: all 0.18s var(--ease);
}
.copy:hover {
	background: rgba(0, 238, 212, 0.14);
	border-color: var(--cyan);
	color: var(--cyan);
}
.copy[data-copied="1"] {
	background: var(--cyan);
	border-color: var(--cyan);
	color: #04120f;
}

/* ── Tables ─────────────────────────────────────────────────────────────── */

.table-scroll {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 24px;
}
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	min-width: 520px;
}
th,
td {
	text-align: left;
	padding: 13px 16px;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}
thead th {
	background: rgba(233, 239, 231, 0.035);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--fg-faint);
	white-space: nowrap;
}
tbody tr:last-child td {
	border-bottom: none;
}
tbody tr:hover td {
	background: rgba(233, 239, 231, 0.022);
}
td strong {
	color: #fff;
}
.yes {
	color: var(--cyan);
	font-weight: 700;
}
.no {
	color: #ff5f7d;
	font-weight: 700;
}
.mid {
	color: #ffc457;
	font-weight: 700;
}
th.col-us {
	color: var(--pink);
	background: rgba(255, 0, 108, 0.07);
}
td.col-us {
	background: rgba(255, 0, 108, 0.035);
}

/* ── Lists ──────────────────────────────────────────────────────────────── */

ul,
ol {
	color: var(--fg-dim);
	padding-left: 1.25em;
	margin: 0 0 1.2em;
}
li {
	margin-bottom: 0.55em;
}
li::marker {
	color: var(--pink);
}

.checks {
	list-style: none;
	padding: 0;
	margin: 0 0 1.2em;
}
.checks li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 0.7em;
}
.checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 15px;
	height: 8px;
	border-left: 2.5px solid var(--cyan);
	border-bottom: 2.5px solid var(--cyan);
	transform: rotate(-45deg);
}

/* ── Steps ──────────────────────────────────────────────────────────────── */

.steps {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: step;
	display: grid;
	gap: 4px;
}
.steps > li {
	counter-increment: step;
	position: relative;
	padding: 0 0 34px 62px;
	margin: 0;
}
.steps > li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: var(--grad);
	color: #04120f;
	font-weight: 800;
	font-size: 16px;
}
.steps > li::after {
	content: "";
	position: absolute;
	left: 19.5px;
	top: 46px;
	bottom: 6px;
	width: 1px;
	background: linear-gradient(var(--line-strong), transparent);
}
.steps > li:last-child {
	padding-bottom: 0;
}
.steps > li:last-child::after {
	display: none;
}
.steps h3 {
	margin: 6px 0 8px;
}

/* ── Stats ──────────────────────────────────────────────────────────────── */

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.stat {
	background: var(--bg-raise);
	padding: 26px 22px;
}
.stat .n {
	display: block;
	font-size: clamp(1.7rem, 3.4vw, 2.3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 5px;
}
.stat .l {
	font-size: 13.5px;
	color: var(--fg-faint);
	line-height: 1.45;
}

/* ── Pricing ────────────────────────────────────────────────────────────── */

.price-card {
	max-width: 480px;
	margin: 0 auto;
	background:
		linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
		var(--grad) border-box;
	border: 1.5px solid transparent;
	border-radius: 26px;
	padding: 40px 34px;
	text-align: center;
	position: relative;
}
.price-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	margin: 14px 0 6px;
}
.price-amount .amt {
	font-size: clamp(3rem, 8vw, 4.2rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	color: #fff;
}
.price-amount .per {
	font-size: 1.05rem;
	color: var(--fg-faint);
	font-weight: 500;
}
.price-sub {
	color: var(--fg-faint);
	font-size: 14.5px;
	margin-bottom: 26px;
}
.price-card .checks {
	text-align: left;
	margin: 28px 0 0;
}

/* ── Quote / callout ────────────────────────────────────────────────────── */

.callout {
	border-left: 3px solid var(--pink);
	background: rgba(255, 0, 108, 0.05);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 18px 22px;
	margin: 0 0 24px;
}
.callout.cyan {
	border-left-color: var(--cyan);
	background: rgba(0, 238, 212, 0.05);
}
.callout p:last-child {
	margin-bottom: 0;
}
.callout strong {
	color: #fff;
}

.chat {
	background: var(--bg-code);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 8px;
	font-size: 15px;
}
.chat .turn {
	padding: 14px 18px;
	border-radius: 12px;
	line-height: 1.6;
}
.chat .you {
	color: var(--fg);
	background: rgba(233, 239, 231, 0.045);
	margin-bottom: 6px;
}
.chat .ai {
	color: var(--fg-dim);
}
.chat .who {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	margin-bottom: 7px;
}
.chat .you .who {
	color: var(--cyan);
}
.chat .ai .who {
	color: var(--pink);
}
.chat .tool {
	display: inline-block;
	font-family: var(--mono);
	font-size: 12.5px;
	background: rgba(0, 238, 212, 0.1);
	color: var(--cyan);
	padding: 3px 9px;
	border-radius: 6px;
	margin-bottom: 10px;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */

details {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0;
	margin-bottom: 10px;
	background: var(--bg-raise);
	overflow: hidden;
}
details[open] {
	border-color: var(--line-strong);
}
summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 650;
	font-size: 16.5px;
	color: #fff;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	letter-spacing: -0.015em;
}
summary::-webkit-details-marker {
	display: none;
}
summary::after {
	content: "+";
	font-size: 22px;
	font-weight: 400;
	color: var(--cyan);
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.22s var(--ease);
}
details[open] summary::after {
	transform: rotate(45deg);
}
.details-body {
	padding: 0 22px 20px;
}
.details-body p:last-child {
	margin-bottom: 0;
}

/* ── Logo strip ─────────────────────────────────────────────────────────── */

.clients {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.client {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 17px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(233, 239, 231, 0.03);
	font-size: 14px;
	font-weight: 600;
	color: var(--fg-dim);
}
.client em {
	font-style: normal;
	font-size: 11px;
	color: var(--fg-faint);
	font-weight: 500;
}

/* ── WHOOP attribution ──────────────────────────────────────────────────── */
/* Required by WHOOP's brand guidelines wherever their data appears. The
   padding is their exclusion zone: 2x the wordmark cap height of clear space on
   every side, so the mark never feels crowded. The logo is their unmodified
   white SVG — colour, tone, rotation and proportions must not be touched. */

.whoop-attr {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	/* 2x exclusion zone around a 16px cap height. */
	padding: 32px;
	margin: 0;
}
.whoop-attr img {
	display: block;
	/* Never scale below the 100px minimum width, whatever the container does. */
	min-width: 100px;
	height: auto;
}
.whoop-attr-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fg-faint);
	white-space: nowrap;
}

/* Compact form for footers and card corners. Keeps the minimum width and a
   proportionally reduced — but still present — exclusion zone. */
.whoop-attr.compact {
	padding: 16px 0;
	gap: 10px;
}

/* A block that displays WHOOP data. Attribution sits inside it, and our own
   logo must never appear adjacent — the guidelines prohibit placing a partner
   logo next to WHOOP's visualised data. */
.whoop-data {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--bg-raise);
	padding: 4px 24px 8px;
	margin-bottom: 24px;
}
.whoop-data .whoop-attr {
	padding: 20px 0 4px;
}

/* ── Badges ─────────────────────────────────────────────────────────────── */

.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.badge-live {
	background: rgba(0, 238, 212, 0.14);
	color: var(--cyan);
}
.badge-soon {
	background: rgba(233, 239, 231, 0.07);
	color: var(--fg-faint);
}

/* ── CTA band ───────────────────────────────────────────────────────────── */

.cta {
	position: relative;
	border-radius: 28px;
	padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 56px);
	text-align: center;
	overflow: hidden;
	background:
		linear-gradient(var(--bg-raise), var(--bg-raise)) padding-box,
		var(--grad) border-box;
	border: 1.5px solid transparent;
}
.cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--grad-soft);
	opacity: 0.55;
	z-index: -1;
}
.cta h2 {
	margin-bottom: 14px;
}
.cta .lead {
	margin: 0 auto 28px;
}
.cta .btn-row {
	justify-content: center;
}
.cta small {
	display: block;
	margin-top: 18px;
	color: var(--fg-faint);
	font-size: 13.5px;
}

/* ── Breadcrumbs ────────────────────────────────────────────────────────── */

.crumbs {
	font-size: 13.5px;
	color: var(--fg-faint);
	margin-bottom: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.crumbs a {
	color: var(--fg-faint);
}
.crumbs a:hover {
	color: var(--cyan);
}
.crumbs span[aria-hidden] {
	opacity: 0.45;
}

/* ── Doc layout ─────────────────────────────────────────────────────────── */

.doc {
	display: grid;
	grid-template-columns: 216px 1fr;
	gap: 52px;
	align-items: start;
}
@media (max-width: 900px) {
	.doc {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
.doc-nav {
	position: sticky;
	top: 92px;
	font-size: 14.5px;
}
@media (max-width: 900px) {
	.doc-nav {
		position: static;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		padding: 18px 20px;
		background: var(--bg-raise);
	}
}
.doc-nav h4 {
	font-size: 11.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fg-faint);
	margin: 0 0 12px;
	font-weight: 700;
}
.doc-nav ul {
	list-style: none;
	padding: 0;
	margin: 0 0 26px;
}
.doc-nav li {
	margin-bottom: 3px;
}
.doc-nav a {
	display: block;
	padding: 6px 11px;
	margin-left: -11px;
	border-radius: 8px;
	color: var(--fg-dim);
}
.doc-nav a:hover {
	background: rgba(233, 239, 231, 0.05);
	color: var(--fg);
}
.doc-nav a[aria-current="page"] {
	background: rgba(255, 0, 108, 0.11);
	color: #fff;
	font-weight: 600;
}

.doc-body h2 {
	margin-top: 52px;
	scroll-margin-top: 92px;
}
.doc-body h2:first-child {
	margin-top: 0;
}
.doc-body h3 {
	margin-top: 34px;
	scroll-margin-top: 92px;
}
.doc-body > p,
.doc-body > ul,
.doc-body > ol {
	max-width: var(--maxw-prose);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

footer {
	border-top: 1px solid var(--line);
	padding: 60px 0 40px;
	margin-top: 40px;
	font-size: 14.5px;
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: 36px;
	margin-bottom: 44px;
}
@media (max-width: 860px) {
	.foot-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}
@media (max-width: 480px) {
	.foot-grid {
		grid-template-columns: 1fr;
	}
}
.foot-grid h5 {
	font-size: 11.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fg-faint);
	margin: 0 0 14px;
	font-weight: 700;
}
.foot-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.foot-grid li {
	margin-bottom: 8px;
}
.foot-grid a {
	color: var(--fg-dim);
}
.foot-grid a:hover {
	color: var(--cyan);
}
.foot-about p {
	font-size: 14px;
	max-width: 34ch;
	color: var(--fg-faint);
}
.foot-bottom {
	border-top: 1px solid var(--line);
	padding-top: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	justify-content: space-between;
	color: var(--fg-faint);
	font-size: 13.5px;
}

.disclaimer {
	color: var(--fg-faint);
	font-size: 13px;
	line-height: 1.6;
	max-width: 70ch;
}

/* ── Utilities ──────────────────────────────────────────────────────────── */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.muted { color: var(--fg-faint); }
.small { font-size: 14px; }
.nowrap { white-space: nowrap; }
hr {
	border: none;
	border-top: 1px solid var(--line);
	margin: 44px 0;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
