:root{
  --ink:#0a0a0a;
  --surface:#141414;
  --surface-hi:#1c1c1c;
  --border:#262626;
  --border-hi:#3a3a3a;
  --volt:#d9ff00;
  --volt-dim:#c8f500;
  --text:#ffffff;
  --muted:#9ca3af;
  --muted-dim:#6b7280;
  --court:#16302a;
  --radius:14px;
  --shadow:0 14px 34px rgba(0,0,0,.5);
  --glow:0 0 40px rgba(217,255,0,.12);
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent;}
html,body{background:var(--ink);color:var(--text);font-family:'Inter',system-ui,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;}
body{min-height:100dvh;display:flex;flex-direction:column;}
button{cursor:pointer;font-family:inherit;}
h1,h2,h3{font-family:'Space Grotesk',sans-serif;font-weight:700;letter-spacing:-.02em;line-height:1.15;}
:focus-visible{outline:2px solid var(--volt);outline-offset:3px;border-radius:6px;}

/* ---------- SHELL ---------- */
.shell{width:100%;max-width:440px;margin:0 auto;flex:1;display:flex;flex-direction:column;padding:0 20px;}
#stage{flex:1;display:flex;flex-direction:column;}

/* ---------- TOP BAR ---------- */
.topbar{position:sticky;top:0;z-index:20;background:var(--ink);padding:12px 0 10px;display:flex;flex-direction:column;gap:10px;}
.topbar-brand{font-family:'Space Grotesk',sans-serif;font-size:12.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text);text-align:center;}
.topbar-brand span{color:var(--volt);}
.topbar-row{display:flex;align-items:center;gap:12px;}
.back{width:34px;height:34px;border:1px solid var(--border);background:transparent;border-radius:9px;color:var(--muted);font-size:16px;line-height:1;display:none;align-items:center;justify-content:center;flex-shrink:0;transition:border-color .2s,color .2s;}
.back:hover{border-color:var(--border-hi);color:var(--text);}
.back.on{display:flex;}
.progress-track{flex:1;height:4px;background:var(--border);border-radius:99px;overflow:hidden;}
.progress-fill{height:100%;width:0%;background:var(--volt);border-radius:99px;transition:width .45s cubic-bezier(.4,0,.2,1);}
.step-count{font-size:11px;font-weight:600;color:var(--muted-dim);font-variant-numeric:tabular-nums;flex-shrink:0;}

/* ---------- SCREEN ---------- */
.screen{display:none;flex:1;flex-direction:column;padding:8px 0 32px;}
.screen.active{display:flex;animation:enter .38s cubic-bezier(.16,1,.3,1);}
.screen.no-anim{animation:none;}
@keyframes enter{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:none;}}
@media (prefers-reduced-motion:reduce){.screen.active{animation:none;} *{transition-duration:.01ms !important;}}

.eyebrow{font-family:'Space Grotesk',sans-serif;font-size:10.5px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--volt);margin-bottom:14px;}
.q-title{font-size:25px;margin-bottom:8px;}
.q-sub{font-size:14px;color:var(--muted);line-height:1.55;margin-bottom:26px;}

/* ---------- OPTIONS ---------- */
.options{display:flex;flex-direction:column;gap:10px;}
.opt{display:flex;align-items:center;gap:13px;width:100%;text-align:left;background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:17px 16px;color:var(--text);font-size:15px;font-weight:500;transition:border-color .18s,background .18s,transform .1s;}
.opt:hover{border-color:var(--border-hi);background:var(--surface-hi);}
.opt:active{transform:scale(.985);}
.opt.sel{border-color:var(--volt);background:rgba(217,255,0,.06);}
.opt-mark{width:21px;height:21px;border-radius:50%;border:1.5px solid var(--border-hi);flex-shrink:0;position:relative;transition:border-color .18s;}
.opt.sel .opt-mark{border-color:var(--volt);}
.opt.sel .opt-mark::after{content:'';position:absolute;top:4px;right:4px;bottom:4px;left:4px;border-radius:50%;background:var(--volt);}
.opt-mark.box{border-radius:6px;}
.opt.sel .opt-mark.box::after{content:'✓';top:0;right:0;bottom:0;left:0;background:var(--volt);border-radius:5px;color:#0a0a0a;font-size:13px;font-weight:800;display:flex;align-items:center;justify-content:center;}

/* ---------- CTA ---------- */
.cta{width:100%;background:var(--volt);color:#0a0a0a;border:none;border-radius:var(--radius);padding:17px;font-family:'Space Grotesk',sans-serif;font-size:15.5px;font-weight:700;margin-top:22px;transition:opacity .2s,transform .1s;}
.cta.pulse{animation:pulseGreen 1.8s ease-in-out infinite;}
@keyframes pulseGreen{0%,100%{box-shadow:0 0 0 rgba(217,255,0,0);}50%{box-shadow:0 0 0 8px rgba(217,255,0,.12);}}
@media (prefers-reduced-motion:reduce){.cta.pulse{animation:none;}}
.cta:active{transform:scale(.99);}
.cta:disabled{opacity:.3;pointer-events:none;}
.cta-note{text-align:center;font-size:12px;color:var(--muted-dim);margin-top:12px;}

/* ---------- SLIDER ---------- */
.slider-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px 20px;margin-bottom:8px;}
.slider-statement{font-size:17px;font-weight:600;line-height:1.45;margin-bottom:26px;}
input[type=range]{width:100%;-webkit-appearance:none;appearance:none;background:transparent;}
input[type=range]::-webkit-slider-runnable-track{height:5px;background:var(--border);border-radius:99px;}
input[type=range]::-moz-range-track{height:5px;background:var(--border);border-radius:99px;}
input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:27px;height:27px;border-radius:50%;background:var(--volt);margin-top:-11px;box-shadow:0 0 0 5px rgba(217,255,0,.14);}
input[type=range]::-moz-range-thumb{width:27px;height:27px;border:none;border-radius:50%;background:var(--volt);box-shadow:0 0 0 5px rgba(217,255,0,.14);}
.slider-ends{display:flex;justify-content:space-between;margin-top:14px;font-size:12px;color:var(--muted-dim);}
.slider-live{text-align:center;font-family:'Space Grotesk',sans-serif;font-size:14px;font-weight:600;color:var(--volt);margin-top:16px;min-height:20px;}

/* ---------- INTERSTITIAL ---------- */
.inter{flex:1;display:flex;flex-direction:column;justify-content:center;text-align:center;padding:20px 0;}
.inter-mark{width:52px;height:52px;margin:0 auto 22px;border-radius:14px;background:rgba(217,255,0,.1);border:1px solid rgba(217,255,0,.25);display:flex;align-items:center;justify-content:center;}
.inter-img{width:100%;border-radius:16px;overflow:hidden;margin-bottom:20px;background:linear-gradient(150deg,var(--court),var(--surface));border:1px solid var(--border);position:relative;min-height:0;}
.inter-img img{width:100%;height:auto;display:block;}
.inter-img .ph{position:relative;min-height:200px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--muted-dim);font-size:11px;text-align:center;padding:0 20px;line-height:1.5;}
.inter-img .ph svg{width:30px;height:30px;opacity:.5;}
.inter h2{font-size:23px;margin-bottom:14px;}
.inter p{font-size:14.5px;color:var(--muted);line-height:1.6;}
.inter .quote{font-style:italic;color:var(--text);border-left:2px solid var(--volt);padding-left:14px;text-align:left;margin-top:22px;font-size:14px;line-height:1.6;}

/* ---------- EMAIL ---------- */
.field{width:100%;background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:17px 16px;color:var(--text);font-size:16px;font-family:inherit;transition:border-color .18s;}
.field:focus{outline:none;border-color:var(--volt);}
.field::placeholder{color:var(--muted-dim);}
.field-err{font-size:12.5px;color:#ff6b6b;margin-top:9px;display:none;}
.field-err.on{display:block;}
.typo-hint{display:none;font-size:12.5px;color:var(--muted);margin-top:9px;}
.typo-hint.on{display:block;}
.typo-fix{background:none;border:none;color:var(--volt);font-weight:700;font-size:12.5px;text-decoration:underline;font-family:inherit;padding:0;cursor:pointer;}
.privacy{display:flex;gap:9px;align-items:flex-start;margin-top:18px;font-size:11.5px;color:var(--muted-dim);line-height:1.5;}

/* ---------- LOADING ---------- */
.loading{flex:1;display:flex;flex-direction:column;justify-content:center;text-align:center;}
.load-pct{font-family:'Space Grotesk',sans-serif;font-size:44px;font-weight:700;color:var(--volt);font-variant-numeric:tabular-nums;margin-bottom:20px;text-shadow:0 0 30px rgba(217,255,0,.3);}
.load-track{height:5px;background:var(--border);border-radius:99px;overflow:hidden;margin-bottom:26px;}
.load-fill{height:100%;width:0%;background:var(--volt);border-radius:99px;transition:width .3s linear;}
.load-msg{font-size:14.5px;color:var(--muted);min-height:22px;transition:opacity .3s;}
.load-reviews{margin-top:38px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px;min-height:118px;}
.load-reviews .stars{color:var(--volt);font-size:12px;margin-bottom:9px;}
.load-reviews .lq{font-size:13px;line-height:1.55;color:var(--text);margin-bottom:12px;min-height:58px;transition:opacity .35s;}
.load-reviews .lwho{font-size:11.5px;color:var(--muted-dim);}
.load-reviews .lwho b{color:var(--muted);font-weight:600;}
.load-dots{display:flex;justify-content:center;gap:6px;margin-top:14px;}
.load-dots span{width:5px;height:5px;border-radius:50%;background:var(--border-hi);}
.load-dots span.on{background:var(--volt);}

/* ---------- REVEAL ---------- */
.profile-card{background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1px solid var(--border);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow);margin-bottom:18px;}
.profile-row{display:flex;justify-content:space-between;align-items:baseline;padding:11px 0;border-bottom:1px solid var(--border);font-size:14px;gap:14px;}
.profile-row:last-child{border-bottom:none;}
.profile-row span{color:var(--muted);flex-shrink:0;}
.profile-row b{font-weight:600;text-align:right;}
.stat-flag{background:rgba(217,255,0,.07);border:1px solid rgba(217,255,0,.22);border-radius:var(--radius);padding:17px;text-align:center;margin-bottom:22px;}
.stat-flag .big{font-family:'Space Grotesk',sans-serif;font-size:30px;font-weight:700;color:var(--volt);display:block;line-height:1.1;}
.stat-flag .lbl{font-size:12.5px;color:var(--muted);margin-top:6px;display:block;line-height:1.5;}

