/* ==========================================================================
   Rock the Fall — Naked Training
   Mobile-first. Breakpoints: 768px (tablet), 1200px (desktop), plus a few
   layout-specific ones (900 / 1024) where a two-column layout needs the room.
   ========================================================================== */

/* ---------- Fonts (self-hosted, latin subset, variable) ---------- */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/figtree-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-italic-latin.woff2') format('woff2');
}
/* Width-matched fallbacks so text barely moves when the web fonts swap in.
   size-adjust values were measured in Chrome at the MOBILE headline sizes (38-48px).
   Fraunces has an optical-size axis and runs ~14% narrower at desktop display sizes,
   so these are tuned for phones, where the swap is slowest and matters most. */
@font-face {
  font-family: 'Fraunces Fallback';
  font-style: normal;
  font-weight: 500 600;
  src: local('Georgia');
  size-adjust: 104%;
}
@font-face {
  font-family: 'Fraunces Fallback';
  font-style: italic;
  font-weight: 500 600;
  src: local('Georgia Italic'), local('Georgia-Italic');
  size-adjust: 96%;
}
@font-face {
  font-family: 'Figtree Fallback';
  font-weight: 400 500;
  src: local('Arial');
  size-adjust: 100.5%;
}
@font-face {
  font-family: 'Figtree Fallback';
  font-weight: 600 700;
  src: local('Arial Bold'), local('Arial-BoldMT');
  size-adjust: 96.6%;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #FBF6EF;
  --bg-alt: #F4EBDF;
  --ink: #1F1712;
  --ink-card: #2B211B;
  --ink-border: #4A3B31;
  --text: #5A4A40;
  --text-muted: #6F5D52;      /* brief had #8A776A (3.96:1). Darkened to pass 4.5:1 */
  --border: #E3D3C1;
  --border-soft: #EDE2D4;
  --orange: #C24E12;          /* buttons, large headline accents */
  --orange-hover: #9E3F0E;
  --orange-text: #9E3F0E;     /* small orange text on cream. #C24E12 is only 4.05:1 there */
  --orange-light: #F08A4B;    /* accents on dark backgrounds only */
  --tag-bg: #F6E2D3;
  --on-dark: #FBF6EF;
  --on-dark-body: #D8CABD;
  --white: #FFFFFF;

  /* Extra shades that appear in the approved design */
  --x-icon: #A8968A;
  --x-text: #6B5B50;
  --reel-bg: #3A2D25;
  --bar-mid: #D9713A;
  --bar-low: #A9552B;
  --cover-peach: #E8A67A;
  --rules-link: #F0C9AE;
  --cta-accent: #FBE3D2;
  --cta-outline: #F0A57C;
  --avatar-1: #E9C9AE;
  --avatar-2: #D9A889;
  --avatar-3: #C28B6B;

  --font-serif: 'Fraunces', 'Fraunces Fallback', Georgia, serif;
  --font-sans: 'Figtree', 'Figtree Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Fluid type: mobile value at 390px → desktop value at 1440px */
  --fs-hero: clamp(3rem, 1.98rem + 4.19vw, 5.75rem);        /* 48 → 92 */
  --fs-h2: clamp(2.375rem, 1.91rem + 1.9vw, 3.625rem);      /* 38 → 58 */
  --fs-lede: clamp(1.125rem, 1.055rem + 0.286vw, 1.3125rem);/* 18 → 21 */
  --fs-body: clamp(1.0625rem, 1.04rem + 0.095vw, 1.125rem); /* 17 → 18 */

  --gutter: 20px;
  --section-pad: clamp(4rem, 2.89rem + 4.57vw, 7rem);       /* 64 → 112 */
  --nav-h: 64px;
  --content: 1160px;
}
@media (min-width: 768px) {
  :root { --gutter: 40px; --nav-h: 76px; }
}
@media (min-width: 1200px) {
  :root { --gutter: 56px; --nav-h: 84px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--orange-text); }
a:hover { color: var(--ink); }
strong { font-weight: 700; color: var(--ink); }
[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-dark :focus-visible { outline-color: var(--orange-light); }
.final-cta :focus-visible { outline-color: var(--white); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px; top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--on-dark);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--on-dark); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: calc(var(--content) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-pad); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: var(--on-dark-body); }
.stack { display: flex; flex-direction: column; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: clamp(2.25rem, 1.8rem + 1.9vw, 3.5rem);
}
.section-head .lede { max-width: 720px; }

