/* C25K Free 2.0 — Design System */
:root {
  --ink: #0a0a0c;
  --ink-2: #16161a;
  --ink-3: #1f1f25;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --paper: #f7f5f2;
  --paper-2: #ecebe7;
  --text: #ededed;
  --text-dim: rgba(237,237,237,0.66);
  --text-faint: rgba(237,237,237,0.42);
  --crimson: oklch(0.62 0.22 25);
  --crimson-2: oklch(0.55 0.24 25);
  --crimson-soft: oklch(0.62 0.22 25 / 0.14);
  --ember: oklch(0.72 0.18 45);
  --sand: #e8e2d6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.font-display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,12,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; display: block; }
.brand sup { color: var(--crimson); font-size: 10px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 860px) { .nav-links { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 160ms ease, box-shadow 220ms ease, background 220ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--crimson);
  color: white;
  box-shadow: 0 8px 24px -8px oklch(0.62 0.22 25 / 0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px oklch(0.62 0.22 25 / 0.8); }
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, oklch(0.4 0.18 25 / 0.35), transparent 50%),
              radial-gradient(ellipse at 10% 90%, oklch(0.55 0.22 25 / 0.18), transparent 60%),
              var(--ink);
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.1fr 1fr; 
  gap: 60px; 
  align-items: center;
}
@media (max-width: 980px) { 
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 110px 0 60px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 22px 0 24px;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--crimson);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 4px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }

.hero p.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 220ms ease, transform 160ms ease, background 220ms ease;
}
.store-badge:hover { border-color: var(--line-2); background: var(--ink-3); transform: translateY(-1px); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .small { font-size: 11px; color: var(--text-faint); display: block; line-height: 1.1; white-space: nowrap; }
.store-badge .big { font-size: 16px; font-weight: 600; line-height: 1.1; margin-top: 2px; white-space: nowrap; }

.hero-rating {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
}
.stars { display: flex; gap: 2px; color: #ffb53b; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.rating-text { font-size: 13px; color: var(--text-dim); }
.rating-text strong { color: var(--text); }

/* Hero phone widget */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.runner-orbit {
  position: absolute;
  inset: 8% 8%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  pointer-events: none;
}
.runner-orbit::before {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  pointer-events: none;
}

.live-timer-card {
  position: absolute;
  background: rgba(20,20,24,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 16px 18px;
  z-index: 5;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8);
  animation: floatCard 4s ease-in-out infinite;
}
.live-timer-card.tl { top: 6%; left: -2%; }
.live-timer-card.br { bottom: 8%; right: 0%; animation-delay: -2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.live-timer-card .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.live-timer-card .value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 600;
}
.live-timer-card .value .accent { color: var(--crimson); }
.dot-grid {
  display: flex; gap: 4px; margin-top: 8px;
}
.dot-grid span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.dot-grid span.active { background: var(--crimson); }

.hero-phone-wrap {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 540px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.hero-phone-wrap img {
  width: 100%;
  height: auto;
  animation: slowFloat 8s ease-in-out infinite;
}
@keyframes slowFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

/* Marquee strip */
.runner-strip {
  margin-top: 60px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.3);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.runner-strip::before, .runner-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.runner-strip::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.runner-strip::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 38s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dim);
  align-items: center;
}
.marquee-track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--crimson);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 8px 24px;
  border-left: 1px solid var(--line);
}
.stat-cell:first-child { border-left: none; padding-left: 0; }
@media (max-width: 860px) {
  .stat-cell { padding: 16px 16px; border-left: none; border-top: 1px solid var(--line); }
  .stat-cell:nth-child(-n+2) { border-top: none; padding-top: 0; }
  .stat-cell:nth-child(odd) { padding-left: 0; }
  .stat-cell:nth-child(even) { border-left: 1px solid var(--line); }
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stat-num .unit { color: var(--crimson); }
.stat-label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ===== SECTION COMMON ===== */
.section { padding: 110px 0; }
@media (max-width: 720px) { .section { padding: 80px 0; } }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 18px;
}
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}
.section .section-sub {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 18px;
  max-width: 620px;
}

