/* ==========================================================================
   RESET & TOKENS
   ========================================================================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
[hidden]{display:none !important}
:root{
  --purple:#8b5cf6;--pink:#ec4899;--green:#10b981;--amber:#f59e0b;--red:#f43f5e;
  --bg:#ffffff;--card:rgba(139,92,246,0.05);--border:rgba(139,92,246,0.18);
  --text:#1e1533;--muted:rgba(30,21,51,0.58);
  --safe-t:env(safe-area-inset-top,0px);--safe-b:env(safe-area-inset-bottom,0px);
  --safe-l:env(safe-area-inset-left,0px);--safe-r:env(safe-area-inset-right,0px);
}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;color:var(--text);
  background:
    radial-gradient(ellipse 900px 600px at 15% 0%, rgba(245,158,11,.16) 0%, transparent 55%),
    radial-gradient(ellipse 800px 700px at 100% 30%, rgba(236,72,153,.13) 0%, transparent 55%),
    radial-gradient(ellipse 700px 800px at 0% 100%, rgba(139,92,246,.12) 0%, transparent 50%),
    var(--bg);
  min-height:100vh;overflow-x:hidden;
  padding-left:var(--safe-l);padding-right:var(--safe-r);
  -webkit-tap-highlight-color:transparent;
}
button,input{font:inherit;color:inherit}
button{-webkit-tap-highlight-color:transparent}
img{max-width:100%;display:block}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}

/* ── decorative blobs ── */
.blob{position:fixed;border-radius:50%;pointer-events:none;z-index:0;filter:blur(80px)}
.blob-1{width:480px;height:480px;top:-160px;left:-140px;background:radial-gradient(circle,rgba(139,92,246,.30) 0%,transparent 65%)}
.blob-2{width:420px;height:420px;bottom:-120px;right:-120px;background:radial-gradient(circle,rgba(251,146,60,.30) 0%,transparent 65%)}
.blob-3{width:380px;height:380px;top:220px;right:-160px;background:radial-gradient(circle,rgba(250,204,21,.28) 0%,transparent 65%)}

/* ==========================================================================
   PAGE LAYOUT
   ========================================================================== */
.page{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;min-height:100vh;padding-bottom:calc(40px + var(--safe-b))}

