/* =============================================================
   The Metabolic Method — Landing page styles
   Built on top of colors_and_type.css
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-page); color: var(--fg-1); overflow-x: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.wrap-med { max-width: 920px; margin: 0 auto; padding: 0 32px; }

.section { padding: 112px 0; }
.section-sm { padding: 80px 0; }
.bg-cream { background: var(--mm-cream); }
.bg-linen { background: var(--mm-linen); }
.bg-rose-wash { background: var(--mm-rose-wash); }
.bg-rose-deep { background: var(--mm-rose); color: var(--mm-cream); }
.bg-ink { background: var(--mm-ink); color: var(--mm-linen); }

.divider { height: 1px; background: var(--border-hairline); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500;
  border-radius: var(--r-2); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
  letter-spacing: 0.01em;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-md { padding: 14px 26px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-xl { padding: 22px 40px; font-size: 16px; }

.btn-primary {
  background: var(--mm-rose); color: var(--mm-cream);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover { background: var(--mm-rose-deep); }
.btn-primary:active { transform: translateY(1px); box-shadow: var(--shadow-s); }

.btn-secondary {
  background: transparent; color: var(--fg-1);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--mm-linen-warm); }

.btn-ghost {
  background: transparent; color: var(--fg-impact);
  padding: 14px 4px; border-radius: 0;
  border-bottom: 1px solid currentColor;
}
.btn-ghost:hover { color: var(--mm-rose-deep); }

.btn-block { display: flex; width: 100%; justify-content: center; }

.btn-arrow { display: inline-block; transition: transform var(--dur-fast) var(--ease-standard); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Eyebrow + headings (use mm-* utilities for type) ---------- */
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-impact);
}
.eyebrow.on-rose { color: var(--mm-cream); opacity: 0.85; }
.eyebrow.on-ink  { color: var(--mm-rose-soft); }

h1, h2, h3, h4 { margin: 0; }
.h-display {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.04; letter-spacing: -0.018em;
  color: var(--fg-1);
}
.h-display em, .h-section em, .h-card em {
  font-style: italic; font-weight: 500; color: var(--fg-impact);
}
.h-section {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--fg-1);
}
.h-card {
  font-family: var(--font-display); font-weight: 600;
  font-size: 26px; line-height: 1.18; letter-spacing: -0.01em;
  color: var(--fg-1);
}
.h-mini {
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px; letter-spacing: 0.01em;
  color: var(--fg-1);
}

.lead {
  font-family: var(--font-body); font-size: 19px; line-height: 1.55;
  color: var(--fg-2); font-weight: 400;
  text-wrap: pretty;
}
.lead-lg {
  font-family: var(--font-body); font-size: 21px; line-height: 1.55;
  color: var(--fg-2); font-weight: 400;
  text-wrap: pretty;
}
.copy { font-size: 17px; line-height: 1.7; color: var(--fg-2); }
.copy strong { color: var(--fg-1); font-weight: 600; }
.copy em { font-family: var(--font-display); font-style: italic; color: var(--fg-impact); font-weight: 500; font-size: 1.02em; }
.copy a { color: var(--fg-impact); text-decoration: none; border-bottom: 1px solid currentColor; }