/* ===== PRESS ===== */
.press {
  padding: 56px 0;
  background: var(--paper);
  color: var(--ink);
}
.press-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,12,0.55);
  font-weight: 600;
  margin-bottom: 28px;
}
.press img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0.92;
}

/* ===== HOW IT WORKS — 8-week scroll ===== */
.weeks {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
  overflow: hidden;
}
.weeks::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.week-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 56px;
}
@media (max-width: 1100px) { .week-track { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .week-track { grid-template-columns: repeat(2, 1fr); } }
.week-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--ink-2);
  border-radius: 16px;
  padding: 22px 18px 22px;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
  cursor: default;
}
.week-card:hover {
  border-color: var(--crimson);
  transform: translateY(-4px);
  background: var(--ink-3);
}
.week-card .wk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.week-card .wk-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.bar-track {
  display: flex; height: 6px; border-radius: 3px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  margin-bottom: 14px;
}
.bar-run { background: var(--crimson); }
.bar-walk { background: rgba(255,255,255,0.18); }
.week-card .wk-detail {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
}
.week-card .wk-detail strong { color: var(--text); font-weight: 600; }

/* ===== FEATURES ===== */
.features {
  background: var(--ink);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, transform 280ms ease;
}
.feat-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.feat-card.feat-big { grid-column: span 2; min-height: 380px; }
.feat-card.feat-tall { grid-row: span 2; }
@media (max-width: 860px) {
  .feat-card.feat-big { grid-column: auto; }
  .feat-card.feat-tall { grid-row: auto; }
}
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--crimson-soft);
  display: grid; place-items: center;
  color: var(--crimson);
  margin-bottom: 22px;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 700;
}
.feat-card p { color: var(--text-dim); font-size: 15px; line-height: 1.5; }

.feat-visual-audio {
  position: relative;
  margin-top: 28px;
  height: 140px;
  display: flex;
  align-items: end;
  gap: 4px;
  padding: 0 4px;
}
.feat-visual-audio span {
  flex: 1;
  background: linear-gradient(180deg, var(--crimson) 0%, var(--crimson-2) 100%);
  border-radius: 2px;
  animation: bar 1.6s ease-in-out infinite;
}
@keyframes bar {
  0%, 100% { height: 20%; }
  50% { height: 80%; }
}

.feat-visual-music {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 28px;
}
.track-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.track-row .play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--crimson);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.track-row .play svg { width: 10px; height: 10px; fill: white; }
.track-row .name { font-size: 13px; font-weight: 600; }
.track-row .bpm { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-faint); margin-left: auto; }

.feat-visual-progress {
  margin-top: 28px;
  position: relative;
  height: 100px;
}
.progress-ring {
  width: 100px; height: 100px;
}
.progress-ring circle { fill: none; stroke-width: 8; }
.progress-ring .bg { stroke: rgba(255,255,255,0.08); }
.progress-ring .fg {
  stroke: var(--crimson);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-dasharray: 251;
  stroke-dashoffset: 75;
  transition: stroke-dashoffset 600ms ease;
}
.progress-ring-wrap {
  position: relative;
  width: 100px; height: 100px;
}
.progress-ring-wrap .pct {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

/* Big feature block with phones image */
.feat-showcase {
  margin-top: 80px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.feat-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== STORIES ===== */
.stories { background: var(--paper); color: var(--ink); }
.stories .section-tag { color: var(--crimson); }
.stories .section-sub { color: rgba(10,10,12,0.62); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 980px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stories-grid { grid-template-columns: 1fr; } }
.story-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10,10,12,0.06);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(10,10,12,0.18);
}
.story-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}
.story-body { padding: 22px 20px; }
.story-name { font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 17px; }
.story-stat {
  display: inline-block;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--crimson);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.story-quote {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(10,10,12,0.7);
  line-height: 1.5;
}