/* ── header ── */
.topbar{
  width:100%;max-width:520px;padding:calc(8px + var(--safe-t)) 18px 6px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.brand{display:flex;align-items:baseline;gap:8px;min-width:0}
.brand-mark{font-size:17px;font-weight:900;letter-spacing:1px;background:linear-gradient(135deg,#7c3aed,#db2777);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.brand-sub{font-size:11px;font-weight:600;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.trust-pill{
  display:flex;align-items:center;gap:6px;flex-shrink:0;
  background:rgba(139,92,246,.10);border:1px solid rgba(139,92,246,.28);
  border-radius:100px;padding:6px 12px;color:#7c3aed;
  font-size:10.5px;font-weight:700;letter-spacing:.3px;white-space:nowrap;
}
.topbar-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}
.help-trigger{
  position:relative;width:32px;height:32px;border-radius:50%;flex-shrink:0;
  background:rgba(139,92,246,.10);border:1px solid rgba(139,92,246,.28);color:#7c3aed;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
}
.help-trigger:active{transform:scale(.94)}
.help-halo{position:absolute;inset:-4px;border-radius:50%;background:rgba(139,92,246,.35);opacity:0;pointer-events:none}
.help-trigger.nudge{animation:help-nudge 4.5s ease-in-out 6}
.help-trigger.nudge .help-halo{animation:help-halo 4.5s ease-out 6}
@keyframes help-nudge{0%,72%,100%{transform:scale(1)}78%{transform:scale(1.14)}84%{transform:scale(.97)}90%{transform:scale(1.07)}96%{transform:scale(1)}}
@keyframes help-halo{0%,72%,100%{opacity:0;transform:scale(.85)}76%{opacity:.5;transform:scale(.9)}100%{opacity:0;transform:scale(1.75)}}
@media (prefers-reduced-motion: reduce){.help-trigger.nudge,.help-trigger.nudge .help-halo{animation:none}}

/* ── hero ── */
.hero{width:100%;max-width:520px;padding:2px 18px 2px;text-align:center}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  background:linear-gradient(135deg,rgba(139,92,246,.14),rgba(236,72,153,.12));
  border:1px solid rgba(139,92,246,.28);border-radius:100px;
  padding:5px 12px;margin-bottom:8px;
  font-size:10.5px;font-weight:700;letter-spacing:.6px;color:#7c3aed;max-width:100%;
}
.hero-h1{font-size:clamp(22px,6.2vw,32px);font-weight:900;line-height:1.12;letter-spacing:-1px;margin-bottom:6px}
.hero-h1 .t1{display:block;color:var(--text)}
.hero-h1 .t2{display:block;background:linear-gradient(135deg,#9333ea 0%,#db2777 45%,#ea580c 100%);background-size:200% auto;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;animation:hueShift 6s linear infinite}
@keyframes hueShift{0%{background-position:0% center}100%{background-position:200% center}}
.hero-sub{font-size:13px;color:var(--muted);line-height:1.5;max-width:320px;margin:0 auto 8px}

/* ── trust row ── */
.trust-row{display:flex;align-items:stretch;justify-content:center;gap:8px;margin-bottom:6px}
.trust-item{
  flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;gap:6px;
  background:rgba(30,21,51,.03);border:1px solid rgba(30,21,51,.08);border-radius:14px;
  padding:11px 6px;
}
.trust-item svg{color:rgba(30,21,51,.32);flex-shrink:0}
.trust-item span{font-size:10px;font-weight:700;color:rgba(30,21,51,.38);text-align:center;line-height:1.3}

/* ── banner slot ── */
.banner-slot{width:100%;max-width:480px;margin:8px auto 0}
.slider-track{position:relative;width:100%;padding-bottom:56.25%;border-radius:16px;overflow:hidden}
.slide{
  position:absolute;inset:0;opacity:0;transform:scale(1.1) rotate(.6deg);
  transition:opacity .8s cubic-bezier(.22,1,.36,1),transform 1.15s cubic-bezier(.22,1,.36,1);
  pointer-events:none;display:flex;flex-direction:column;justify-content:center;
  padding:16px 20px;text-align:left;z-index:0;
}
.slide.on{opacity:1;transform:scale(1) rotate(0deg);pointer-events:auto;z-index:1;transition-duration:.9s,1.3s}
.slide::before{
  content:'';position:absolute;inset:-10% -30%;z-index:2;pointer-events:none;
  background:linear-gradient(112deg,transparent 40%,rgba(255,255,255,.65) 49%,rgba(255,255,255,.65) 53%,transparent 62%);
  transform:translateX(-60%) skewX(-14deg);opacity:0;
}
.slide.on::before{animation:slideShine 1.1s cubic-bezier(.22,1,.36,1) .12s 1}
@keyframes slideShine{0%{transform:translateX(-60%) skewX(-14deg);opacity:0}12%{opacity:1}100%{transform:translateX(60%) skewX(-14deg);opacity:0}}
.slide.slide-gradient{background:linear-gradient(120deg,#4c1d95,#7c3aed 45%,#db2777 100%)}
.slide.slide-image{padding:0;background:#0a0620;overflow:hidden}
.slide.slide-image img{width:100%;height:100%;object-fit:contain;transform:scale(1);animation:none}
.slide.slide-image.on img{animation:kenBurns 6.5s ease-in-out infinite alternate}
@keyframes kenBurns{from{transform:scale(1)}to{transform:scale(1.055)}}
.slide-title{font-size:14px;font-weight:800;color:#fff;margin-bottom:3px}
.slide-text{font-size:12px;color:rgba(255,255,255,.82);line-height:1.4;max-width:88%}
.slider-dots{display:flex;justify-content:center;gap:6px;margin-top:9px}
.sdot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.18);cursor:pointer;transition:width .3s cubic-bezier(.22,1,.36,1),background .3s ease,box-shadow .3s ease}
.sdot.on{width:20px;border-radius:3px;background:#8b5cf6;box-shadow:0 0 0 3px rgba(139,92,246,.22)}

/* ==========================================================================
   MAIN CARD
   ========================================================================== */
.main-card{width:100%;max-width:520px;padding:0 14px;margin-top:22px}
.card-body{
  position:relative;overflow:hidden;
  background:#ffffff;
  border:1px solid var(--border);border-radius:24px;
  padding:22px 16px 18px;
  box-shadow:0 24px 60px rgba(76,29,149,.12),0 4px 16px rgba(76,29,149,.08);
}
.card-body::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent 0%,rgba(139,92,246,.65) 30%,rgba(236,72,153,.65) 60%,rgba(251,146,60,.4) 80%,transparent 100%)}

.step-lbl{display:flex;align-items:center;gap:9px;margin-bottom:14px}
.step-lbl-2{margin-top:20px}
.step-n{
  width:22px;height:22px;border-radius:7px;flex-shrink:0;
  background:linear-gradient(135deg,#8b5cf6,#ec4899);
  font-size:11px;font-weight:900;color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.step-t{font-size:12px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.6px}

/* ── quick platform grid ── */
.quick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-bottom:14px}
.plat-tile{
  background:#fff;border:1.5px solid var(--border);
  border-radius:14px;padding:8px 6px 6px;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  min-height:64px;justify-content:center;
  transition:transform .2s cubic-bezier(.34,1.56,.64,1),border-color .2s,background .2s;
}
.plat-tile:active{transform:scale(.96)}
.plat-tile.active{background:#faf8ff;border-color:rgba(139,92,246,.55);box-shadow:0 0 0 1px rgba(139,92,246,.3) inset}
.plat-tile img{
  width:100%;max-width:88px;height:34px;object-fit:contain;
  filter:saturate(1.25) contrast(1.05);
}
.plat-tile span{font-size:9px;font-weight:800;color:var(--muted);letter-spacing:.3px}
.plat-tile.active span{color:#7c3aed}
.plat-tile.more{background:rgba(139,92,246,.03);border-style:dashed}
.plat-tile.more svg{color:#7c3aed}
.plat-tile.more span{color:#7c3aed}

/* ── selected chip ── */
.selected-chip{
  display:flex;align-items:center;gap:10px;
  background:rgba(139,92,246,.10);border:1px solid rgba(139,92,246,.28);
  border-radius:14px;padding:10px 12px;margin-bottom:4px;
}
.selected-chip img{width:28px;height:28px;object-fit:contain;border-radius:6px;flex-shrink:0}
.selected-chip span{flex:1;font-size:13px;font-weight:800;color:#6d28d9}
.selected-chip button{
  background:rgba(139,92,246,.12);border:none;border-radius:8px;padding:7px 11px;
  font-size:11px;font-weight:700;color:#6d28d9;cursor:pointer;min-height:32px;
}

/* ── input ── */
.input-wrap{position:relative;margin-bottom:8px;margin-top:2px}
.input-wrap input{
  width:100%;min-height:56px;
  background:var(--card);border:1.5px solid var(--border);
  border-radius:14px;color:var(--text);
  font-size:22px;font-weight:800;letter-spacing:4px;
  padding:14px 50px 14px 16px;outline:none;
  transition:border-color .2s,box-shadow .2s,background .2s;
}
.input-wrap input::placeholder{font-size:14px;font-weight:400;letter-spacing:1px;color:rgba(30,21,51,.28)}
.input-wrap input:focus{border-color:rgba(139,92,246,.6);background:rgba(139,92,246,.06);box-shadow:0 0 0 4px rgba(139,92,246,.12)}
.input-wrap input:disabled{opacity:.4}
.input-icon{position:absolute;right:16px;top:50%;transform:translateY(-50%);opacity:.28;pointer-events:none;color:var(--text)}
.input-wrap:focus-within .input-icon{opacity:.55}
.input-helper{font-size:11.5px;color:var(--muted);font-weight:500;margin-bottom:16px;min-height:15px;padding-left:2px}
.input-helper.warn{color:#fca5a5}

/* ── CTA button ── */
.btn-check{
  width:100%;min-height:54px;padding:0 18px;border:none;border-radius:14px;cursor:pointer;
  font-size:15.5px;font-weight:800;color:#fff;
  background:linear-gradient(135deg,#6d28d9 0%,#8b5cf6 35%,#ec4899 70%,#fb923c 100%);
  box-shadow:0 10px 40px rgba(139,92,246,.45),0 0 0 1px rgba(255,255,255,.1) inset;
  position:relative;display:flex;align-items:center;justify-content:center;gap:8px;
  transition:transform .2s cubic-bezier(.34,1.56,.64,1),box-shadow .2s,opacity .2s;
}
.btn-check:active{transform:scale(.98)}
.btn-check:disabled{opacity:.35;cursor:not-allowed;box-shadow:none}
.btn-check-spinner{display:none;width:18px;height:18px;border-radius:50%;border:2.5px solid rgba(255,255,255,.3);border-top-color:#fff;animation:spin .8s linear infinite}
.btn-check.loading .btn-check-label,.btn-check.loading .btn-check-arrow{display:none}
.btn-check.loading .btn-check-spinner{display:block}
@keyframes spin{to{transform:rotate(360deg)}}

/* ── error ── */
.err{display:none;margin-top:12px;padding:11px 14px;border-radius:12px;background:rgba(244,63,94,.08);border:1px solid rgba(244,63,94,.25);font-size:12.5px;font-weight:600;color:#c81e42;text-align:center}
.err.on{display:block}

/* ==========================================================================
   RESULT CARDS
   ========================================================================== */
.result-outer{display:none;width:100%;max-width:520px;padding:14px 14px 0}
.result-outer.on{display:block;animation:riseIn .45s cubic-bezier(.3,1,.4,1)}
@keyframes riseIn{from{opacity:0;transform:translateY(28px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.result-card{border-radius:24px;overflow:hidden;border:1px solid var(--border);background:#fff;box-shadow:0 24px 48px rgba(139,92,246,.14)}

.rc-eligible{border-color:#a7f3d0}
.rc-eligible .rch{background:#ecfdf5}
.rc-paid{border-color:#bfdbfe}
.rc-paid .rch{background:#eff6ff}
.rc-notfound{border-color:#ddd6fe}
.rc-notfound .rch{background:#f5f3ff}
.rc-review{border-color:#fde68a}
.rc-review .rch{background:#fffbeb}

.rch{padding:24px 20px 18px;position:relative}
.rch-row{display:flex;align-items:center;gap:13px;margin-bottom:16px}
.rch-icon{width:50px;height:50px;border-radius:15px;display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0;background:#fff}
.rc-eligible .rch-icon{border:1.5px solid #6ee7b7}
.rc-paid .rch-icon{border:1.5px solid #93c5fd}
.rc-notfound .rch-icon{border:1.5px solid #c4b5fd}
.rc-review .rch-icon{border:1.5px solid #fcd34d}
.rch-title{font-size:19px;font-weight:900;letter-spacing:-.3px;line-height:1.18}
.rc-eligible .rch-title{color:#047857}
.rc-paid .rch-title{color:#1d4ed8}
.rc-notfound .rch-title{color:#6d28d9}
.rc-review .rch-title{color:#b45309}
.rch-sub{font-size:12px;color:var(--muted);margin-top:3px;font-weight:500}

.bonus-box{background:#fff;border:1px solid #a7f3d0;border-radius:14px;padding:15px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.rc-paid .bonus-box{border-color:#bfdbfe}
.bl{font-size:10px;font-weight:700;color:#059669;text-transform:uppercase;letter-spacing:.8px;margin-bottom:4px}
.rc-paid .bl{color:#2563eb}
.ba{font-size:30px;font-weight:900;letter-spacing:-1px;color:#059669}
.rc-paid .ba{color:#2563eb}
.b-badge{background:#ecfdf5;border:1px solid #6ee7b7;border-radius:100px;padding:6px 13px;font-size:10.5px;font-weight:800;color:#047857;letter-spacing:.6px;white-space:nowrap}
.rc-paid .b-badge{background:#eff6ff;border-color:#93c5fd;color:#1d4ed8}

.rcb{background:#fff;padding:18px 20px 22px}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px}
.ic{background:#f8fafc;border:1px solid var(--line,rgba(30,21,51,.08));border-radius:12px;padding:11px 13px}
.ic-l{font-size:9.5px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.6px;margin-bottom:4px}
.ic-v{font-size:14px;font-weight:800;color:var(--text);display:flex;align-items:center;gap:6px}
.ic-v img{width:16px;height:16px;object-fit:contain;border-radius:4px}

.rc-msg{font-size:13.5px;color:var(--muted);line-height:1.7;margin-bottom:16px}
.rc-msg strong{color:var(--text)}

.contact-row{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-bottom:10px}
.contact-row:has(> :only-child){grid-template-columns:1fr}
.cbtn{display:flex;align-items:center;justify-content:center;gap:8px;min-height:50px;padding:0 12px;border-radius:13px;font-size:13.5px;font-weight:800;color:#fff;text-decoration:none;cursor:pointer;border:none;animation:btnPulse 2.4s ease-in-out infinite}
.cbtn.wa{background:#16a34a;animation-delay:0s}
.cbtn.tg{background:#0ea5e9;animation-delay:.35s}
.cbtn:hover{animation-play-state:paused;filter:brightness(1.06)}
@keyframes btnPulse{0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(0,0,0,.12)}50%{transform:scale(1.035);box-shadow:0 6px 16px rgba(0,0,0,.16)}}
.solo-btn{display:flex;align-items:center;justify-content:center;gap:8px;min-height:50px;border-radius:13px;background:#f8fafc;border:1px solid var(--line,rgba(30,21,51,.1));color:var(--text);text-decoration:none;font-weight:700;font-size:13.5px;width:100%}
.retry-btn{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;min-height:48px;border-radius:13px;background:#f8fafc;border:1px solid var(--line,rgba(30,21,51,.1));color:var(--text);font-weight:700;font-size:13px;cursor:pointer;margin-top:2px}

/* ── confetti ── */
.cpiece{position:fixed;pointer-events:none;z-index:9999;animation:fall linear forwards}
@keyframes fall{0%{transform:translateY(-20px) rotate(0deg) scale(1);opacity:1}85%{opacity:1}100%{transform:translateY(110vh) rotate(760deg) scale(.4);opacity:0}}

footer{margin-top:40px;font-size:11px;color:rgba(30,21,51,.35);font-weight:500;text-align:center;padding:0 20px}

/* ==========================================================================
   PLATFORM PICKER SHEET
   ========================================================================== */
.sheet-backdrop{
  position:fixed;inset:0;background:rgba(4,2,16,.6);backdrop-filter:blur(4px);
  z-index:100;display:flex;align-items:flex-end;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .25s;
}
.sheet-backdrop.on{opacity:1;pointer-events:auto}
.sheet{
  width:100%;max-width:560px;max-height:82vh;
  background:#120c2e;border:1px solid rgba(255,255,255,.1);border-bottom:none;
  border-radius:24px 24px 0 0;display:flex;flex-direction:column;
  transform:translateY(100%);transition:transform .32s cubic-bezier(.32,.9,.4,1);
  padding-bottom:calc(14px + var(--safe-b));
}
.sheet-backdrop.on .sheet{transform:translateY(0)}
.sheet-handle{width:36px;height:4px;border-radius:3px;background:rgba(255,255,255,.2);margin:10px auto 6px;flex-shrink:0}
.sheet-head{display:flex;align-items:center;justify-content:space-between;padding:8px 18px 12px;flex-shrink:0}
.sheet-head h2{font-size:16px;font-weight:800}
.sheet-close{width:34px;height:34px;border-radius:10px;background:rgba(255,255,255,.06);border:none;color:#f1f5f9;display:flex;align-items:center;justify-content:center;cursor:pointer}
.sheet-search{display:flex;align-items:center;gap:9px;margin:0 18px 12px;background:rgba(255,255,255,.05);border:1.5px solid rgba(255,255,255,.09);border-radius:13px;padding:0 14px;flex-shrink:0}
.sheet-search svg{color:rgba(241,245,249,.45);flex-shrink:0}
.sheet-search input{flex:1;background:none;border:none;outline:none;color:#f1f5f9;font-size:15px;min-height:46px}
.sheet-search input::placeholder{color:rgba(241,245,249,.3)}
.sheet-grid{overflow-y:auto;-webkit-overflow-scrolling:touch;display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:0 18px 18px}
.sheet-empty{padding:30px 18px 40px;text-align:center;color:rgba(241,245,249,.45);font-size:13px}
.sheet-tile{
  background:rgba(255,255,255,.035);border:1.5px solid rgba(255,255,255,.08);border-radius:12px;
  padding:7px 4px 6px;cursor:pointer;display:flex;flex-direction:column;align-items:center;gap:4px;
  min-height:60px;justify-content:center;transition:transform .15s,border-color .15s,background .15s;
}
.sheet-tile:active{transform:scale(.95)}
.sheet-tile.active{background:rgba(139,92,246,.18);border-color:rgba(139,92,246,.55)}
.sheet-tile img{width:100%;max-width:72px;height:28px;object-fit:contain;border-radius:7px;background:#fff;padding:3px 6px;filter:saturate(1.25) contrast(1.05)}
.sheet-tile span{font-size:8.5px;font-weight:800;color:rgba(241,245,249,.5);letter-spacing:.3px;text-align:center;line-height:1.2}
.sheet-tile.active span{color:#c4b5fd}
.sheet-tile.inactive{cursor:default;opacity:.4}
.sheet-tile.inactive img{filter:grayscale(1) saturate(0) contrast(.9);opacity:.7}
.sheet-tile.inactive span{color:rgba(241,245,249,.32)}
.sheet-section-lbl{grid-column:1/-1;font-size:10px;font-weight:700;color:rgba(241,245,249,.45);text-transform:uppercase;letter-spacing:.6px;padding:6px 2px 2px}

/* ==========================================================================
   HELP SHEET (light surface -- overrides the dark .sheet defaults above)
   ========================================================================== */
.help-sheet{background:#fff;border-color:var(--border)}
.help-sheet .sheet-handle{background:rgba(30,21,51,.14)}
.help-sheet .sheet-head h2{color:var(--text)}
.help-sheet .sheet-close{background:#f1f5f9;color:var(--text)}

.help-tabs{position:relative;display:flex;gap:2px;margin:0 18px 14px;padding:4px;background:#f1f5f9;border-radius:16px;flex-shrink:0}
.help-tab-pill{position:absolute;top:4px;bottom:4px;left:0;border-radius:12px;background:#fff;box-shadow:0 2px 8px rgba(30,21,51,.1);transition:transform .28s cubic-bezier(.3,1,.4,1),width .28s cubic-bezier(.3,1,.4,1)}
.help-tab{
  position:relative;z-index:1;flex:1;display:flex;align-items:center;justify-content:center;gap:5px;
  padding:9px 4px;border:none;background:none;cursor:pointer;color:var(--muted);
  font-size:11.5px;font-weight:800;border-radius:12px;
}
.help-tab.active{color:#7c3aed}
.help-tab b{font-size:9px;font-weight:800;background:#e2e8f0;color:#64748b;border-radius:100px;padding:1px 6px}
.help-tab.active b{background:rgba(124,58,237,.14);color:#7c3aed}

.help-panels{overflow-y:auto;-webkit-overflow-scrolling:touch;padding:0 18px 4px}
.help-empty{padding:36px 10px 44px;text-align:center;color:var(--muted);font-size:13px;line-height:1.6}
.help-footnote{text-align:center;font-size:11px;color:var(--muted);margin-top:10px}

.help-list{display:flex;flex-direction:column;gap:8px}
.help-row{
  display:flex;align-items:center;gap:11px;padding:11px 13px;
  background:#fff;border:1px solid var(--border);border-radius:16px;text-decoration:none;
}
.help-icon{width:34px;height:34px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;color:#fff}
.help-row-label{flex:1;font-size:13.5px;font-weight:800;color:var(--text)}
.help-ext{color:#cbd5e1;flex-shrink:0}

.help-section-lbl{font-size:10px;font-weight:800;color:var(--muted);text-transform:uppercase;letter-spacing:.6px;padding:10px 2px 6px}
.help-section-lbl:first-child{padding-top:2px}
.help-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.help-card{
  display:flex;align-items:center;gap:8px;min-height:44px;padding:9px 11px;
  background:#fff;border:1px solid var(--border);border-radius:13px;text-decoration:none;overflow:hidden;
}
.help-card.span2{grid-column:1/-1}
.help-card-icon{flex-shrink:0;display:flex}
.help-card-label{font-size:12px;font-weight:800;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* ==========================================================================
   CMS POPUP
   ========================================================================== */
.popup-backdrop{position:fixed;inset:0;background:rgba(4,2,16,.65);backdrop-filter:blur(4px);z-index:200;display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .25s}
.popup-backdrop.on{opacity:1;pointer-events:auto}
.popup-card{
  width:100%;max-width:400px;background:linear-gradient(160deg,#1b1340,#150f30);
  border:1px solid rgba(255,255,255,.12);border-radius:22px;padding:26px 22px 22px;position:relative;
  transform:scale(.94) translateY(10px);transition:transform .28s cubic-bezier(.32,.9,.4,1);
  box-shadow:0 40px 90px rgba(0,0,0,.6);
}
.popup-backdrop.on .popup-card{transform:scale(1) translateY(0)}
.popup-close{position:absolute;top:14px;right:14px;width:32px;height:32px;border-radius:9px;background:rgba(255,255,255,.06);border:none;color:#f1f5f9;display:flex;align-items:center;justify-content:center;cursor:pointer}
.popup-body h3{font-size:18px;font-weight:900;margin-bottom:9px;padding-right:30px;color:#f1f5f9}
.popup-body p{font-size:13.5px;color:rgba(241,245,249,.6);line-height:1.65;margin-bottom:18px}
.popup-cta{display:flex;align-items:center;justify-content:center;min-height:48px;border-radius:13px;background:linear-gradient(135deg,#8b5cf6,#ec4899);color:#fff;font-weight:800;font-size:14px;text-decoration:none;cursor:pointer;border:none;width:100%}

/* ==========================================================================
   TABLET
   ========================================================================== */
@media (min-width:700px){
  .topbar,.hero,.main-card,.result-outer{max-width:600px}
  .hero-h1{font-size:clamp(34px,5.5vw,46px)}
  .sheet-grid{grid-template-columns:repeat(5,1fr)}
  .card-body{padding:30px 26px 26px;border-radius:28px}
  .banner-slot{max-width:520px}
}

/* ==========================================================================
   DESKTOP — centered composition with a companion panel, not a stretched card
   ========================================================================== */
@media (min-width:1024px){
  body{display:flex;align-items:flex-start;justify-content:center;min-height:100vh}
  .page{padding-top:48px;padding-bottom:48px}
  .topbar{max-width:920px}
  .hero{max-width:920px;padding-top:8px}
  .hero-h1{font-size:52px}
  .hero-sub{max-width:420px}
  .trust-row{max-width:420px;margin-left:auto;margin-right:auto}

  .desktop-layout{display:grid;grid-template-columns:1fr 460px;gap:40px;align-items:start;max-width:920px;width:100%;margin-top:12px}
  .search-column{display:flex;flex-direction:column;align-items:center}

  .main-card{max-width:460px;margin-top:0}
  .card-body{padding:32px 28px 28px}

  .result-outer{max-width:460px}

  .sheet-backdrop{align-items:center}
  .sheet{max-width:520px;max-height:640px;border-radius:24px;border-bottom:1px solid rgba(255,255,255,.1)}
  .sheet-grid{grid-template-columns:repeat(4,1fr)}
}

/* Companion desktop panel content (illustration / trust reassurance) */
.desktop-side{display:none}
@media (min-width:1024px){
  .desktop-side{
    display:flex;flex-direction:column;gap:16px;
    background:var(--card);border:1px solid var(--border);border-radius:24px;
    padding:28px;position:sticky;top:48px;
  }
  .desktop-side h3{font-size:15px;font-weight:800;color:#6d28d9}
  .desktop-side p{font-size:13px;color:var(--muted);line-height:1.7}
  .desktop-side .dstep{display:flex;gap:12px;align-items:flex-start}
  .desktop-side .dstep-n{width:26px;height:26px;border-radius:8px;background:linear-gradient(135deg,#8b5cf6,#ec4899);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:900;color:#fff}
}