.note { font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.note em { color: var(--fg-impact); font-family: var(--font-display); font-style: italic; }

/* ---------- Sticky nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg-page);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              backdrop-filter var(--dur-base) var(--ease-standard);
}
.nav.is-scrolled {
  background: rgba(237, 232, 228, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; max-width: 1180px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  text-decoration: none; font-weight: 400;
}
.nav-link:hover { color: var(--fg-impact); }
@media (max-width: 760px) {
  .nav-links .nav-link { display: none; }
  .nav-inner { padding: 12px 20px; }
  .nav-logo img { height: 34px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 96px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.95fr;
  gap: 72px; align-items: center;
}
.hero-headline { margin: 18px 0 22px; }
.hero-sub { max-width: 540px; margin-bottom: 18px; }
.hero-strip {
  font-family: var(--font-body); font-size: 16px; color: var(--fg-1);
  font-weight: 500; max-width: 540px; margin: 0 0 28px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero-strip span { white-space: nowrap; }
.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 560px;
}
.hero-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-family: var(--font-body); font-size: 16px; color: var(--fg-1);
  line-height: 1.5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-cta-note { margin-top: 18px; }

.check-bubble {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mm-rose-wash); color: var(--mm-rose);
  display: grid; place-items: center; margin-top: 1px;
}
.check-bubble svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; }

.hero-image {
  aspect-ratio: 4/5; border-radius: var(--r-4); overflow: hidden;
  background: linear-gradient(155deg, rgb(238,221,229) 0%, rgb(214,177,194) 38%, rgb(184,130,158) 70%, rgb(124,56,92) 100%);
  position: relative; box-shadow: var(--shadow-l);
}
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 62% 38%, rgba(250,247,243,0.28), transparent 70%);
}
.hero-image-photo {
  background: #f0e1e8;
}
.hero-image-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  z-index: 0;
}
.hero-image-photo::after {
  background: linear-gradient(to top, rgba(42,32,32,0.55) 0%, rgba(42,32,32,0.18) 22%, transparent 45%);
  z-index: 1;
}
.hero-image-cap {
  position: absolute; left: 28px; bottom: 28px; color: var(--mm-cream);
  z-index: 2;
}
.hero-image-cap .ey {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.85;
}
.hero-image-cap .nm {
  font-family: var(--font-display); font-style: italic; font-size: 30px;
  margin-top: 6px; font-weight: 500;
}
.hero-image-badge {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  background: rgba(250,247,243,0.92);
  color: var(--fg-1);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-s);
}
.hero-image-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mm-sage);
  box-shadow: 0 0 0 4px rgba(138,148,126,0.18);
}

/* ---------- Trust bar ---------- */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 28px;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
}
.trust-item { display: flex; gap: 10px; align-items: center; }
.trust-item strong { color: var(--fg-1); font-weight: 600; }
.stars { color: var(--mm-rose); display: inline-flex; gap: 2px; }
.trust-sep { width: 1px; height: 22px; background: var(--border-hairline); }
@media (max-width: 760px) {
  .trust-sep { display: none; }
  .trust-inner { justify-content: flex-start; gap: 18px; }
}

/* ---------- Problem section ---------- */
.problem-eyebrow { margin-bottom: 18px; }
.problem h2 { max-width: 720px; margin-bottom: 36px; }
.problem-body { max-width: 680px; display: flex; flex-direction: column; gap: 22px; }
.problem-pull {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; line-height: 1.3; color: var(--fg-1);
  border-left: 2px solid var(--mm-rose);
  padding: 6px 0 6px 22px; margin: 18px 0;
}
.problem-pull strong { color: var(--fg-impact); font-style: italic; font-weight: 500; }
.problem-list {
  list-style: none; padding: 0; margin: 8px 0 4px;
  display: flex; flex-direction: column; gap: 14px;
}
.problem-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: var(--fg-1);
  padding-left: 4px;
}
.problem-list li::before {
  content: ""; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mm-rose);
  margin-top: 11px;
  box-shadow: 0 0 0 4px var(--mm-rose-wash);
}

/* ---------- Solution intro ---------- */
.solution-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.solution-intro h2 { margin-bottom: 28px; }
.solution-intro .copy { margin-bottom: 18px; }
.credibility {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--border-hairline);
}
.credibility-label {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 16px;
}
.credibility-list {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--fg-1);
}
.credibility-list span { color: var(--fg-impact); }
.solution-portrait {
  aspect-ratio: 4/5; border-radius: var(--r-4); overflow: hidden;
  background: linear-gradient(200deg, rgb(232,225,219) 0%, rgb(196,124,98) 55%, rgb(156,73,116) 100%);
  position: relative; box-shadow: var(--shadow-m);
}
.solution-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 40% 35%, rgba(255,253,250,0.25), transparent 70%);
}
.solution-portrait-photo {
  background: #d8e3dc;
}
.solution-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  display: block;
  z-index: 0;
}
.solution-portrait-photo::after {
  background: linear-gradient(to top, rgba(42,32,32,0.55) 0%, rgba(42,32,32,0.18) 22%, transparent 45%);
  z-index: 1;
}
.solution-portrait-cap {
  position: absolute; left: 28px; bottom: 28px; color: var(--mm-cream);
  z-index: 2;
}
.solution-portrait-cap .ey {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.85;
}
.solution-portrait-cap .nm {
  font-family: var(--font-display); font-style: italic; font-size: 28px;
  margin-top: 6px; font-weight: 500;
}

