/* ============================================================
   Mr Mealprep — landing page
   Palette and type come from the app icon / logo.
   ============================================================ */

:root {
  --cream:      #FAF3E6;  /* page background */
  --cream-card: #FFFCF4;  /* raised surfaces */
  --cream-warm: #F7EEE0;  /* text on dark */
  --input:      #F4EEE2;
  --track:      #F1E8D8;
  --selected:   #FFF4E8;

  --ink:        #2E1A12;
  --muted:      #5C4438;
  --faint:      #8A6B58;

  --orange:     #F97C1B;
  --mint:       #B8D8D4;
  --mint-soft:  #C9E1DD;

  --ease:       cubic-bezier(.2, .8, .2, 1);
  --pop:        cubic-bezier(.2, .9, .3, 1.3);
  --wrap:       1180px;
}

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

/* Author `display` rules would otherwise beat the UA's [hidden] rule. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Nunito, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--orange); }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--ink); }

button, input { font-family: inherit; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 96px 28px; }
.wrap--narrow { max-width: 900px; }

/* ── Keyframes ─────────────────────────────────────────────── */

@keyframes mmpFloat    { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes mmpRise     { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
@keyframes mmpPop      { 0% { transform: scale(.4); opacity: 0 } 60% { transform: scale(1.14) } 100% { transform: scale(1); opacity: 1 } }
@keyframes mmpGrow     { from { transform: scaleX(0) } to { transform: scaleX(1) } }
@keyframes mmpMarquee  { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes mmpPulse    { 0%,100% { box-shadow: 0 0 0 4px rgba(249,124,27,.22) } 50% { box-shadow: 0 0 0 9px rgba(249,124,27,.05) } }
@keyframes mmpSlideDown{ from { opacity: 0; transform: translateY(-8px) } to { opacity: 1; transform: none } }
@keyframes mmpDrift    { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(-18px,22px) scale(1.06) } }
@keyframes mmpDropIn   { from { opacity: 0; transform: translateY(-100%) } to { opacity: 1; transform: none } }
@keyframes mmpZoomIn   { from { opacity: 0; transform: translateY(60px) scale(.94) } to { opacity: 1; transform: none } }
@keyframes mmpIconIn   { 0% { opacity: 0; transform: scale(.5) rotate(-8deg) } 55% { opacity: 1; transform: scale(1.08) rotate(2deg) } 100% { opacity: 1; transform: scale(1) rotate(0) } }
@keyframes mmpIconOut  { from { opacity: 1; transform: scale(1) } to { opacity: 0; transform: scale(1.5) } }
@keyframes mmpVeilOut  { from { opacity: 1 } to { opacity: 0 } }
@keyframes mmpRing     { from { transform: scale(.6); opacity: .5 } to { transform: scale(2.6); opacity: 0 } }
@keyframes mmpSwipe    { from { opacity: 0; transform: translateX(16px) } to { opacity: 1; transform: none } }

/* ── Intro veil ────────────────────────────────────────────── */

.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  display: grid; place-items: center;
  pointer-events: none;
  animation: mmpVeilOut .55s ease .85s both;
}
.intro__stage { position: relative; display: grid; place-items: center; }
.intro__ring {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--orange);
  animation: mmpRing 1s ease-out .25s both;
}
.intro__icon {
  width: 132px; height: 132px; border-radius: 32px;
  animation: mmpIconIn .6s var(--pop) both, mmpIconOut .5s ease .85s both;
}

/* ── Header ────────────────────────────────────────────────── */

.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(250, 243, 230, .86);
  border-bottom: 1px solid rgba(46, 26, 18, .08);
  transition: background .3s ease, box-shadow .3s ease;
  animation: mmpDropIn .6s var(--ease) .95s both;
}
.header.is-scrolled {
  background: rgba(250, 243, 230, .94);
  box-shadow: 0 10px 30px -18px rgba(46, 26, 18, .45);
}
.header__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__logo img {
  height: 38px; width: auto;
  transition: transform .5s var(--ease);
}
.header__logo:hover img { transform: rotate(-2deg) scale(1.04); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-weight: 700; font-size: 15px; color: var(--ink); }
.nav__link:hover { color: var(--orange); }
.nav__cta {
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  transition: background .25s ease, transform .25s var(--ease);
}
.nav__cta:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  background-color: var(--cream);
  background-image: radial-gradient(rgba(46, 26, 18, .09) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  overflow: hidden;
}
.hero__blob {
  position: absolute; top: -120px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: var(--mint-soft); opacity: .55;
  animation: mmpDrift 18s ease-in-out infinite;
}
.hero__inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  padding: 96px 28px 88px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 22px;
}
.eyebrow__rule { width: 26px; height: 3px; background: var(--orange); border-radius: 2px; }