/* ---------- LIVE DRILL: animated court + full open drill card ---------- */
.drill-wrap{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:16px;margin-bottom:14px;}
.drill-wrap .cap{font-family:'Space Grotesk',sans-serif;font-size:10.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dim);margin-bottom:12px;display:flex;align-items:center;gap:7px;}
.drill-wrap .cap .live{width:6px;height:6px;border-radius:50%;background:var(--volt);animation:livePulse 1.6s ease-in-out infinite;}
@keyframes livePulse{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(217,255,0,.5);}50%{opacity:.55;box-shadow:0 0 0 5px rgba(217,255,0,0);}}
svg.drill-court{width:100%;height:auto;display:block;overflow:visible;}
.drill-court .draw{stroke-dasharray:420;stroke-dashoffset:420;animation:drillDraw 1s ease forwards;}
@keyframes drillDraw{to{stroke-dashoffset:0;}}
.drill-court .pop{opacity:0;animation:drillPop .45s cubic-bezier(.34,1.56,.64,1) forwards;}
@keyframes drillPop{from{opacity:0;transform:scale(.4);}to{opacity:1;transform:scale(1);}}
.drill-court .ball{opacity:0;}
.drill-court .trail{opacity:0;}
.hit-label{font-family:'Space Grotesk',sans-serif;font-size:9px;font-weight:700;fill:var(--volt);opacity:0;}
.drill-caption{font-size:12px;color:var(--muted);line-height:1.5;margin-top:12px;}
.drill-caption b{color:var(--text);}
.adapt-line{font-size:12.5px;color:var(--muted);line-height:1.55;margin-bottom:14px;padding:15px 16px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);text-align:center;}
.adapt-line b{color:var(--text);}
@media (prefers-reduced-motion:reduce){
  .drill-court .draw,.drill-court .pop{animation:none;stroke-dashoffset:0;opacity:1;transform:none;}
  .drill-court .ball,.drill-court .trail,.hit-label{animation:none!important;opacity:1;}
}

