:root {
  --bg: #0b0f14;
  --bg-alt: #111821;
  --light: #ffffff;
  --light-alt: #f7f8fa;
  --ink: #0b0f14;
  --muted: #5b6776;
  --line: #e5e8ee;
  --accent: #16d17c;       /* gut health green */
  --accent-dark: #0fa863;
  --accent-2: #ffb020;     /* warning / urgency */
  --danger: #e23b3b;
  --grad-1: #16d17c;
  --grad-2: #4ade80;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Manrope', var(--font);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--light);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: var(--maxw-narrow); }

/* ANNOUNCE */
.announce {
  background: linear-gradient(90deg, #062a18, #0a3d24);
  color: #eafff3;
  padding: 9px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
}
.announce .badge-pill {
  display: inline-block;
  background: var(--accent);
  color: #042416;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 10px;
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(22,209,124,.18), transparent 60%),
    linear-gradient(180deg, #0b0f14 0%, #0d141c 100%);
  color: #fff;
  padding: 30px 22px 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
}
.brand span { color: var(--accent); }
.brand.light { color: #fff; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 22px auto 14px;
  max-width: 14ch;
}
.grad { background: linear-gradient(120deg, var(--grad-1), var(--grad-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.underline { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 4px; text-underline-offset: 6px; }
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #c9d3dd;
  max-width: 60ch;
  margin: 0 auto 26px;
}
.hero-sub strong { color: #fff; }

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero-trust { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; color: #aab6c2; font-size: 13.5px; font-weight: 500; }
.hero-trust span { white-space: nowrap; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  letter-spacing: .01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #042416;
  box-shadow: 0 8px 24px rgba(22,209,124,.32);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(22,209,124,.45); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); }
.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-xl { font-size: 18px; padding: 20px 38px; }
.btn-pulse {
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(22,209,124,.32); }
  50%      { box-shadow: 0 8px 24px rgba(22,209,124,.32), 0 0 0 14px rgba(22,209,124,.0); }
}

/* BEFORE / AFTER — shared compare frames (heads aligned at top) */
.compare-col { display: flex; flex-direction: column; align-items: stretch; min-width: 0; flex: 1 1 0; }
.compare-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 10px;
  align-self: center;
}
.compare-label.before { background: rgba(255,255,255,.12); color: #ffd9d9; }
.compare-label.after  { background: var(--accent); color: #042416; }
.compare-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a2230;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 460 / 620;
  cursor: zoom-in;
}
.compare-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.compare-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 6px;
  flex-shrink: 0;
}
.compare-arrow { font-size: 28px; font-weight: 800; color: var(--accent); line-height: 1; }
.compare-days { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8794a2; }

/* HERO before/after — pair 1 lives inside the hero */
.hero-ba {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  max-width: 680px;
  margin: 24px auto 22px;
}
.hero .compare-label.before { background: rgba(0,0,0,.55); color: #ffd9d9; }
.hero .compare-frame { aspect-ratio: 3 / 4; }
.hero-note { color: #8794a2; font-size: 12.5px; margin: 14px auto 0; max-width: 60ch; }

/* SCROLL PAIRS 2–9 — compact strips, always side-by-side */
.ba-strip {
  padding: 36px 0;
  background: var(--light-alt);
  border-top: 1px solid var(--line);
}
.ba-strip-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 12px;
}
.ba-count {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.ba-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
}
.ba-strip .compare-frame {
  aspect-ratio: 3 / 4;
}
.photo-slot-cta-only { padding: 40px 0 56px; }

@media (max-width: 720px) {
  .hero {
    padding: 18px 8px 32px;
  }
  .hero-title {
    max-width: none;
    font-size: clamp(28px, 8.5vw, 44px);
    margin-top: 14px;
  }
  .hero-sub { font-size: 15px; margin-bottom: 16px; }
  .hero-ba {
    max-width: 100%;
    gap: 5px;
    margin: 16px auto 18px;
  }
  .hero .compare-label,
  .ba-strip .compare-label {
    font-size: 8.5px;
    padding: 4px 6px;
    margin-bottom: 5px;
    letter-spacing: .03em;
  }
  .compare-divider { padding: 0 1px; }
  .compare-arrow { font-size: 18px; }
  .compare-days { display: none; }
  .hero .compare-frame,
  .ba-strip .compare-frame {
    border-radius: 10px;
  }
  .ba-strip { padding: 28px 0; }
  .ba-strip-inner { padding: 0 8px; }
  .ba-row { gap: 5px; }
  .ba-count { font-size: 10px; margin-bottom: 8px; }
  .hero-cta { flex-direction: column; align-items: stretch; margin-bottom: 14px; }
  .hero-cta .btn-lg { width: 100%; text-align: center; }
  .hero-trust { gap: 10px; font-size: 12px; }
  .section { padding: 56px 0; }
}

/* STATS STRIP */
.stats {
  background: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-bottom: 1px solid var(--line);
  text-align: center;
}
.stat { padding: 26px 14px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--accent-dark);
  line-height: 1;
}
.stat-l { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* SECTIONS */
.section { padding: 80px 0; }
.section.dark { background: var(--bg); color: #e6ecf2; }
.section-head { text-align: center; max-width: 64ch; margin: 0 auto 36px; }
.section-head.light { color: #fff; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4.5vw, 40px);
  letter-spacing: -.02em;
  margin: 10px 0 12px;
  line-height: 1.1;
}
.section.dark h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 16.5px; }
.section.dark .section-head p { color: #97a3b0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 5px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(22,209,124,.08);
}
.section.dark .eyebrow { background: rgba(22,209,124,.12); }

/* RESULTS */
.stats-bar {
  display: flex; gap: 14px; align-items: center; justify-content: center;
  background: var(--light-alt);
  border: 1px solid var(--line);
  padding: 16px 22px;
  border-radius: var(--radius);
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.stats-bar > div { display: flex; flex-direction: column; align-items: flex-start; min-width: 76px; }
.stats-bar span { font-size: 11.5px; text-transform: uppercase; color: var(--muted); letter-spacing: .08em; }
.stats-bar strong { font-family: var(--font-display); font-size: 20px; }
.stats-bar .arrow { font-size: 22px; color: var(--accent-dark); font-weight: 800; }
.stats-foot { text-align: center; color: var(--muted); font-size: 13px; max-width: 70ch; margin: 0 auto 14px; }

.bodyfat-note {
  max-width: 62ch;
  margin: 0 auto 30px;
  padding: 14px 18px;
  background: #f0faf5;
  border: 1px solid rgba(22, 209, 124, 0.35);
  border-radius: var(--radius);
  font-size: 14px;
  color: #2c4a3a;
  line-height: 1.55;
  text-align: center;
}
.bodyfat-note strong { color: var(--accent-dark); }
.bodyfat-note em { font-style: normal; font-weight: 600; }

/* PHOTO SLOTS — spread before/after pairs through the page */
.photo-slot-section {
  padding: 56px 0;
}
.photo-slot-section.dark-slot {
  background: var(--light-alt);
}
.photo-slot {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 640px;
  margin: 0 auto;
}
.photo-pair {
  margin: 0;
  text-align: center;
}
.photo-pair-cap {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.4;
}
.photo-pair-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: start;
}
.photo-pair-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 10px 0 0;
}
.photo-slot-cta {
  text-align: center;
  margin-top: 40px;
}

/* legacy transform blocks — kept minimal for any stray refs */
.transform-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 0;
}
.transform-block--flip .transform-compare { order: 2; }
.transform-block--flip .transform-copy { order: 1; text-align: right; }
.transform-block--flip .transform-aside { margin-left: auto; }

.transform-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: start;
}

.transform-copy h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -.02em;
  margin: 8px 0 12px;
  line-height: 1.15;
}
.transform-copy p { color: var(--muted); font-size: 16px; margin: 0 0 12px; }
.transform-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.transform-aside {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--light-alt);
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  max-width: 36ch;
}
.transform-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost-dark:hover { border-color: var(--accent-dark); }

