/* Ready Trainer One — dusk synthwave
   ----------------------------------------------------------------
   Hand-written, framework-free. Dark only (no light-mode flicker:
   the brand IS dark). Cyan #00f7ff is the load-bearing accent,
   sunset gradient + grid horizon are reserved for the hero band.
*/

:root {
	/* Color tokens */
	--bg:          #0a0420;
	--bg-elev:    #14093a;
	--surface:    #1a0e44;
	--surface-2:  #221256;
	--border:     rgba(0, 247, 255, 0.15);
	--border-strong: rgba(0, 247, 255, 0.35);

	--text:       #e8e6ff;
	--text-dim:   #9b96c4;
	--text-faint: #6b6597;

	--cyan:       #00f7ff;
	--cyan-glow:  rgba(0, 247, 255, 0.55);
	--cyan-dim:   #00b8c2;

	--magenta:    #ff2a9e;
	--orange:     #ff6b3d;

	--danger:     #ff5577;
	--success:    #4afaa0;

	/* Type ramp (16 base) */
	--fs-xs:   0.75rem;
	--fs-sm:   0.875rem;
	--fs-base: 1rem;
	--fs-lg:   1.125rem;
	--fs-xl:   1.375rem;
	--fs-2xl:  1.75rem;
	--fs-3xl:  2.5rem;
	--fs-4xl:  3.5rem;
	--fs-5xl:  4.5rem;

	/* Spacing (4/8 system) */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.5rem;
	--sp-6: 2rem;
	--sp-7: 3rem;
	--sp-8: 4rem;
	--sp-9: 6rem;
	--sp-10: 8rem;

	--radius-sm: 6px;
	--radius:    12px;
	--radius-lg: 20px;

	--container: 1100px;
}

/* Reset & base
   ---------------------------------------------------------------- */

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

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

body {
	margin: 0;
	min-height: 100dvh;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	font-size: var(--fs-base);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--cyan);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 180ms ease;
}
a:hover { border-bottom-color: var(--cyan); }
a:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
	border-radius: 2px;
}

h1, h2, h3, h4 {
	margin: 0 0 var(--sp-4);
	line-height: 1.15;
	letter-spacing: -0.015em;
	font-weight: 700;
	color: var(--text);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--sp-4); }

::selection { background: var(--cyan); color: var(--bg); }

/* Layout primitives
   ---------------------------------------------------------------- */

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--sp-5);
}

.section {
	padding: var(--sp-9) 0;
}

.eyebrow {
	display: inline-block;
	font-size: var(--fs-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: var(--sp-4);
	font-weight: 600;
}

/* Nav
   ---------------------------------------------------------------- */

.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 4, 32, 0.78);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid var(--border);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--sp-3) var(--sp-5);
	max-width: var(--container);
	margin: 0 auto;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	color: var(--text);
	font-weight: 700;
	letter-spacing: 0.02em;
	border-bottom: none;
}
.nav-brand:hover { border-bottom: none; }
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }

.nav-links {
	display: flex;
	gap: var(--sp-5);
	align-items: center;
}
.nav-links a {
	color: var(--text-dim);
	font-size: var(--fs-sm);
	font-weight: 500;
	border-bottom: none;
}
.nav-links a:hover { color: var(--cyan); border-bottom: none; }

/* Buttons
   ---------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	min-height: 48px;
	padding: 0 var(--sp-5);
	border-radius: var(--radius);
	font-weight: 600;
	font-size: var(--fs-base);
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform 120ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
	text-decoration: none;
}

.btn-primary {
	background: var(--cyan);
	color: var(--bg);
	box-shadow:
		0 0 0 1px rgba(0,247,255,0.4),
		0 0 24px -4px var(--cyan-glow);
}
.btn-primary:hover {
	background: #4ffcff;
	box-shadow:
		0 0 0 1px rgba(0,247,255,0.6),
		0 0 36px -2px var(--cyan-glow);
	border-bottom: 1px solid transparent;
}
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
	background: transparent;
	color: var(--text);
	border-color: var(--border-strong);
}
.btn-secondary:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	border-bottom: 1px solid var(--cyan);
}

/* Hero
   ---------------------------------------------------------------- */

