/* ============================================================
   quiz.css  Lil' Noms onboarding quiz funnel
   Uses tokens.css variables. Warm Kitchen system.
   ============================================================ */

:root {
  --coral-dark: #d94f44;
  --q-max: 480px;
}

/* page frame */
.quiz-body { background: var(--cream-deep); margin: 0; }
.quiz-app {
  max-width: var(--q-max);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 520px) {
  .quiz-app { box-shadow: 0 0 60px rgba(39,45,69,0.10); }
}

/* brand bar */
.quiz-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 0 4px;
}
.quiz-brand img { height: 26px; width: auto; display: block; }

/* ---------------- chrome: back + progress ---------------- */
.q-top {
  position: sticky; top: 0; z-index: 20;
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 22px 10px;
  background: linear-gradient(var(--bg) 80%, rgba(255,252,246,0));
}
.q-topbar { display: flex; align-items: center; gap: 10px; }
.q-start { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: #FFF1EE; display: grid; place-items: center; }
.q-start::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.q-back {
  flex: 0 0 auto; width: 34px; height: 34px; border: none; background: transparent;
  color: var(--ink); cursor: pointer; border-radius: var(--r-pill);
  display: grid; place-items: center;
}
.q-back svg { width: 22px; height: 22px; }
.q-back--ph { background: transparent; }
.q-back:hover { background: var(--cream); }
.q-progress { flex: 1 1 auto; height: 7px; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; }
.q-progress__fill { height: 100%; background: var(--coral); border-radius: var(--r-pill); transition: width 0.5s cubic-bezier(.22,.9,.3,1); }

/* ---------------- stage + body ---------------- */
.q-stage { flex: 1 1 auto; display: flex; flex-direction: column; }
.q-body {
  flex: 1 1 auto;
  width: 100%;
  padding: 24px 22px 32px;
  display: flex; flex-direction: column;
}
.q-stage--intro .q-body { padding-top: 30px; }
.q-stage--paywall .q-body { padding: 0; }

/* enter animation */
.q-enter .q-body { opacity: 0; transform: translateY(14px); }
.q-body { transition: opacity .32s ease, transform .32s ease; opacity: 1; transform: none; }

/* ---------------- typography ---------------- */
.q-eyebrow { font: 700 13px/1.2 var(--font-body); letter-spacing: .04em; text-transform: uppercase; color: var(--coral); margin: 4px 0 10px; }
.q-eyebrow--center { text-align: center; }
.q-title { font: 600 26px/1.18 var(--font-display); color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; }
.q-sub { font: 400 15.5px/1.5 var(--font-body); color: #5b6072; margin: 0 0 18px; }

/* ---------------- CTA ---------------- */
.q-cta {
  font: 800 17px/1 var(--font-body); color: #fff; border: none; cursor: pointer;
  background: linear-gradient(180deg, var(--coral), var(--coral-dark));
  border-radius: var(--r-pill); padding: 17px 28px;
  box-shadow: 0 10px 22px rgba(247,102,88,.35);
  transition: transform .12s ease, box-shadow .18s ease, opacity .18s ease;
}
.q-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(247,102,88,.42); }
.q-cta:active { transform: translateY(1px) scale(.99); }
.q-cta--block { display: block; width: 100%; }
.q-cta.is-disabled, .q-cta:disabled { opacity: .4; box-shadow: none; cursor: not-allowed; transform: none; }
.q-cta[data-loading="1"] { opacity: .8; }

.q-sticky {
  position: sticky; bottom: 0; margin-top: auto; padding: 16px 0 8px;
  background: linear-gradient(rgba(255,252,246,0), var(--bg) 36%);
}

.q-fineprint { text-align: center; font: 400 12.5px/1.4 var(--font-body); color: var(--muted); margin: 12px 0 0; }

/* ---------------- icons ---------------- */
.q-ic { display: inline-grid; place-items: center; }
.q-ic svg { width: 22px; height: 22px; }

/* ---------------- options (single/multi) ---------------- */
.q-opts { display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }
.q-opt {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: left;
  background: var(--card); border: 2px solid var(--border); border-radius: var(--r-xl);
  padding: 16px 16px; cursor: pointer; color: var(--ink);
  font: 600 16px/1.3 var(--font-body);
  box-shadow: var(--shadow-card);
  transition: border-color .16s ease, transform .12s ease, background .16s ease;
}
.q-opt:hover { transform: translateY(-1px); }
.q-opt__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; background: #FFF1EE; color: var(--coral); display: grid; place-items: center; }
.q-opt__label { flex: 1 1 auto; }
.q-opt.is-on { border-color: var(--coral); background: #FFF6F4; }
.q-opt.is-on .q-opt__ic { background: var(--coral); color: #fff; }
/* multi check */
.q-opt__check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: var(--r-pill); border: 2px solid var(--cream-deep); position: relative; transition: all .16s ease; }
.q-opt--multi.is-on .q-opt__check { background: var(--coral); border-color: var(--coral); }
.q-opt--multi.is-on .q-opt__check::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

/* ---------------- intro ---------------- */
.q-intro { padding-top: 8px; }
.q-intro__hero { position: relative; display: flex; justify-content: center; gap: 10px; margin: 6px 0 18px; }
.q-ba { position: relative; width: 132px; height: 150px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-raised); transform: rotate(-3deg); }
.q-ba--after { transform: rotate(3deg); margin-top: 12px; }
.q-ba img { width: 100%; height: 100%; object-fit: cover; }
.q-ba__tag { position: absolute; left: 8px; bottom: 8px; background: rgba(255,255,255,.92); color: var(--ink); font: 700 11px/1 var(--font-body); padding: 5px 9px; border-radius: var(--r-pill); }
.q-ba--after .q-ba__tag { background: var(--success); color: #fff; }
.q-intro__mascot { position: absolute; right: 6px; bottom: -8px; width: 72px; height: 72px; animation: q-bob 3.4s ease-in-out infinite; filter: drop-shadow(0 6px 10px rgba(39,45,69,.18)); }
.q-intro .q-title { text-align: center; }
.q-intro .q-sub { text-align: center; }
.q-intro__incl-h { font: 800 12px/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 6px 0 10px; }
.q-intro__list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.q-intro__list li { display: flex; align-items: center; gap: 11px; font: 600 15px/1.35 var(--font-body); color: var(--ink); opacity: 0; transform: translateX(-8px); animation: q-slidein .5s ease forwards; }
.q-intro__list li .q-ic { color: var(--success); background: var(--success-surface); border-radius: var(--r-pill); width: 28px; height: 28px; }
.q-intro__list li .q-ic svg { width: 17px; height: 17px; }

/* ---------------- info ---------------- */
.q-info { text-align: center; padding-top: 18px; display: flex; flex-direction: column; min-height: 70vh; }
.q-info__badge { width: 76px; height: 76px; border-radius: var(--r-pill); margin: 0 auto 18px; background: var(--info-surface); color: var(--info); display: grid; place-items: center; }
.q-info__badge svg { width: 40px; height: 40px; }
.q-info__body { font: 400 16px/1.55 var(--font-body); color: #50566a; margin: 0 auto 18px; max-width: 30ch; }
.q-info__seal { display: inline-flex; align-items: center; gap: 8px; background: var(--cream); border-radius: var(--r-pill); padding: 9px 16px; font: 700 13px/1 var(--font-body); color: var(--ink); margin: 0 auto 22px; }
.q-info__seal .q-ic { color: var(--success); }
.q-info .q-cta { margin-top: auto; }

/* ---------------- social ---------------- */
.q-social { text-align: center; padding-top: 14px; display: flex; flex-direction: column; min-height: 70vh; }
.q-world { width: 100%; max-width: 340px; margin: 4px auto 10px; display: block; }
.q-world__dots circle { fill: var(--coral); opacity: 0; animation: q-dotin .5s ease forwards; }
@keyframes q-dotin { to { opacity: 1; } }
.q-social__h { font: 600 22px/1.2 var(--font-display); color: var(--ink); margin: 8px 0 4px; }
.q-social__stat { font: 800 44px/1 var(--font-display); color: var(--coral); margin: 6px 0 2px; }
.q-social__sub { font: 400 15px/1.5 var(--font-body); color: #50566a; max-width: 28ch; margin: 0 auto 20px; }
.q-social .q-cta { margin-top: auto; }

/* ---------------- slider ---------------- */
.q-slider { margin: 22px 0 8px; }
.q-slider__val { text-align: center; }
.q-slider__num { font: 800 56px/1 var(--font-display); color: var(--coral); }
.q-slider__pct { font: 800 22px/1 var(--font-display); color: var(--coral); }
.q-range { -webkit-appearance: none; appearance: none; width: 100%; height: 14px; border-radius: var(--r-pill); margin: 26px 0 10px;
  background: linear-gradient(90deg, var(--coral) var(--val,45%), var(--cream-deep) var(--val,45%)); }
.q-range::-webkit-slider-thumb { -webkit-appearance: none; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 4px solid var(--coral); box-shadow: 0 4px 10px rgba(39,45,69,.2); cursor: grab; }
.q-range::-moz-range-thumb { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 4px solid var(--coral); box-shadow: 0 4px 10px rgba(39,45,69,.2); cursor: grab; }
.q-slider__labels { display: flex; justify-content: space-between; font: 700 13px/1 var(--font-body); color: var(--muted); }

/* ---------------- plate ---------------- */
.q-plate { position: relative; width: 230px; height: 230px; margin: 14px auto 6px; }
.q-plate__svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.q-plate__ring { fill: none; stroke: var(--cream-deep); stroke-width: 6; }
.q-plate__ringfill { fill: none; stroke: var(--success); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset .6s cubic-bezier(.22,.9,.3,1); }
.q-plate__base { fill: #fff; stroke: var(--cream-deep); stroke-width: 1.5; }
.q-plate__center { fill: #fff; stroke: var(--cream-deep); stroke-width: 1.5; }
.q-wedge { fill: var(--cream); stroke: #fff; stroke-width: 2; cursor: pointer; transition: fill .25s ease, transform .25s ease; transform-origin: 90px 90px; }
.q-wedge.is-on { fill: var(--c); }
.q-plate__score { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; transform: none; pointer-events: none; }
.q-plate__balance { font: 800 34px/1 var(--font-display); color: var(--ink); }
.q-plate__score small { display: block; font: 700 11px/1 var(--font-body); color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.q-platechips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0 4px; }
.q-platechip { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 12px 4px; background: var(--card); border: 2px solid var(--border); border-radius: var(--r-lg); cursor: pointer; color: var(--ink); font: 700 12.5px/1 var(--font-body); box-shadow: var(--shadow-card); transition: all .16s ease; }
.q-platechip .q-ic { color: var(--c); }
.q-platechip.is-on { border-color: var(--c); background: color-mix(in srgb, var(--c) 10%, #fff); }

/* ---------------- fit chart ---------------- */
.q-fit { text-align: center; padding-top: 10px; display: flex; flex-direction: column; min-height: 64vh; }
.q-fit__chart { width: 100%; max-width: 340px; margin: 4px auto 6px; }
.q-fit__axis { stroke: var(--cream-deep); stroke-width: 1.5; }
.q-fit__avg { fill: none; stroke: var(--muted); stroke-width: 3; stroke-dasharray: 4 5; }
.q-fit__ours { fill: none; stroke: var(--coral); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 600; stroke-dashoffset: 600; animation: q-draw 1.3s ease forwards .2s; }
.q-fit__dot { fill: var(--coral); opacity: 0; animation: q-pop .4s ease forwards 1.4s; }
.q-fit__lblours { fill: var(--coral); font: 700 12px var(--font-body); }
.q-fit__lblavg { fill: var(--muted); font: 700 12px var(--font-body); }
.q-fit__h { font: 600 22px/1.25 var(--font-display); color: var(--ink); margin: 8px 0 6px; }
.q-fit__h .q-countup { color: var(--coral); }
.q-fit .q-cta { margin-top: auto; }

/* ---------------- fields (email/name) ---------------- */
.q-field { margin: 6px 0 8px; }
.q-input { width: 100%; box-sizing: border-box; font: 600 18px/1.3 var(--font-body); color: var(--ink); padding: 17px 18px; border: 2px solid var(--border); border-radius: var(--r-lg); background: var(--card); }
.q-input:focus { outline: none; border-color: var(--coral); }
.q-consent { display: flex; gap: 9px; align-items: flex-start; font: 400 13px/1.5 var(--font-body); color: var(--muted); margin: 14px 2px 0; }
.q-consent .q-ic { color: var(--success); flex: 0 0 auto; margin-top: 1px; }
.q-consent .q-ic svg { width: 18px; height: 18px; }

/* ---------------- loader ---------------- */
.q-load { text-align: center; padding-top: 26px; }
.q-load__mascot { width: 92px; height: 92px; display: block; margin: 0 auto; animation: q-bob 2.6s ease-in-out infinite; }
.q-load__pct { font: 800 48px/1 var(--font-display); color: var(--coral); margin: 12px 0 18px; }
.q-load__list { list-style: none; margin: 0; padding: 0; text-align: left; max-width: 320px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.q-load__row { display: flex; align-items: center; gap: 12px; font: 600 15px/1.3 var(--font-body); color: var(--muted); transition: color .3s ease; }
.q-load__row.is-done { color: var(--ink); }
.q-load__spin { width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--cream-deep); border-top-color: var(--coral); animation: q-spin .8s linear infinite; }
.q-load__check { width: 22px; height: 22px; display: none; color: #fff; background: var(--success); border-radius: 50%; place-items: center; }
.q-load__check svg { width: 14px; height: 14px; }
.q-load__row.is-done .q-load__spin { display: none; }
.q-load__row.is-done .q-load__check { display: grid; }

/* ---------------- result ---------------- */
.q-result { padding-top: 8px; }
.q-result .q-title { text-align: center; }
.q-scorecircle { position: relative; width: 150px; height: 150px; margin: 6px auto 16px; }
.q-scorecircle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.q-sc__bg { fill: none; stroke: var(--cream-deep); stroke-width: 10; }
.q-sc__fill { fill: none; stroke: var(--coral); stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.1s cubic-bezier(.22,.9,.3,1); }
.q-sc__txt { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.q-sc__txt b { font: 800 40px/1 var(--font-display); color: var(--ink); }
.q-sc__txt small { font: 700 11px/1 var(--font-body); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.q-meters { display: flex; flex-direction: column; gap: 13px; margin: 4px 0 18px; }
.q-meter__top { display: flex; justify-content: space-between; font: 700 14px/1 var(--font-body); color: var(--ink); margin-bottom: 6px; }
.q-meter__bar { height: 10px; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; }
.q-meter__bar i { display: block; height: 100%; width: 0; background: var(--c); border-radius: var(--r-pill); transition: width 1.1s cubic-bezier(.22,.9,.3,1); }
.q-enter .q-meter__bar i { width: 0 !important; }
.q-body .q-meter__bar i { width: var(--w); }
.q-result__readout { background: var(--cream); border-radius: var(--r-xl); padding: 18px; margin-bottom: 20px; font: 400 15px/1.55 var(--font-body); color: var(--ink); }
.q-locked { position: relative; margin-top: 12px; border-radius: var(--r-lg); overflow: hidden; }
.q-locked__blur { filter: blur(6px); opacity: .55; padding: 4px 2px; pointer-events: none; user-select: none; }
.q-locked__veil { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(rgba(255,252,246,.2), rgba(255,252,246,.86)); font: 700 13.5px/1.3 var(--font-body); color: var(--ink); text-align: center; }
.q-locked__veil .q-ic { color: var(--coral); }

/* ---------------- scratch ---------------- */
.q-scratch { text-align: center; padding-top: 20px; display: flex; flex-direction: column; min-height: 70vh; }
.q-scratch .q-title { text-align: center; }
.q-card { position: relative; width: 320px; max-width: 100%; height: 200px; margin: 18px auto 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-raised); }
.q-card__prize { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0 22px; text-align: center; background: linear-gradient(135deg, #FFF3D6, #FFE0DB); }
.q-card__badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--coral); color: #fff; margin-bottom: 4px; box-shadow: var(--shadow-card); }
.q-card__badge svg { width: 22px; height: 22px; }
.q-card__eyebrow { font: 800 11px/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--coral); }
.q-card__prize b { font: 800 22px/1.18 var(--font-display); color: var(--ink); }
.q-card__prize small { font: 700 12px/1.3 var(--font-body); color: var(--muted); }
.q-card__foil { position: absolute; inset: 0; width: 100%; height: 100%; cursor: grab; transition: opacity .4s ease; touch-action: none; }
.q-card__foil.is-gone { opacity: 0; pointer-events: none; }
.q-card__hint { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); color: #fff; font: 800 15px/1 var(--font-body); pointer-events: none; }
.q-scratch .q-sticky { margin-top: auto; }

/* ============================================================
   PAYWALL
   ============================================================ */
.pw { display: flex; flex-direction: column; }
.pw-countdown { position: sticky; top: 0; z-index: 30; text-align: center; background: linear-gradient(180deg, var(--coral), var(--coral-dark)); color: #fff; font: 700 14px/1 var(--font-body); padding: 11px 8px; }
.pw-countdown b { font-weight: 800; }
.pw-scroll { padding: 16px 16px 0; display: flex; flex-direction: column; gap: 14px; }
.pw-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; box-shadow: var(--shadow-card); }
.pw-eyebrow { font: 800 13px/1.3 var(--font-body); letter-spacing: .03em; color: var(--coral); text-align: center; margin: 0 0 8px; }
.pw-h { font: 600 23px/1.2 var(--font-display); color: var(--ink); margin: 0 0 14px; text-align: center; }
.pw-h3 { font: 600 19px/1.25 var(--font-display); color: var(--ink); margin: 0 0 14px; }
.pw-sub { font: 400 14px/1.4 var(--font-body); color: var(--muted); text-align: center; margin: 10px 0; }

/* overview */
.pw-targets { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-bottom: 16px; }
.pw-targets__lbl { font: 700 12px/1 var(--font-body); color: var(--muted); text-transform: uppercase; letter-spacing: .05em; width: 100%; margin-bottom: 2px; }
.pw-chip { display: inline-flex; align-items: center; gap: 5px; background: var(--cream); border-radius: var(--r-pill); padding: 7px 12px; font: 700 13px/1 var(--font-body); color: var(--ink); }
.pw-chip .q-ic { color: var(--success); } .pw-chip .q-ic svg { width: 15px; height: 15px; }
.pw-meters { display: flex; flex-direction: column; gap: 11px; margin-bottom: 16px; }
.pw-meter__top { display: flex; justify-content: space-between; font: 700 13.5px/1 var(--font-body); color: var(--ink); margin-bottom: 5px; }
.pw-meter__bar { height: 9px; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; }
.pw-meter__bar i { display: block; height: 100%; border-radius: var(--r-pill); }
.pw-locked { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.pw-locked__img { width: 100%; display: block; filter: blur(3px); }
.pw-locked__veil { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 6px; align-items: center; justify-content: center; background: linear-gradient(rgba(255,252,246,.3), rgba(255,252,246,.8)); font: 700 14px/1.3 var(--font-body); color: var(--ink); }
.pw-locked__veil .q-ic { color: var(--coral); }

/* recipe matches */
.pw-recs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pw-rec { text-align: center; }
.pw-rec__img { width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); background: var(--cream) center/cover; margin-bottom: 7px; display: grid; place-items: center; }
.pw-rec__name { font: 700 12px/1.25 var(--font-body); color: var(--ink); margin: 0 0 6px; min-height: 30px; }
.pw-rec__fit { height: 6px; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 4px; }
.pw-rec__fit i { display: block; height: 100%; background: var(--success); border-radius: var(--r-pill); }
.pw-rec__pct { font: 800 12px/1 var(--font-body); color: var(--success); }
.pw-recs--locked .pw-rec__img { filter: blur(5px); }
.pw-rec--locked .pw-rec__q { font: 800 26px/1 var(--font-display); color: var(--muted); filter: none; }
.pw-rec--locked .pw-rec__pct { color: var(--muted); }

/* howard */
.pw-howard { display: flex; gap: 14px; align-items: flex-start; }
.pw-howard__img { width: 92px; height: 92px; border-radius: var(--r-lg); object-fit: cover; flex: 0 0 auto; }
.pw-howard__body b { font: 700 16px/1.2 var(--font-body); color: var(--ink); display: block; }
.pw-howard__body span { font: 600 13px/1.2 var(--font-body); color: var(--coral); }
.pw-howard__q { font: 500 14.5px/1.5 var(--font-body); color: var(--ink); margin: 8px 0 4px; }
.pw-howard__sig { width: 110px; height: 30px; }

/* before/after */
.pw-ba__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pw-ba__col { border-radius: var(--r-lg); padding: 14px 12px; }
.pw-ba__col--now { background: var(--cream); }
.pw-ba__col--after { background: var(--success-surface); }
.pw-ba__tag { display: inline-block; font: 800 12px/1 var(--font-body); color: var(--muted); margin-bottom: 10px; }
.pw-ba__tag--g { color: var(--success); }
.pw-x, .pw-ok { display: flex; align-items: center; gap: 7px; font: 600 13px/1.3 var(--font-body); margin: 8px 0; }
.pw-x { color: #8a8f9e; } .pw-x .q-ic { color: var(--muted); } .pw-x .q-ic svg { width: 16px; height: 16px; }
.pw-ok { color: var(--ink); } .pw-ok .q-ic { color: var(--success); } .pw-ok .q-ic svg { width: 16px; height: 16px; }

/* why grid */
.pw-whys { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pw-why { text-align: left; }
.pw-why__ic { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--cream); color: var(--coral); margin-bottom: 8px; }
.pw-why b { font: 700 14.5px/1.2 var(--font-body); color: var(--ink); display: block; margin-bottom: 3px; }
.pw-why p { font: 400 13px/1.4 var(--font-body); color: var(--muted); margin: 0; }

/* bonuses */
.pw-bonus { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); }
.pw-bonus:last-child { border-bottom: none; }
.pw-bonus__n { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--coral); color: #fff; font: 800 14px/30px var(--font-body); text-align: center; }
.pw-bonus b { font: 700 14.5px/1.3 var(--font-body); color: var(--ink); }
.pw-bonus p { font: 400 13px/1.4 var(--font-body); color: var(--muted); margin: 2px 0 0; }

/* lifetime */
.pw-life { display: flex; gap: 14px; align-items: center; background: linear-gradient(135deg, #FFF3D6, #FFF6F4); }
.pw-life__ic { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--coral); display: grid; place-items: center; flex: 0 0 auto; }
.pw-life b { font: 700 16px/1.2 var(--font-body); color: var(--ink); }
.pw-life p { font: 400 13.5px/1.45 var(--font-body); color: #50566a; margin: 3px 0 0; }

/* reviews */
.pw-review { padding: 12px 0; border-bottom: 1px solid var(--border); }
.pw-review:last-child { border-bottom: none; }
.pw-stars { display: flex; gap: 1px; color: var(--sunshine); margin-bottom: 6px; }
.pw-stars .q-ic svg { width: 16px; height: 16px; }
.pw-review__q { font: 500 14.5px/1.5 var(--font-body); color: var(--ink); margin: 0 0 6px; }
.pw-review__by { font: 400 12.5px/1 var(--font-body); color: var(--muted); margin: 0; }
.pw-review__by b { color: var(--ink); font-weight: 700; }

/* pricing */
.pw-pricing { border: 2px solid var(--coral); }
.pw-cycle { display: flex; background: var(--cream); border-radius: var(--r-pill); padding: 4px; margin-bottom: 16px; }
.pw-cycle button { flex: 1; border: none; background: transparent; border-radius: var(--r-pill); padding: 11px; font: 800 14px/1 var(--font-body); color: var(--muted); cursor: pointer; }
.pw-cycle button small { font-weight: 700; color: var(--success); }
.pw-cycle button.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-card); }
.pw-plans { display: flex; flex-direction: column; gap: 11px; }
.pw-plan { position: relative; display: flex; align-items: center; gap: 12px; border: 2px solid var(--border); border-radius: var(--r-lg); padding: 16px 14px; cursor: pointer; }
.pw-plan--best { border-color: var(--coral); }
.pw-plan__tag { position: absolute; top: -10px; left: 14px; background: var(--coral); color: #fff; font: 800 11px/1 var(--font-body); padding: 4px 10px; border-radius: var(--r-pill); }
.pw-plan__radio { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--cream-deep); flex: 0 0 auto; position: relative; }
.pw-plan.is-on { border-color: var(--coral); background: #FFF6F4; }
.pw-plan.is-on .pw-plan__radio { border-color: var(--coral); }
.pw-plan.is-on .pw-plan__radio::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--coral); }
.pw-plan__main { flex: 1 1 auto; }
.pw-plan__name { font: 700 16px/1.2 var(--font-body); color: var(--ink); display: block; }
.pw-plan__blurb { font: 400 12.5px/1.3 var(--font-body); color: var(--muted); }
.pw-plan__price { text-align: right; flex: 0 0 auto; }
.pw-plan__price b { font: 800 20px/1 var(--font-display); color: var(--ink); }
.pw-plan__price small { font: 700 12px/1 var(--font-body); color: var(--muted); }
.pw-plan__price em { display: block; font: 600 11px/1.3 var(--font-body); color: var(--muted); font-style: normal; margin-top: 2px; }
.pw-promo { display: flex; align-items: center; gap: 8px; background: var(--success-surface); border-radius: var(--r-lg); padding: 11px 14px; margin: 14px 0 8px; font: 700 13.5px/1 var(--font-body); color: var(--ink); }
.pw-promo .q-ic { color: var(--sunshine); } .pw-promo b { margin-left: auto; color: var(--success); }
.pw-perday { text-align: center; font: 600 13px/1.4 var(--font-body); color: var(--muted); margin: 8px 0; }
.pw-guarantee { display: flex; gap: 11px; align-items: flex-start; background: var(--cream); border-radius: var(--r-lg); padding: 14px; margin-top: 10px; }
.pw-guarantee .q-ic { color: var(--success); flex: 0 0 auto; }
.pw-guarantee b { font: 700 14.5px/1.2 var(--font-body); color: var(--ink); }
.pw-guarantee p { font: 400 13px/1.45 var(--font-body); color: var(--muted); margin: 3px 0 0; }

/* live proof */
.pw-proof { text-align: center; }
.pw-proof__count { font: 600 15px/1.4 var(--font-body); color: var(--ink); margin: 0 0 12px; }
.pw-proof__count b { color: var(--coral); font-weight: 800; font-size: 18px; }
.pw-tick { overflow: hidden; margin: 0 -20px 12px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.pw-tick__row { display: flex; gap: 10px; width: max-content; animation: q-marquee 18s linear infinite; }
.pw-tick__item { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); border-radius: var(--r-pill); padding: 8px 13px; font: 700 12.5px/1 var(--font-body); color: var(--ink); white-space: nowrap; }
.pw-tick__item .q-ic { color: var(--success); } .pw-tick__item .q-ic svg { width: 14px; height: 14px; }

/* legal */
.pw-legal { background: var(--cream); }
.pw-legal p { font: 400 12px/1.55 var(--font-body); color: var(--muted); margin: 0 0 10px; }
.pw-legal__safe { font-weight: 700 !important; color: var(--ink) !important; display: flex; align-items: center; gap: 6px; }
.pw-legal__safe .q-ic { color: var(--success); } .pw-legal__safe .q-ic svg { width: 16px; height: 16px; }
.pw-legal__links a { color: var(--info); text-decoration: none; }
.pw-disclaimer { font-style: italic; }

.pw-spacer { height: 90px; }

/* sticky pay bar */
.pw-bar { position: sticky; bottom: 0; z-index: 30; background: linear-gradient(rgba(255,252,246,0), var(--bg) 30%); padding: 12px 16px 16px; }
.pw-bar__sub { text-align: center; font: 600 12px/1 var(--font-body); color: var(--muted); margin: 9px 0 0; }

/* ---------------- keyframes ---------------- */
@keyframes q-slidein { to { opacity: 1; transform: none; } }
@keyframes q-pop { 0% { opacity: 0; transform: scale(.2); } 70% { transform: scale(1.25); } 100% { opacity: 1; transform: scale(1); } }
@keyframes q-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes q-spin { to { transform: rotate(360deg); } }
@keyframes q-draw { to { stroke-dashoffset: 0; } }
@keyframes q-marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION-SEGMENTED PROGRESS (chrome)
   ============================================================ */
.q-topmain { flex: 1 1 auto; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.q-segs { display: flex; gap: 5px; }
.q-seg2 { flex: 1 1 0; height: 6px; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; }
.q-seg2 i { display: block; height: 100%; width: 0; background: var(--coral); border-radius: var(--r-pill); transition: width .5s cubic-bezier(.22,.9,.3,1); }
.q-seg2.is-full i { width: 100% !important; }
.q-seg2.is-current { box-shadow: 0 0 0 2px rgba(247,102,88,.16); }
.q-seclabel { font: 700 12px/1.2 var(--font-body); color: var(--muted); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
   SCIENCE INTERSTITIAL
   ============================================================ */
.sci { text-align: center; padding-top: 12px; display: flex; flex-direction: column; min-height: 72vh; }
.sci-kicker { color: var(--coral); }
.sci-viz { margin: 6px auto 14px; width: 100%; max-width: 300px; min-height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sci-stat { margin: 0 0 6px; }
.sci-stat__big { font: 800 46px/1 var(--font-display); color: var(--coral); }
.sci-stat__big b { font: inherit; color: inherit; }
.sci-stat small { display: block; font: 600 13px/1.4 var(--font-body); color: var(--muted); margin-top: 3px; }
.sci-title { font-size: 23px; }
.sci-body { font: 400 15.5px/1.55 var(--font-body); color: #50566a; margin: 8px auto 16px; max-width: 34ch; }
.sci-source { display: inline-flex; align-items: center; gap: 7px; font: 700 12.5px/1.3 var(--font-body); color: var(--ink); background: var(--cream); border-radius: var(--r-pill); padding: 8px 14px; margin: 0 auto 18px; }
.sci-source .q-ic { color: var(--success); } .sci-source .q-ic svg { width: 16px; height: 16px; }
.sci .q-cta { margin-top: auto; }
/* drain */
.sci-bar { width: 100%; max-width: 280px; height: 26px; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; }
.sci-bar__fill { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, #C2410C, var(--coral)); border-radius: var(--r-pill); }
.sci-viz.is-anim .sci-bar__fill { animation: sci-drain 1.6s cubic-bezier(.4,0,.2,1) forwards; }
.sci-bar__lbls { display: flex; justify-content: space-between; width: 100%; max-width: 280px; margin-top: 7px; font: 700 11px/1 var(--font-body); color: var(--muted); }
/* dots */
.sci-dots { display: grid; grid-template-columns: repeat(8, 1fr); gap: 9px; max-width: 270px; }
.sci-dot { width: 17px; height: 17px; border-radius: 50%; background: var(--cream-deep); transform: scale(.6); opacity: .5; transition: all .25s ease; justify-self: center; }
.sci-dot.is-on { background: var(--coral); transform: scale(1); opacity: 1; }
.sci-dot--early.is-on { background: var(--muted); }
.sci-dots__lbls { display: flex; justify-content: space-between; width: 100%; max-width: 270px; margin-top: 12px; font: 700 11px/1 var(--font-body); color: var(--muted); }
/* window */
.sci-win { width: 100%; max-width: 300px; }
.sci-win__axis { stroke: var(--cream-deep); stroke-width: 2; }
.sci-win__tick { stroke: var(--muted); stroke-width: 1.5; }
.sci-win__lbl { fill: var(--muted); font: 700 10px var(--font-body); text-anchor: middle; }
.sci-win__band { fill: var(--teal); transform-origin: 118px 46px; transform: scaleX(0); }
.sci-viz.is-anim .sci-win__band { animation: sci-band .7s ease forwards .2s; }
.sci-win__bandlbl { fill: var(--teal); font: 700 10px var(--font-body); text-anchor: middle; opacity: 0; }
.sci-viz.is-anim .sci-win__bandlbl { animation: q-slidein .4s ease forwards .7s; }
/* pulse */
.sci-pulse { position: relative; width: 110px; height: 110px; display: grid; place-items: center; }
.sci-pulse span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--coral); opacity: 0; }
.sci-viz.is-anim .sci-pulse span { animation: sci-pulse 2.4s ease-out infinite; }
.sci-viz.is-anim .sci-pulse span:nth-child(2) { animation-delay: .8s; }
.sci-viz.is-anim .sci-pulse span:nth-child(3) { animation-delay: 1.6s; }
.sci-pulse__core { width: 58px; height: 58px; border-radius: 50%; background: #FFF1EE; color: var(--coral); display: grid; place-items: center; z-index: 1; }
.sci-pulse__core .q-ic svg { width: 28px; height: 28px; }

/* ============================================================
   SCALE (Likert agree / disagree)
   ============================================================ */
.q-scaleblock { text-align: center; padding-top: 28px; }
.q-scaleblock__statement { font-size: 25px; margin: 8px auto 30px; max-width: 22ch; }
.q-scale { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 10px 0 14px; }
.q-seg { border: none; background: transparent; cursor: pointer; padding: 4px; display: grid; place-items: center; }
.q-seg__dot { display: block; border-radius: 50%; border: 2px solid var(--coral); background: #fff; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.q-seg:nth-child(1) .q-seg__dot { width: 26px; height: 26px; }
.q-seg:nth-child(2) .q-seg__dot { width: 34px; height: 34px; }
.q-seg:nth-child(3) .q-seg__dot { width: 42px; height: 42px; }
.q-seg:nth-child(4) .q-seg__dot { width: 50px; height: 50px; }
.q-seg:nth-child(5) .q-seg__dot { width: 58px; height: 58px; }
.q-seg:hover .q-seg__dot { background: #FFF1EE; }
.q-seg.is-on .q-seg__dot { background: var(--coral); transform: scale(1.08); box-shadow: 0 6px 14px rgba(247,102,88,.35); }
.q-scale__lbls { display: flex; justify-content: space-between; max-width: 300px; margin: 6px auto 0; font: 700 12px/1 var(--font-body); color: var(--muted); }

/* ============================================================
   QUOTE (testimonial interstitial)
   ============================================================ */
.q-quote { text-align: center; padding-top: 16px; display: flex; flex-direction: column; min-height: 66vh; }
.q-quote__card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px 20px; box-shadow: var(--shadow-card); margin: 8px 0 auto; }
.q-quote__stars { display: flex; justify-content: center; gap: 2px; color: var(--sunshine); margin-bottom: 12px; }
.q-quote__stars .q-ic svg { width: 20px; height: 20px; }
.q-quote__text { font: 500 18px/1.5 var(--font-display); color: var(--ink); margin: 0 0 16px; }
.q-quote__by { display: flex; align-items: center; justify-content: center; gap: 10px; }
.q-quote__by img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.q-quote__by b { display: block; font: 700 14px/1.2 var(--font-body); color: var(--ink); text-align: left; }
.q-quote__by span { font: 400 12.5px/1.2 var(--font-body); color: var(--muted); }
.q-quote .q-cta { margin-top: 18px; }

/* ============================================================
   EXPERT (mid-funnel dietitian)
   ============================================================ */
.q-expert { text-align: center; padding-top: 18px; display: flex; flex-direction: column; min-height: 66vh; }
.q-expert__img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 8px auto 12px; box-shadow: var(--shadow-raised); }
.q-expert__name { font: 700 18px/1.2 var(--font-body); color: var(--ink); }
.q-expert__role { font: 600 13.5px/1.2 var(--font-body); color: var(--coral); }
.q-expert__quote { font: 500 16px/1.55 var(--font-display); color: var(--ink); margin: 14px auto 8px; max-width: 32ch; }
.q-expert__sig { display: block; width: 120px; height: 34px; margin: 0 auto; }
.q-expert__sig path { stroke-dasharray: 240; stroke-dashoffset: 240; animation: sig-draw 1.4s ease forwards .3s; }
.q-expert .q-cta { margin-top: auto; }

@keyframes sci-drain { to { width: 26%; } }
@keyframes sci-band { to { transform: scaleX(1); } }
@keyframes sci-pulse { 0% { opacity: .7; transform: scale(.5); } 100% { opacity: 0; transform: scale(1.12); } }
@keyframes sig-draw { to { stroke-dashoffset: 0; } }

/* ===== reassure image ===== */
.q-info--img { padding-top: 6px; }
.q-info__img { width: 100%; max-height: 200px; object-fit: cover; border-radius: var(--r-xl); margin: 0 auto 18px; box-shadow: var(--shadow-card); }

/* ===== fit chart legend (no clipping) ===== */
.q-fit__legend { display: flex; justify-content: center; gap: 18px; margin: 2px 0 6px; }
.q-fit__lg { font: 700 12.5px/1 var(--font-body); color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.q-fit__lg::before { content: ""; width: 10px; height: 10px; border-radius: 50%; }
.q-fit__lg--ours { color: var(--coral); } .q-fit__lg--ours::before { background: var(--coral); }
.q-fit__lg--avg::before { background: var(--muted); }

/* ===== ghost CTA ===== */
.q-cta--ghost { background: #fff; color: var(--coral); border: 2px solid var(--coral); box-shadow: none; }
.q-cta--ghost:hover { background: #FFF6F4; box-shadow: none; transform: translateY(-1px); }

/* ===== why-grid icon consistency ===== */
.pw-why__ic .q-ic svg { width: 22px; height: 22px; }

/* ===== expert team ===== */
.pw-team { text-align: center; }
.pw-team__faces { display: flex; justify-content: center; margin: 8px 0 12px; }
.pw-team__face { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-card); margin-left: -12px; }
.pw-team__face:first-child { margin-left: 0; }
.pw-team__note { font: 400 14px/1.5 var(--font-body); color: #50566a; margin: 0; }

/* ===== feeding tips ===== */
.pw-tip { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.pw-tip:last-of-type { border-bottom: none; }
.pw-tip__img { width: 64px; height: 64px; flex: 0 0 auto; border-radius: var(--r-lg); background: var(--cream) center/cover; }
.pw-tip__n { font: 800 11px/1 var(--font-body); color: var(--coral); text-transform: uppercase; letter-spacing: .04em; }
.pw-tip__body b { display: block; font: 700 15px/1.3 var(--font-body); color: var(--ink); margin: 3px 0; }
.pw-tip__body p { font: 400 13px/1.45 var(--font-body); color: var(--muted); margin: 0; }
.pw-tips .q-cta, .pw-pricing .q-cta { margin: 14px 0 6px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .q-intro__list li { opacity: 1; transform: none; }
  .sci-dot { opacity: 1; transform: scale(1); }
  .sci-win__band { transform: scaleX(1); }
  .sci-win__bandlbl { opacity: 1; }
  .q-expert__sig path { stroke-dashoffset: 0; }
  .q-world__dots circle { opacity: 1; }
}

/* ============================================================
   PAYWALL  redesigned pricing + features + report
   ============================================================ */
.pw-pricing__pre { text-align: center; font: 800 13px/1 var(--font-body); letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }

/* discount-code banner */
.pw-code { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 10px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; border-radius: var(--r-lg); padding: 13px 15px; margin-bottom: 14px; }
.pw-code__badge { display: inline-flex; align-items: center; gap: 8px; font: 800 16px/1 var(--font-body); letter-spacing: .02em; }
.pw-code__pct { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; font: 800 13px/1 var(--font-body); }
.pw-code__off { font: 800 15px/1 var(--font-body); text-align: right; }
.pw-code__timer { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.3); padding-top: 9px; font: 700 13px/1 var(--font-body); }
.pw-code__timer b { font-weight: 800; }

/* plan card extras */
.pw-plan__save { position: absolute; top: -10px; right: 12px; background: var(--ink); color: #fff; font: 800 10.5px/1 var(--font-body); padding: 4px 9px; border-radius: var(--r-pill); letter-spacing: .03em; }
.pw-plan__priceline { display: block; font: 600 12px/1.35 var(--font-body); color: var(--muted); margin-top: 4px; }
.pw-plan__priceline s { opacity: .65; margin-right: 3px; }

.pw-research { display: flex; gap: 9px; align-items: flex-start; background: var(--cream); border-radius: var(--r-lg); padding: 12px 14px; margin-top: 14px; font: 600 13px/1.45 var(--font-body); color: var(--ink); }
.pw-research .q-ic { color: var(--sunshine); flex: 0 0 auto; } .pw-research .q-ic svg { width: 16px; height: 16px; }
.pw-research em { font-style: normal; color: var(--muted); font-weight: 400; }
.pw-applied { display: flex; align-items: center; gap: 7px; justify-content: center; color: var(--success); font: 700 13px/1 var(--font-body); margin: 14px 0 10px; }
.pw-applied .q-ic { color: var(--success); } .pw-applied .q-ic svg { width: 16px; height: 16px; }
.pw-applied b { color: var(--ink); }
.pw-mbg { text-align: center; font: 600 12.5px/1.4 var(--font-body); color: var(--muted); margin: 8px 0; }

/* feature list */
.pw-feats__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pw-feats__list li { display: flex; align-items: flex-start; gap: 10px; font: 600 14.5px/1.35 var(--font-body); color: var(--ink); }
.pw-feats__list li .q-ic { color: var(--success); flex: 0 0 auto; margin-top: 1px; } .pw-feats__list li .q-ic svg { width: 18px; height: 18px; }

/* locked report */
.pw-report { margin-bottom: 14px; }
.pw-report__lead { font: 400 14.5px/1.55 var(--font-body); color: var(--ink); margin: 0 0 10px; }
.pw-report__lock { filter: blur(4px); opacity: .6; pointer-events: none; user-select: none; max-height: 58px; overflow: hidden; margin-bottom: 4px; }
.pw-report__lock p { font: 400 13px/1.5 var(--font-body); color: var(--ink); margin: 0 0 6px; }
.pw-report .q-cta { margin-top: 12px; }

/* ============================================================
   SAMPLE WEEK  (free lead-magnet page)
   ============================================================ */
.sw { padding-bottom: 40px; }
.sw-head { text-align: center; padding: 26px 22px 6px; }
.sw-logo { display: block; margin: 0 auto 16px; height: 30px; width: auto; }
.sw-title { font: 600 26px/1.2 var(--font-display); color: var(--ink); margin: 0 0 8px; }
.sw-sub { font: 400 15px/1.5 var(--font-body); color: #50566a; margin: 0 auto; max-width: 38ch; }
.sw-plan { padding: 14px 16px 0; display: flex; flex-direction: column; gap: 12px; }
.sw-day { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 14px 14px 4px; box-shadow: var(--shadow-card); }
.sw-day__h { font: 800 12px/1 var(--font-body); letter-spacing: .05em; text-transform: uppercase; color: var(--coral); margin: 0 0 6px; }
.sw-meal { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--ink); }
.sw-meal:last-child { border-bottom: none; }
.sw-meal__img { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 12px; background: var(--cream) center/cover; }
.sw-meal__body { flex: 1 1 auto; min-width: 0; }
.sw-meal__slot { display: block; font: 800 11px/1 var(--font-body); color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.sw-meal__title { font: 700 14.5px/1.3 var(--font-body); color: var(--ink); }
.sw-meal__go { flex: 0 0 auto; color: var(--muted); font: 700 24px/1 var(--font-body); }
.sw-cta { margin: 16px 16px 0; background: var(--card); border: 2px solid var(--coral); border-radius: var(--r-xl); padding: 22px 18px; text-align: center; box-shadow: var(--shadow-card); }
.sw-cta h2 { font: 600 22px/1.2 var(--font-display); color: var(--ink); margin: 0 0 8px; }
.sw-cta p { font: 400 14.5px/1.5 var(--font-body); color: #50566a; margin: 0 0 16px; }
.sw-cta .q-cta { margin-bottom: 10px; }
.sw-fine { font: 400 12px/1.5 var(--font-body); color: var(--muted); margin: 8px 0 0; }
@media print {
  .quiz-body { background: #fff; }
  .quiz-app { box-shadow: none; max-width: 100%; }
  .sw-cta .q-cta, #sw-print { display: none !important; }
  .sw-meal__go { display: none; }
  .sw-day { break-inside: avoid; box-shadow: none; }
}

/* ============================================================
   EXIT-INTENT MODAL (mid-quiz email safety net, see exit.js)
   ============================================================ */
.q-exit { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(39, 45, 69, .45); animation: qExitIn .18s ease; }
@keyframes qExitIn { from { opacity: 0; } to { opacity: 1; } }
.q-exit__card { width: 100%; max-width: 380px; background: var(--card); border-radius: var(--r-xl); box-shadow: var(--shadow-raised); padding: 26px 22px 18px; text-align: center; }
.q-exit__title { font: 600 23px/1.2 var(--font-display); color: var(--ink); margin: 0 0 8px; }
.q-exit__body { font: 400 14.5px/1.55 var(--font-body); color: #50566a; margin: 0 0 16px; }
.q-exit__input { margin-bottom: 10px; }
.q-exit__input.is-bad { border-color: var(--warning); }
.q-exit__dismiss { display: block; margin: 12px auto 0; background: none; border: none; cursor: pointer; font: 700 13px/1 var(--font-body); color: var(--muted); text-decoration: underline; }
.q-exit__fine { font: 600 11.5px/1.4 var(--font-body); color: var(--muted); margin: 12px 0 0; }

/* ============================================================
   PAYWALL POLISH (pre-head, anchor line, FAQ, site reviews)
   ============================================================ */
.pw-pricing__title { text-align: center; font: 600 21px/1.2 var(--font-display); color: var(--ink); margin: 0 0 4px; }
.pw-pricing__pre2 { text-align: center; font: 600 14px/1.35 var(--font-body); color: #50566a; margin: 2px 0 12px; }
.pw-anchor { text-align: center; font: 600 12.5px/1.5 var(--font-body); color: var(--muted); margin: 10px 0 0; }
.pw-review__src { color: var(--muted); font-weight: 600; }
.pw-faq details { border-bottom: 1px solid var(--border); padding: 10px 2px; }
.pw-faq details:last-child { border-bottom: none; }
.pw-faq summary { cursor: pointer; font: 700 14.5px/1.4 var(--font-body); color: var(--ink); list-style: none; position: relative; padding-right: 22px; }
.pw-faq summary::-webkit-details-marker { display: none; }
.pw-faq summary::after { content: '+'; position: absolute; right: 2px; top: 0; font: 800 16px/1.3 var(--font-body); color: var(--coral); }
.pw-faq details[open] summary::after { content: '\2212'; }
.pw-faq p { font: 400 13.5px/1.55 var(--font-body); color: #50566a; margin: 8px 0 2px; }
