/* Peach Up quiz funnel — shared engine styles, themed per variant via CSS vars. */

:root {
  --bg: #ffffff;
  --bg-soft: #faf7f5;
  --ink: #1c1418;
  --ink-soft: #75666d;
  --accent: #ff5e57;
  --accent-soft: #ffe9e4;
  --accent-2: #ffb199;
  --card: #ffffff;
  --card-border: rgba(28, 20, 24, 0.08);
  --success: #2fb56b;
  --radius: 18px;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow: 0 10px 30px rgba(28, 20, 24, 0.07);
  --shadow-strong: 0 14px 40px rgba(255, 94, 87, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

#app { display: flex; flex-direction: column; min-height: 100dvh; }

/* ---------- Top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 30; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(14px); }
.topbar-inner {
  display: flex; align-items: center; gap: 10px;
  max-width: 640px; margin: 0 auto; padding: 14px 18px 8px;
}
.brand { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.brand-logo {
  width: 24px; height: 24px; border-radius: 7px;
  display: block; box-shadow: 0 5px 14px rgba(28, 20, 24, 0.12);
}
.brand-name { font-weight: 800; letter-spacing: 0.4px; font-size: 17px; }
.back-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
  font-size: 16px; font-weight: 700; color: var(--ink);
  flex: none; transition: opacity 0.2s, transform 0.15s;
}
.back-btn:active { transform: scale(0.92); }
.topbar-spacer { width: 36px; flex: none; }

/* ---------- Progress ---------- */
.progress { max-width: 560px; margin: 0 auto; padding: 6px 26px 14px; }
.progress-track { position: relative; height: 5px; border-radius: 99px; background: color-mix(in srgb, var(--accent) 16%, var(--bg)); }
.progress-fill {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  border-radius: 99px; background: var(--accent);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-dots { position: absolute; inset: 0; }
.pdot {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg); border: 2px solid color-mix(in srgb, var(--accent) 30%, var(--bg));
  color: var(--ink-soft); font-size: 10px; font-weight: 800;
  display: grid; place-items: center; transition: all 0.3s;
}
.pdot[data-at="0"] { width: 12px; height: 12px; left: 0; }
.pdot[data-at="33"] { left: 33%; }
.pdot[data-at="66"] { left: 66%; }
.pdot[data-at="100"] { left: 100%; }
.pdot.done { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Stage / steps ---------- */
.stage { flex: 1; display: flex; flex-direction: column; max-width: 640px; width: 100%; margin: 0 auto; padding: 8px 22px 40px; }
.step { animation: stepIn 0.4s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; flex: 1; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.step.back-anim { animation: stepBack 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes stepBack { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }

.q-title {
  font-size: clamp(24px, 6vw, 32px); font-weight: 800; letter-spacing: -0.5px;
  text-align: center; margin: 18px 0 6px; line-height: 1.18;
}
.q-sub { text-align: center; color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; line-height: 1.45; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding-top: 4vh; }
.hero-kicker {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 2.5px;
  color: var(--accent); background: var(--accent-soft);
  padding: 7px 14px; border-radius: 99px; margin-bottom: 18px; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 15vw, 110px);
  line-height: 0.95; text-transform: uppercase; letter-spacing: 0.5px;
  font-weight: 400;
}
.hero-title .alt { color: var(--accent); }
.hero-sub { color: var(--ink-soft); font-size: 17px; line-height: 1.5; margin: 20px auto 0; max-width: 420px; }
.hero-stats { display: flex; justify-content: center; gap: 26px; margin-top: 26px; }
.hero-stat { text-align: center; }
.hero-stat b { display: block; font-size: 22px; font-weight: 800; }
.hero-stat span { font-size: 12px; color: var(--ink-soft); }
.hero-cta-wrap { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-login {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 420px; min-height: 50px; padding: 12px 24px;
  border-radius: 99px; background: var(--card); color: var(--ink);
  border: 1.5px solid var(--card-border); box-shadow: var(--shadow);
  font-size: 14px; font-weight: 900; letter-spacing: 0.5px;
  transition: transform 0.15s, border-color 0.15s;
}
.hero-login:active { transform: scale(0.97); }
.hero-footnote { font-size: 12.5px; color: var(--ink-soft); }
.hero-emoji-row { font-size: 30px; margin-top: 8px; letter-spacing: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 420px; padding: 17px 28px; margin: 0 auto;
  border-radius: 99px; background: var(--accent); color: #fff;
  font-size: 17px; font-weight: 800; letter-spacing: 0.3px;
  box-shadow: var(--shadow-strong);
  transition: transform 0.15s, filter 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.45; box-shadow: none; }
.btn.pulse { animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.btn-ghost { background: transparent; color: var(--ink-soft); box-shadow: none; font-weight: 600; font-size: 14px; }

/* ---------- Answer cards ---------- */
.answers { display: flex; flex-direction: column; gap: 11px; max-width: 460px; width: 100%; margin: 0 auto; }
.answers.grid2 { display: grid; grid-template-columns: 1fr 1fr; }
.answer {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--card); border: 1.5px solid var(--card-border);
  border-radius: var(--radius); padding: 16px 18px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.answer:active { transform: scale(0.97); }
.answer .a-icon { font-size: 24px; flex: none; }
.answer .a-label { flex: 1; line-height: 1.3; }
.answer .a-sub { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink-soft); margin-top: 2px; }
.answer.selected { border-color: var(--accent); background: var(--accent-soft); }
.answer .a-check {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 2px solid var(--card-border); display: grid; place-items: center;
  font-size: 12px; color: #fff; transition: all 0.15s;
}
.answer.selected .a-check { background: var(--accent); border-color: var(--accent); }
/* ---------- Body metric steps ---------- */
.body-step .q-sub { max-width: 440px; margin-left: auto; margin-right: auto; }
.unit-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  max-width: 260px; width: 100%; margin: 0 auto 18px;
  padding: 5px; border-radius: 99px;
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
  border: 1px solid var(--card-border);
}
.unit-option {
  min-height: 38px; border-radius: 99px; font-size: 14px; font-weight: 900;
  color: var(--ink-soft); transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.unit-option.active { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.metric-panel { max-width: 420px; width: 100%; margin: 0 auto; }
.wheel-grid { display: grid; gap: 12px; width: 100%; margin: 0 auto; }
.wheel-grid.single { max-width: 320px; }
.wheel-grid.two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.wheel-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.wheel-label {
  color: var(--ink-soft); font-size: 12px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.wheel-shell {
  --wheel-item: 52px;
  --wheel-pad: 58px;
  position: relative; height: calc(var(--wheel-item) + var(--wheel-pad) * 2);
  overflow: hidden; border-radius: 22px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 38%, var(--card-border));
  background: color-mix(in srgb, var(--accent-soft) 32%, var(--card));
  box-shadow: var(--shadow);
}
.wheel-shell::before {
  content: ''; position: absolute; z-index: 1; left: 12px; right: 12px; top: 50%;
  height: var(--wheel-item); transform: translateY(-50%);
  border-radius: 16px; background: var(--card);
  border: 1.5px solid color-mix(in srgb, var(--accent) 60%, var(--card-border));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-soft) 60%, transparent);
}
.wheel-shell::after {
  content: ''; position: absolute; z-index: 2; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--card) 94%, transparent) 0%,
    color-mix(in srgb, var(--card) 70%, transparent) 24%,
    transparent 43%,
    transparent 57%,
    color-mix(in srgb, var(--card) 70%, transparent) 76%,
    color-mix(in srgb, var(--card) 94%, transparent) 100%
  );
}
.wheel-scroll {
  position: relative; z-index: 3; height: 100%; overflow-y: auto;
  padding: var(--wheel-pad) 0; scroll-snap-type: y mandatory;
  scrollbar-width: none; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.wheel-scroll::-webkit-scrollbar { display: none; }
.wheel-scroll:focus-visible { outline: 2px solid var(--accent); outline-offset: -5px; border-radius: 20px; }
.wheel-item {
  width: 100%; height: var(--wheel-item); display: grid; place-items: center;
  scroll-snap-align: center; border-radius: 14px;
  color: var(--ink-soft); font-size: 24px; font-weight: 800;
  opacity: 0.42; transition: color 0.15s, opacity 0.15s, transform 0.15s;
}
.wheel-item.active {
  color: var(--accent); opacity: 1; transform: scale(1.16);
  font-weight: 900;
}

/* ---------- Text input steps ---------- */
.input-wrap { max-width: 420px; width: 100%; margin: 0 auto; }
.text-input {
  width: 100%; padding: 17px 20px; font-size: 17px;
  border: 1.5px solid var(--card-border); border-radius: var(--radius);
  background: var(--card); color: var(--ink); outline: none;
  box-shadow: var(--shadow); transition: border-color 0.15s;
}
.text-input:focus { border-color: var(--accent); }
.input-hint { font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-top: 10px; }
.step-actions { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.email-app-logo {
  width: 66px; height: 66px; margin: 4px auto 10px;
  border-radius: 18px; display: grid; place-items: center;
  background: var(--card); box-shadow: var(--shadow);
}
.email-app-logo img { width: 52px; height: 52px; border-radius: 15px; display: block; }

/* ---------- Interstitials ---------- */
.inter { text-align: center; padding-top: 3vh; }
.inter-emoji { font-size: 54px; margin-bottom: 14px; }
.inter-title { font-size: clamp(24px, 6vw, 30px); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }
.inter-body { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; max-width: 420px; margin: 14px auto 0; }
.inter-action-copy { margin-top: 22px; }
.inter-actions { margin-top: 28px; }
.inter-action-copy + .inter-actions { margin-top: 16px; }
.inter-card {
  max-width: 440px; margin: 22px auto 0; text-align: left;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
}
.stat-row { display: flex; gap: 12px; margin-top: 18px; justify-content: center; flex-wrap: wrap; }
.stat-chip {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow); text-align: center; min-width: 96px;
}
.stat-chip b { display: block; font-size: 20px; color: var(--accent); }
.stat-chip span { font-size: 11.5px; color: var(--ink-soft); }

/* ---------- Early stat interstitial ("I can help!") ---------- */
.stat-claim { font-size: 17px; font-weight: 600; color: var(--ink); max-width: 430px; }
.stat-claim + .btn-row { margin-top: 20px; }
.btn-row {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  margin-top: 30px;
}
.btn-row .btn { width: auto; min-width: 150px; margin: 0; }
.btn-outline {
  background: var(--card); color: var(--ink);
  border: 1.5px solid var(--card-border); box-shadow: var(--shadow);
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px; max-width: 440px; margin: 14px auto 0; text-align: left;
}
.testimonial .stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 14.5px; line-height: 1.5; margin: 8px 0 10px; }
.testimonial .who { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-soft); }
.testimonial .who .ava { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; font-size: 15px; }
.testimonial .verified { color: var(--success); font-weight: 700; font-size: 12px; }