.hero {
	position: relative;
	overflow: hidden;
	padding: var(--sp-10) 0 var(--sp-9);
	isolation: isolate;
}

/* The sunset glow — radial gradient placed behind the content,
   tucked toward the bottom so it reads as a horizon. */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 90% 60% at 50% 110%,
			rgba(255, 107, 61, 0.35) 0%,
			rgba(255, 42, 158, 0.28) 25%,
			rgba(120, 30, 180, 0.18) 50%,
			transparent 75%
		);
	z-index: -2;
	pointer-events: none;
}

/* The grid horizon — pure CSS perspective grid, anchored to the
   bottom edge so it recedes to a vanishing point. */
.grid-horizon {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 45%;
	perspective: 400px;
	perspective-origin: 50% 0%;
	overflow: hidden;
	z-index: -1;
	pointer-events: none;
	opacity: 0.7;
	mask-image: linear-gradient(to top, black 30%, transparent 100%);
	-webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

.grid-horizon::after {
	content: '';
	position: absolute;
	left: -50%; right: -50%;
	top: 0; bottom: -50%;
	background-image:
		linear-gradient(to right, rgba(255, 42, 158, 0.45) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 42, 158, 0.45) 1px, transparent 1px);
	background-size: 40px 40px;
	transform: rotateX(60deg) translateZ(0);
	transform-origin: 50% 0%;
}

.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 var(--sp-5);
}

.hero h1 {
	font-size: clamp(1.625rem, 5.5vw, var(--fs-5xl));
	margin-bottom: var(--sp-5);
	text-wrap: balance;
	background: linear-gradient(180deg, #ffffff 0%, #c5c2ee 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero h1 .accent {
	background: linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero p.lede {
	font-size: var(--fs-lg);
	color: var(--text-dim);
	max-width: 600px;
	margin: 0 auto var(--sp-6);
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--sp-3);
	align-items: center;
}

.hero-note {
	margin-top: var(--sp-4);
	font-size: var(--fs-sm);
	color: var(--text-faint);
}

/* ECG line — animated SVG sits between sunset glow and content,
   drawn left to right on loop. */
.ecg {
	position: relative;
	margin: var(--sp-6) auto var(--sp-7);
	width: min(100%, 720px);
	height: 80px;
	display: block;
}

.ecg path {
	fill: none;
	stroke: var(--cyan);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 6px var(--cyan-glow));
	stroke-dasharray: 1400;
	stroke-dashoffset: 1400;
	/* 12s total: three sweep cycles, ends fully drawn and held — not
	   the distracting infinite loop. */
	animation: ecg-draw 12s ease-in-out 1 forwards;
}

@keyframes ecg-draw {
	/* Cycle 1: draw, brief hold, sweep out, reset */
	0%    { stroke-dashoffset: 1400; }
	22%   { stroke-dashoffset: 0; }
	30%   { stroke-dashoffset: -1400; }
	30.01%{ stroke-dashoffset: 1400; }
	/* Cycle 2 */
	55%   { stroke-dashoffset: 0; }
	63%   { stroke-dashoffset: -1400; }
	63.01%{ stroke-dashoffset: 1400; }
	/* Cycle 3: draw and settle, held by `forwards` */
	88%   { stroke-dashoffset: 0; }
	100%  { stroke-dashoffset: 0; }
}

/* Hero photo strip — two athletic shots, framed in cyan, slight tilt.
   Sits between text/ECG and CTA. On mobile they stack vertically.
   ---------------------------------------------------------------- */

.hero-photos {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: var(--sp-4);
	margin: var(--sp-6) auto var(--sp-6);
	max-width: 720px;
	perspective: 800px;
}

.hero-photo {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-strong);
	background: var(--surface);
	box-shadow:
		0 0 0 1px rgba(0, 247, 255, 0.08),
		0 8px 32px -8px rgba(0, 0, 0, 0.6),
		0 0 32px -10px var(--cyan-glow);
	transition: transform 320ms ease, box-shadow 320ms ease;
}

.hero-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Subtle synthwave tint — desaturate slightly and warm-shift to match
	   the dusk palette without obscuring the photo. */
	filter: saturate(0.92) contrast(1.05);
}