/* ---------- How it works ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin: 0 auto; max-width: 600px; }

.hiw-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.hiw-card {
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  border-radius: var(--r-4); padding: 36px;
  box-shadow: var(--shadow-s);
  transition: box-shadow var(--dur-base) var(--ease-standard);
  display: flex; flex-direction: column;
}
.hiw-card:hover { box-shadow: var(--shadow-m); }
.hiw-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 56px; line-height: 1; color: var(--mm-rose-soft);
  font-weight: 500;
  margin-bottom: 18px;
}
.hiw-card h3 { margin-bottom: 14px; }
.hiw-card .copy { font-size: 16px; line-height: 1.65; }
.hiw-tag {
  display: inline-block; margin-top: 18px; padding: 4px 12px;
  background: var(--mm-rose-wash); color: var(--mm-rose-deep);
  border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hiw-card.is-bonus { background: var(--mm-rose-wash); border-color: rgba(156,73,116,0.18); }
.hiw-card.is-bonus .hiw-num { color: var(--mm-rose); }

/* ---------- Offer / pricing card ---------- */
.offer-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px;
  align-items: stretch;
}
.deliverables {
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  border-radius: var(--r-4); padding: 40px;
}
.deliverables h3 { margin-bottom: 6px; }
.deliverables .note { margin-bottom: 22px; }
.deliv-table {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.deliv-table li {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-hairline);
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  align-items: baseline;
}
.deliv-table li:first-child { border-top: none; }
.deliv-table .meta {
  color: var(--fg-3); font-size: 15px;
  font-family: var(--font-display); font-style: italic;
}
.deliv-foot {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--border-hairline);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
}
.deliv-foot .value-num {
  font-family: var(--font-display); font-size: 22px; color: var(--fg-1);
  text-decoration: line-through; text-decoration-color: var(--mm-rose-muted);
  font-weight: 500;
}

.price-card {
  background: var(--mm-ink); color: var(--mm-linen);
  border-radius: var(--r-4); padding: 40px;
  box-shadow: var(--shadow-l);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(156,73,116,0.32), transparent 65%);
  pointer-events: none;
}
.price-card > * { position: relative; }
.price-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(214,177,194,0.18); color: var(--mm-rose-soft);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  align-self: flex-start;
}
.price-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mm-rose);
  box-shadow: 0 0 0 4px rgba(156,73,116,0.32);
}
.price-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 34px; line-height: 1.1; letter-spacing: -0.012em;
  margin: 20px 0 12px; color: var(--mm-cream);
}
.price-card h3 em { font-style: italic; color: var(--mm-rose-soft); font-weight: 500; }
.price-card .blurb {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: rgba(255,253,250,0.78); margin-bottom: 28px;
}
.price-stack { margin-top: auto; }
.price-anchor {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 6px;
}
.price-anchor .was {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,253,250,0.55);
  text-decoration: line-through;
}
.price-anchor .badge {
  background: rgba(156,73,116,0.42); color: var(--mm-cream);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.price-now {
  display: flex; align-items: baseline; gap: 12px;
}
.price-now .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 88px; line-height: 1; color: var(--mm-cream);
  letter-spacing: -0.02em;
}
.price-now .num sup {
  font-family: var(--font-body); font-size: 20px; font-weight: 500;
  top: -1.8em; left: 2px; color: rgba(255,253,250,0.72);
  letter-spacing: 0.04em;
}
.price-now .unit {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,253,250,0.7); letter-spacing: 0.08em; text-transform: uppercase;
}
.price-per {
  margin-top: 8px;
  font-family: var(--font-display); font-style: italic; font-size: 16px;
  color: var(--mm-rose-soft);
}
.price-cta {
  margin-top: 28px;
  background: var(--mm-rose); color: var(--mm-cream);
  border-radius: var(--r-2); border: none; cursor: pointer;
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(156,73,116,0.4);
  transition: background var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.price-cta:hover .btn-arrow { transform: translateX(3px); }
.price-cta:hover { background: var(--mm-rose-deep); }
.price-cta:active { transform: translateY(1px); }
.price-card .guarantee-row {
  margin-top: 18px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; color: rgba(255,253,250,0.7);
}
.price-card .guarantee-row svg { width: 16px; height: 16px; stroke: var(--mm-rose-soft); stroke-width: 1.5; fill: none; }

/* ---------- Guarantee block ---------- */
.guarantee {
  text-align: center; max-width: 880px; margin: 0 auto;
}
.guarantee .eyebrow { margin-bottom: 22px; }
.guarantee-seal {
  width: 96px; height: 96px; margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--mm-rose); color: var(--mm-cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 14px;
  letter-spacing: 0.08em; line-height: 1.1; text-align: center;
  box-shadow: var(--shadow-rose);
  border: 2px solid var(--mm-rose-soft);
}
.guarantee-q {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.25; color: var(--fg-1);
  margin: 0;
}
.guarantee-q strong { color: var(--fg-impact); font-style: italic; font-weight: 500; }
.guarantee-sig { margin-top: 32px; font-size: 13px; color: var(--fg-3); }

/* ---------- Testimonials ---------- */
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.t-card {
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  border-radius: var(--r-4); padding: 32px;
  box-shadow: var(--shadow-s);
  display: flex; flex-direction: column; gap: 20px;
}
.t-quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.3; color: var(--fg-1);
  letter-spacing: -0.005em;
}
.t-quote em { font-style: italic; color: var(--fg-impact); font-weight: 500; }
.t-result {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  line-height: 1.55;
}
.t-result strong { color: var(--fg-1); font-weight: 600; }
.t-meta {
  margin-top: auto;
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--border-hairline);
}
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(160deg, rgb(214,177,194), rgb(156,73,116));
  display: grid; place-items: center;
  color: var(--mm-cream); font-family: var(--font-display); font-style: italic;
  font-size: 18px; font-weight: 500;
  flex-shrink: 0;
}
.t-avatar.a2 { background: linear-gradient(160deg, rgb(232,225,219), rgb(196,124,98)); }
.t-avatar.a3 { background: linear-gradient(160deg, rgb(238,221,229), rgb(184,130,158)); }
.t-meta-text {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  line-height: 1.3;
}
.t-meta-text .who { font-weight: 600; }
.t-meta-text .what { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

.t-stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: center;
  background: var(--mm-cream);
  border-radius: var(--r-4);
  padding: 36px;
}
.t-stat .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 56px; line-height: 1; color: var(--fg-impact);
  letter-spacing: -0.02em;
}
.t-stat .num em { font-style: italic; }
.t-stat .label {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
  margin-top: 10px; line-height: 1.4;
}

