/* 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; }

/* Trustpilot-style stars: white star on a slightly-rounded Trustpilot-green square.
   Sized in em so they scale with the surrounding text. */
.tp-stars { display: inline-flex; align-items: center; gap: 0.16em; vertical-align: -0.18em; line-height: 1; }
.tp-star {
  width: 1.15em; height: 1.15em; flex: none;
  background: #00b67a; border-radius: 0.2em;
  display: inline-flex; align-items: center; justify-content: center;
}
.tp-star::before {
  content: ''; width: 76%; height: 76%; background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

#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; }
body.ios-device #checkoutBtn::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

/* ---------- 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; }

/* ---------- Compatibility ---------- */
.compatibility-step {
  animation: none;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}
.compatibility-page {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding-top: clamp(12px, 3vh, 34px);
  text-align: center;
}
.compatibility-title {
  margin: 0 auto clamp(26px, 5vh, 42px);
  color: #111116;
  font-size: clamp(30px, 7.4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.7px;
}
.compatibility-title span {
  color: #4fc957;
  white-space: nowrap;
}
.compat-gauge {
  position: relative;
  width: min(520px, 100%);
  margin: 0 auto clamp(26px, 5vh, 40px);
  padding-bottom: 58px;
}
.compat-gauge-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.compat-arc {
  fill: none;
  stroke-width: 18;
  stroke-linecap: round;
}
.compat-arc-low { stroke: #ef423f; }
.compat-arc-mid { stroke: #f3dc24; }
.compat-arc-high { stroke: #4fc957; }
.compat-needle {
  stroke: #111116;
  stroke-width: 9;
  stroke-linecap: round;
  filter: drop-shadow(0 5px 8px rgba(17, 17, 22, 0.18));
}
.compat-pin { fill: #111116; }
.compat-pin-core { fill: #202026; }
.compat-score-pill {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  min-width: 112px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  border: 3px solid #4fc957;
  border-radius: 15px;
  background: #fff;
  color: #4fc957;
  font-size: clamp(32px, 7vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.compat-copy {
  max-width: 560px;
  margin: 0 auto;
  color: #15151a;
  font-size: clamp(22px, 5.2vw, 32px);
  line-height: 1.38;
  letter-spacing: -0.35px;
}
.compat-copy b {
  font-weight: 900;
}
.compat-footnote {
  margin-top: 32px;
  color: #9a969b;
  font-size: clamp(17px, 4vw, 23px);
  line-height: 1.4;
}
.compatibility-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);
}
.compatibility-sticky-actions .btn {
  max-width: min(520px, calc(100vw - 44px));
  min-height: 58px;
  font-size: clamp(15px, 3.6vw, 17px);
}

@media (max-width: 430px) {
  .compatibility-page {
    padding-top: 6px;
  }
  .compatibility-title {
    margin-bottom: 20px;
    font-size: clamp(28px, 8.2vw, 36px);
  }
  .compat-gauge {
    margin-bottom: 24px;
    padding-bottom: 50px;
  }
  .compat-arc {
    stroke-width: 17;
  }
  .compat-needle {
    stroke-width: 9;
  }
  .compat-pin {
    r: 22px;
  }
  .compat-pin-core {
    r: 8px;
  }
  .compat-score-pill {
    min-width: 104px;
    min-height: 52px;
    border-width: 3px;
    border-radius: 14px;
    font-size: clamp(29px, 8.4vw, 35px);
  }
  .compat-copy {
    font-size: clamp(20px, 5.8vw, 25px);
  }
  .compat-footnote {
    margin-top: 22px;
    font-size: clamp(16px, 4.6vw, 20px);
  }
}

@media (max-height: 720px) {
  .compatibility-page { padding-top: 0; }
  .compatibility-title { margin-bottom: 14px; font-size: clamp(27px, 6vw, 34px); }
  .compat-gauge { width: min(440px, 94%); margin-bottom: 16px; padding-bottom: 46px; }
  .compat-score-pill { min-height: 52px; min-width: 106px; font-size: clamp(30px, 6vw, 36px); }
  .compat-copy { font-size: clamp(18px, 4vw, 24px); }
  .compat-footnote { margin-top: 16px; font-size: clamp(15px, 3.5vw, 18px); }
  .compatibility-sticky-actions { padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .compatibility-sticky-actions .btn { min-height: 54px; }
}

/* ---------- 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; aspect-ratio: 1200 / 805;
  object-fit: contain;
}
.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-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; }
}

/* ---------- Plan benefits ---------- */
.plan-benefits-step {
  animation: none;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}
.benefits-page {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding-top: clamp(8px, 2.5vh, 24px);
}
.benefits-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(34px, 7vh, 64px);
}
.benefits-brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(28, 20, 24, 0.14);
  flex: none;
}
.benefits-brand b,
.benefits-brand span {
  display: block;
  line-height: 1.08;
}
.benefits-brand b {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.benefits-brand span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 700;
}
.benefits-title {
  max-width: 540px;
  margin: 0 auto clamp(26px, 5vh, 40px);
  font-size: clamp(22px, 5.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.5px;
  font-weight: 800;
  text-align: center;
}
.benefits-list {
  display: grid;
  gap: clamp(22px, 4.8vh, 34px);
}
.benefit-row {
  display: grid;
  grid-template-columns: 88px minmax(0, auto) 26px;
  align-items: center;
  justify-content: start;
  gap: clamp(18px, 5vw, 28px);
  min-height: 88px;
}
.benefit-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #f1f2f8;
  color: #0b0c10;
  font-size: 34px;
  line-height: 1;
  filter: grayscale(1) contrast(1.18);
}
.benefit-label {
  min-width: 0;
  color: color-mix(in srgb, var(--ink) 82%, #5c5c62);
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.benefit-up {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 18px solid #49c85b;
  filter: drop-shadow(0 10px 8px rgba(73, 200, 91, 0.26));
  transform: translateY(-4px);
}
.benefits-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);
}
.benefits-sticky-actions .btn {
  max-width: min(520px, calc(100vw - 44px));
  min-height: 58px;
  font-size: clamp(15px, 3.6vw, 17px);
}

@media (max-width: 430px) {
  .benefits-brand {
    gap: 11px;
    margin-bottom: 30px;
  }
  .benefits-brand img {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }
  .benefits-brand b { font-size: 19px; }
  .benefits-brand span { font-size: 17px; }
  .benefits-title {
    text-align: left;
    font-size: clamp(22px, 6.4vw, 27px);
    margin-bottom: 26px;
  }
  .benefits-list { gap: 20px; }
  .benefit-row {
    grid-template-columns: 56px minmax(0, auto) 22px;
    min-height: 56px;
    gap: 16px;
  }
  .benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 24px;
  }
  .benefit-label {
    font-size: clamp(16px, 4.4vw, 18px);
  }
  .benefit-up {
    border-left-width: 11px;
    border-right-width: 11px;
    border-bottom-width: 15px;
  }
}

@media (max-height: 720px) {
  .benefits-page { padding-top: 0; }
  .benefits-brand { margin-bottom: 22px; }
  .benefits-title { margin-bottom: 22px; font-size: clamp(21px, 5.4vw, 26px); }
  .benefits-list { gap: 16px; }
  .benefit-row { min-height: 52px; grid-template-columns: 52px minmax(0, auto) 20px; gap: 14px; }
  .benefit-icon { width: 52px; height: 52px; border-radius: 13px; font-size: 22px; }
  .benefit-label { font-size: clamp(15px, 4vw, 17px); }
  .benefit-up {
    border-left-width: 10px;
    border-right-width: 10px;
    border-bottom-width: 14px;
  }
  .benefits-sticky-actions { padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .benefits-sticky-actions .btn { min-height: 54px; }
}

/* ---------- Daily time ---------- */
.daily-time-step {
  animation: none;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}
.daily-time-page {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.daily-time-title {
  max-width: 540px;
  margin: clamp(10px, 3vh, 24px) auto clamp(20px, 4vh, 30px);
  text-align: center;
  font-size: clamp(22px, 5.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.time-visual {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
  box-shadow: 0 16px 34px rgba(28, 20, 24, 0.08);
  border: 1px solid rgba(28, 20, 24, 0.06);
  padding: 30px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.clock {
  position: relative;
  width: clamp(170px, 46vw, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 8px solid #0d0e12;
  box-shadow: inset 0 0 0 2px #e6e8eb, 0 10px 22px rgba(0, 0, 0, 0.12);
}
.clock-wedge {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(101, 236, 126, 0.32) 0deg 90deg, transparent 90deg 360deg);
}
.clock-ticks { position: absolute; inset: 0; }
.clock-ticks i {
  position: absolute;
  left: calc(50% - 1.5px);
  top: 0;
  width: 3px;
  height: 50%;
  transform-origin: 50% 100%;
}
.clock-ticks i::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 9px;
  background: #0d0e12;
  border-radius: 2px;
}
.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 50% 100%;
  border-radius: 99px;
  background: #0d0e12;
  z-index: 2;
}
.clock-hour { width: 6px; height: 27%; transform: translateX(-50%) rotate(0deg); }
.clock-min { width: 4px; height: 38%; background: #ef464f; transform: translateX(-50%) rotate(90deg); }
.clock-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ef464f;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.time-visual-cap {
  font-size: clamp(24px, 6.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0d0e12;
}
.time-equipment {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto 22px;
  color: #171418;
  font-size: clamp(15px, 3.8vw, 17px);
  line-height: 1.3;
}
.time-equipment b {
  font-weight: 900;
}
.time-equipment-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 20px;
  filter: grayscale(1) contrast(1.3);
}
.time-note {
  max-width: 540px;
  margin: 0 auto;
  padding-left: 26px;
  border-left: 5px solid color-mix(in srgb, var(--accent) 72%, #466df0);
  color: var(--ink);
}
.time-note p {
  font-size: clamp(14px, 3.4vw, 16px);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: -0.1px;
}
.time-note p + p {
  margin-top: 7px;
}
.time-note b {
  font-style: normal;
  font-weight: 900;
}
.daily-time-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);
}
.daily-time-sticky-actions .btn {
  max-width: min(520px, calc(100vw - 44px));
  min-height: 58px;
  font-size: clamp(15px, 3.6vw, 17px);
}

@media (max-width: 430px) {
  .daily-time-title {
    text-align: left;
    font-size: clamp(22px, 6.4vw, 27px);
    margin-bottom: 20px;
  }
  .time-visual {
    margin-bottom: 20px;
    border-radius: 18px;
    padding: 24px 16px 22px;
  }
  .time-equipment {
    font-size: clamp(14px, 4vw, 16px);
    gap: 10px;
    margin-bottom: 16px;
  }
  .time-equipment-icon {
    width: 28px;
    height: 28px;
    font-size: 19px;
  }
  .time-note {
    padding-left: 17px;
    border-left-width: 4px;
  }
  .time-note p {
    font-size: clamp(13px, 3.6vw, 15px);
  }
}

@media (max-height: 720px) {
  .daily-time-title { margin-top: 0; margin-bottom: 16px; font-size: clamp(21px, 5.4vw, 26px); }
  .time-visual { margin-bottom: 16px; padding: 22px 16px 20px; gap: 16px; }
  .clock { width: clamp(150px, 40vw, 185px); }
  .time-equipment { margin-bottom: 12px; font-size: clamp(14px, 3.8vw, 16px); }
  .time-note p { font-size: clamp(13px, 3.4vw, 15px); line-height: 1.45; }
  .daily-time-sticky-actions { padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .daily-time-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); }

/* ---------- 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-price--free { flex-direction: column; align-items: center; gap: 2px; }
.offer-price--free .offer-was { font-size: 18px; font-weight: 700; color: var(--ink-soft); text-decoration: line-through; }
.offer-price--free .offer-free { font-size: 46px; font-weight: 900; letter-spacing: -1px; line-height: 1; color: var(--accent); }
.offer-perday { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }

/* "Unlock in the app" note — iOS App Store redirect reassurance on the pricing page */
.app-unlock {
  max-width: 460px; margin: 16px auto 0; padding: 14px 16px; text-align: center;
  background: color-mix(in srgb, var(--accent) 7%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, #fff);
  border-radius: 14px;
}
.app-unlock-title { display: block; font-size: 16px; font-weight: 900; color: var(--ink); }
.app-unlock-copy { margin: 5px auto 0; max-width: 380px; font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); }

/* "Download on the App Store" badge — recreated in HTML/CSS (no image) */
.appstore-badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 13px; padding: 8px 15px;
  background: #000; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
.appstore-badge-logo { display: flex; }
.appstore-badge-logo svg { width: 23px; height: 23px; color: #fff; }
.appstore-badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.appstore-badge-text small { font-size: 10.5px; font-weight: 400; letter-spacing: 0.2px; }
.appstore-badge-text strong { font-size: 20px; font-weight: 600; letter-spacing: -0.6px; margin-top: 3px; }
.googleplay-badge .appstore-badge-text small { text-transform: uppercase; font-size: 9.5px; letter-spacing: 1px; }
.app-store-cta { cursor: pointer; transition: transform 0.12s, filter 0.2s; -webkit-tap-highlight-color: transparent; }
.app-store-cta:hover { filter: brightness(1.12); }
.app-store-cta:active { transform: scale(0.97); }
.app-store-cta:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* 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); }

/* Reference-style pricing page */
.pricing-ref {
  padding-bottom: 34px;
}
.pricing-reserve {
  width: min(600px, calc(100vw - 44px));
  min-height: 64px;
  margin: -8px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--card-border);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}
.pricing-reserve span {
  color: var(--ink-soft);
  font-weight: 700;
}
.pricing-reserve b {
  color: var(--ink);
  font-weight: 900;
}
.pricing-reserve strong {
  min-width: 48px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}
.pricing-page {
  width: 100%;
  max-width: 536px;
  margin: 0 auto;
}
.pricing-title {
  margin: 0 auto 12px;
  color: #111116;
  text-align: center;
  font-size: clamp(34px, 8vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  font-weight: 900;
}
.pricing-sub {
  max-width: 500px;
  margin: 0 auto 20px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}
.pricing-countdown {
  width: 100%;
  min-height: 42px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 9%, #fff);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.pricing-countdown p {
  margin: 0;
}
.pricing-countdown b {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.pricing-plans {
  max-width: 536px;
  gap: 12px;
}
.pricing-ref .pricing-plan {
  min-height: 76px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 112px;
  gap: 12px;
  align-items: center;
  padding: 13px 10px 13px 12px;
  border: 1.5px solid #dfdfe6;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(28, 20, 24, 0.06);
  background: #fff;
}
.pricing-ref .pricing-plan.selected {
  border-color: var(--accent);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 18%, transparent);
}
.pricing-ref .plan .p-radio {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.pricing-ref .plan.selected .p-radio::after {
  width: 10px;
  height: 10px;
}
.pricing-ref .plan .p-main {
  min-width: 0;
}
.pricing-ref .plan .p-name {
  display: block;
  color: #111116;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}
.pricing-ref .plan .p-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  min-width: 0;
  white-space: nowrap;
}
.pricing-ref .plan .p-line s {
  color: #9b969e;
  font-size: 12px;
  font-weight: 800;
}
.pricing-ref .plan .p-line .p-free { color: var(--accent); }
.pricing-ref .plan .p-line b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.pricing-ref .plan .p-daily {
  min-height: 54px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, #fff);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, #fff), #fff);
  color: var(--ink);
  text-align: center;
}
.pricing-ref .plan .p-daily s {
  color: #9b969e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.pricing-ref .plan .p-daily b {
  color: var(--accent);
  font-size: 13px;
  line-height: 1.05;
  font-weight: 900;
}
.pricing-ref .plan .p-daily .p-free {
  font-size: 22px;
  letter-spacing: -0.5px;
  line-height: 1;
}
.pricing-ref .plan .p-daily-free {
  border-color: color-mix(in srgb, var(--accent) 38%, #fff);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, #fff), #fff);
}
.pricing-ref .plan .p-daily em {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}
.pricing-ref .plan .p-ribbon {
  top: -9px;
  left: 36px;
  right: auto;
  background: var(--accent);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 9px;
}
.pricing-ref .trial-note {
  max-width: 536px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 12.5px;
  line-height: 1.45;
}
.pricing-actions {
  margin-top: 16px;
}
.pricing-actions .btn {
  max-width: 536px;
  min-height: 54px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}
.pricing-guarantee {
  max-width: 536px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}
.pricing-guarantee span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 13px;
}
.pricing-included {
  max-width: 536px;
  margin: 18px auto 0;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.pricing-included > b {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.pricing-included .value-stack {
  margin: 0;
  max-width: none;
  gap: 9px;
}
.pricing-included .value-stack li {
  font-size: 13.5px;
}
.pricing-ref .proof {
  max-width: 536px;
  margin: 18px auto 0;
}
.pricing-ref .guarantee {
  max-width: 536px;
  border-style: solid;
}

@media (max-width: 430px) {
  .pricing-reserve {
    width: calc(100vw - 32px);
    min-height: 58px;
    margin-bottom: 18px;
    font-size: 14px;
  }
  .pricing-title {
    font-size: clamp(29px, 8.4vw, 36px);
  }
  .pricing-ref .pricing-plan {
    grid-template-columns: 20px minmax(0, 1fr) 96px;
    gap: 9px;
    min-height: 72px;
    padding: 12px 8px 12px 10px;
  }
  .pricing-ref .plan .p-name {
    font-size: 14px;
  }
  .pricing-ref .plan .p-line {
    gap: 5px;
  }
  .pricing-ref .plan .p-line s {
    font-size: 11px;
  }
  .pricing-ref .plan .p-line b {
    font-size: 12px;
  }
  .pricing-ref .plan .p-daily {
    min-height: 50px;
    border-radius: 8px;
  }
  .pricing-ref .plan .p-daily s,
  .pricing-ref .plan .p-daily em {
    font-size: 10px;
  }
  .pricing-ref .plan .p-daily b {
    font-size: 12px;
  }
}

/* ---------- 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; }
}