/* ---------- Type ---------- */
.eyebrow {
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.79rem + 0.095vw, 0.875rem); /* 13 → 14 */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-text);
}
.on-dark .eyebrow, .eyebrow--light { color: var(--orange-light); }

.h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}
.h2 em, .h3 em, .hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}
.lede {
  font-size: var(--fs-lede);
  line-height: 1.55;
  text-wrap: pretty;
}
.nowrap { white-space: nowrap; }
.fine {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ---------- Icons ---------- */
.icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- Buttons, pills, tags ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.0625rem, 1.04rem + 0.095vw, 1.125rem); /* 17 → 18 */
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn:hover { background: var(--orange-hover); color: var(--white); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: #000000; }
.btn--sm { min-height: 44px; padding: 0 16px; font-size: 0.9375rem; }
.btn--block { width: 100%; }
@media (max-width: 767.98px) {
  .btn:not(.btn--sm) { width: 100%; }
}
@media (min-width: 768px) {
  .btn { min-height: 62px; padding: 0 34px; }
  .btn--sm { min-height: 48px; padding: 0 24px; font-size: 1rem; }
}

.date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  white-space: nowrap;
}
.date-badge .icon { color: var(--orange); stroke-width: 2; }
@media (min-width: 768px) { .date-badge { min-height: 62px; } }

.pill {
  align-self: flex-start;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--orange-hover);
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.79rem + 0.095vw, 0.875rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pill--solid { background: var(--orange); color: var(--white); }

.tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--tag-bg);
  color: var(--orange-hover);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

/* ---------- Check / X lists ---------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: clamp(1.0625rem, 1.02rem + 0.19vw, 1.1875rem); /* 17 → 19 */
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .icon { margin-top: 0.15em; color: var(--orange); stroke-width: 2.75; }
.checklist--x { font-weight: 400; color: var(--x-text); }
.checklist--x .icon { color: var(--x-icon); stroke-width: 2.5; }
.on-dark .checklist { color: var(--on-dark); }
.on-dark .checklist .icon { color: var(--orange-light); }

/* ---------- Placeholders ---------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  background: repeating-linear-gradient(135deg, #EFE4D6 0 14px, #F5ECE1 14px 28px);
}
mark.ph-mark { background: #FFE58A; color: #1F1712; border-radius: 4px; padding: 0 2px; }

/* ---------- Swipe rows (mobile scroll-snap, grid on larger screens) ---------- */
.swipe {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scroll-padding-inline: var(--gutter);
}
.swipe::-webkit-scrollbar { display: none; }
.swipe > * { flex: 0 0 82%; scroll-snap-align: start; }
@media (min-width: 768px) {
  .swipe { gap: 20px; }
  .swipe > * { flex-basis: 44%; }
}
@media (min-width: 1024px) {
  .swipe {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}
/* Programs: six short cards. Swipe on mobile, 2-col grid on tablet. */
.swipe--programs > * { flex-basis: 78%; }
@media (min-width: 768px) {
  .swipe--programs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}
@media (min-width: 1200px) {
  .swipe--programs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wordmark {
  padding-block: 12px; /* 44px tap target */
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark:hover { color: var(--ink); }
@media (max-width: 359.98px) {
  .wordmark { font-size: 0.75rem; letter-spacing: 0.12em; }
  .nav .btn--sm { padding: 0 12px; font-size: 0.875rem; }
}
@media (min-width: 768px) {
  .wordmark { font-size: 1.125rem; letter-spacing: 0.2em; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding-block: 28px 56px; }
.hero__grid { display: grid; gap: 36px; }
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(var(--fs-hero), 12.3vw); /* under 390px it scales down so the headline stays on two lines */
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__lede { max-width: 540px; }
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  line-height: 1.35;
}
.proof__avatars { display: flex; flex-shrink: 0; }
.proof__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--avatar-1);
  object-fit: cover;
}
.proof__avatars img + img { margin-left: -10px; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  background: var(--bg-alt);
}
.coach-card {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(31, 23, 18, 0.14);
}
.coach-card__label { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); line-height: 1.3; }
.coach-card__name { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 600; color: var(--ink); line-height: 1.2; }