/* ---------- Fit checker (yes/no) ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fit-card {
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  border-radius: var(--r-4); padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.fit-card.no { background: transparent; border-style: dashed; }
.fit-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border-hairline);
}
.fit-head .ico {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.fit-card.yes .fit-head .ico { background: var(--mm-rose-wash); color: var(--mm-rose); }
.fit-card.no .fit-head .ico { background: rgba(42,32,32,0.06); color: var(--fg-3); }
.fit-head .ico svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.fit-head h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--fg-1); letter-spacing: -0.01em;
}
.fit-card.no .fit-head h3 { color: var(--fg-2); }
.fit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.fit-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  color: var(--fg-1);
}
.fit-card.no .fit-list li { color: var(--fg-3); }
.fit-list svg { width: 18px; height: 18px; stroke-width: 2; flex-shrink: 0; margin-top: 1px; fill: none; }
.fit-card.yes .fit-list svg { stroke: var(--mm-rose); }
.fit-disclaimer {
  max-width: 720px; margin: 36px auto 0; text-align: center;
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.6;
  color: var(--fg-3); font-style: italic;
}
.final-note {
  max-width: 680px; margin: 22px auto 0; text-align: center;
  font-family: var(--font-body); font-size: 12.5px; line-height: 1.6;
  color: var(--fg-3); font-style: italic;
}
.lt-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.lt-link:hover { text-decoration-thickness: 2px; }
.final-grid .final-note { margin-top: 36px; }
.fit-card.no .fit-list svg { stroke: var(--fg-4); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--border-hairline);
  padding: 22px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--border-hairline); }
.faq-q {
  all: unset; display: flex; width: 100%; cursor: pointer;
  align-items: flex-start; justify-content: space-between; gap: 28px;
}
.faq-q .q {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--fg-1); line-height: 1.3; letter-spacing: -0.005em;
}
.faq-q .q em { font-style: italic; color: var(--fg-impact); font-weight: 500; }
.faq-toggle {
  flex-shrink: 0; width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--border-hairline); border-radius: 50%;
  font-family: var(--font-display); font-size: 22px; color: var(--fg-impact);
  font-weight: 400; line-height: 1;
  transition: transform var(--dur-base) var(--ease-standard),
              background var(--dur-base) var(--ease-standard);
}
.faq-item.is-open .faq-toggle {
  transform: rotate(45deg); background: var(--mm-rose-wash);
}
.faq-a {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--fg-2);
  max-width: 720px;
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard),
              margin-top var(--dur-slow) var(--ease-standard),
              opacity var(--dur-base) var(--ease-standard);
  opacity: 0;
}
.faq-item.is-open .faq-a {
  max-height: 480px; margin-top: 16px; opacity: 1;
}
.faq-a strong { color: var(--fg-1); font-weight: 600; }

/* ---------- Final CTA ---------- */
.final-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.final-head .eyebrow { margin-bottom: 22px; }
.final-head h2 { margin-bottom: 18px; }
.final-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px;
  align-items: stretch;
}
.final-card {
  border-radius: var(--r-4); padding: 40px;
  display: flex; flex-direction: column;
}
.final-flagship {
  background: var(--mm-ink); color: var(--mm-linen);
  box-shadow: var(--shadow-l);
  position: relative; overflow: hidden;
}
.final-flagship::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(156,73,116,0.3), transparent 65%);
}
.final-flagship > * { position: relative; }
.final-flagship .tag {
  display: inline-block; padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(214,177,194,0.18); color: var(--mm-rose-soft);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  align-self: flex-start;
}
.final-flagship h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 38px; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--mm-cream); margin: 22px 0 14px;
}
.final-flagship h3 em { font-style: italic; color: var(--mm-rose-soft); font-weight: 500; }
.final-flagship .blurb {
  color: rgba(255,253,250,0.78); font-size: 15px; line-height: 1.6;
  margin-bottom: 28px; max-width: 460px;
}
.final-flagship .includes {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.final-flagship .includes li {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,253,250,0.85);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.4;
}
.final-flagship .includes svg { width: 14px; height: 14px; stroke: var(--mm-rose-soft); stroke-width: 2.5; fill: none; flex-shrink: 0; margin-top: 4px; }
.final-flagship .price-line {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid rgba(255,253,250,0.12);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.final-flagship .price-line .num {
  font-family: var(--font-display); font-size: 56px; line-height: 1;
  color: var(--mm-cream); font-weight: 500; letter-spacing: -0.015em;
}
.final-flagship .price-line .num sup {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  top: -1.8em; left: 2px; color: rgba(255,253,250,0.7);
}
.final-flagship .price-line .meta {
  font-family: var(--font-body); font-size: 12px; color: rgba(255,253,250,0.6);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 6px;
}
.final-flagship .price-cta { margin-top: 24px; width: 100%; }
.final-flagship .ssm { margin-top: 14px; font-size: 13px; color: rgba(255,253,250,0.65); text-align: center; }
.final-flagship .ssm em { color: var(--mm-rose-soft); font-style: italic; font-family: var(--font-display); }

.final-reset {
  background: var(--mm-rose-wash);
  color: var(--fg-1);
  border: 1px solid rgba(156,73,116,0.18);
}
.final-reset .tag {
  display: inline-block; padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--mm-ivory); color: var(--mm-rose);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  align-self: flex-start;
}
.final-reset h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 30px; line-height: 1.15; letter-spacing: -0.012em;
  color: var(--fg-1); margin: 22px 0 14px;
}
.final-reset h3 em { font-style: italic; color: var(--fg-impact); font-weight: 500; }
.final-reset .blurb {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin-bottom: 28px;
}
.final-reset .reset-points {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.final-reset .reset-points li {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  display: flex; gap: 10px; align-items: flex-start;
}
.final-reset .reset-points li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mm-rose); flex-shrink: 0; margin-top: 8px;
}
.final-reset .price-line {
  margin-top: auto; padding-top: 22px;
  border-top: 1px solid rgba(42,32,32,0.1);
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.final-reset .price-line .num {
  font-family: var(--font-display); font-size: 42px; color: var(--fg-impact);
  font-weight: 500; letter-spacing: -0.012em;
}
.final-reset .price-line .num sup {
  font-family: var(--font-body); font-size: 13px; top: -1.6em; left: 2px;
  color: var(--fg-3);
}
.final-reset .price-line .meta {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-3);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.final-reset .reset-cta {
  margin-top: 22px; width: 100%; justify-content: center;
  text-decoration: none;
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-hairline);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  align-items: start;
}
.footer-logo img { height: 44px; margin-bottom: 16px; }
.footer-grid .col-head {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-impact); margin-bottom: 16px;
}
.footer-grid .col-list { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  text-decoration: none;
}
.footer-grid a:hover { color: var(--fg-impact); }
.footer-disclaimer {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-3);
  line-height: 1.6; max-width: 380px;
}
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-3);
}
.footer-bottom .made {
  font-family: var(--font-display); font-style: italic;
}
.footer-bottom-links { display: flex; align-items: center; gap: 22px; }
.footer-policy-link {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-standard);
}
.footer-policy-link:hover { color: var(--fg-impact); }