/* ===== PROGRESSION / FAMILY ===== */
.family-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px) { .family-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .family-grid { grid-template-columns: 1fr; } }
.family-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 220ms ease, transform 280ms ease;
  position: relative;
  overflow: hidden;
}
.family-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.family-card.current { border-color: var(--crimson); background: linear-gradient(180deg, oklch(0.62 0.22 25 / 0.10), var(--ink-2) 60%); }
.family-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.6);
}
.family-icon img { width: 100%; height: 100%; display: block; }
.family-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.family-card .distance {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -8px;
}
.family-card p { color: var(--text-dim); font-size: 14px; line-height: 1.5; flex: 1; }
.family-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--crimson);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== COMPARISON ===== */
.compare-table {
  margin-top: 50px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-2);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}
.compare-row:first-child { border-top: none; }
.compare-row .cell {
  padding: 18px 20px;
  font-size: 15px;
  text-align: center;
}
.compare-row .cell.feat { color: var(--text); font-weight: 500; text-align: left; }
.compare-row .cell.us {
  background: oklch(0.62 0.22 25 / 0.08);
  border-left: 1px solid var(--crimson);
  border-right: 1px solid var(--crimson);
}
.compare-row.head .cell {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
  padding: 14px 20px;
}
.compare-row.head .cell.us { color: var(--crimson); border-top: 1px solid var(--crimson); border-radius: 18px 18px 0 0; }
.compare-row:last-child .cell.us { border-bottom: 1px solid var(--crimson); border-radius: 0 0 18px 18px; }
.check {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--crimson);
  color: white;
}
.check svg { width: 12px; height: 12px; }
.dash { color: var(--text-faint); font-size: 18px; }
@media (max-width: 520px) {
  .compare-table { font-size: 13px; }
  .compare-row { grid-template-columns: 1fr 80px 80px; }
  .compare-row .cell { padding: 14px 8px; font-size: 13px; }
  .compare-row.head .cell { padding: 12px 8px; font-size: 11px; letter-spacing: 0.03em; }
  .compare-row .cell.feat { padding-left: 14px; }
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testis { background: var(--ink); }
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 32px;
  padding: 8px 32px 24px;
  margin: 56px -32px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.testi-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.testi-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-wrap: pretty;
  flex: 1;
}
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--crimson-soft);
  display: grid; place-items: center;
  color: var(--crimson);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-source { font-size: 12px; color: var(--text-faint); }
.testi-controls { display: flex; gap: 8px; margin-top: 32px; }
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: background 160ms ease, border-color 160ms ease;
}
.testi-btn:hover { background: rgba(255,255,255,0.04); border-color: var(--text-dim); }
.testi-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.testi-btn svg { width: 14px; height: 14px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 50px; max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 160ms ease, transform 220ms ease;
}
.faq-item[data-open="true"] .faq-toggle { background: var(--crimson); border-color: var(--crimson); transform: rotate(45deg); }
.faq-toggle svg { width: 12px; height: 12px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--text-dim);
  transition: max-height 320ms ease, margin-top 320ms ease;
  font-size: 16px;
  line-height: 1.55;
}
.faq-item[data-open="true"] .faq-a {
  max-height: 400px;
  margin-top: 14px;
}

/* ===== FINAL CTA ===== */
.final {
  background: linear-gradient(135deg, var(--crimson) 0%, oklch(0.5 0.24 22) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before, .final::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.final::before { top: -300px; left: -200px; }
.final::after { bottom: -300px; right: -200px; }
.final .container { position: relative; z-index: 2; }
.final h2 {
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.95;
  text-wrap: balance;
}
.final p {
  margin: 22px auto 36px;
  max-width: 540px;
  font-size: 18px;
  opacity: 0.92;
}
.final .store-row { justify-content: center; }
.final .store-badge {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.18);
  color: white;
}
.final .store-badge:hover { background: rgba(0,0,0,0.6); }

/* ===== FOOTER ===== */
.footer {
  background: #050507;
  color: var(--text-dim);
  padding: 60px 0 36px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--text); }
.footer-meta {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-faint);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