.hero__title {
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: .96; letter-spacing: -.02em;
  margin-bottom: 22px; text-wrap: balance;
}
.hero__title span { display: block; }

.rule {
  width: 96px; height: 7px; background: var(--orange);
  border-radius: 4px; margin-bottom: 26px; transform-origin: left;
}

.hero__lede {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.5; font-weight: 600;
  color: var(--muted); margin-bottom: 34px; max-width: 520px; text-wrap: pretty;
}

.hero__aside {
  display: inline-block; margin-top: 18px;
  font-weight: 800; font-size: 16px; color: var(--muted);
  border-bottom: 2px solid rgba(249, 124, 27, .45); padding-bottom: 2px;
}
.hero__aside:hover { color: var(--orange); border-color: var(--orange); }

/* Waitlist card */
.waitlist {
  background: #fff; border: 2px solid var(--ink); border-radius: 22px;
  padding: 18px; box-shadow: 8px 8px 0 rgba(46, 26, 18, .12); max-width: 520px;
}
.waitlist__form { display: flex; gap: 10px; }
.waitlist__form--wrap { flex-wrap: wrap; }
.waitlist__input {
  flex: 1; min-width: 0; border: none; outline: none;
  background: var(--input); border-radius: 14px;
  padding: 16px 18px; font-size: 17px; font-weight: 700; color: var(--ink);
}
.waitlist__form--wrap .waitlist__input { min-width: 200px; }
.waitlist__btn {
  flex: none; background: var(--ink); color: #fff; border: none;
  border-radius: 14px; padding: 16px 24px;
  font-size: 17px; font-weight: 900; cursor: pointer;
  transition: background .25s ease, transform .2s var(--ease);
}
.waitlist__btn:hover { background: var(--orange); }
.waitlist__btn:active { transform: scale(.96); }

.waitlist__note {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 4px 2px; font-weight: 700; font-size: 14px; color: var(--muted);
}
.dot {
  width: 9px; height: 9px; flex: none; border-radius: 50%;
  background: var(--orange); animation: mmpPulse 2.4s ease-in-out infinite;
}

.waitlist__done { display: flex; align-items: center; gap: 14px; padding: 6px 6px 6px 4px; }
.waitlist__check {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 900; font-size: 22px;
  display: grid; place-items: center;
  animation: mmpPop .5s var(--pop) both;
}
.waitlist__done-title { font-weight: 900; font-size: 19px; }
.waitlist__done-sub { font-weight: 600; font-size: 15px; color: var(--muted); }

/* Phone */
.hero__device { position: relative; display: flex; justify-content: center; }
.hero__glow {
  position: absolute; top: 40px;
  width: 340px; height: 340px; border-radius: 50%;
  background: var(--orange); opacity: .16;
}
.phone {
  position: relative; width: 300px; height: 610px;
  background: var(--ink); border-radius: 44px; padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(46, 26, 18, .5);
  animation: mmpZoomIn .9s var(--ease) 1s both, mmpFloat 7s ease-in-out 1.9s infinite;
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 34px; overflow: hidden; background: var(--input);
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }

/* ── Marquee ───────────────────────────────────────────────── */

.marquee { background: var(--ink); color: var(--cream-warm); overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; width: max-content; animation: mmpMarquee 34s linear infinite; }
.marquee__group {
  display: flex; align-items: center; gap: 40px;
  padding-right: 40px; font-weight: 800; font-size: 15px; white-space: nowrap;
}
.marquee__group i { color: var(--orange); font-style: normal; }

/* ── Section furniture ─────────────────────────────────────── */

.band {
  background: var(--cream-card);
  border-top: 2px solid rgba(46, 26, 18, .1);
  border-bottom: 2px solid rgba(46, 26, 18, .1);
}
.how { background: var(--cream); }
.faq { background: var(--cream); }

.section-head h2 {
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-head p { font-weight: 600; font-size: clamp(17px, 2vw, 19px); color: var(--muted); }

.section-head--center { text-align: center; margin-bottom: 40px; }
.section-head--center p { max-width: 560px; margin: 0 auto; text-wrap: pretty; }

.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 48px;
}
.section-head--split h2 { max-width: 620px; line-height: 1.02; margin-bottom: 0; }