/* ---------- Privacy policy modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(43, 30, 26, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-standard), visibility var(--dur-base) var(--ease-standard);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-dialog {
  background: var(--mm-cream);
  border-radius: var(--r-4);
  box-shadow: var(--shadow-l);
  width: min(720px, 100%); max-height: 86vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(14px) scale(0.985);
  transition: transform var(--dur-base) var(--ease-emphasized);
}
.modal-overlay.is-open .modal-dialog { transform: none; }
.modal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 30px 36px 22px;
  border-bottom: 1px solid var(--border-hairline);
  background: var(--mm-ivory);
}
.modal-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mm-rose);
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-display); font-weight: 500; font-size: 30px;
  letter-spacing: -0.015em; color: var(--fg-1); line-height: 1.05;
}
.modal-close {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: var(--mm-cream);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.modal-close:hover { background: var(--mm-rose-wash); border-color: var(--mm-rose); }
.modal-close svg { width: 18px; height: 18px; stroke: var(--fg-2); stroke-width: 2; fill: none; }
.modal-body {
  padding: 30px 36px 40px;
  overflow-y: auto;
  font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--fg-2);
}
.modal-body .pp-eff {
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0.04em;
  color: var(--fg-3); margin-bottom: 18px;
}
.modal-body .pp-intro { color: var(--fg-1); margin-bottom: 8px; }
.modal-body h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  letter-spacing: -0.01em; color: var(--fg-1);
  margin: 28px 0 10px;
}
.modal-body h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--fg-1); margin: 18px 0 8px;
}
.modal-body p { margin: 0 0 12px; }
.modal-body ul { margin: 0 0 12px; padding-left: 22px; display: flex; flex-direction: column; gap: 7px; }
.modal-body li { line-height: 1.55; }
.modal-body li strong, .modal-body p strong { color: var(--fg-1); font-weight: 600; }
.modal-body a { color: var(--mm-rose); text-decoration: underline; text-underline-offset: 2px; }
.modal-body a:hover { color: var(--mm-rose-deep); }
@media (max-width: 560px) {
  .modal-head { padding: 24px 22px 18px; }
  .modal-body { padding: 24px 22px 32px; }
  .modal-title { font-size: 25px; }
  .footer-bottom-links { gap: 16px; }
}

/* ---------- Sticky bottom CTA bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--mm-ink); color: var(--mm-linen);
  border-top: 1px solid rgba(255,253,250,0.08);
  transform: translateY(110%);
  transition: transform 360ms var(--ease-standard);
  box-shadow: 0 -8px 32px rgba(42,32,32,0.18);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.sticky-msg { display: flex; align-items: center; gap: 16px; min-width: 0; }
.sticky-msg .label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mm-rose-soft);
}
.sticky-msg .title {
  font-family: var(--font-display); font-style: italic; font-size: 19px;
  color: var(--mm-cream); font-weight: 500; line-height: 1.2;
  margin-top: 2px;
}
.sticky-bar .sticky-actions { display: flex; gap: 10px; align-items: center; }
.sticky-bar .ghost-link {
  color: var(--mm-rose-soft); font-family: var(--font-body); font-size: 13px;
  text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.sticky-bar .ghost-link:hover { color: var(--mm-cream); }
@media (max-width: 760px) {
  .sticky-msg .title { font-size: 16px; }
  .sticky-bar .ghost-link { display: none; }
  .sticky-inner { padding: 12px 16px; gap: 12px; }
  .sticky-bar .btn { padding: 12px 18px; font-size: 13px; }
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(16px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding: 40px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 460px; margin: 0 auto; width: 100%; }
  .solution-intro { grid-template-columns: 1fr; gap: 48px; }
  .solution-portrait { max-width: 460px; margin: 0 auto; width: 100%; }
  .hiw-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .t-stats { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .fit-grid { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
}

@media (max-width: 560px) {
  .wrap, .wrap-narrow, .wrap-med { padding: 0 20px; }
  .section { padding: 64px 0; }
  .h-display { font-size: clamp(34px, 9.2vw, 44px); letter-spacing: -0.01em; }
  .h-section { font-size: clamp(26px, 6.6vw, 34px); }
  .lead-lg { font-size: 17px; }
  .lead { font-size: 16px; }
  .copy { font-size: 16px; }
  .hero { padding: 28px 0 56px; }
  .hero-headline { margin: 14px 0 18px; }
  .hero-sub { margin-bottom: 14px; }
  .hero-strip { font-size: 14px; gap: 6px 16px; margin: 0 0 22px; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn-xl {
    padding: 16px 22px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .hero-ctas .btn-ghost {
    padding: 10px 4px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  .hero-cta-note { font-size: 12px; }
  .hero-image-badge { font-size: 11px; padding: 6px 12px 6px 10px; top: 14px; right: 14px; }
  .hero-image { max-width: 100%; }
  .hero-image-cap .nm { font-size: 26px; }

  .nav-inner { padding: 10px 16px; }
  .nav-logo img { height: 30px; }
  .nav .btn-sm { padding: 9px 14px; font-size: 12px; }

  .price-now .num { font-size: 64px; }
  .deliverables, .price-card, .hiw-card, .t-card, .fit-card, .final-card { padding: 26px; }
  .deliv-table li { grid-template-columns: 1fr; gap: 4px; }
  .deliv-table .meta { font-size: 12px; width: auto !important; }
  .final-flagship .includes { grid-template-columns: 1fr; }

  .sticky-inner { padding: 10px 14px; gap: 10px; }
  .sticky-msg .label { font-size: 10px; letter-spacing: 0.18em; }
  .sticky-msg .title { font-size: 14px; }
  .sticky-bar .btn { padding: 10px 14px; font-size: 12px; }

  body { padding-bottom: 84px; } /* leave room for sticky bar */
}