/* Subtle cyan/magenta vignette overlay to tie the photos into the palette */
.hero-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(0, 247, 255, 0.08) 0%, transparent 35%, rgba(255, 42, 158, 0.10) 100%);
	pointer-events: none;
}

.hero-photo-1 {
	flex: 1.4;
	transform: rotate(-1.5deg);
	max-height: 320px;
	aspect-ratio: 4 / 3;
}
.hero-photo-2 {
	flex: 1;
	transform: rotate(1.5deg);
	max-height: 320px;
	aspect-ratio: 3 / 4;
}

.hero-photo:hover {
	transform: rotate(0deg) translateY(-2px);
	box-shadow:
		0 0 0 1px rgba(0, 247, 255, 0.4),
		0 12px 36px -8px rgba(0, 0, 0, 0.7),
		0 0 48px -8px var(--cyan-glow);
}

@media (max-width: 640px) {
	.hero-photos { gap: var(--sp-2); margin: var(--sp-5) auto; }
	.hero-photo-1, .hero-photo-2 { max-height: 220px; }
}

/* App screenshot strip — 4 product shots, phone-style, staggered.
   Lives at the bottom of the hero. On narrow screens it becomes a
   snap-scroll carousel so each phone stays legible.
   ---------------------------------------------------------------- */

.app-shots {
	position: relative;
	z-index: 1;
	margin: var(--sp-7) auto var(--sp-6);
	padding: 0 var(--sp-5);
	max-width: 1100px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: var(--sp-4);
}

.app-shot {
	flex: 1 1 0;
	max-width: 220px;
	min-width: 0;
	border-radius: 28px;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid rgba(0, 247, 255, 0.25);
	box-shadow:
		0 0 0 1px rgba(0, 247, 255, 0.08),
		0 16px 48px -16px rgba(0, 0, 0, 0.75),
		0 0 36px -10px var(--cyan-glow);
	transition: transform 320ms cubic-bezier(.2,.7,.3,1), box-shadow 320ms ease;
}

.app-shot img {
	display: block;
	width: 100%;
	height: auto;
}

.app-shot:hover {
	transform: translateY(-6px);
	z-index: 2;
	box-shadow:
		0 0 0 1px rgba(0, 247, 255, 0.4),
		0 20px 56px -16px rgba(0, 0, 0, 0.8),
		0 0 52px -8px var(--cyan-glow);
}

/* On narrow viewports the 4-across crunches phones too small. Convert
   to a horizontal snap-scroll carousel so each phone stays at a usable
   size and the user swipes. */
@media (max-width: 900px) {
	.app-shots {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		justify-content: flex-start;
		padding: var(--sp-3) var(--sp-5);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: var(--sp-3);
	}
	.app-shots::-webkit-scrollbar { display: none; }
	.app-shot {
		flex: 0 0 65vw;
		max-width: 260px;
		scroll-snap-align: center;
		transform: none;
	}
	.app-shot:hover { transform: translateY(-4px); }
}

/* Sections
   ---------------------------------------------------------------- */

.section-header {
	max-width: 680px;
	margin: 0 auto var(--sp-7);
	text-align: center;
}

.section-header h2 {
	font-size: clamp(1.75rem, 3.5vw, var(--fs-3xl));
}

.section-header p {
	color: var(--text-dim);
	font-size: var(--fs-lg);
	margin: 0;
}

/* Feature grid
   ---------------------------------------------------------------- */

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--sp-5);
}

.card {
	background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	transition: border-color 200ms ease, transform 200ms ease;
}

.card:hover {
	border-color: var(--border-strong);
}

.card h3 {
	font-size: var(--fs-lg);
	margin-bottom: var(--sp-3);
}

.card p {
	color: var(--text-dim);
	margin: 0;
	font-size: var(--fs-base);
}

.card .icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(0, 247, 255, 0.1);
	color: var(--cyan);
	margin-bottom: var(--sp-4);
	border: 1px solid var(--border);
}

/* "What it isn't" — calmer, more honest block */

.not-list {
	max-width: 720px;
	margin: 0 auto;
	display: grid;
	gap: var(--sp-3);
}