.kicker {
  font-weight: 800; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--faint);
}
.kicker--sm { font-size: 13px; letter-spacing: .1em; margin-bottom: 10px; }
.kicker--orange { color: var(--orange); }

/* ── Calculator ────────────────────────────────────────────── */

.calc {
  max-width: 720px; margin: 0 auto;
  background: var(--cream); border: 2px solid var(--ink); border-radius: 26px;
  padding: 40px 36px; box-shadow: 10px 10px 0 rgba(46, 26, 18, .12);
}

.calc__progress { margin-bottom: 30px; }
.calc__step {
  font-weight: 800; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 12px;
}
.calc__track { height: 6px; border-radius: 4px; background: var(--track); overflow: hidden; }
.calc__bar {
  height: 100%; border-radius: 4px; background: var(--orange);
  width: 25%; transition: width .4s var(--ease);
}

.calc__screen { animation: mmpSwipe .3s var(--ease) both; }
.calc__screen h3 {
  font-weight: 900; font-size: clamp(23px, 3.4vw, 28px);
  letter-spacing: -.02em; margin-bottom: 22px;
}

.stack { display: flex; flex-direction: column; gap: 12px; }
.stack--tight { gap: 10px; }

.goal {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left; padding: 20px 22px; border-radius: 20px;
  border: 2px solid var(--ink); background: var(--cream-card); color: var(--ink);
  box-shadow: 6px 6px 0 rgba(46, 26, 18, .1);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.goal.is-on {
  border-color: var(--orange); background: var(--selected);
  box-shadow: 6px 6px 0 rgba(249, 124, 27, .28); transform: translateY(-2px);
}
.goal__title { display: block; font-weight: 900; font-size: 20px; margin-bottom: 4px; }
.goal__sub   { display: block; font-weight: 600; font-size: 16px; color: var(--muted); }

.tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 900; font-size: 16px;
  background: var(--orange); color: #fff;
  opacity: 0; transform: scale(.5);
  transition: opacity .2s ease, transform .25s cubic-bezier(.2, .9, .3, 1.4);
}
.goal.is-on .tick { opacity: 1; transform: scale(1); }

.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.field--wide { grid-column: 1 / -1; }
.field--narrow { max-width: 280px; }
.field__label { font-weight: 800; font-size: 14px; color: var(--faint); margin-bottom: 9px; }

.segs { display: flex; gap: 8px; flex-wrap: wrap; }
.seg {
  cursor: pointer; font-weight: 800; font-size: 15px;
  padding: 12px 18px; border-radius: 14px;
  border: 2px solid rgba(46, 26, 18, .25); background: var(--cream-card); color: var(--muted);
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.seg.is-on { border-color: var(--orange); background: var(--selected); color: var(--ink); }

.input {
  width: 100%; border: 2px solid var(--ink); background: var(--cream-card);
  border-radius: 14px; padding: 14px 16px;
  font-size: 18px; font-weight: 800; color: var(--ink); outline: none;
}
.input:focus { border-color: var(--orange); }

.act {
  width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  cursor: pointer; text-align: left; padding: 14px 18px; border-radius: 16px;
  border: 2px solid var(--ink); background: var(--cream-card); color: var(--ink);
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.act.is-on { border-color: var(--orange); background: var(--selected); transform: translateY(-2px); }
.act__title { font-weight: 900; font-size: 18px; }
.act__sub   { font-weight: 600; font-size: 15px; color: var(--muted); }

.calc__fine { font-weight: 600; font-size: 14px; color: var(--faint); margin-top: 18px; text-wrap: pretty; }

.calc__nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 30px;
}
.btn-ghost {
  background: none; border: none; font-weight: 900; font-size: 16px;
  color: var(--faint); padding: 12px 6px; cursor: pointer; transition: color .25s ease;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost[disabled] { cursor: not-allowed; opacity: .35; }

.btn-orange {
  background: var(--orange); color: #fff; border: none; border-radius: 14px;
  padding: 15px 26px; font-size: 17px; font-weight: 900; cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
}
.btn-orange:hover { transform: translateY(-2px); }
.btn-orange[disabled] { cursor: not-allowed; opacity: .4; transform: none; }

.btn-outline {
  background: none; border: 2px solid rgba(46, 26, 18, .25); color: var(--muted);
  border-radius: 14px; padding: 12px 20px; font-size: 15px; font-weight: 900; cursor: pointer;
  transition: border-color .25s ease, color .25s ease, transform .25s var(--ease);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.calc__calculating {
  display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 40px 0;
}
.pulse-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); animation: mmpPulse 1.2s ease-in-out infinite;
}
.calc__calcline {
  font-weight: 800; font-size: 19px; color: var(--muted);
  text-align: center; min-height: 26px;
}

.result__head { text-align: center; }
.result__head .kicker { margin-bottom: 14px; }
.result__kcal {
  font-weight: 900; font-size: clamp(48px, 8vw, 72px);
  line-height: 1; letter-spacing: -.03em; color: var(--orange);
}
.result__goal {
  font-weight: 700; font-size: 19px; color: var(--muted);
  margin: 14px auto 6px; max-width: 440px; text-wrap: pretty;
}
.result__tdee { font-weight: 700; font-size: 15px; color: var(--faint); }

.result__lockwrap { position: relative; margin-top: 34px; }
.result__locked { transition: filter .5s ease; }
.is-locked .result__locked { filter: blur(9px); user-select: none; pointer-events: none; }
.result__lock {
  position: absolute; inset: 0; display: none; place-items: center;
  background: rgba(250, 243, 230, .35); border-radius: 20px;
}
.is-locked .result__lock { display: grid; }
.result__lock-badge {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--orange); display: grid; place-items: center;
  box-shadow: 0 10px 24px -10px rgba(46, 26, 18, .6);
}