@media (min-width: 768px) {
  .hero { padding-block: 48px 72px; }
  .hero__copy { gap: 24px; }
  .hero__cta { flex-direction: row; align-items: center; gap: 16px; width: auto; }
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
  .hero__media img { max-height: none; }
}
@media (min-width: 900px) and (max-width: 1199.98px) {
  .hero__title { font-size: clamp(3.25rem, 5.8vw, 4.375rem); }
  .hero__cta { flex-wrap: wrap; }
}
@media (min-width: 1200px) {
  .hero { padding-block: 72px 96px; }
  .hero__grid { gap: 72px; }
  .hero__copy { gap: 28px; }
  .hero__lede { font-size: 1.375rem; }
  .hero__media img { aspect-ratio: auto; height: 680px; }
  .coach-card { left: -32px; bottom: 40px; padding: 18px 22px; border-radius: 20px; gap: 4px; }
  .coach-card__name { font-size: 1.5rem; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  display: flex;
  gap: 36px;
  overflow: hidden;
  height: 56px;
  align-items: center;
  background: var(--ink);
  color: var(--on-dark);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 36px;
  min-width: 100%;
  animation: marquee 36s linear infinite;
}
.marquee__group li:nth-child(even) { color: var(--orange-light); } /* the ✦ separators */
.marquee:hover .marquee__group { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% - 36px)); } }
@media (min-width: 768px) { .marquee { height: 64px; font-size: 1.0625rem; } }

/* ==========================================================================
   TRANSFORMATIONS
   ========================================================================== */
.result-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: var(--white);
}
.ba { position: relative; }
.ba img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--bg-alt);
}
.ba__label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.ba__label--after { left: auto; right: 10px; background: var(--orange); }
.result-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.result-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1875rem, 1.14rem + 0.19vw, 1.3125rem); /* 19 → 21 */
  line-height: 1.4;
  color: var(--ink);
}
.result-card__name { font-weight: 700; font-size: 1.0625rem; color: var(--ink); }
.results__note { margin-top: 32px; text-align: center; }
@media (min-width: 1200px) {
  .result-card__body { padding: 28px; }
  .results__note { margin-top: 56px; }
}

/* ==========================================================================
   PROBLEM / PLAN
   ========================================================================== */
.compare {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin-inline: auto;
}
.compare__box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg);
}
.compare__box--win {
  border: 2px solid var(--orange);
  background: var(--white);
  box-shadow: 0 20px 44px rgba(194, 78, 18, 0.12);
}
.compare__label {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.compare__box--win .compare__label { color: var(--orange-text); }
@media (min-width: 768px) {
  .compare { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .compare__box { padding: 40px; }
}

/* ==========================================================================
   MEET BROOKE
   ========================================================================== */
.coach { display: grid; gap: 36px; align-items: center; }
.coach__photo { width: 100%; aspect-ratio: 5 / 6; border-radius: 28px; object-fit: cover; background: var(--bg-alt); }
.coach__copy { display: flex; flex-direction: column; gap: 20px; }
.coach__bio { font-size: clamp(1.0625rem, 1rem + 0.286vw, 1.25rem); }
.quote-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-alt);
}
.quote-box blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.16rem + 0.38vw, 1.5rem); /* 20 → 24 */
  line-height: 1.4;
  color: var(--ink);
}
.quote-box cite { font-style: normal; font-weight: 700; font-size: 1rem; color: var(--orange-text); }
@media (min-width: 900px) {
  .coach { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
  .coach__copy { gap: 24px; }
  .quote-box { padding: 28px 32px; }
}
@media (min-width: 1200px) { .coach { gap: 80px; } }

/* ==========================================================================
   TRAIN YOUR WAY
   ========================================================================== */
.featured {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 20px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--on-dark-body);
}
.featured__head { display: flex; flex-direction: column; gap: 16px; }
.featured__title-group { display: flex; flex-direction: column; gap: 14px; }
.featured__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.875rem, 1.55rem + 1.33vw, 2.75rem); /* 30 → 44 */
  line-height: 1.1;
  color: var(--on-dark);
}
.featured__intro { max-width: 440px; font-size: clamp(1.0625rem, 1.02rem + 0.19vw, 1.1875rem); line-height: 1.55; }
.featured__rows { display: flex; flex-direction: column; gap: 20px; }