/* ---------- Loading ---------- */
.loading-step { text-align: center; padding-top: 6vh; }
.ring-wrap { position: relative; width: 150px; height: 150px; margin: 26px auto; }
.ring-wrap svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: color-mix(in srgb, var(--accent) 14%, var(--bg)); stroke-width: 9; }
.ring-fg { fill: none; stroke: var(--accent); stroke-width: 9; stroke-linecap: round; transition: stroke-dashoffset 0.3s linear; }
.ring-label { position: absolute; inset: 0; display: grid; place-items: center; font-size: 30px; font-weight: 800; }
.load-line { font-size: 15px; color: var(--ink-soft); min-height: 22px; transition: opacity 0.3s; }
.load-checks { max-width: 340px; margin: 26px auto 0; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.load-check { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--ink-soft); opacity: 0.35; transition: opacity 0.4s; }
.load-check.on { opacity: 1; color: var(--ink); }
.load-check .tick { color: var(--success); font-weight: 800; }

/* ---------- Results ---------- */
.results-head { text-align: center; margin-top: 10px; }
.results-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--success) 12%, var(--bg)); color: var(--success);
  font-weight: 800; font-size: 12.5px; letter-spacing: 1px;
  padding: 8px 14px; border-radius: 99px; text-transform: uppercase;
}
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 460px; margin: 20px auto 0; }
.summary-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 13px 14px; box-shadow: var(--shadow);
}
.summary-card span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.summary-card b { display: block; font-size: 15.5px; margin-top: 3px; }
.chart-card {
  max-width: 460px; margin: 14px auto 0; background: var(--card);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px;
}
.chart-card h4 { font-size: 14.5px; margin-bottom: 4px; }
.chart-card .chart-sub { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 10px; }
.target-card {
  max-width: 460px; margin: 14px auto 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--card)), var(--card));
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--card-border));
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px;
}
.target-card h4 { font-size: 15px; margin-bottom: 5px; }
.target-card p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; }
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.target-grid div {
  min-height: 78px; display: flex; flex-direction: column; justify-content: center;
  border-radius: 14px; background: var(--card); border: 1px solid var(--card-border);
  padding: 12px; text-align: center;
}
.target-grid b { font-size: 24px; line-height: 1; }
.target-grid span { margin-top: 5px; font-size: 11.5px; color: var(--ink-soft); font-weight: 700; }
.review-page { max-width: 520px; margin: 0 auto; text-align: center; }
.review-card {
  margin: 14px auto 0; overflow: hidden; text-align: left;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); box-shadow: var(--shadow-strong);
}
.review-media {
  position: relative; background: color-mix(in srgb, var(--accent) 8%, var(--card));
  border-bottom: 1px solid var(--card-border);
}
.review-media img {
  display: block; width: 100%; height: auto; max-height: 238px; aspect-ratio: 741 / 414;
  object-fit: cover;
}
.review-copy { padding: 14px 16px 16px; }
.review-stars {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
  color: var(--accent); font-size: 15px; letter-spacing: 1px;
  font-weight: 900; margin-bottom: 7px;
}
.review-stars span {
  color: var(--ink-soft); font-size: 12.5px; letter-spacing: 0;
  font-weight: 800;
}
.review-copy blockquote {
  margin: 0; color: var(--ink); font-size: clamp(15.5px, 4vw, 18px);
  line-height: 1.35; font-weight: 800; letter-spacing: 0;
}
.results-step {
  animation: none;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}