.macros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.macro {
  background: var(--cream-card); border: 2px solid var(--ink);
  border-radius: 18px; padding: 20px 18px;
}
.macro__val { font-weight: 900; font-size: 32px; letter-spacing: -.02em; }
.macro__val em { font-size: 18px; color: inherit; }

.timecard {
  margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--mint-soft); border: 2px solid var(--ink); border-radius: 18px; padding: 20px 22px;
}
.timecard__val { font-weight: 900; font-size: 26px; letter-spacing: -.02em; }
.timecard__note {
  font-weight: 700; font-size: 15px; color: var(--muted);
  max-width: 220px; text-align: right; text-wrap: pretty;
}

/* Macro cards pop in once unlocked */
.is-unlocked .macro:nth-child(1) { animation: mmpPop .5s cubic-bezier(.2,.9,.3,1.2)   0ms both; }
.is-unlocked .macro:nth-child(2) { animation: mmpPop .5s cubic-bezier(.2,.9,.3,1.2)  90ms both; }
.is-unlocked .macro:nth-child(3) { animation: mmpPop .5s cubic-bezier(.2,.9,.3,1.2) 180ms both; }
.is-unlocked .timecard           { animation: mmpPop .5s cubic-bezier(.2,.9,.3,1.2) 270ms both; }

.unlock {
  margin-top: 28px; background: var(--cream-card);
  border: 2px solid var(--ink); border-radius: 20px; padding: 26px 24px;
}
.unlock h4 { font-weight: 900; font-size: 22px; letter-spacing: -.02em; margin-bottom: 8px; }
.unlock > p { font-weight: 600; font-size: 16px; color: var(--muted); margin-bottom: 18px; text-wrap: pretty; }
.unlock .waitlist__btn:hover { transform: translateY(-2px); }

.unlocked {
  margin-top: 28px; display: flex; align-items: center; gap: 14px;
  background: var(--mint); border: 2px solid var(--ink); border-radius: 20px; padding: 20px 22px;
}
.unlocked p { font-weight: 700; font-size: 16px; color: var(--ink); text-wrap: pretty; }
.unlocked .waitlist__check { width: 40px; height: 40px; font-size: 20px; }

.result__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 26px; flex-wrap: wrap;
}
.result__foot p { font-weight: 600; font-size: 13px; color: var(--faint); max-width: 380px; }