.method {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px;
  border-radius: 20px;
  background: var(--ink-card);
}
.method__copy { display: flex; flex-direction: column; gap: 24px; flex-grow: 1; min-width: 0; }
.method__text { display: flex; flex-direction: column; gap: 12px; }
.method__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.625rem, 1.35rem + 1.14vw, 2.375rem); /* 26 → 38 */
  line-height: 1.12;
  color: var(--on-dark);
}
.method__text p:last-child { font-size: clamp(1.0625rem, 1.02rem + 0.19vw, 1.1875rem); line-height: 1.55; }

/* Reel frame */
.reel {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--ink-border);
  border-radius: 24px;
  background: var(--reel-bg);
}
.reel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-dark-body);
}
.reel__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}
.reel__play .icon { width: 30px; height: 30px; }
.reel video,
.reel iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
}
.reel__sound {
  position: absolute;
  right: 12px; bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 23, 18, 0.7);
  color: var(--on-dark);
  cursor: pointer;
}
.reel__sound .icon { stroke-width: 2; }

/* 6-12-25 diagram */
.reps { display: flex; flex-direction: column; gap: 12px; }
.reps li { display: grid; grid-template-columns: 52px minmax(0, 1fr); align-items: center; gap: 12px; }
.reps__num { font-family: var(--font-serif); font-size: 2.125rem; font-weight: 600; line-height: 1; color: var(--orange-light); }
.reps__bar { display: flex; align-items: center; gap: 14px; font-size: 1.0625rem; font-weight: 600; color: var(--on-dark); }
.reps__bar::before {
  content: "";
  width: var(--w);
  min-width: 24px;
  height: 14px;
  border-radius: 99px;
  background: var(--c);
}

/* Mechanical advantage diagram */
.flow { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.flow__step {
  flex: 1 1 0;
  padding: 16px;
  border: 1.5px solid var(--ink-border);
  border-radius: 14px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--on-dark);
}
.flow__step--go { border-color: var(--orange); background: var(--orange); font-weight: 700; color: var(--white); }
.flow__arrow { align-self: center; color: var(--orange-light); transform: rotate(90deg); }
.flow__arrow .icon { width: 22px; height: 22px; }

.programs { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.programs__title { font-size: clamp(1.5rem, 1.41rem + 0.38vw, 1.75rem); }
.program-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
}
.program-card h4 { font-size: 1.3125rem; font-weight: 700; line-height: 1.25; color: var(--ink); }
.program-card p { font-size: 1.0625rem; }

@media (min-width: 768px) {
  .featured { padding: 40px; gap: 36px; }
  .method { padding: 28px; }
  .flow { flex-direction: row; align-items: center; gap: 12px; }
  .flow__arrow { transform: none; }
  .flow__step { padding: 18px 12px; }
  .programs { gap: 24px; margin-top: 48px; }
  .program-card { padding: 30px; }
}
@media (min-width: 768px) {
  .method { flex-direction: row; align-items: center; gap: 32px; }
  .method--flip { flex-direction: row-reverse; }
  .reel { width: 240px; margin-inline: 0; }
}
@media (min-width: 900px) {
  .method { gap: 40px; }
  .reel { width: 270px; }
  .reps li { grid-template-columns: 64px minmax(0, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .featured__head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
}
@media (min-width: 1200px) {
  .featured { padding: 56px; gap: 40px; }
  .featured__rows { gap: 24px; }
  .method { padding: 36px; gap: 56px; }
  .reel { width: 300px; }
}

/* ==========================================================================
   EVERYTHING INCLUDED
   ========================================================================== */
.guides { display: grid; gap: 20px; }
.guide {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: start;
}
.guide__tile {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  border-radius: 16px;
  background: var(--bg-alt);
}
.cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 72px; height: 96px;
  padding: 9px;
  border-radius: 3px 7px 7px 3px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 6px 8px 16px rgba(31, 23, 18, 0.18);
}
.cover--ink { background: var(--ink); color: var(--on-dark); }
.cover--peach { background: var(--cover-peach); color: var(--ink); }
.cover__brand { font-size: 5px; font-weight: 700; letter-spacing: 0.14em; }
.cover__title { font-family: var(--font-serif); font-size: 10px; font-weight: 600; line-height: 1.1; }
.guide__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 2px 12px; align-self: end; }
.guide__head h3 { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; line-height: 1.25; color: var(--ink); }
.guide__value { font-weight: 700; font-size: 1rem; color: var(--orange-text); }
.guide__desc { font-size: 1.0625rem; line-height: 1.5; }