.results-sticky-actions {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  margin: 0; padding: 16px 22px calc(16px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 0%, transparent), color-mix(in srgb, var(--bg) 92%, transparent) 30%, var(--bg) 100%);
  border-top: 1px solid var(--card-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 -18px 34px color-mix(in srgb, var(--bg) 82%, transparent);
}
.results-sticky-actions .btn {
  max-width: min(520px, calc(100vw - 44px));
  min-height: 58px;
  font-size: clamp(15px, 3.6vw, 17px);
}
.results-sticky-actions .hero-footnote { display: none; }

@media (max-height: 720px) {
  .results-head, .review-page { margin-top: -4px; }
  .review-page .q-title { font-size: clamp(26px, 7vw, 34px); }
  .review-page .q-sub { margin-top: 8px; font-size: 14.5px; }
  .review-media img { max-height: 188px; }
  .review-copy { padding: 12px 14px 14px; }
  .review-copy blockquote { font-size: clamp(14.5px, 3.8vw, 16px); }
  .results-sticky-actions { padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .results-sticky-actions .btn { min-height: 54px; }
}

/* ---------- Pricing ---------- */
.pricing { padding-bottom: 30px; }
.urgency {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--accent);
  background: var(--accent-soft); border-radius: 12px;
  padding: 10px 14px; max-width: 460px; margin: 0 auto 16px;
}
.urgency .timer { font-variant-numeric: tabular-nums; }
.plans { display: flex; flex-direction: column; gap: 11px; max-width: 460px; margin: 0 auto; }
.plan {
  position: relative; display: flex; align-items: center; gap: 13px; text-align: left;
  background: var(--card); border: 2px solid var(--card-border); border-radius: var(--radius);
  padding: 15px 16px; box-shadow: var(--shadow); transition: all 0.15s; width: 100%;
}
.plan.selected { border-color: var(--accent); box-shadow: var(--shadow-strong); }
.plan .p-radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--card-border); flex: none; display: grid; place-items: center; }
.plan.selected .p-radio { border-color: var(--accent); }
.plan.selected .p-radio::after { content: ''; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); }
.plan .p-main { flex: 1; }
.plan .p-name { font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.plan .p-badge {
  font-size: 9.5px; font-weight: 900; letter-spacing: 0.6px; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 3px 8px; border-radius: 99px;
}
.plan .p-per { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.plan .p-price { text-align: right; }
.plan .p-price b { font-size: 16px; }
.plan .p-price span { display: block; font-size: 11.5px; color: var(--ink-soft); }
.plan .p-save { color: var(--success); font-weight: 700; font-size: 11.5px; }
.trial-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 12px; }
.trial-note.error-note {
  max-width: 460px; margin: 14px auto 0; padding: 11px 14px;
  border-radius: 14px; color: var(--accent); background: var(--accent-soft);
  font-weight: 800; line-height: 1.4;
}
.guarantee {
  display: flex; gap: 12px; align-items: flex-start; max-width: 460px; margin: 18px auto 0;
  background: var(--card); border: 1px dashed var(--card-border); border-radius: var(--radius); padding: 14px 16px;
  font-size: 13px; color: var(--ink-soft); line-height: 1.45;
}
.legal-links { text-align: center; font-size: 12px; color: var(--ink-soft); margin-top: 16px; }
.legal-links a { color: var(--ink-soft); }
.secure-line { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Paywall: FOMO / value / offer blocks ---------- */
.fomo {
  max-width: 460px; margin: 0 auto 14px; text-align: center;
  font-size: 14.5px; font-weight: 600; line-height: 1.45; color: var(--ink);
  background: var(--accent-soft); border-radius: 14px; padding: 13px 16px;
}
.urgency.spots { color: var(--accent); }
.urgency.spots b { font-size: 16px; }
.value-stack {
  list-style: none; max-width: 460px; margin: 0 auto 16px; padding: 0;
  display: grid; gap: 8px;
}
.value-stack li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink); }
.value-stack .vchk {
  flex: none; width: 19px; height: 19px; border-radius: 50%; margin-top: 1px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 900;
  display: grid; place-items: center;
}
.proof { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 14px; font-weight: 600; }