.not-item {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-4);
	padding: var(--sp-4) var(--sp-5);
	background: rgba(20, 9, 58, 0.6);
	border: 1px solid var(--border);
	border-left: 3px solid var(--magenta);
	border-radius: var(--radius);
}

.not-item .label {
	color: var(--text);
	font-weight: 600;
}

.not-item p {
	margin: var(--sp-1) 0 0;
	color: var(--text-dim);
}

/* Privacy callout
   ---------------------------------------------------------------- */

.privacy-card {
	max-width: 820px;
	margin: 0 auto;
	background:
		radial-gradient(circle at 20% 0%, rgba(0,247,255,0.08) 0%, transparent 50%),
		linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	padding: var(--sp-7);
}

.privacy-card h2 { font-size: var(--fs-2xl); }
.privacy-card ul { list-style: none; padding: 0; margin: var(--sp-4) 0 0; display: grid; gap: var(--sp-3); }
.privacy-card li {
	color: var(--text);
	padding-left: var(--sp-5);
	position: relative;
}
.privacy-card li::before {
	content: '';
	position: absolute;
	left: 0; top: 0.55em;
	width: 10px; height: 10px;
	background: var(--cyan);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--cyan-glow);
}
.privacy-card li span {
	color: var(--text-dim);
	display: block;
	margin-top: var(--sp-1);
	font-size: var(--fs-sm);
}

/* Pricing
   ---------------------------------------------------------------- */

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--sp-5);
	max-width: 820px;
	margin: 0 auto;
}

.price-card {
	background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}

.price-card.featured {
	border-color: var(--cyan);
	box-shadow: 0 0 0 1px var(--border-strong), 0 0 40px -10px var(--cyan-glow);
	position: relative;
}

.price-card.featured::before {
	content: 'Pro';
	position: absolute;
	top: -10px; right: 20px;
	background: var(--cyan);
	color: var(--bg);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 20px;
}

.price-card h3 {
	margin: 0;
	font-size: var(--fs-xl);
}
.price-card .price {
	font-size: var(--fs-3xl);
	font-weight: 700;
	color: var(--text);
	line-height: 1;
}
.price-card .price small {
	font-size: var(--fs-base);
	color: var(--text-dim);
	font-weight: 400;
	margin-left: var(--sp-2);
}
.price-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--sp-2);
}
.price-card li {
	color: var(--text-dim);
	font-size: var(--fs-sm);
	padding-left: var(--sp-5);
	position: relative;
	line-height: 1.5;
}
.price-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--cyan);
	font-weight: 700;
}
.price-card .footnote {
	margin-top: auto;
	font-size: var(--fs-xs);
	color: var(--text-faint);
}

/* BYO key callout */
.byo-key {
	max-width: 820px;
	margin: var(--sp-6) auto 0;
	padding: var(--sp-5);
	background: rgba(0, 247, 255, 0.04);
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius);
	text-align: center;
	color: var(--text-dim);
	font-size: var(--fs-sm);
}
.byo-key strong { color: var(--text); }

/* Footer
   ---------------------------------------------------------------- */

.footer {
	border-top: 1px solid var(--border);
	padding: var(--sp-7) 0 var(--sp-6);
	color: var(--text-faint);
	font-size: var(--fs-sm);
	margin-top: var(--sp-8);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-5);
	justify-content: space-between;
	align-items: center;
}

.footer-links {
	display: flex;
	gap: var(--sp-5);
}
.footer-links a {
	color: var(--text-dim);
	border-bottom: none;
}
.footer-links a:hover { color: var(--cyan); }

.brand-coda {
	margin-top: var(--sp-5);
	padding-top: var(--sp-4);
	border-top: 1px solid var(--border);
	text-align: center;
	font-size: var(--fs-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-faint);
}
.brand-coda .heart {
	display: inline-block;
	color: var(--magenta);
	transform: translateY(1px);
}

/* FAQ — collapsible <details>/<summary> cards
   ---------------------------------------------------------------- */

.faq-list {
	display: grid;
	gap: var(--sp-3);
	margin: var(--sp-6) 0 var(--sp-7);
}