@media (max-width: 380px) {
  .hero-strip { display: none; }
  .nav .btn-sm { padding: 8px 12px; font-size: 11px; }
  .nav-logo img { height: 26px; }
}

/* =============================================================
   ADDITIONS — two-offer rework (DIY course + 1:1 coaching)
   ============================================================= */

/* ---------- Hero dual CTA note tweaks ---------- */
.hero-ctas .btn-secondary { white-space: normal; }

/* ---------- Insulin statement block ---------- */
.insulin-statement {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 4.4vw, 48px); line-height: 1.12;
  letter-spacing: -0.018em; color: var(--fg-1);
  margin: 0 0 28px; max-width: 760px;
}
.insulin-statement em { font-style: italic; color: var(--fg-impact); font-weight: 500; }

/* ---------- Method: how the 6 weeks unfold ---------- */
.weeks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 8px;
}
.week-step {
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  border-radius: var(--r-4); padding: 30px 28px;
  box-shadow: var(--shadow-xs);
}
.week-step .wk {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mm-rose); margin-bottom: 14px;
}
.week-step h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 23px;
  line-height: 1.2; letter-spacing: -0.01em; color: var(--fg-1);
  margin-bottom: 12px;
}
.week-step p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }

.bonus-week {
  margin-top: 28px;
  background: var(--mm-rose-wash);
  border: 1px solid rgba(156,73,116,0.18);
  border-radius: var(--r-4);
  padding: 36px 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
}
.bonus-week .bw-mark {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--mm-rose-deep); line-height: 1.2; white-space: nowrap;
  padding-top: 4px;
}
.bonus-week h3 { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -0.01em; color: var(--fg-1); margin-bottom: 12px; }
.bonus-week h3 em { font-style: italic; color: var(--fg-impact); font-weight: 500; }
.bonus-week .copy { font-size: 16px; margin: 0; }
@media (max-width: 760px) {
  .weeks { grid-template-columns: 1fr; }
  .bonus-week { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
}

/* ---------- Two ways to work — paired offer cards ---------- */
.ways-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  align-items: stretch;
}
.way-card {
  border-radius: var(--r-4); padding: 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.way-card .tag {
  display: inline-block; align-self: flex-start;
  padding: 6px 14px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.way-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; line-height: 1.12; letter-spacing: -0.015em;
  margin: 20px 0 6px;
}
.way-card h3 em { font-style: italic; font-weight: 500; }
.way-card .who {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  margin-bottom: 24px;
}
.way-price {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border-hairline);
}
.way-price .price-row { display: flex; align-items: baseline; gap: 12px; }
.way-price .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 60px; line-height: 1; letter-spacing: -0.02em;
}
.way-price .num sup {
  font-family: var(--font-body); font-size: 17px; font-weight: 500;
  top: -1.9em; left: 2px;
}
.way-price .unit { font-family: var(--font-body); font-size: 14px; letter-spacing: 0.04em; }
.way-price .was {
  font-family: var(--font-body); font-size: 18px; font-weight: 700;
  text-decoration: line-through; line-height: 1;
}
.way-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 13px; }
.way-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-body); font-size: 15px; line-height: 1.45;
}
.way-list li strong { font-weight: 600; }
.way-list li.list-title { font-size: 16px; margin-bottom: 1px; letter-spacing: 0.01em; }
.way-list li.list-title strong { font-weight: 700; }
.way-list svg { width: 17px; height: 17px; stroke-width: 2.2; fill: none; flex-shrink: 0; margin-top: 2px; }
.way-cta {
  margin-top: auto;
  border-radius: var(--r-2); cursor: pointer;
  padding: 19px 28px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  letter-spacing: 0.02em; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.way-cta:active { transform: translateY(1px); }
.way-cta:hover .btn-arrow { transform: translateX(3px); }
.way-foot { margin-top: 14px; text-align: center; font-family: var(--font-body); font-size: 13px; line-height: 1.5; }

/* DIY — light card */
.way-card.diy {
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-s);
}
.way-card.diy .tag { background: var(--mm-rose-wash); color: var(--mm-rose-deep); }
.way-card.diy h3 { color: var(--fg-1); }
.way-card.diy h3 em { color: var(--fg-impact); }
.way-card.diy .who { color: var(--fg-2); }
.way-card.diy .way-price .num { color: var(--fg-impact); }
.way-card.diy .way-price .num sup { color: var(--fg-3); }
.way-card.diy .way-price .unit { color: var(--fg-3); }
.way-card.diy .way-price .was { color: var(--fg-3); }
.way-card.diy .way-list li { color: var(--fg-1); }
.way-card.diy .way-list svg { stroke: var(--mm-rose); }
.way-card.diy .way-cta { background: var(--mm-rose); color: var(--mm-cream); box-shadow: 0 8px 24px rgba(156,73,116,0.32); }
.way-card.diy .way-cta:hover { background: var(--mm-rose-deep); }
.way-card.diy .way-foot { color: var(--fg-3); }
.way-card.diy .way-foot em { font-family: var(--font-display); font-style: italic; color: var(--fg-impact); }