@media (min-width: 768px) {
  .guides { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 28px; }
  .guide { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
  .guide__tile { height: 220px; border-radius: 20px; }
  .cover { width: 130px; height: 172px; padding: 16px; border-radius: 4px 10px 10px 4px; box-shadow: 10px 12px 24px rgba(31, 23, 18, 0.18); }
  .cover__brand { font-size: 9px; }
  .cover__title { font-size: 17px; }
  .guide__head { align-self: stretch; flex-wrap: nowrap; }
  .guide__head h3 { font-size: 1.3125rem; }
}
@media (min-width: 1200px) {
  .guides { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 28px; }
}

.app-block {
  display: grid;
  gap: 36px;
  align-items: center;
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  padding: 32px 24px;
  border-radius: 28px;
  background: var(--bg-alt);
}
.app-block__copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.app-block__title { font-size: clamp(1.875rem, 1.6rem + 1.14vw, 2.625rem); /* 30 → 42 */ }
.phone {
  width: 240px; height: 430px;
  margin-inline: auto;
  overflow: hidden;
  border: 10px solid var(--ink);
  border-radius: 40px;
  background: var(--white);
}
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (min-width: 900px) {
  .app-block { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; padding: 56px; }
  .phone { width: 290px; height: 520px; }
}

/* ==========================================================================
   PRIZE
   ========================================================================== */
.prize__head { display: grid; gap: 24px; margin-bottom: 40px; }
.prize__title-group { display: flex; flex-direction: column; gap: 18px; }
.prize__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.875rem, 1.99rem + 3.62vw, 5.25rem); /* 46 → 84 */
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--on-dark);
}
.prize__title em { font-style: italic; font-weight: 500; color: var(--orange-light); }
.prize__lede { font-size: var(--fs-lede); line-height: 1.6; }
.steps-dark { display: grid; gap: 16px; }
.steps-dark li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--ink-card);
}
.steps-dark__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}
.steps-dark h3 { font-size: 1.375rem; font-weight: 700; line-height: 1.25; color: var(--on-dark); }
.steps-dark p { line-height: 1.55; }
.prize__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.prize__rules { padding: 12px 8px; font-size: 1.0625rem; color: var(--rules-link); }
.prize__rules:hover { color: var(--white); }
@media (min-width: 768px) {
  .prize__foot { flex-direction: row; justify-content: space-between; margin-top: 56px; }
}
@media (min-width: 900px) {
  .steps-dark { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .steps-dark li { padding: 34px; }
}
@media (min-width: 1024px) {
  .prize__head { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; align-items: end; margin-bottom: 56px; }
}

/* ==========================================================================
   MINI-CHALLENGES  (photo card left, example cards right)
   ========================================================================== */
.mini { display: grid; gap: 32px; align-items: start; }
.mini__photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(31, 23, 18, 0.14);
}
.mini__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
/* Scrim so the white caption stays readable over the photo */
.mini__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 23, 18, 0.94) 0%, rgba(31, 23, 18, 0.6) 38%, rgba(31, 23, 18, 0) 70%);
}
.mini__photo-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(31, 23, 18, 0.25);
}
.mini__photo-tag .icon { width: 16px; height: 16px; }
.mini__photo-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  color: var(--on-dark);
}
.mini__photo-copy h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.61rem + 0.57vw, 2.125rem); /* 28 → 34 */
  line-height: 1.12;
  color: var(--white);
}
.mini__list { display: flex; flex-direction: column; gap: 24px; }
.mini__intro { display: flex; flex-direction: column; gap: 12px; }
.mini__intro .h3 { font-size: clamp(1.625rem, 1.49rem + 0.57vw, 2rem); /* 26 → 32 */ }
.mini__cards { display: flex; flex-direction: column; gap: 14px; }
.mini-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  transition: border-color 0.15s ease;
}
.mini-card:hover { border-color: var(--orange); }
.mini-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.mini-card__tag {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--tag-bg);
  color: var(--orange-hover);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
}
.mini-card h4 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; color: var(--ink); }
.mini-card > p { font-size: 1.0625rem; line-height: 1.5; }
.mini-card .mini-card__prize {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--on-dark);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
}
.mini-card__prize .icon { width: 16px; height: 16px; margin-top: 0.12em; color: var(--orange-light); stroke-width: 2; }
.mini-card__prize b { color: var(--orange-light); text-transform: uppercase; letter-spacing: 0.06em; }
@media (min-width: 768px) {
  .mini__photo-tag { top: 24px; left: 24px; }
  .mini__photo-copy { padding: 32px; }
  .mini-card { padding: 22px 24px; }
}
@media (min-width: 900px) {
  .mini { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .mini__list { gap: 28px; }
}
@media (min-width: 1200px) { .mini { gap: 56px; } }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how { display: grid; gap: 36px; }
.how li { display: flex; flex-direction: column; gap: 12px; }
.how__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.25rem, 2.97rem + 1.14vw, 4rem); /* 52 → 64 */
  line-height: 1;
  color: var(--orange);
}
.how h3 { font-size: 1.4375rem; font-weight: 700; line-height: 1.25; color: var(--ink); }
@media (min-width: 768px) {
  .how { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .how li { gap: 16px; }
}
@media (min-width: 1200px) { .how { gap: 48px; } }

/* ==========================================================================
   MORE RESULTS
   ========================================================================== */
.more { padding-top: 0; }
.more__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.more__title { font-size: clamp(2rem, 1.72rem + 1.14vw, 2.75rem); /* 32 → 44 */ }
.more__titles { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 767.98px) { .more__title em { display: block; } } /* "They rocked it." / "So can you." on phones */
.more-card { display: flex; flex-direction: column; gap: 14px; }
.more-card .ba { overflow: hidden; border-radius: 22px; }
.more-card figcaption { font-size: 1.125rem; color: var(--ink); }
@media (min-width: 768px) {
  .more__head { flex-direction: row; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing .section-head { margin-bottom: 32px; }
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.countdown__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: clamp(72px, 20vw, 104px);
  padding: 14px 0;
  border-radius: 16px;
  background: var(--ink);
}
.countdown__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.81rem + 0.76vw, 2.5rem); /* 32 → 40 */
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-dark);
  font-variant-numeric: tabular-nums;
}
.countdown__label { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-body); }
.countdown__closed {
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.61rem + 0.57vw, 2.125rem);
  color: var(--ink);
}
@media (min-width: 768px) {
  .countdown { gap: 14px; margin-bottom: 48px; }
  .countdown__tile { padding: 16px 0; gap: 4px; }
}