/* ── How it works ──────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--cream-card); border: 2px solid var(--ink); border-radius: 24px;
  padding: 32px 30px 34px; box-shadow: 6px 6px 0 rgba(46, 26, 18, .1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translate(-4px, -6px); box-shadow: 12px 14px 0 rgba(249, 124, 27, .28); }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 900; font-size: 20px;
  display: grid; place-items: center; margin-bottom: 22px;
}
.step h3 { font-weight: 900; font-size: 24px; line-height: 1.15; margin-bottom: 12px; }
.step p  { font-weight: 600; font-size: 17px; line-height: 1.5; color: var(--muted); text-wrap: pretty; }

.how__bottom { margin-top: 22px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.panel {
  background: var(--mint); border: 2px solid var(--ink); border-radius: 24px;
  padding: 34px 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.panel h3 { font-weight: 900; font-size: clamp(24px, 3.2vw, 30px); line-height: 1.1; max-width: 420px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--ink); color: var(--cream-warm);
  font-weight: 800; font-size: 14px; padding: 9px 16px; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s ease;
}
.tag:hover { transform: translateY(-3px) rotate(-1.5deg); background: var(--orange); }

.photo {
  position: relative; border: 2px solid var(--ink); border-radius: 24px;
  overflow: hidden; min-height: 280px; background: var(--input);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Pricing ───────────────────────────────────────────────── */

.billing {
  display: inline-flex; background: var(--track);
  border-radius: 999px; padding: 5px; gap: 4px; margin-top: 26px;
}
.billing__tab {
  border: none; cursor: pointer; font-weight: 900; font-size: 15px;
  padding: 11px 24px; border-radius: 999px;
  background: transparent; color: var(--muted); transform: scale(.97);
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.billing__tab:hover { opacity: .85; }
.billing__tab.is-on { background: var(--ink); color: var(--cream-warm); transform: scale(1); }

.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }

.plan {
  background: var(--cream); border: 2px solid var(--ink); border-radius: 26px;
  padding: 38px 34px 34px; transition: transform .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); }
.plan .kicker { margin-bottom: 20px; }

.plan__price {
  display: flex; align-items: flex-end; gap: 8px; flex-wrap: wrap;
  font-weight: 900; font-size: clamp(40px, 5.5vw, 52px); line-height: 1;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.plan__amount { white-space: nowrap; }
.plan__price em {
  font-weight: 800; font-size: 18px; color: var(--muted); padding-bottom: 6px;
}
.plan__sub { font-weight: 600; font-size: 16px; color: var(--muted); margin-bottom: 26px; }

.plan__list {
  display: flex; flex-direction: column; gap: 12px;
  font-weight: 700; font-size: 16px; margin-bottom: 30px;
}
.plan__list li { display: flex; gap: 11px; }
.plan__list li::before { content: "→"; color: var(--orange); font-weight: 900; }

.plan__cta {
  display: block; text-align: center;
  border: 2px solid var(--ink); color: var(--ink);
  font-weight: 900; font-size: 17px; padding: 15px; border-radius: 14px;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.plan__cta:hover { background: var(--ink); color: var(--cream); }

.plan--founder {
  position: relative; background: var(--ink); color: var(--cream-warm);
  box-shadow: 10px 10px 0 rgba(249, 124, 27, .35); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.plan--founder:hover { transform: translateY(-8px); box-shadow: 14px 18px 0 rgba(249, 124, 27, .5); }
.plan__blob {
  position: absolute; bottom: -90px; right: -70px;
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--orange); opacity: .22;
}
.plan__body { position: relative; }
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.plan__head .kicker { margin-bottom: 0; }
.badge {
  flex: none; background: var(--orange); color: #fff;
  font-weight: 900; font-size: 12px; letter-spacing: .06em;
  padding: 6px 11px; border-radius: 999px;
}
.plan__price--founder { color: var(--orange); gap: 10px; }
.plan__price--founder em { color: var(--cream-warm); opacity: .75; }
.plan__price--founder s {
  font-weight: 800; font-size: 18px; padding-bottom: 6px;
  opacity: .5; color: var(--cream-warm); white-space: nowrap;
}
.plan--founder .plan__sub { color: var(--cream-warm); opacity: .8; }
.plan__cta--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.plan__cta--orange:hover { background: var(--cream-warm); color: var(--ink); border-color: var(--cream-warm); }

.plans__fine { text-align: center; font-weight: 700; font-size: 14px; color: var(--faint); margin-top: 26px; }

/* ── FAQ ───────────────────────────────────────────────────── */

.faq__title {
  font-weight: 900; font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05; letter-spacing: -.02em; margin-bottom: 40px;
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }

.qa {
  background: var(--cream-card); border: 2px solid var(--ink);
  border-radius: 18px; overflow: hidden; transition: border-color .25s ease;
}
.qa:hover { border-color: var(--orange); }
.qa h3 { font: inherit; }
.qa__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer;
  padding: 22px 24px; text-align: left; color: var(--ink);
  font-weight: 900; font-size: 19px;
}
.qa__icon {
  flex: none; font-weight: 900; font-size: 26px; line-height: 1;
  color: var(--ink); transition: transform .2s ease, color .2s ease;
}
.qa.is-open .qa__icon { color: var(--orange); transform: rotate(45deg); }

.qa__a { display: none; padding: 0 24px 24px; animation: mmpSlideDown .3s var(--ease) both; }
.qa.is-open .qa__a { display: block; }
.qa__a p {
  font-weight: 600; font-size: 17px; line-height: 1.55;
  color: var(--muted); max-width: 680px; text-wrap: pretty;
}

/* ── Final CTA + footer ────────────────────────────────────── */

.signup { position: relative; background: var(--ink); color: var(--cream-warm); overflow: hidden; }
.signup__blob {
  position: absolute; top: -140px; left: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--orange); opacity: .18;
  animation: mmpDrift 22s ease-in-out infinite;
}
.signup__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: 92px 28px 84px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.signup__title {
  font-weight: 900; font-size: clamp(34px, 5.6vw, 52px);
  line-height: 1; letter-spacing: -.02em; margin-bottom: 18px;
}
.signup__lede {
  font-weight: 600; font-size: clamp(17px, 2vw, 19px); line-height: 1.5;
  opacity: .82; max-width: 440px; text-wrap: pretty;
}
.signup__form {
  display: flex; gap: 10px;
  background: rgba(247, 238, 224, .08);
  border: 2px solid rgba(247, 238, 224, .25); border-radius: 22px; padding: 12px;
}
.signup__input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  padding: 16px 14px; font-size: 17px; font-weight: 700; color: var(--cream-warm);
}
.signup__input::placeholder { color: rgba(247, 238, 224, .5); }
.signup__btn {
  flex: none; background: var(--orange); color: #fff; border: none;
  border-radius: 14px; padding: 16px 24px; font-size: 17px; font-weight: 900; cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .2s var(--ease);
}
.signup__btn:hover { background: var(--cream-warm); color: var(--ink); }
.signup__btn:active { transform: scale(.96); }
.signup__note { margin: 14px 6px 0; font-weight: 700; font-size: 14px; opacity: .7; }