/* Single-plan hero price block */
.hero-offer {
  position: relative; max-width: 460px; margin: 4px auto 0; text-align: center;
  background: var(--card); border: 2px solid var(--accent); border-radius: var(--radius);
  padding: 22px 18px 18px; box-shadow: var(--shadow-strong);
}
.offer-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.7px; color: #fff; white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); padding: 4px 12px; border-radius: 99px;
}
.offer-price { display: flex; align-items: baseline; justify-content: center; gap: 7px; }
.offer-price s { color: var(--ink-soft); font-size: 19px; font-weight: 600; }
.offer-price b { font-size: 42px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.offer-price span { font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.offer-perday { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }

/* Multi-plan layouts */
.plans.triple, .plans.duo { gap: 12px; }
.plan .p-ribbon {
  position: absolute; top: -10px; right: 14px;
  font-size: 9.5px; font-weight: 900; letter-spacing: 0.5px; color: #fff; white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); padding: 3px 9px; border-radius: 99px;
}
.plan .p-price s { display: block; font-size: 12px; color: var(--ink-soft); text-decoration: line-through; }
.plan .p-price b { font-size: 19px; font-weight: 900; }
.plan .p-price .p-cad { display: inline; font-size: 12px; color: var(--ink-soft); }
.plan.selected { transform: translateY(-1px); }

/* ---------- Coach bubble ---------- */
.coach { display: none !important; position: fixed; right: 16px; bottom: 18px; z-index: 40; flex-direction: column; align-items: flex-end; gap: 6px; pointer-events: none; }
.coach[hidden] { display: none !important; }
.coach-bubble {
  pointer-events: auto; position: relative; max-width: 250px;
  background: var(--card); border: 1.5px solid var(--accent);
  border-radius: 14px 14px 4px 14px; padding: 12px 30px 12px 14px;
  box-shadow: var(--shadow); animation: coachIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes coachIn { from { opacity: 0; transform: translateY(10px) scale(0.95); } to { opacity: 1; transform: none; } }
.coach-name { font-size: 11px; font-weight: 800; letter-spacing: 0.6px; color: var(--accent); margin-bottom: 3px; }
.coach-text { font-size: 13.5px; line-height: 1.4; }
.coach-close { position: absolute; top: 6px; right: 9px; font-size: 15px; color: var(--ink-soft); }
.coach-avatar { font-size: 34px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  background: var(--ink); color: var(--bg); font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 99px; z-index: 60; box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: coachIn 0.3s;
}

/* ---------- Multi-select hint ---------- */
.multi-hint { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }

/* ---------- Dark theme (variant b) ---------- */
body.theme-dark {
  --bg: #16121c;
  --bg-soft: #1d1825;
  --ink: #fdf6f8;
  --ink-soft: #a99aa8;
  --card: #221c2c;
  --card-border: rgba(253, 246, 248, 0.10);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body.theme-dark .toast { background: #fdf6f8; color: #16121c; }

/* ---------- Desktop ---------- */
@media (min-width: 700px) {
  .stage { padding-top: 16px; }
  .hero { padding-top: 8vh; }
}