.plans {
  display: grid;
  gap: 36px;
  max-width: 1000px;
  margin-inline: auto;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 24px 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
}
.plan--yearly {
  order: -1; /* yearly first on mobile */
  border-color: var(--ink);
  background: var(--ink);
  color: var(--on-dark);
  box-shadow: 0 24px 50px rgba(31, 23, 18, 0.22);
}
.plan__badge { position: absolute; top: -18px; right: 24px; padding: 9px 16px; }
.plan__head { display: flex; flex-direction: column; gap: 10px; }
.plan__kicker { font-weight: 700; font-size: 0.9375rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.plan--yearly .plan__kicker { color: var(--orange-light); }
.plan__name { font-family: var(--font-serif); font-size: clamp(1.875rem, 1.73rem + 0.57vw, 2.25rem); font-weight: 600; line-height: 1.15; color: var(--ink); }
.plan--yearly .plan__name { color: var(--on-dark); }
.plan__price { display: flex; align-items: baseline; gap: 12px; }
.plan__amount { font-family: var(--font-serif); font-size: clamp(3.75rem, 3.47rem + 1.14vw, 4.5rem); font-weight: 600; line-height: 1; color: var(--ink); }
.plan--yearly .plan__amount { color: var(--on-dark); }
.plan__was { font-size: 1.25rem; color: var(--text-muted); }
.plan--yearly .plan__was { color: var(--x-icon); }
.plan .checklist { flex-grow: 1; gap: 14px; font-size: clamp(1.0625rem, 1.04rem + 0.095vw, 1.125rem); font-weight: 400; }
.plan .checklist li { gap: 12px; }
.plan .checklist .is-strong { font-weight: 700; }
.plan__plus { font-weight: 600; color: var(--on-dark-body); }
.plan__closed {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}
@media (min-width: 900px) {
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
  .plan { padding: 48px; }
  .plan--yearly { order: 0; }
  .plan__badge { right: 40px; }
}

/* ==========================================================================
   GUARANTEE
   ========================================================================== */
.guarantee { padding-block: clamp(3.5rem, 3.13rem + 1.52vw, 5.5rem); }
.guarantee__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.guarantee__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--tag-bg);
  color: var(--orange);
}
.guarantee__icon .icon { width: 34px; height: 34px; stroke-width: 2; }
.guarantee__title { font-size: clamp(1.875rem, 1.64rem + 0.95vw, 2.5rem); /* 30 → 40 */ }
.guarantee .lede { max-width: 640px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__cols { display: grid; }
.faq__item { border-top: 1px solid var(--border); }
.faq__col:last-child .faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.1rem + 0.19vw, 1.25rem); /* 18 → 20 */
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { margin-top: 0.2em; color: var(--orange); transition: transform 0.2s ease; }
.faq__item[open] summary .icon { transform: rotate(45deg); }
.faq__item p { padding: 0 36px 24px 0; margin-top: -8px; }
@media (min-width: 1024px) {
  .faq__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 64px; align-items: start; }
  .faq__col:first-child .faq__item:last-child { border-bottom: 1px solid var(--border); }
  .faq__item summary { padding: 26px 0; }
}