.signup__done {
  background: rgba(247, 238, 224, .08);
  border: 2px solid rgba(247, 238, 224, .25); border-radius: 22px; padding: 30px;
}
.signup__done-title { font-weight: 900; font-size: 26px; margin-bottom: 8px; }
.signup__done-sub { font-weight: 600; font-size: 17px; opacity: .8; }

.footer { position: relative; border-top: 1px solid rgba(247, 238, 224, .15); }
.footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 26px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer__brand span { font-weight: 800; font-size: 15px; opacity: .7; }
.footer__links { display: flex; gap: 24px; font-weight: 800; font-size: 15px; flex-wrap: wrap; }
.footer__links a { color: var(--cream-warm); opacity: .7; }
.footer__links a:hover { opacity: 1; color: var(--orange); }

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; }
  .phone { width: 260px; height: 528px; }
  .hero__lede, .waitlist { max-width: none; }
  .signup__inner { grid-template-columns: 1fr; gap: 40px; }
  .nav__link { display: none; }
  .wrap { padding: 72px 22px; }
  .calc { padding: 28px 20px; }
  .macro { padding: 16px 12px; }
  .macro__val { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .how__bottom { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .timecard { flex-direction: column; align-items: flex-start; gap: 10px; }
  .timecard__note { text-align: left; max-width: none; }
}

@media (max-width: 620px) {
  .header__inner { padding: 12px 18px; }
  .header__logo img { height: 32px; }
  .hero__inner { padding: 56px 18px 64px; }
  .waitlist__form { flex-direction: column; }
  .waitlist__btn { width: 100%; }
  .signup__form { flex-direction: column; }
  .signup__btn { width: 100%; }
  .macros { grid-template-columns: 1fr; }
  .goal { padding: 16px 18px; }
  .calc__nav { gap: 10px; }
  .btn-orange { padding: 14px 20px; font-size: 16px; }
  .signup__inner { padding: 72px 18px 64px; }
  .phone { width: 232px; height: 472px; }
  .hero__blob { width: 320px; height: 320px; top: -90px; right: -120px; }
  .footer__inner { padding: 22px 18px; }
}

/* ── Reveal-on-scroll + reduced motion ─────────────────────── */

[data-reveal] { will-change: transform, opacity; }
.js [data-reveal]:not(.is-shown) { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; }
  .intro { display: none; }
}