.transform-spacer {
  height: 48px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  max-width: 720px;
  margin: 24px auto;
}

@media (max-width: 820px) {
  .transform-block,
  .transform-block--flip {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }
  .transform-block--flip .transform-compare,
  .transform-block--flip .transform-copy { order: unset; text-align: left; }
  .transform-block--flip .transform-aside { margin-left: 0; }
  .transform-compare { max-width: 420px; margin: 0 auto; }
}

/* WARNING */
.warning-section { background: #fff7ec; }
.warning-box {
  background: #fff;
  border: 3px solid var(--danger);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 24px 60px rgba(226,59,59,.16);
  text-align: center;
  position: relative;
}
.warning-box::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(226,59,59,.05) 14px, rgba(226,59,59,.05) 28px);
  pointer-events: none;
}
.warning-icon {
  font-size: 56px;
  color: var(--danger);
  line-height: 1;
}
.warning-box h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--danger);
  margin: 14px 0 10px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.warning-sub { font-size: 16px; color: #4a3535; max-width: 60ch; margin: 0 auto 22px; }
.warning-sub strong { color: var(--danger); }
.warning-foot {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--danger);
  margin-bottom: 20px;
}
.warning-foot em { font-style: normal; }
.warning-box .btn { margin-top: 4px; }

.prep-ritual {
  text-align: left;
  background: #fff8ef;
  border: 2px solid #ffb020;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin: 24px 0 20px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.prep-ritual h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
}
.prep-lead { font-size: 15.5px; color: #4a3535; margin: 0 0 18px; line-height: 1.55; }
.prep-lead strong { color: var(--danger); }
.prep-steps {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #2c3640;
}
.prep-steps li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.prep-steps li strong { color: var(--ink); }
.prep-foot {
  font-size: 14px;
  color: #5b4545;
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed #ffd9a0;
  line-height: 1.55;
}

/* ORDER */
.order-section { background: linear-gradient(180deg, #f7fdfa, #fff); }
.order-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px 32px; box-shadow: var(--shadow-lg);
}
.order-card h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin: 14px 0 10px; }
.order-sub { color: var(--muted); font-size: 17px; max-width: 48ch; margin: 0 auto 22px; }
.order-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px;
  text-align: left; max-width: 460px; margin: 0 auto 26px;
  font-size: 14.5px; font-weight: 600;
}
.order-features div { padding-left: 4px; }
.order-fine { color: var(--muted); font-size: 12.5px; margin-top: 14px; }
.order-fine code { background: #eef1f5; padding: 1px 6px; border-radius: 5px; font-size: 11.5px; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar {
  background: var(--bg-alt);
  border: 1px solid #1c2632;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pillar-num {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--accent); letter-spacing: .12em;
}
.pillar h3 { font-family: var(--font-display); font-size: 22px; margin: 8px 0 10px; color: #fff; }
.pillar p { color: #9aa6b3; font-size: 15.5px; }
.why-callout {
  margin-top: 28px; text-align: center; max-width: 64ch; margin-left: auto; margin-right: auto;
}
.why-callout h3 { font-family: var(--font-display); font-size: 22px; color: #fff; }
.why-callout p { color: #97a3b3; }
.why-callout em { color: var(--accent); font-style: normal; font-weight: 700; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

/* WORKOUT */
.workout-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.workout-card {
  background: var(--light-alt); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px;
}
.workout-icon { font-size: 32px; line-height: 1; }
.workout-card h3 { font-family: var(--font-display); font-size: 17px; margin: 12px 0 8px; }
.workout-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (max-width: 980px) { .workout-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .workout-grid { grid-template-columns: 1fr; } }

/* STUDIES */
.studies { display: flex; flex-direction: column; gap: 22px; }
.study {
  background: var(--bg-alt);
  border: 1px solid #1c2632;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
}
.study-u {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .14em;
  color: var(--accent); font-weight: 800; text-transform: uppercase;
}
.study h3 { font-family: var(--font-display); font-size: 24px; color: #fff; margin: 6px 0 12px; }
.study-quote { color: #cdd6df; font-style: italic; font-size: 15.5px; }
.study-author { color: #97a3b0; font-size: 13.5px; margin-top: 8px; }
.study-body { margin-top: 18px; border-top: 1px solid #1c2632; padding-top: 16px; }
.study-body h4 { color: #fff; font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; }
.study-body ul { padding-left: 20px; color: #b6c1cd; }
.study-body li { margin-bottom: 8px; }
.study-body strong { color: #fff; }
.study-cite {
  margin-top: 14px;
  font-size: 13.5px;
  color: #97a3b0;
  background: rgba(22,209,124,.06);
  padding: 10px 14px; border-radius: 10px;
  border: 1px solid rgba(22,209,124,.18);
}
.study-cite a { color: var(--accent); }
.refs { margin-top: 14px; }
.refs summary { cursor: pointer; color: var(--accent); font-weight: 700; font-size: 13.5px; }
.refs ol { color: #97a3b0; font-size: 13px; padding-left: 20px; line-height: 1.7; margin-top: 10px; }
.refs a { color: var(--accent); }
.science-foot { text-align: center; color: #97a3b0; margin-top: 30px; }

/* POSTURE CARD */
.posture-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px;
  background: var(--light-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
}
.posture-text h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 12px; }
.posture-text p { color: var(--muted); }
.posture-aside { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.posture-quote {
  font-family: var(--font-display); font-weight: 800; font-size: 18px; line-height: 1.3;
  color: var(--accent-dark);
  padding: 18px; background: #fff; border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.posture-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.posture-tags span {
  background: #fff; border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
@media (max-width: 720px) { .posture-card { grid-template-columns: 1fr; } }

/* COACHING */
.coaching-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.step {
  background: var(--bg-alt); border: 1px solid #1c2632; border-radius: var(--radius-lg); padding: 24px; text-align: left;
}
.step-n {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #042416;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.step h3 { color: #fff; font-family: var(--font-display); margin: 0 0 6px; }
.step p { color: #9aa6b3; margin: 0; font-size: 14.5px; }
.coaching-promise {
  max-width: 640px; margin: 30px auto 0; text-align: center;
}
.coaching-promise h3 { color: #fff; font-family: var(--font-display); }
.coaching-promise ul {
  list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  color: #cdd6df; max-width: 480px; margin: 12px auto 0;
}
.coaching-promise li::before { content: "✓ "; color: var(--accent); font-weight: 800; }
.coaching-contact { text-align: center; color: #fff; font-family: var(--font-display); font-size: 22px; margin-top: 28px; }
.coaching-contact a { color: var(--accent); }
.coaching-affil { display: block; color: #8794a2; font-size: 13px; margin-top: 6px; font-family: var(--font); }
@media (max-width: 720px) { .coaching-steps { grid-template-columns: 1fr; } .coaching-promise ul { grid-template-columns: 1fr; } }

/* FAQ */
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 16.5px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+ "; color: var(--accent-dark); font-weight: 800; margin-right: 4px; }
.faq[open] summary::before { content: "− "; }
.faq p { margin: 10px 0 0; color: var(--muted); }

/* LEAD FORM */
.signup-section { background: linear-gradient(180deg, #0b0f14, #0d1620); }
.lead-form {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  display: grid; gap: 14px; box-shadow: var(--shadow-lg);
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label {
  display: flex; flex-direction: column; font-weight: 600; font-size: 13.5px; color: #2c3640;
  letter-spacing: .01em;
}
.lead-form label.full { grid-column: 1 / -1; }
.lead-form input, .lead-form select, .lead-form textarea {
  margin-top: 6px; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  font-family: var(--font); font-size: 15px; background: #fbfcfd;
  width: 100%; resize: vertical;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,209,124,.16);
}
.lead-form button { width: 100%; margin-top: 6px; }
.form-status { font-size: 14px; text-align: center; margin: 0; min-height: 18px; }
.form-status.ok { color: var(--accent-dark); font-weight: 700; }
.form-status.err { color: var(--danger); font-weight: 700; }
.form-foot { text-align: center; color: var(--muted); font-size: 12px; margin: 0; }
.hp { position: absolute; left: -9999px; top: -9999px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { background: #06090d; color: #97a3b0; padding: 50px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: #fff; font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 10px; }
.footer-grid a { display: block; color: #97a3b0; padding: 3px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--accent); text-decoration: none; }
.footer-email { display: block; color: #97a3b0; padding: 3px 0; font-size: 14px; }
.footer-tag { color: #6b7785; font-size: 13.5px; margin-top: 8px; }
.footer-disclaim { font-size: 12px; color: #5b6776; border-top: 1px solid #1a2230; padding-top: 20px; max-width: 90ch; }
.footer-copy { font-size: 12px; color: #5b6776; margin-top: 12px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center; z-index: 9999; padding: 20px;
}
.lightbox.open { display: flex; }
.lb-content { max-width: 95vw; max-height: 95vh; }
.lb-content img { max-width: 95vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-content .lb-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-lg);
  max-width: min(92vw, 720px);
}
.lb-col { min-width: 0; }
.lb-frame { cursor: default; }
.lb-cap {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 8px;
  margin-top: 6px;
  border-radius: 8px;
}
.lb-cap.before { background: #eef; color: #333; }
.lb-cap.after  { background: #dfd; color: #042416; }
.lb-title { text-align: center; color: #fff; margin-top: 12px; font-weight: 700; font-family: var(--font-display); }
.lb-close {
  position: absolute; top: 18px; right: 24px;
  background: rgba(255,255,255,.12); color: #fff; border: none;
  font-size: 30px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .hero-ba { max-width: 100%; gap: 8px; }
  .compare-arrow { font-size: 22px; }
}