/* ==========================================================================
   FINAL CTA + FOOTER
   ========================================================================== */
.final { padding-bottom: 0; }
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 56px 20px;
  border-radius: 32px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.125rem, 1.15rem + 4vw, 4.75rem); /* 34 → 76 */
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
}
.final-cta__title em { font-style: italic; font-weight: 500; color: var(--cta-accent); }
.final-cta p.lede { max-width: 640px; color: var(--white); }
.final-cta__actions { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.final-cta .date-badge { border-color: var(--cta-outline); color: var(--white); }
@media (min-width: 768px) {
  .final-cta { gap: 24px; padding: 72px 48px; }
  .final-cta__actions { flex-direction: row; justify-content: center; align-items: center; gap: 16px; width: auto; }
}
@media (min-width: 1200px) { .final-cta { padding: 88px 80px; } }

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-block: 40px calc(104px + env(safe-area-inset-bottom, 0px)); /* room for the sticky CTA */
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 12px; }
.footer__links a { padding: 10px 8px; color: var(--x-text); }
.footer__links a:hover { color: var(--ink); }
@media (min-width: 768px) {
  .footer { flex-direction: row; justify-content: space-between; padding-block: 64px; text-align: left; }
  .footer__links { gap: 12px; }
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 -8px 24px rgba(31, 23, 18, 0.08);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.25s ease, visibility 0s linear 0.25s;
}
.sticky-cta.is-visible {
  transform: none;
  visibility: visible;
  transition: transform 0.25s ease, visibility 0s;
}
.sticky-cta .btn { min-height: 52px; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ==========================================================================
   LEGAL / RULES PAGE
   ========================================================================== */
.legal { padding-block: clamp(2.5rem, 2rem + 2vw, 4.5rem) clamp(3rem, 2.5rem + 2vw, 5rem); }
.legal__wrap { max-width: calc(760px + var(--gutter) * 2); }
.legal h1 { margin-top: 12px; }
.legal .lede { margin-top: 20px; }
.legal__note {
  margin-top: 20px;
  padding: 14px 18px;
  border: 1.5px dashed var(--orange);
  border-radius: 14px;
  background: var(--white);
  font-weight: 600;
  color: var(--ink);
}
.legal h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.41rem + 0.38vw, 1.75rem);
  line-height: 1.2;
  color: var(--ink);
}
.legal p + p { margin-top: 14px; }
.legal ul, .legal ol { display: flex; flex-direction: column; gap: 10px; padding-left: 1.4em; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal ul + p, .legal ol + p { margin-top: 14px; }
.legal li::marker { color: var(--orange-text); font-weight: 700; }
.legal__back { margin-top: 48px; }
.footer--plain { padding-bottom: 40px; }
@media (min-width: 768px) { .footer--plain { padding-bottom: 64px; } }

/* ==========================================================================
   404
   ========================================================================== */
.notfound {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px var(--gutter);
  text-align: center;
}
.notfound .btn { width: auto; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__group { animation: none; }
  .marquee { justify-content: flex-start; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