/* 1:1 — dark card */
.way-card.coaching { background: var(--mm-ink); color: var(--mm-linen); box-shadow: var(--shadow-l); }
.way-card.coaching::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(156,73,116,0.32), transparent 65%);
  pointer-events: none;
}
.way-card.coaching > * { position: relative; }
.way-card.coaching .tag { background: rgba(214,177,194,0.18); color: var(--mm-rose-soft); }
.way-card.coaching h3 { color: var(--mm-cream); }
.way-card.coaching h3 em { color: var(--mm-rose-soft); }
.way-card.coaching .who { color: rgba(255,253,250,0.78); }
.way-card.coaching .way-price { border-bottom-color: rgba(255,253,250,0.14); }
.way-card.coaching .way-price .num { color: var(--mm-cream); }
.way-card.coaching .way-price .num sup { color: rgba(255,253,250,0.7); }
.way-card.coaching .way-price .unit { color: rgba(255,253,250,0.7); }
.way-card.coaching .way-list li { color: rgba(255,253,250,0.88); }
.way-card.coaching .way-list li strong { color: var(--mm-cream); }
.way-card.coaching .way-list svg { stroke: var(--mm-rose-soft); }
.way-card.coaching .way-cta { background: var(--mm-rose); color: var(--mm-cream); box-shadow: 0 8px 24px rgba(156,73,116,0.4); }
.way-card.coaching .way-cta:hover { background: var(--mm-rose-deep); }
.way-card.coaching .way-foot { color: rgba(255,253,250,0.6); }
.way-card.coaching .way-foot em { font-family: var(--font-display); font-style: italic; color: var(--mm-rose-soft); }