.faq-item {
	background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 200ms ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
	border-color: var(--cyan);
	box-shadow: 0 0 32px -12px var(--cyan-glow);
}

.faq-question {
	cursor: pointer;
	padding: var(--sp-4) var(--sp-5);
	font-weight: 600;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	list-style: none;
	font-size: var(--fs-base);
	min-height: 56px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }

.faq-question::after {
	content: '';
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--cyan);
	border-bottom: 2px solid var(--cyan);
	transform: rotate(45deg);
	transition: transform 250ms ease;
	flex-shrink: 0;
	margin-right: 2px;
	margin-top: -4px;
}
.faq-item[open] .faq-question::after {
	transform: rotate(-135deg);
	margin-top: 4px;
}

.faq-question:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: -2px;
	border-radius: var(--radius);
}

.faq-answer {
	padding: 0 var(--sp-5) var(--sp-5);
	color: var(--text-dim);
	line-height: 1.7;
}
.faq-answer > p { margin: 0 0 var(--sp-3); }
.faq-answer > p:last-child { margin-bottom: 0; }
.faq-answer ul {
	margin: var(--sp-2) 0 var(--sp-3);
	padding-left: var(--sp-5);
}
.faq-answer li { margin-bottom: var(--sp-2); color: var(--text-dim); }
.faq-answer strong { color: var(--text); }
.faq-answer a { color: var(--cyan); }

.faq-screenshot {
	margin: var(--sp-5) auto 0;
	max-width: 280px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	overflow: hidden;
	background: var(--bg);
	box-shadow:
		0 8px 32px -8px rgba(0, 0, 0, 0.6),
		0 0 24px -12px var(--cyan-glow);
}

.faq-screenshot-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--sp-4);
	margin: var(--sp-5) auto 0;
	max-width: 580px;
}
.faq-screenshot-row .faq-screenshot { margin: 0; max-width: 100%; }
.faq-screenshot img { display: block; width: 100%; height: auto; }
.faq-screenshot figcaption {
	padding: var(--sp-2) var(--sp-3);
	font-size: var(--fs-xs);
	color: var(--text-faint);
	background: rgba(10, 4, 32, 0.6);
	text-align: center;
	border-top: 1px solid var(--border);
	letter-spacing: 0.04em;
}

/* Prose pages (privacy, help)
   ---------------------------------------------------------------- */

.prose {
	max-width: 720px;
	margin: 0 auto;
	padding: var(--sp-8) var(--sp-5);
}

.prose h1 {
	font-size: var(--fs-3xl);
	margin-bottom: var(--sp-2);
}

.prose .updated {
	color: var(--text-faint);
	font-size: var(--fs-sm);
	margin-bottom: var(--sp-7);
}

.prose h2 {
	font-size: var(--fs-xl);
	margin-top: var(--sp-7);
	margin-bottom: var(--sp-3);
	color: var(--cyan);
	font-weight: 600;
	letter-spacing: 0;
}

.prose h3 {
	font-size: var(--fs-lg);
	margin-top: var(--sp-5);
	margin-bottom: var(--sp-2);
}

.prose p, .prose li {
	color: var(--text);
	line-height: 1.7;
}

.prose ul {
	padding-left: var(--sp-5);
	margin: var(--sp-3) 0 var(--sp-5);
}

.prose li { margin-bottom: var(--sp-2); }

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

.prose .callout {
	margin: var(--sp-5) 0;
	padding: var(--sp-5);
	background: rgba(20, 9, 58, 0.6);
	border: 1px solid var(--border);
	border-left: 3px solid var(--cyan);
	border-radius: var(--radius);
}
.prose .callout p:last-child { margin-bottom: 0; }

/* Responsive
   ---------------------------------------------------------------- */

@media (max-width: 640px) {
	.section { padding: var(--sp-7) 0; }
	.hero { padding: var(--sp-8) 0 var(--sp-7); }
	.nav-links { gap: var(--sp-4); }
	.nav-links a { font-size: var(--fs-xs); }
	.privacy-card, .price-card, .card { padding: var(--sp-5); }
	.footer-inner { flex-direction: column; text-align: center; }
}

/* Reduced motion
   ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.ecg path { stroke-dashoffset: 0; }
}