/* full open drill card — the proof of product */
.drill-card{background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1.5px solid rgba(217,255,0,.35);border-radius:var(--radius);padding:18px;margin-bottom:14px;box-shadow:var(--glow);}
.drill-card .open-tag{display:inline-flex;align-items:center;gap:5px;font-family:'Space Grotesk',sans-serif;font-size:9.5px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#0a0a0a;background:var(--volt);border-radius:99px;padding:4px 10px;margin-bottom:12px;}
.drill-card h3{font-size:17px;margin-bottom:12px;line-height:1.25;}
.drill-field{margin-bottom:13px;}
.drill-field:last-child{margin-bottom:0;}
.drill-field .fl{font-family:'Space Grotesk',sans-serif;font-size:9.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted-dim);margin-bottom:5px;}
.drill-field p{font-size:12.5px;line-height:1.55;color:var(--text);}
.drill-field ol{margin:0;padding-left:16px;}
.drill-field ol li{font-size:12.5px;line-height:1.55;color:var(--text);margin-bottom:4px;}
.drill-field.err{background:rgba(255,80,80,.06);border-left:2px solid rgba(255,90,90,.6);border-radius:0 8px 8px 0;padding:10px 12px;}
.drill-field.err .fl{color:#ff8080;}
.drill-field.fix{background:rgba(217,255,0,.06);border-left:2px solid var(--volt);border-radius:0 8px 8px 0;padding:10px 12px;}
.drill-field.fix .fl{color:var(--volt);}
.drill-note{font-size:11.5px;color:var(--muted-dim);font-style:italic;margin-top:12px;padding-top:11px;border-top:1px solid var(--border);}

/* locked blocks — the contrast that sells */
.session-row.locked{opacity:.62;}
.session-row.locked .session-body strong{display:flex;align-items:center;gap:7px;}
.lock-ic{width:11px;height:11px;flex-shrink:0;opacity:.75;}
.locked-note{text-align:center;font-size:11.5px;color:var(--muted-dim);margin:-8px 0 22px;}

.session-block{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:22px;}
.session-row{display:flex;gap:14px;padding:16px;border-bottom:1px solid var(--border);align-items:flex-start;}
.session-row:last-child{border-bottom:none;}
.session-icon{width:38px;height:38px;border-radius:10px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.session-icon svg{width:19px;height:19px;}
.session-time{font-family:'Space Grotesk',sans-serif;font-size:10.5px;font-weight:600;flex-shrink:0;padding-top:2px;font-variant-numeric:tabular-nums;text-transform:uppercase;letter-spacing:.05em;}
.session-body{flex:1;}
.session-body strong{display:block;font-size:14.5px;font-weight:600;margin-bottom:3px;}
.session-body em{font-style:normal;font-size:12.5px;color:var(--muted);line-height:1.5;}

/* ---------- OFFER ---------- */
.offer-head{text-align:center;margin-bottom:22px;}
.offer-head h2{font-size:26px;margin-bottom:10px;}
.offer-head p{font-size:14px;color:var(--muted);line-height:1.55;}
.offer-hero-img{width:100%;border-radius:16px;overflow:hidden;margin-bottom:22px;background:linear-gradient(150deg,#1c2333,var(--surface));border:1px solid var(--border);position:relative;min-height:0;}
.offer-hero-img img{width:100%;height:auto;display:block;}
.offer-hero-img .ph{position:relative;min-height:200px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--muted-dim);font-size:11px;text-align:center;padding:0 24px;line-height:1.5;}
.offer-hero-img .ph svg{width:32px;height:32px;opacity:.5;}

.section-lbl{font-family:'Space Grotesk',sans-serif;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dim);text-align:center;margin:34px 0 16px;}

/* -- big urgency timer, above the buybox -- */
.urgency-card{background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1.5px solid var(--volt);border-radius:18px;padding:22px 18px;text-align:center;margin-bottom:20px;box-shadow:var(--glow),var(--shadow);}
.urgency-card .eyebrow2{font-size:11.5px;font-weight:700;color:var(--volt);letter-spacing:.04em;margin-bottom:10px;}
.urgency-card h3{font-size:16.5px;margin-bottom:14px;}
.urgency-clock{font-family:'Space Grotesk',sans-serif;font-size:38px;font-weight:700;color:var(--volt);font-variant-numeric:tabular-nums;text-shadow:0 0 26px rgba(217,255,0,.35);}
.urgency-labels{display:flex;justify-content:center;gap:28px;margin-top:4px;margin-bottom:14px;}
.urgency-labels span{font-size:9.5px;color:var(--muted-dim);font-weight:700;letter-spacing:.05em;}
.urgency-card .note{font-size:12px;color:var(--muted);line-height:1.5;}
.urgency-card .note b{color:var(--volt);}

/* -- buybox, landing-fidelity -- */
.price-card{background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1px solid var(--border);border-radius:20px;padding:26px 20px 22px;box-shadow:var(--glow),var(--shadow);position:relative;overflow:hidden;}
.price-card::before{content:'';position:absolute;top:0;left:0;right:0;height:6px;border-radius:20px 20px 0 0;background:linear-gradient(90deg,var(--volt),#c8f500);}
.price-tab{position:absolute;top:12px;left:50%;transform:translateX(-50%);background:var(--volt);color:#0a0a0a;font-size:10.5px;font-weight:800;padding:7px 16px;border-radius:99px;white-space:nowrap;z-index:2;}
.price-card h3{font-size:19px;text-align:center;margin:44px 0 2px;letter-spacing:.01em;}
.price-card .plabel{text-align:center;font-size:12px;color:var(--muted);margin-bottom:16px;}
.included-lbl{text-align:center;font-size:11px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--text);margin-bottom:14px;}
.incl-flat{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:10px 8px;margin-bottom:4px;}
.incl-flat li{display:flex;gap:6px;font-size:12px;font-weight:600;align-items:flex-start;line-height:1.35;}
.incl-flat .tick{color:var(--volt);font-weight:800;flex-shrink:0;}
.price-card hr{border:none;border-top:1px solid var(--border);margin:14px 0;}
.price-total-value{text-align:center;font-size:12px;color:var(--muted-dim);margin-bottom:8px;}
.price-total-value s{color:var(--muted);}
.price-main{text-align:center;padding-bottom:2px;}
.price-from{font-size:11px;color:var(--muted-dim);letter-spacing:.08em;text-transform:uppercase;margin-bottom:2px;}
.cp-note{font-size:10.5px;color:var(--muted-dim);margin-top:6px;}
.price-amt{font-family:'Space Grotesk',sans-serif;font-size:50px;font-weight:700;line-height:1;letter-spacing:-.03em;display:inline-flex;align-items:baseline;}
.price-amt sup{font-size:22px;vertical-align:super;margin-right:2px;top:-.4em;position:relative;}
.price-amt .cur{font-family:'Inter',sans-serif;font-size:12px;font-weight:400;color:var(--muted);margin-left:7px;letter-spacing:0;}
.save-row{display:flex;align-items:center;justify-content:center;gap:10px;margin:12px 0 0;flex-wrap:wrap;}
.save-pill{background:var(--volt);color:#0a0a0a;font-size:10.5px;font-weight:800;padding:6px 13px;border-radius:99px;}
.save-row .renews{font-size:11px;color:var(--muted-dim);font-weight:700;letter-spacing:.03em;}
.weekly-note{text-align:center;font-size:11.5px;color:var(--muted-dim);margin-top:8px;}
.currency-note{text-align:center;font-size:11px;color:var(--muted-dim);margin:12px 0 14px;font-weight:600;}
.ends-box{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap;border:1px solid var(--border-hi);border-radius:11px;padding:12px 10px;margin-bottom:16px;font-size:12px;font-weight:700;}
.ends-box b{color:var(--volt);font-family:'Space Grotesk',sans-serif;font-size:14px;font-variant-numeric:tabular-nums;}
.ends-box .u{font-size:8.5px;color:var(--muted-dim);font-weight:600;}
.cta-sub{text-align:center;font-size:11.5px;color:var(--muted-dim);margin-top:9px;font-weight:600;}
.guarantee-inline{text-align:center;font-size:11.5px;color:var(--volt);font-weight:700;margin-top:12px;}
.trust{display:flex;justify-content:center;gap:13px;flex-wrap:wrap;margin-top:14px;font-size:11px;color:var(--muted-dim);}
.offer-pay-icons{display:flex;justify-content:center;gap:7px;flex-wrap:wrap;margin-top:14px;}
.offer-pay-icons svg{border-radius:4px;}

/* -- pain block (red X list) -- */
.pain-title{font-size:19px;text-align:center;margin-bottom:18px;line-height:1.35;}
.pain-list{display:flex;flex-direction:column;gap:9px;margin-bottom:6px;}
.pain-item{display:flex;gap:11px;align-items:flex-start;background:rgba(255,0,0,.05);border:1.5px solid rgba(160,0,20,.55);border-radius:16px;padding:14px 15px;}
.pain-item .x{flex-shrink:0;color:#ff3355;font-size:14px;font-weight:900;line-height:1.4;}
.pain-item p{font-size:12.5px;color:var(--text);font-weight:600;line-height:1.45;}

/* -- before/after -- */
.ba-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.ba-col{border-radius:var(--radius);padding:16px 14px;}
.ba-col.before{background:rgba(255,80,80,.06);border:1px solid rgba(255,80,80,.22);}
.ba-col.after{background:rgba(217,255,0,.06);border:1px solid rgba(217,255,0,.25);}
.ba-col .lbl{font-family:'Space Grotesk',sans-serif;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;}
.ba-col.before .lbl{color:#ff8080;}
.ba-col.after .lbl{color:var(--volt);}
.ba-col li{list-style:none;font-size:12px;line-height:1.5;padding:5px 0;color:var(--text);}
.ba-col.before li::before{content:'✕ ';color:#ff8080;}
.ba-col.after li::before{content:'✓ ';color:var(--volt);}

/* -- guarantee -- */
.guarantee-card{background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1px solid var(--border);border-radius:18px;padding:26px 20px;text-align:center;box-shadow:var(--glow);}
.guarantee-card .badge{display:inline-block;background:var(--volt);color:#0a0a0a;font-size:10px;font-weight:800;letter-spacing:.03em;padding:6px 14px;border-radius:99px;margin-bottom:16px;}
.guarantee-shield{width:56px;height:56px;border-radius:50%;background:rgba(217,255,0,.12);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;font-size:24px;}
.guarantee-card h3{font-size:20px;margin-bottom:12px;}
.guarantee-card .main{font-size:13.5px;font-weight:600;line-height:1.55;margin-bottom:12px;}
.guarantee-card .sub{font-size:12px;color:var(--muted);line-height:1.5;margin-bottom:16px;}
.guarantee-card hr{border:none;border-top:1px solid var(--border);margin-bottom:16px;}
.g-trust{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;font-size:11px;font-weight:600;color:var(--muted);}

/* -- faq -- */
.offer-faq{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;}
.offer-faq .fq-item{border-bottom:1px solid var(--border);padding:15px 16px;}
.offer-faq .fq-item:last-child{border-bottom:none;}
.offer-faq .fq-q{display:flex;justify-content:space-between;gap:10px;font-size:13px;font-weight:600;cursor:pointer;}
.offer-faq .fq-q .plus{color:var(--volt);flex-shrink:0;transition:transform .2s;}
.offer-faq .fq-item.open .plus{transform:rotate(45deg);}
.offer-faq .fq-a{max-height:0;overflow:hidden;transition:max-height .25s ease;}
.offer-faq .fq-a p{font-size:12px;color:var(--muted);line-height:1.55;padding-top:10px;}

/* -- reviews -- */
.offer-review{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:16px;margin-bottom:10px;}
.offer-review .top{display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.offer-review .av{width:34px;height:34px;border-radius:50%;background:var(--volt);color:#0a0a0a;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;position:relative;overflow:hidden;}
.offer-review .av img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover;display:none;}
.offer-review .stars{color:var(--volt);font-size:12px;}
.offer-review p{font-size:12.5px;font-style:italic;color:var(--text);line-height:1.5;margin-bottom:8px;}
.offer-review .who{font-size:11.5px;color:var(--muted-dim);}
.offer-review .who b{color:var(--muted);font-weight:600;}

/* -- compact closing buybox -- */
.close-buybox{background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1px solid var(--border);border-radius:18px;padding:26px 18px 22px;margin-bottom:20px;position:relative;overflow:hidden;box-shadow:var(--glow);}
.close-buybox::before{content:'';position:absolute;top:0;left:0;right:0;height:5px;border-radius:18px 18px 0 0;background:linear-gradient(90deg,var(--volt),#c8f500);}
.close-buybox .clock{text-align:center;font-family:'Space Grotesk',sans-serif;font-size:28px;font-weight:700;color:var(--volt);font-variant-numeric:tabular-nums;margin-bottom:2px;text-shadow:0 0 22px rgba(217,255,0,.35);}
.close-buybox .clock-lbls{display:flex;justify-content:center;gap:26px;margin-bottom:18px;}
.close-buybox .clock-lbls span{font-size:8.5px;color:var(--muted-dim);font-weight:700;letter-spacing:.05em;}
.close-buybox .tab{position:absolute;top:14px;right:14px;background:var(--volt);color:#0a0a0a;font-size:9.5px;font-weight:800;padding:5px 11px;border-radius:99px;z-index:2;}
.close-buybox h4{font-family:'Space Grotesk',sans-serif;font-size:18px;font-weight:700;margin:34px 0 3px;text-align:center;}
.close-buybox .plabel{font-size:11.5px;color:var(--muted);margin-bottom:18px;text-align:center;}
.close-buybox .prow{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;margin-bottom:16px;}
.close-buybox .old{font-size:13px;color:var(--muted-dim);text-decoration:line-through;}
.close-buybox .new{font-family:'Space Grotesk',sans-serif;font-size:30px;font-weight:700;}
.close-buybox .perlbl{font-size:11px;color:var(--muted);margin-left:4px;}
.close-buybox .save-pill{flex-shrink:0;}

.footnote{text-align:center;font-size:11px;color:var(--muted-dim);margin-top:26px;line-height:1.6;padding-bottom:20px;}


/* -- personalization card: their own answers, reflected back -- */
.personal-card{background:var(--surface);border:1px solid var(--border);border-left:2px solid var(--volt);border-radius:0 var(--radius) var(--radius) 0;padding:18px;margin:22px 0;}
.pc-lbl{font-family:'Space Grotesk',sans-serif;font-size:9.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted-dim);margin-bottom:10px;}
.pc-quote{font-size:14px;line-height:1.55;color:var(--text);margin-bottom:16px;}
.pc-math{border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:4px 0;margin-bottom:14px;}
.pc-row{display:flex;justify-content:space-between;align-items:baseline;gap:12px;padding:9px 0;font-size:12.5px;color:var(--muted);}
.pc-row b{font-family:'Space Grotesk',sans-serif;color:var(--text);font-size:13.5px;text-align:right;}
.pc-row.hi b{color:var(--volt);}
.pc-close{font-size:13px;color:var(--text);line-height:1.5;font-weight:600;}

/* ---------- DISCOUNT CARDS ----------
   Sized so the whole sequence — heading, 2x2 grid, revealed result and CTA —
   fits one phone viewport. Nothing grows on flip; the winner is signalled with
   colour and glow instead of scale, which is what was pushing the result
   off-screen before. */
.cards-screen{flex:1;display:flex;flex-direction:column;justify-content:flex-start;align-items:center;text-align:center;padding:6px 0 0;}
.cards-screen>*{width:100%;}
.cards-screen .eyebrow{margin-bottom:6px;}
.cards-screen h2{font-size:19px;margin-bottom:7px;line-height:1.3;}
.cards-screen .sub{font-size:12.5px;color:var(--muted);line-height:1.5;margin-bottom:16px;}

.card-grid{display:grid;grid-template-columns:repeat(2,1fr);grid-auto-rows:132px;gap:10px;perspective:1000px;margin:0 auto;max-width:214px;width:100%;}
.pcard{position:relative;height:132px;width:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:transform .5s cubic-bezier(.34,1.4,.64,1),opacity .45s;cursor:pointer;animation:cardIn .5s cubic-bezier(.34,1.4,.64,1) backwards;}
@keyframes cardIn{from{opacity:0;transform:translateY(16px) rotateX(-16deg);}to{opacity:1;transform:none;}}
.pcard .face{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;border-radius:10px;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden;box-sizing:border-box;}

/* back: reads as an actual card — filled, bordered, patterned */
.pcard .back{background:linear-gradient(150deg,#232b0c 0%,#141a06 60%,#0f1305 100%);border:1.5px solid rgba(217,255,0,.55);box-shadow:inset 0 0 18px rgba(217,255,0,.07);}
.pcard .back::before{content:'';position:absolute;top:5px;right:5px;bottom:5px;left:5px;border:1px solid rgba(217,255,0,.22);border-radius:6px;}
.pcard .back::after{content:'';position:absolute;top:-60%;left:-60%;width:55%;height:220%;background:linear-gradient(90deg,transparent,rgba(217,255,0,.2),transparent);transform:rotate(22deg);animation:cardShine 2.8s ease-in-out infinite;}
@keyframes cardShine{0%{left:-60%;}55%,100%{left:130%;}}
.pcard .back svg{width:26px;height:26px;color:var(--volt);opacity:.92;position:relative;z-index:1;}

.pcard .front{background:linear-gradient(150deg,var(--surface-hi),var(--surface));border:1.5px solid var(--border-hi);-webkit-transform:rotateY(180deg);transform:rotateY(180deg);}
.pcard .front .pct{font-family:'Space Grotesk',sans-serif;font-size:20px;font-weight:700;line-height:1;}
.pcard .front .off{font-size:8.5px;font-weight:600;letter-spacing:.09em;color:var(--muted-dim);margin-top:3px;}

.pcard.flipped{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);}
/* iOS Safari ignores backface-visibility on elements that clip their overflow,
   which let the card back show through the revealed number. Belt and braces. */
.pcard.flipped .back{opacity:0;visibility:hidden;}
.pcard .back{transition:opacity .25s ease .25s,visibility 0s linear .3s;}
.pcard.win .front{border-color:var(--volt);background:linear-gradient(150deg,#2b3609,#161c05);box-shadow:0 0 22px rgba(217,255,0,.45);}
.pcard.win .front .pct{color:var(--volt);font-size:23px;}
.pcard.dim .face{opacity:.5;}
.pcard.dim .front{border-color:var(--border);background:var(--surface);box-shadow:none;}
.pcard.dim .front .pct{color:var(--muted-dim);font-size:17px;}
.pcard.dim .front .off{opacity:.6;}

.cards-hint{font-size:11.5px;color:var(--muted-dim);margin-top:12px;min-height:16px;}

.win-banner{opacity:0;transform:translateY(8px);transition:opacity .4s ease .25s,transform .4s ease .25s;background:linear-gradient(165deg,var(--surface-hi),var(--surface));border:1.5px solid var(--volt);border-radius:var(--radius);padding:15px;margin-top:12px;box-shadow:var(--glow);}
.win-banner.on{opacity:1;transform:none;}
.win-banner .big{font-family:'Space Grotesk',sans-serif;font-size:27px;font-weight:700;color:var(--volt);line-height:1;}
.win-banner.on .big{animation:winDrop .45s cubic-bezier(.34,1.56,.64,1);}
@keyframes winDrop{from{transform:translateY(-10px) scale(.85);opacity:0;}to{transform:none;opacity:1;}}
.win-banner .code{display:inline-block;font-family:'Space Grotesk',sans-serif;font-size:12px;font-weight:700;letter-spacing:.11em;background:rgba(217,255,0,.12);border:1px dashed rgba(217,255,0,.45);border-radius:7px;padding:6px 13px;margin-top:9px;}
.win-banner .applied{font-size:10.5px;color:var(--muted-dim);margin-top:7px;}
@media (prefers-reduced-motion:reduce){.pcard,.pcard .back::after,.win-banner.on .big{animation:none!important;}}



/* ---------- sticky buy bar ---------- */
.sticky-buy{position:fixed;left:0;right:0;bottom:0;z-index:60;display:flex;align-items:center;gap:12px;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(10,10,10,.94);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid var(--border);
  transform:translateY(110%);opacity:0;pointer-events:none;transition:transform .28s ease,opacity .28s ease;}
.sticky-buy.on{transform:translateY(0);opacity:1;pointer-events:auto;}
.sticky-buy .sb-price{display:flex;flex-direction:column;line-height:1.15;flex:0 0 auto;}
.sticky-buy .sb-old{font-size:12px;color:var(--muted-dim);text-decoration:line-through;}
.sticky-buy .sb-new{font-family:'Space Grotesk',sans-serif;font-size:22px;font-weight:700;color:#fff;}
.sticky-buy .sb-then{font-size:10.5px;color:var(--muted-dim);}
.sticky-buy .sb-cta{flex:1;min-width:0;background:var(--volt);color:#0a0a0a;border:none;border-radius:12px;
  padding:15px 14px;font-family:inherit;font-size:15px;font-weight:700;cursor:pointer;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.sticky-buy .sb-cta:active{transform:scale(.98);}
@media(max-width:360px){.sticky-buy .sb-cta{font-size:14px;padding:14px 10px;}}






/* the promise of time, directly under the button */
.cta-note{text-align:center;font-size:13px;line-height:1.45;color:var(--muted);margin-top:10px;}

/* near-price review, as a short story with a face */
.proof-near .pn-top{display:flex;align-items:center;gap:12px;margin-bottom:11px;}
.proof-near .pn-av{flex:0 0 46px;width:46px;height:46px;border-radius:50%;overflow:hidden;
  background:var(--surface-hi);border:1px solid var(--border-hi);
  display:flex;align-items:center;justify-content:center;}
.proof-near .pn-av img{width:100%;height:100%;object-fit:cover;display:block;}
.proof-near .pn-init{font-size:15px;font-weight:700;color:var(--muted-dim);
  align-items:center;justify-content:center;width:100%;height:100%;}
.proof-near .pn-stars{margin-bottom:3px;}
.proof-near p{font-style:normal;}
/* single review, sitting directly above the buybox */
.proof-near{border:1px solid var(--border);border-radius:14px;background:var(--surface);
  padding:16px 17px;margin:26px 0 14px;}
.proof-near .pn-stars{color:var(--volt);font-size:13px;letter-spacing:.14em;margin-bottom:8px;}
.proof-near p{font-size:15px;line-height:1.55;color:#fff;margin:0 0 9px;}
.proof-near .pn-who{font-size:12px;color:var(--muted-dim);}
/* the hours answer, multiplied out to a year, on the screen after the choice */
.readout{border-left:2px solid var(--volt);padding:10px 0 10px 14px;margin:0 0 20px;
  font-size:15px;line-height:1.5;color:#fff;
  animation:rdIn .5s ease both;}
@keyframes rdIn{from{opacity:0;transform:translateY(-4px);}to{opacity:1;transform:none;}}
@media (prefers-reduced-motion: reduce){.readout{animation:none;}}
/* ---------- offer: the real Today screen, in an iPhone ---------- */
.iph{margin:26px auto 20px;max-width:296px;}
.iph-frame{position:relative;background:#000;border:1px solid #2e2e2e;border-radius:42px;
  padding:11px 11px 0;box-shadow:0 24px 60px rgba(0,0,0,.72),0 0 0 1px rgba(255,255,255,.045) inset;}
.iph-island{position:absolute;top:19px;left:50%;transform:translateX(-50%);
  width:88px;height:25px;background:#000;border-radius:99px;z-index:3;}
.iph-status{display:flex;align-items:center;justify-content:space-between;
  padding:9px 14px 6px;color:#fff;font-size:13px;font-weight:600;letter-spacing:.02em;}
.iph-status .st-time{font-variant-numeric:tabular-nums;}
.iph-status .st-right{display:flex;align-items:center;gap:5px;}
.st-sig,.st-wifi{fill:#fff;}
.st-sig{width:16px;height:11px;}
.st-wifi{width:15px;height:11px;}
.st-bat{width:24px;height:12px;border:1px solid rgba(255,255,255,.55);border-radius:3.5px;
  position:relative;display:inline-block;}
.st-bat::after{content:"";position:absolute;right:-3px;top:3.5px;width:2px;height:5px;
  background:rgba(255,255,255,.55);border-radius:0 1px 1px 0;}
.st-bat i{position:absolute;inset:1.5px;width:72%;background:#fff;border-radius:2px;display:block;}

.iph-screen{background:var(--ink);padding:14px 15px 16px;}
.iph-head{display:flex;align-items:center;justify-content:space-between;}
.ih-date{font-size:10.5px;font-weight:700;letter-spacing:.11em;color:var(--muted-dim);}
.ih-groups{font-size:11.5px;color:var(--muted);}
.ih-hello{font-size:23px;font-weight:700;color:#fff;margin-top:9px;letter-spacing:-.015em;}
.ih-left{font-size:12.5px;color:var(--muted-dim);margin-top:2px;}

.ih-card{margin-top:15px;border:1px solid rgba(217,255,0,.22);border-radius:17px;padding:15px 14px;
  background:radial-gradient(120% 100% at 0% 0%,rgba(217,255,0,.075),transparent 62%),var(--surface);}
.ih-next{display:flex;align-items:center;gap:6px;font-size:9.5px;font-weight:700;
  letter-spacing:.13em;color:var(--volt);}
.ih-next .dot{width:5px;height:5px;border-radius:50%;background:var(--volt);
  box-shadow:0 0 0 3px rgba(217,255,0,.16);}
.ih-theme{font-size:20px;font-weight:700;color:#fff;margin-top:8px;line-height:1.2;min-height:24px;}
.ih-theme .cur{display:inline-block;width:2px;height:17px;background:var(--volt);
  vertical-align:-2px;margin-left:2px;animation:ihblink .9s steps(1) infinite;}
@keyframes ihblink{50%{opacity:0;}}
.ih-meta{font-size:11.5px;color:var(--muted-dim);margin-top:5px;
  opacity:0;transition:opacity .45s ease .1s;}
.ih-prog{display:flex;gap:4px;margin-top:12px;}
.ih-prog i{flex:1;height:3px;border-radius:99px;background:rgba(255,255,255,.12);}
.ih-prog i:first-child{background:rgba(255,255,255,.12);transition:background .5s ease .25s;}
.ih-cta{margin-top:14px;background:var(--volt);color:#0a0a0a;border-radius:12px;padding:12px;
  text-align:center;font-size:14px;font-weight:700;
  opacity:0;transform:translateY(6px);transition:opacity .45s ease .3s,transform .45s ease .3s;}
.ih-card.done .ih-meta{opacity:1;}
.ih-card.done .ih-prog i:first-child{background:var(--volt);}
.ih-card.done .ih-cta{opacity:1;transform:none;}

.ih-rule{height:1px;background:var(--border);margin:17px 0 11px;}
.ih-foot{display:flex;justify-content:space-between;font-size:12px;color:var(--muted-dim);}

.iph-tabs{display:flex;justify-content:space-between;background:var(--ink);
  padding:9px 10px 13px;border-top:1px solid rgba(255,255,255,.06);
  border-radius:0 0 31px 31px;}
.iph-tabs .tb{flex:1;text-align:center;color:var(--muted-dim);}
.iph-tabs .tb svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;display:block;margin:0 auto 3px;}
.iph-tabs .tb span{font-size:8.5px;font-weight:600;letter-spacing:.01em;}
.iph-tabs .tb.on{color:var(--volt);}
.iph-tabs .tb.on svg{fill:rgba(217,255,0,.14);}
.iph-cap{text-align:center;font-size:12.5px;color:var(--muted-dim);margin:14px 0 0;}

@media (prefers-reduced-motion: reduce){
  .ih-theme .cur{animation:none;display:none;}
  .ih-meta,.ih-cta{opacity:1;transform:none;transition:none;}
  .ih-prog i:first-child{background:var(--volt);transition:none;}
}
/* ---------- offer: the three drivers ---------- */
.drivers{margin:28px 0 6px;}
.drv{border-left:2px solid var(--border);padding:2px 0 2px 16px;margin-bottom:20px;}
.drv:last-child{margin-bottom:0;}
.drv-k{font-size:17px;line-height:1.32;font-weight:700;color:#fff;margin-bottom:6px;}
.drv p{font-size:14.5px;line-height:1.58;color:var(--muted);margin:0;}
.drv.money{border-left-color:var(--volt);}
.drv .mth{font-size:16px;line-height:1.5;color:var(--muted);}
.drv .mth b{color:#fff;font-weight:700;}
.drv .mth-note{font-size:13.5px;line-height:1.5;color:var(--muted-dim);margin-top:8px;}

/* ---------- offer: three horizons ---------- */
.horizons{display:grid;gap:2px;margin:24px 0 8px;border:1px solid var(--border);
  border-radius:14px;overflow:hidden;background:var(--border);}
.hz{background:var(--surface);padding:15px 16px;}
.hz-when{font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--volt);margin-bottom:5px;}
.hz p{font-size:14.5px;line-height:1.5;color:#fff;margin:0;}
.hz:last-child p{color:var(--muted);}

/* ---------- offer: 28-week grid ---------- */
.grid-wrap{border:1px solid var(--border);border-radius:16px;background:var(--surface);
  padding:20px 18px;margin:22px 0;}
/* ---------- quiz: multi-field screen (duration + groupsize on one screen) ---------- */
.field-lbl{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted-dim);margin:20px 0 9px;}
.field-lbl:first-of-type{margin-top:4px;}
.chips{display:flex;flex-wrap:wrap;gap:8px;}
.chip{background:var(--surface);border:1px solid var(--border);border-radius:99px;padding:11px 17px;
  font-size:14.5px;font-weight:500;color:var(--text);
  transition:border-color .16s ease,background .16s ease;}
.chip:hover{border-color:var(--border-hi);}
.chip.sel{border-color:var(--volt);background:var(--surface-hi);box-shadow:0 0 0 1px var(--volt) inset;}
.cta[disabled]{opacity:.32;cursor:not-allowed;}

/* ---------- offer: before / after ---------- */
.ba{margin-bottom:26px;}
.ba-head{display:grid;grid-template-columns:1fr 1fr;gap:2px;}
.ba-head div{padding:9px 0;text-align:center;font-size:11px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;}
.ba-head .h-b{background:var(--surface);color:var(--muted-dim);border-radius:12px 0 0 0;}
.ba-head .h-a{background:rgba(217,255,0,.10);color:var(--volt);border-radius:0 12px 0 0;}
.ba-imgs{display:grid;grid-template-columns:1fr 1fr;gap:2px;margin-top:2px;}
/* Each half carries its own backdrop. Cut-out subjects on a transparent
   background otherwise float on the page black and read as two pasted crops
   instead of one comparison. The gradient is what makes it a panel. */
.ba-imgs .slot{position:relative;overflow:hidden;aspect-ratio:1/1;
  display:flex;align-items:flex-end;justify-content:center;
  background:radial-gradient(120% 85% at 50% 100%,#242424 0%,#141414 60%,#0f0f0f 100%);}
.ba-imgs .slot.after{
  background:radial-gradient(120% 85% at 50% 100%,#2a3010 0%,#1a1e0c 55%,#12140a 100%);}
/* contain, not cover: the coach is standing, so cropping his head or feet is
   worse than leaving air. Anchored to the bottom so both halves line up on the
   same ground line however the two files were framed. */
.ba-imgs .slot img{width:100%;height:100%;display:block;
  object-fit:contain;object-position:bottom center;}
/* If the file is missing the reader sees a neutral gradient, never a note
   written for a developer. That mistake shipped once already. */
.ba-fallback{position:absolute;inset:0;}

.ba-rows{border:1px solid var(--border);border-top:none;border-radius:0 0 12px 12px;overflow:hidden;}
.ba-row{border-top:1px solid var(--border);}
.ba-row:first-child{border-top:none;}
.ba-row .rk{font-size:11px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;
  color:var(--muted-dim);padding:13px 14px 7px;}
.ba-cells{display:grid;grid-template-columns:1fr 1fr;}
.ba-cells>div{padding:0 14px 14px;}
.ba-cells .c-a{border-left:1px solid var(--border);}
.ba-val{font-size:14px;line-height:1.4;margin-bottom:9px;}
.c-b .ba-val{color:var(--muted-dim);}
.c-a .ba-val{color:#fff;font-weight:600;}
.ba .bar{height:5px;border-radius:99px;background:var(--border);overflow:hidden;}
.ba .bar i{display:block;height:100%;border-radius:99px;}
.c-b .bar i{background:#ef5350;}
.c-a .bar i{background:var(--volt);}

/* ---------- offer: season timeline ---------- */
.tl{border:1px solid var(--border);border-radius:16px;padding:22px 18px;
  background:var(--surface);margin:26px 0;}
.tl h3{font-size:20px;line-height:1.32;font-weight:700;margin:0 0 6px;color:#fff;}
.tl h3 b{color:var(--volt);}
.tl p{font-size:14px;line-height:1.55;color:var(--muted);margin:0 0 22px;}
.tl-track{position:relative;height:3px;background:var(--border);border-radius:99px;margin:0 0 10px;}
.tl-track i{position:absolute;left:0;top:0;height:100%;width:9%;background:var(--volt);border-radius:99px;}
.tl-dot{position:absolute;top:50%;width:13px;height:13px;border-radius:50%;transform:translate(-50%,-50%);}
.tl-dot.a{left:3.5%;background:var(--volt);box-shadow:0 0 0 4px rgba(217,255,0,.16);}
.tl-dot.b{left:100%;background:var(--ink);border:2px solid var(--border-hi);}
.tl-ends{display:flex;justify-content:space-between;font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dim);}
.tl-ends span:first-child{color:var(--volt);}
.tl-themes{display:flex;justify-content:space-between;margin-top:5px;font-size:12.5px;color:var(--muted-dim);}
.tl-themes span:first-child{color:#fff;}
/* ---------- v2 offer: receipt, season, what-changes ---------- */
.disc-receipt{background:linear-gradient(160deg,rgba(217,255,0,.10),rgba(217,255,0,.02));border:1px solid rgba(217,255,0,.32);border-radius:18px;padding:22px 20px;text-align:center;margin-bottom:22px;}
.disc-receipt .dr-tag{font-size:11px;font-weight:700;letter-spacing:.14em;color:var(--volt);text-transform:uppercase;margin-bottom:12px;}
.disc-receipt .dr-price{display:flex;align-items:baseline;justify-content:center;gap:12px;}
.disc-receipt .dr-old{font-size:22px;color:var(--muted-dim);text-decoration:line-through;}
.disc-receipt .dr-new{font-family:'Space Grotesk',sans-serif;font-size:44px;font-weight:700;color:#fff;line-height:1;}
.disc-receipt .dr-then{font-size:14px;color:var(--muted);margin-top:8px;}
.disc-receipt .dr-auto{font-size:12px;color:var(--muted-dim);margin-top:10px;}
.screen{padding-bottom:96px;}
.success-sub{font-size:17px;font-weight:600;color:var(--volt);margin:-6px 0 14px;}
.thesis{border-left:2px solid var(--volt);padding:4px 0 4px 16px;margin:30px 0 6px;}
.thesis p{margin:0 0 6px;font-size:19px;line-height:1.4;color:var(--muted);}
.thesis p:last-child{margin-bottom:0;}
.thesis b{color:#fff;font-weight:700;}
.load-checks{margin-top:22px;text-align:left;max-width:300px;margin-left:auto;margin-right:auto;}
.load-checks div{display:flex;align-items:center;gap:10px;font-size:13.5px;line-height:1.4;color:var(--muted-dim);padding:5px 0;opacity:.35;transition:opacity .35s ease,color .35s ease;}
.load-checks div .mk{flex:0 0 16px;font-size:13px;color:var(--muted-dim);}
.load-checks div.doing{opacity:1;color:#fff;}
.load-checks div.done{opacity:1;color:var(--muted);}
.load-checks div.done .mk{color:var(--volt);}
.sec-label{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--muted-dim);margin:34px 0 10px;}
.season-card{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:22px 20px;margin-bottom:20px;}
.season-card h3{font-size:22px;line-height:1.25;margin:0 0 14px;color:#fff;}
.season-card p{font-size:15px;line-height:1.62;color:var(--muted);margin:0 0 14px;}
.theme-list{margin:18px 0 6px;}
.theme-row{display:flex;gap:14px;padding:11px 0;border-top:1px solid var(--border);}
.theme-row:last-child{border-bottom:1px solid var(--border);}
.theme-row b{flex:0 0 40%;font-size:14px;font-weight:600;color:#fff;}
.theme-row span{flex:1;font-size:13px;line-height:1.5;color:var(--muted-dim);}
.horizon{margin-top:20px;}
.horizon p{font-size:15px;line-height:1.62;color:var(--muted);margin:0 0 12px;padding-left:14px;border-left:2px solid rgba(217,255,0,.35);}
.horizon p:last-child{margin-bottom:0;color:#fff;}
.changes-table{border:1px solid var(--border);border-radius:16px;overflow:hidden;margin-bottom:14px;}
.changes-head,.changes-row{display:grid;grid-template-columns:1fr 1fr;}
.changes-head div{padding:11px 14px;font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted-dim);background:rgba(255,255,255,.03);}
.changes-row{border-top:1px solid var(--border);}
.changes-row div{padding:13px 14px;font-size:13.5px;line-height:1.45;}
.changes-row .was{color:var(--muted-dim);}
.changes-row .now{color:#fff;border-left:1px solid var(--border);}
.changes-close{font-size:15px;line-height:1.6;color:var(--muted);margin:0 0 8px;}
.variant-note{font-size:14px;line-height:1.6;color:var(--muted);background:rgba(255,255,255,.03);border:1px solid var(--border);border-radius:12px;padding:14px 16px;margin-top:14px;}
.week-tag{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--volt);background:rgba(217,255,0,.10);border:1px solid rgba(217,255,0,.25);border-radius:99px;padding:5px 12px;margin-bottom:12px;}

/* ---------- GEO MAP — dot-matrix world ---------- */
.map-screen{flex:1;display:flex;flex-direction:column;justify-content:center;text-align:center;padding:14px 0;}
.map-screen h2{font-size:23px;margin-bottom:12px;line-height:1.28;}
.map-screen .sub{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:22px;}
.map-box{background:#0d0f0a;border:1px solid var(--border);border-radius:var(--radius);padding:20px 16px 18px;position:relative;overflow:hidden;}
.map-grid{position:absolute;top:0;right:0;bottom:0;left:0;background-image:linear-gradient(rgba(217,255,0,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,0,.045) 1px,transparent 1px);background-size:22px 22px;pointer-events:none;}
.map-box::after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background:radial-gradient(circle at 50% 35%,rgba(217,255,0,.09),transparent 65%);pointer-events:none;}
svg.world{width:100%;height:auto;display:block;position:relative;z-index:1;}
.world .wd{fill:var(--volt);opacity:0;animation:wdIn .5s ease forwards;}
@keyframes wdIn{to{opacity:.26;}}
.world .wd.hot{animation:wdHot .6s ease forwards;}
@keyframes wdHot{to{opacity:.95;}}
.world .me{fill:var(--volt);filter:drop-shadow(0 0 4px rgba(217,255,0,.95));}
.world .ring{fill:none;stroke:var(--volt);stroke-width:.35;opacity:0;animation:wRing 2.6s ease-out infinite;}
.world .ring.r2{animation-delay:1.3s;}
@keyframes wRing{0%{opacity:.8;r:1.6;}75%,100%{opacity:0;r:6.5;}}
.map-country{font-family:'Space Grotesk',sans-serif;font-size:14.5px;font-weight:600;margin-top:18px;line-height:1.45;position:relative;z-index:1;}
.map-country b{color:var(--volt);font-weight:700;}
.map-pain{font-size:12.5px;color:var(--muted);line-height:1.55;margin-top:8px;position:relative;z-index:1;}
@media (prefers-reduced-motion:reduce){.world .wd{animation:none;opacity:.26;}.world .wd.hot{opacity:.95;}.world .ring{animation:none;opacity:0;}}

/* -- personalization card: their own answers, reflected back -- */
.personal-card{background:var(--surface);border:1px solid var(--border);border-left:2px solid var(--volt);border-radius:0 var(--radius) var(--radius) 0;padding:18px;margin:22px 0;}
.pc-lbl{font-family:'Space Grotesk',sans-serif;font-size:9.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted-dim);margin-bottom:10px;}
.pc-quote{font-size:14px;line-height:1.55;color:var(--text);margin-bottom:16px;}
.pc-math{border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:4px 0;margin-bottom:14px;}
.pc-row{display:flex;justify-content:space-between;align-items:baseline;gap:12px;padding:9px 0;font-size:12.5px;color:var(--muted);}
.pc-row b{font-family:'Space Grotesk',sans-serif;color:var(--text);font-size:13.5px;text-align:right;}
.pc-row.hi b{color:var(--volt);}
.pc-close{font-size:13px;color:var(--text);line-height:1.5;font-weight:600;}

/* ---------- GEO MAP / SOCIAL PROOF ---------- */
.map-screen{flex:1;display:flex;flex-direction:column;justify-content:center;text-align:center;padding:14px 0;}
.map-screen h2{font-size:23px;margin-bottom:12px;line-height:1.28;}
.map-screen .sub{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:22px;}
.map-box{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px 16px;position:relative;overflow:hidden;}
.map-box svg{width:100%;height:auto;display:block;}
.map-box .land{fill:#1c2210;stroke:rgba(217,255,0,.18);stroke-width:.5;}
.map-box .dot{fill:var(--volt);opacity:0;animation:mapDot .5s ease forwards;}
@keyframes mapDot{to{opacity:.8;}}
.map-box .ring{fill:none;stroke:var(--volt);stroke-width:1.2;opacity:0;animation:mapRing 2.4s ease-out infinite;}
@keyframes mapRing{0%{opacity:.75;r:4;}80%,100%{opacity:0;r:17;}}
.map-country{font-family:'Space Grotesk',sans-serif;font-size:15px;font-weight:700;margin-top:16px;line-height:1.4;}
.map-country b{color:var(--volt);}
.map-pain{font-size:12.5px;color:var(--muted);line-height:1.55;margin-top:8px;}
.map-fill-note{font-size:10.5px;color:#e8a13c;background:rgba(232,161,60,.09);border:1px dashed rgba(232,161,60,.35);border-radius:8px;padding:9px 11px;margin-top:14px;line-height:1.5;text-align:left;}
@media (prefers-reduced-motion:reduce){.map-box .dot,.map-box .ring{animation:none;opacity:.8;}}


/* -- offer header, landing-style -- */
.offer-pill{display:block;text-align:center;font-size:11px;font-weight:800;color:var(--volt);background:rgba(217,255,0,.12);padding:8px 16px;border-radius:99px;width:fit-content;margin:34px auto 14px;letter-spacing:.04em;}
.offer-h2{font-size:26px;text-align:center;margin-bottom:26px;}
.offer-h2 span{color:var(--volt);}

/* -- urgency claim bar -- */
.claim-bar{height:8px;border-radius:99px;background:#0a0a0a;overflow:hidden;margin:16px 0 9px;}
.claim-bar i{display:block;height:100%;width:72%;background:linear-gradient(90deg,var(--volt),#8a9e00);border-radius:99px;}
.claim-lbls{display:flex;justify-content:space-between;font-size:11px;font-weight:700;}
.claim-lbls .c1{color:#ff7a6e;}
.claim-lbls .c2{color:var(--muted-dim);}

/* -- trust row: always one line, icons inline -- */
.trust{display:flex;justify-content:center;align-items:center;gap:12px;flex-wrap:nowrap;margin-top:14px;font-size:10.5px;color:var(--muted-dim);white-space:nowrap;}
.trust span{display:inline-flex;align-items:center;gap:4px;}

/* -- closing buybox, per landing screenshot -- */
.close-clock{text-align:center;font-family:'Space Grotesk',sans-serif;font-size:34px;font-weight:700;color:var(--volt);font-variant-numeric:tabular-nums;text-shadow:0 0 24px rgba(217,255,0,.38);white-space:nowrap;}
.close-clock-lbls{display:flex;justify-content:center;gap:30px;margin:2px 0 18px;}
.close-clock-lbls span{font-size:9.5px;color:var(--muted-dim);font-weight:700;letter-spacing:.05em;}
.close-price{display:flex;flex-direction:column;align-items:center;gap:10px;}
.cp-main{display:flex;align-items:baseline;gap:9px;}
.cp-main .old{font-size:15px;color:var(--muted-dim);text-decoration:line-through;}
.cp-main .new{font-family:'Space Grotesk',sans-serif;font-size:38px;font-weight:700;line-height:1;}
.cp-main .new sup{font-size:18px;top:-.5em;position:relative;}
.cp-main .per{font-size:13px;color:var(--muted);}

/* ---------- SAMPLE-DATA TAG (used on every placeholder proof element) ---------- */
.sample-tag{position:absolute;top:-9px;right:14px;display:inline-flex;align-items:center;gap:5px;font-family:'Space Grotesk',sans-serif;font-size:9px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#0a0a0a;background:var(--volt);border-radius:99px;padding:5px 10px;box-shadow:0 3px 10px rgba(0,0,0,.35);}
.sample-tag::before{content:'◆';font-size:6px;}
.proof-wrap{position:relative;}

/* ---------- STAT PROOF (early, light-touch) ---------- */
.stat-proof{flex:1;display:flex;flex-direction:column;justify-content:center;padding:20px 0;}
.stat-proof-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:26px 22px;text-align:center;}
.stat-proof-num{font-family:'Space Grotesk',sans-serif;font-size:38px;font-weight:700;color:var(--volt);line-height:1;}
.stat-proof-lbl{font-size:14px;color:var(--muted);margin-top:10px;line-height:1.5;}

/* ---------- TESTIMONIAL PROOF ---------- */
.testi{flex:1;display:flex;flex-direction:column;justify-content:center;padding:20px 0;}
.testi-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:22px;}
.stars{color:var(--volt);font-size:14px;letter-spacing:2px;margin-bottom:12px;}
.testi-quote{font-size:15px;line-height:1.6;margin-bottom:18px;}
.testi-who{display:flex;align-items:center;gap:11px;}
.testi-avatar{width:36px;height:36px;border-radius:50%;background:var(--surface-hi);border:1px solid var(--border-hi);display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk',sans-serif;font-size:13px;font-weight:700;color:var(--muted);flex-shrink:0;}
.testi-name{font-size:13px;font-weight:600;}
.testi-role{font-size:12px;color:var(--muted-dim);}

/* ---------- BRAIN / "not a chatbot" FLOW ---------- */
.brain-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:20px;margin:20px 0;}
.brain-head{font-family:'Space Grotesk',sans-serif;font-size:15px;font-weight:600;margin-bottom:6px;}
.brain-sub{font-size:13px;color:var(--muted);line-height:1.55;margin-bottom:18px;}
.brain-flow{display:flex;flex-direction:column;}
.brain-step{display:flex;gap:12px;position:relative;padding-bottom:18px;}
.brain-step:last-child{padding-bottom:0;}
.brain-node{width:22px;height:22px;border-radius:50%;background:rgba(217,255,0,.1);border:1.5px solid var(--volt);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;color:var(--volt);font-family:'Space Grotesk',sans-serif;position:relative;z-index:1;}
.brain-step:not(:last-child)::before{content:'';position:absolute;left:10.5px;top:22px;bottom:0;width:1px;background:var(--border-hi);}
.brain-step b{display:block;font-size:13.5px;font-weight:600;margin-bottom:2px;}
.brain-step span{font-size:12.5px;color:var(--muted);line-height:1.5;}

/* ---------- INCLUDES v2 (grouped, for the fuller delivery) ---------- */
.incl-group-lbl{font-family:'Space Grotesk',sans-serif;font-size:10.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dim);margin:16px 0 6px;}
.incl-group-lbl:first-child{margin-top:0;}

/* ---------- CHECKOUT AS A TRUE CENTERED MODAL (backdrop + card, not another flow screen) ---------- */
.promo-applied{display:flex;align-items:center;justify-content:center;gap:7px;background:rgba(217,255,0,.08);border:1px dashed rgba(217,255,0,.4);border-radius:11px;padding:11px;margin-bottom:14px;font-size:12.5px;color:var(--text);}
.promo-applied b{font-family:'Space Grotesk',sans-serif;letter-spacing:.08em;color:var(--volt);}
.whop-fallback{display:flex;flex-direction:column;align-items:center;gap:9px;padding:34px 16px;text-align:center;color:var(--muted-dim);font-size:12.5px;}
.whop-fallback small{font-size:11px;line-height:1.5;max-width:280px;color:var(--muted-dim);opacity:.75;}
.whop-fallback .spin{width:22px;height:22px;border:2px solid var(--border-hi);border-top-color:var(--volt);border-radius:50%;animation:whopSpin .8s linear infinite;}
@keyframes whopSpin{to{transform:rotate(360deg);}}

.checkout-page{width:100%;padding-top:44px;}
.buyers-header{position:fixed;top:0;left:0;right:0;z-index:70;display:flex;align-items:center;justify-content:center;gap:9px;background:var(--volt);padding:12px 14px;font-size:12.5px;font-weight:600;color:#0a0a0a;box-shadow:0 4px 18px rgba(217,255,0,.28);}
.buyers-header b{color:#0a0a0a;font-weight:800;}
.buyers-header .buyers-dot::before,.buyers-header .buyers-dot::after{background:#0a0a0a;}
.checkout-brand{font-family:'Space Grotesk',sans-serif;font-size:11.5px;font-weight:700;letter-spacing:.09em;color:var(--text);margin-bottom:8px;}
.checkout-brand span{color:var(--volt);}
.legal-block{margin-top:22px;text-align:center;}
.legal-block p{font-size:11px;color:#6a6a6a;line-height:1.7;margin-bottom:8px;}
.legal-block p:last-child{margin-bottom:0;}
.fn-footer{text-align:center;padding:30px 0 24px;margin-top:26px;border-top:1px solid var(--border);}
.fn-brand{font-family:'Space Grotesk',sans-serif;font-size:13px;font-weight:700;color:var(--volt);letter-spacing:.06em;margin-bottom:6px;}
.fn-tag{font-size:12px;color:var(--muted);margin-bottom:14px;}
.fn-links{display:flex;justify-content:center;gap:18px;margin-bottom:14px;}
.fn-links a{font-size:11.5px;color:var(--muted);text-decoration:underline;}
.fn-copy{font-size:10.5px;color:var(--muted-dim);line-height:1.6;}
.checkout-timer{display:flex;align-items:center;justify-content:center;gap:8px;background:rgba(217,255,0,.08);border:1px solid rgba(217,255,0,.25);border-radius:11px;padding:11px;margin-bottom:18px;font-size:12.5px;font-weight:600;color:var(--text);}
.buyers-bar{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--surface);border:1px solid var(--border);border-radius:11px;padding:10px;margin-bottom:16px;font-size:12px;font-weight:500;color:var(--muted);}
.buyers-bar b{color:var(--text);font-weight:700;}
.buyers-dot{position:relative;width:7px;height:7px;flex-shrink:0;}
.buyers-dot::before,.buyers-dot::after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50%;background:#4ade80;}
.buyers-dot::before{animation:buyersPing 1.8s cubic-bezier(0,0,.2,1) infinite;opacity:.6;}
@media (prefers-reduced-motion:reduce){.buyers-dot::before{animation:none;opacity:0;}}
@keyframes buyersPing{75%,100%{transform:scale(2.4);opacity:0;}}
.checkout-timer b{font-family:'Space Grotesk',sans-serif;color:var(--volt);font-variant-numeric:tabular-nums;font-size:14px;}
.checkout-head{text-align:center;margin-bottom:18px;position:relative;}
.checkout-head h2{font-size:19px;display:inline-flex;align-items:center;gap:8px;}
.lock-svg{width:16px;height:16px;color:var(--volt);flex-shrink:0;}
.checkout-close{position:absolute;right:0;top:2px;width:30px;height:30px;border-radius:50%;border:1px solid var(--border);background:var(--surface);color:var(--muted);display:flex;align-items:center;justify-content:center;font-size:15px;transition:color .2s,border-color .2s;}
.checkout-close:hover{color:var(--text);border-color:var(--border-hi);}
.currency-note{text-align:center;font-size:11.5px;color:var(--muted-dim);margin-bottom:16px;}
.total-block{background:var(--surface-hi);border:1px solid var(--border);border-radius:var(--radius);padding:16px 18px;margin-bottom:16px;display:flex;justify-content:space-between;align-items:center;}
.total-block .lbl{font-size:13px;color:var(--muted);}
.total-block .amt{font-family:'Space Grotesk',sans-serif;font-size:22px;font-weight:700;color:var(--volt);}
.pay-card{background:transparent;border:none;border-radius:0;padding:0;}
.pay-label{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-dim);margin-bottom:12px;}
.applepay-btn{width:100%;background:#fff;color:#000;border:none;border-radius:11px;padding:15px;font-size:15px;font-weight:600;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:6px;margin-bottom:16px;}
.pay-divider{display:flex;align-items:center;gap:12px;color:var(--muted-dim);font-size:11.5px;margin:16px 0;}
.pay-divider::before,.pay-divider::after{content:'';flex:1;height:1px;background:var(--border-hi);}
.card-row2{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px;}
.pay-icons-row{display:flex;justify-content:center;align-items:center;gap:7px;flex-wrap:wrap;}
.pay-icons-row svg{border-radius:3px;}
.checkout-submit{position:relative;}
.checkout-trust{display:flex;flex-direction:column;align-items:center;gap:10px;margin-top:16px;}
.checkout-trust .lock-line{font-size:11.5px;color:var(--muted-dim);}
.legal-list{list-style:none;margin-top:20px;display:flex;flex-direction:column;gap:9px;}
.legal-list li{display:flex;gap:9px;font-size:11.5px;color:var(--muted-dim);line-height:1.55;}
.legal-list li::before{content:'';width:3px;height:3px;border-radius:50%;background:var(--muted-dim);flex-shrink:0;margin-top:6px;}
.legal-list a{color:var(--muted);text-decoration:underline;}
.dev-note{margin-top:20px;padding:12px 14px;background:rgba(217,255,0,.05);border:1px dashed rgba(217,255,0,.3);border-radius:10px;font-size:11px;color:var(--muted);line-height:1.6;}

/* ---------- SUCCESS ---------- */
.success{flex:1;display:flex;flex-direction:column;justify-content:center;text-align:center;padding:20px 0;}
.success-mark{width:56px;height:56px;margin:0 auto 20px;border-radius:50%;background:rgba(217,255,0,.12);border:1px solid var(--volt);display:flex;align-items:center;justify-content:center;font-size:24px;color:var(--volt);}
.success h2{font-size:26px;margin-bottom:10px;}
.success-inbox{display:flex;align-items:center;gap:13px;text-align:left;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:15px;margin-bottom:26px;}
.si-icon{width:38px;height:38px;border-radius:10px;background:rgba(217,255,0,.12);color:var(--volt);display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0;}
.si-copy b{display:block;font-size:13.5px;margin-bottom:2px;}
.si-copy span{font-size:11.5px;color:var(--muted-dim);line-height:1.5;}
.success-lbl{font-family:'Space Grotesk',sans-serif;font-size:10.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dim);text-align:left;margin-bottom:10px;}
.success-note{font-size:11px;color:var(--muted-dim);margin-top:20px;line-height:1.6;}
.success-note b{color:var(--muted);}
.success p{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:22px;}
.next-steps{text-align:left;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:6px 18px;}
.next-steps li{list-style:none;display:flex;gap:12px;padding:13px 0;border-bottom:1px solid var(--border);font-size:13.5px;align-items:flex-start;}
.next-steps li:last-child{border-bottom:none;}
.next-steps b{color:var(--volt);font-family:'Space Grotesk',sans-serif;font-size:12px;flex-shrink:0;width:16px;}

/* ---------- NARROW PHONES (≤370px): the sizes that actually break ---------- */
@media (max-width:370px){
  .app{padding:0 14px 26px;}
  .urgency-clock{font-size:30px;letter-spacing:-.5px;}
  .urgency-labels{gap:20px;}
  .close-buybox .clock{font-size:23px;}
  .close-buybox .clock-lbls{gap:18px;}
  .ends-box{font-size:11px;padding:10px 8px;gap:4px;}
  .ends-box b{font-size:12.5px;}
  .price-amt{font-size:42px;}
  .price-amt .cur{display:block;margin-left:0;margin-top:4px;font-size:11px;}
  .incl-flat{grid-template-columns:1fr;}
  .ba-grid{grid-template-columns:1fr;}
  .hl-strip{grid-template-columns:1fr;}
  .card-grid{gap:8px;max-width:190px;grid-auto-rows:118px;}
  .pcard{height:118px;}
  .cards-screen h2{font-size:17px;}
  .win-banner .big{font-size:24px;}
  .pcard .front .pct{font-size:14px;}
  .pcard.win .front .pct{font-size:16px;}
  .win-banner .big{font-size:28px;}
  .close-buybox .new{font-size:25px;}
  .close-buybox .prow{flex-direction:column;align-items:flex-start;gap:10px;}
  .offer-pay-icons{gap:5px;}
  .offer-pay-icons svg{width:29px;height:19px;}
  .q-title{font-size:21px;}
  .offer-head h2{font-size:22px;}
  .pain-title{font-size:17px;}
  .trust{gap:9px;font-size:10.5px;}
  .g-trust{gap:9px;font-size:10.5px;}
  .session-row{padding:14px 12px;gap:11px;}
  .drill-card{padding:15px;}
}

/* the clock must never wrap or overflow, at any width */
.urgency-clock,.close-buybox .clock{white-space:nowrap;font-variant-numeric:tabular-nums;}
.price-amt{max-width:100%;flex-wrap:wrap;justify-content:center;}

@media(min-width:520px){
  .q-title{font-size:29px;}
  .shell{padding:0 28px;}
}


/* ---------- success: get them into the app ---------- */
.success-open{display:block;background:var(--volt);color:#0a0a0a;border-radius:14px;
  padding:17px;text-align:center;font-size:16.5px;font-weight:700;text-decoration:none;
  margin:6px 0 12px;box-shadow:0 0 34px rgba(217,255,0,.18);}
.success-open:active{transform:scale(.99);}
.success-help{border:1px solid var(--border);border-radius:13px;background:var(--surface);
  padding:15px 16px;margin:20px 0 18px;text-align:left;}
.success-help b{display:block;font-size:14.5px;color:#fff;margin-bottom:5px;}
.success-help span{display:block;font-size:13px;line-height:1.5;color:var(--muted-dim);}
/* ---------- exit-intent downsell ---------- */
.ds-overlay{position:fixed;inset:0;z-index:200;display:flex;align-items:flex-end;justify-content:center;
  background:rgba(0,0,0,.72);backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px);
  opacity:0;transition:opacity .22s ease;padding:0 12px 12px;}
.ds-overlay.on{opacity:1;}
.ds-card{position:relative;width:100%;max-width:420px;background:var(--surface);
  border:1px solid rgba(217,255,0,.24);border-radius:22px;
  padding:26px 22px calc(20px + env(safe-area-inset-bottom));
  box-shadow:0 -10px 60px rgba(0,0,0,.65);
  transform:translateY(22px);transition:transform .26s cubic-bezier(.22,1,.36,1);}
.ds-overlay.on .ds-card{transform:none;}
.ds-x{position:absolute;top:14px;right:14px;background:none;border:none;color:var(--muted-dim);
  font-size:17px;line-height:1;padding:6px;}
.ds-eyebrow{font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--volt);}
.ds-title{font-size:26px;line-height:1.2;font-weight:700;color:#fff;margin:9px 0;letter-spacing:-.015em;}
.ds-body{font-size:15px;line-height:1.55;color:var(--muted);margin:0 0 16px;}
.ds-list{list-style:none;margin:0 0 20px;padding:0;}
.ds-list li{position:relative;padding-left:22px;font-size:14px;line-height:1.5;
  color:var(--muted);margin-bottom:8px;}
.ds-list li::before{content:"";position:absolute;left:4px;top:8px;width:6px;height:6px;
  border-radius:50%;background:var(--volt);}
.ds-cta{display:block;background:var(--volt);color:#0a0a0a;border-radius:13px;padding:16px;
  text-align:center;font-size:16px;font-weight:700;text-decoration:none;}
.ds-note{text-align:center;font-size:12px;color:var(--muted-dim);margin-top:10px;}
.ds-dismiss{display:block;width:100%;background:none;border:none;color:var(--muted-dim);
  font-size:13.5px;text-decoration:underline;text-underline-offset:3px;margin-top:14px;padding:6px;}
@media(min-width:520px){.ds-overlay{align-items:center;padding:20px;}}
@media (prefers-reduced-motion: reduce){
  .ds-overlay,.ds-card{transition:none;}
  .ds-card{transform:none;}
}