/* Value-anchor line above the credit note */
.ways-value {
  max-width: 760px; margin: 32px auto 0; text-align: center;
  background: var(--mm-ivory); border: 1px solid var(--border-hairline);
  border-radius: var(--r-4); padding: 24px 32px;
  box-shadow: var(--shadow-xs);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--fg-2);
}
.ways-value strong { font-weight: 600; color: var(--fg-1); }
.ways-value em { font-family: var(--font-display); font-style: italic; color: var(--fg-impact); font-weight: 500; }

/* Credit note between the two cards */
.ways-note {
  text-align: center; margin-top: 20px;
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; color: var(--fg-2);
}
.ways-note strong { font-style: normal; font-family: var(--font-body); font-weight: 600; color: var(--fg-impact); }

@media (max-width: 860px) {
  .ways-grid { grid-template-columns: 1fr; }
}

/* ---------- Comparison table ---------- */
.compare-wrap {
  margin-top: 8px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-4);
  background: var(--mm-ivory);
  overflow: hidden;
}
.compare { width: 100%; border-collapse: collapse; }
.compare thead th {
  font-family: var(--font-body); font-weight: 600;
  text-align: center; padding: 22px 20px;
  font-size: 15px; color: var(--fg-1);
  border-bottom: 1px solid var(--border-strong);
  background: var(--mm-cream);
}
.compare thead th:first-child { text-align: left; }
.compare thead th .sub {
  display: block; font-family: var(--font-display); font-style: italic;
  font-weight: 500; font-size: 14px; color: var(--fg-impact); margin-top: 4px;
}
.compare thead th.col-coaching { background: var(--mm-rose-wash); }
.compare tbody td {
  padding: 15px 20px; font-family: var(--font-body); font-size: 15px;
  color: var(--fg-1); border-bottom: 1px solid var(--border-hairline);
  text-align: center;
}
.compare tbody td:first-child { text-align: left; color: var(--fg-2); }
.compare tbody td.col-coaching { background: rgba(238,221,229,0.4); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--mm-rose); font-weight: 700; font-size: 17px; }
.compare .no { color: var(--mm-ink-4); font-size: 16px; }
.compare tr.row-invest td {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--fg-1); background: var(--mm-cream); padding-top: 22px; padding-bottom: 22px;
}
.compare tr.row-invest td:first-child { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); font-weight: 500; }
.compare tr.row-invest td.col-coaching { background: var(--mm-rose-wash); color: var(--fg-impact); }
.compare-foot {
  text-align: center; margin-top: 20px;
  font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--fg-3);
}
@media (max-width: 640px) {
  .compare thead th, .compare tbody td { padding: 13px 12px; font-size: 13px; }
  .compare tr.row-invest td { font-size: 18px; }
  .compare thead th .sub { font-size: 12px; }
}
