/* Yakkyofy quiz funnel: tokens copied from the official LP design system
   (Yakkyofy-pure-dropshipper/css/style.css): Poppins, navy #121C34, orange #FF4F00. */
:root{
  --orange-400:#FF7135; --orange-500:#FF4F00; --orange-600:#EF3F00; --orange-700:#DE2F00;
  --blu-200:#D5DBEB; --blu-300:#B3BDDB; --blu-400:#7184BC; --blu-700:#364572; --blu-800:#121C34; --blu-900:#01102A;
  --green:#0ED858; --green-deep:#099250;
  --muted:#8FA1C0;
  --ff:'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  --ease:cubic-bezier(.2,.8,.2,1);
}
*{margin:0;padding:0;box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{background:var(--blu-800);color:#fff;font-family:var(--ff);-webkit-font-smoothing:antialiased;min-height:100vh;min-height:100dvh;display:flex;flex-direction:column;overflow-x:hidden}
img,svg{display:block}
a{color:inherit}
button{font:inherit;color:inherit;cursor:pointer;background:none;border:0}
.container{width:100%;max-width:1180px;margin:0 auto;padding:0 20px}
.skip-link{position:absolute;left:-9999px;top:0;z-index:999;background:#fff;color:var(--blu-900);padding:10px 18px;border-radius:0 0 8px 0;font-weight:600}
.skip-link:focus{left:0}
:focus-visible{outline:2px solid var(--orange-400);outline-offset:3px;border-radius:6px}

/* ---------- background (glow + topo lines, as on the official hero) ---------- */
.bg{position:fixed;inset:0;pointer-events:none;overflow:hidden;z-index:0}
.bg-glow{position:absolute;left:58%;top:30%;width:620px;height:900px;border-radius:50%;background:var(--orange-500);filter:blur(320px);opacity:.55}
.bg-topo{position:absolute;right:-8%;top:-14%;width:62%;min-width:520px;opacity:.4}
.bg-topo path{stroke:#C4430D;animation:topo 9s ease-in-out infinite alternate}
.bg-topo path:nth-child(2){animation-delay:-2s}.bg-topo path:nth-child(3){animation-delay:-4s}.bg-topo path:nth-child(4){animation-delay:-6s}
@keyframes topo{0%{stroke:#121C34}50%{stroke:#C4430D}100%{stroke:#FF4F00}}

/* ---------- header / footer ---------- */
.site-header{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;padding-top:22px;padding-bottom:10px}
.logo img{height:31px;width:auto}
.header-right{display:flex;align-items:center;gap:14px}
.pill-sellers{font:600 12px/1 var(--ff);color:var(--orange-400);background:rgba(255,255,255,.08);border-radius:100px;padding:8px 12px}
.login{font:600 14px/1 var(--ff);text-decoration:none;opacity:.85}
.login:hover{color:var(--orange-400)}
.site-footer{position:relative;z-index:2;display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px;padding-top:18px;padding-bottom:calc(22px + env(safe-area-inset-bottom));font-size:12px;color:var(--muted)}
.site-footer a{text-decoration:none}.site-footer a:hover{color:#fff}

/* ---------- stage layout ---------- */
main{position:relative;z-index:1;flex:1}
/* Single centered column: nothing competes with the quiz for attention */
.stage{display:grid;grid-template-columns:minmax(0,640px);grid-template-areas:"intro" "quiz";justify-content:center;padding-top:40px}
.intro{grid-area:intro;text-align:center;display:flex;flex-direction:column;align-items:center}
.quiz{grid-area:quiz}

.label-top{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);border-radius:100px;padding:6px 14px}
.label-top .dot{width:6px;height:6px;border-radius:3px;background:var(--orange-600);animation:pulse 1.6s infinite}
.label-top span:last-child{font:600 13px/1.4 var(--ff);color:var(--orange-400)}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
.hero-title{font:600 48px/1.15 var(--ff);letter-spacing:-1.2px;margin:16px 0 12px;max-width:720px;text-wrap:balance}
.grad{background:linear-gradient(90deg,#FFA47B 0%,var(--orange-500) 60%);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-sub{font:400 17px/1.6 var(--ff);color:rgba(255,255,255,.88);max-width:600px}
.hero-sub b{font-weight:700;color:#fff}

/* focus mode: after the first tap, hide everything that isn't the question */
.intro{transition:opacity .35s var(--ease),transform .35s var(--ease)}
body.focus .intro{display:none}
body.focus .stage{grid-template-areas:"quiz";padding-top:28px}
body.focus .trust{opacity:.55}

/* ---------- quiz card ---------- */
.quiz{margin-top:28px;max-width:640px;width:100%}
body.focus .quiz{margin-top:0}
.card{background:rgba(1,16,42,.72);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(113,132,188,.28);border-radius:20px;padding:26px;box-shadow:0 50px 100px -40px #4A1802,0 0 70px -30px rgba(74,24,2,.5)}
.q-top{display:flex;align-items:center;gap:12px;margin-bottom:20px;min-height:32px}
.back{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--blu-300);transition:background .15s}
.back:hover{background:rgba(255,255,255,.08);color:#fff}
.back[hidden]{display:flex;visibility:hidden}
.segs{flex:1;display:flex;gap:6px}
.seg{flex:1;height:6px;border-radius:3px;background:rgba(113,132,188,.3);overflow:hidden}
.seg i{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--orange-500),#FFA47B);border-radius:3px;transition:width .5s var(--ease)}
.seg.done i{width:100%}
.left{font:600 12px/1 var(--ff);color:var(--muted);white-space:nowrap}

.reward{display:inline-flex;align-items:center;gap:6px;font:600 13px/1.4 var(--ff);color:var(--green);background:rgba(14,216,88,.1);border-radius:100px;padding:5px 12px;margin-bottom:12px;animation:rise .45s var(--ease) both}
.q-title{font:600 26px/1.25 var(--ff);letter-spacing:-.5px;text-wrap:balance}
.q-hint{font:400 15px/1.5 var(--ff);color:var(--muted);margin-top:6px}

.opts{display:flex;flex-direction:column;gap:10px;margin-top:20px}
.opt{position:relative;display:flex;align-items:center;gap:14px;width:100%;text-align:left;min-height:64px;padding:12px 16px;border-radius:14px;background:rgba(18,28,52,.9);border:1.5px solid var(--blu-700);transition:border-color .15s,background .15s,transform .12s var(--ease),box-shadow .15s;animation:rise .4s var(--ease) both}
.opt:nth-child(2){animation-delay:.04s}.opt:nth-child(3){animation-delay:.08s}.opt:nth-child(4){animation-delay:.12s}.opt:nth-child(5){animation-delay:.16s}.opt:nth-child(6){animation-delay:.2s}
.opt:hover{border-color:var(--orange-400);background:rgba(36,48,82,.95);transform:translateY(-1px)}
.opt:active{transform:scale(.985)}
.opt.sel{border-color:var(--orange-500);background:rgba(255,79,0,.12);box-shadow:0 0 0 4px rgba(255,79,0,.14)}
.ic{width:42px;height:42px;flex-shrink:0;border-radius:12px;background:var(--orange-600);display:flex;align-items:center;justify-content:center}
.ic svg{width:21px;height:21px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.opt.muted .ic{background:var(--blu-700)}
.lbl{flex:1;font:600 16px/1.3 var(--ff)}
.lbl small{display:block;font:400 13px/1.4 var(--ff);color:var(--muted);margin-top:2px}
.key{font:600 11px/1 var(--ff);color:var(--blu-400);border:1px solid var(--blu-700);border-radius:6px;padding:5px 7px}
.tick{position:absolute;right:14px;width:24px;height:24px;border-radius:50%;background:var(--orange-500);display:none;align-items:center;justify-content:center}
.tick svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:3}
.opt.sel .tick{display:flex;animation:pop .3s var(--ease)}
.opt.sel .key{visibility:hidden}

/* logo grid (platforms) */
.opts.grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.opts.grid .opt{flex-direction:column;justify-content:center;gap:8px;min-height:96px;text-align:center;padding:14px 10px}
.opts.grid .key{position:absolute;top:8px;left:8px}
.opts.grid .tick{top:8px;right:8px}
.plogo{height:30px;width:auto;max-width:112px;object-fit:contain}
.ptxt{font:600 16px/1.2 var(--ff)}
.opts.grid .lbl{flex:none;font-size:13px;color:var(--muted);font-weight:500}

/* idle nudge for easily-distracted visitors */
.nudge{margin-top:14px;font:500 13px/1.4 var(--ff);color:var(--orange-400);text-align:center;animation:rise .4s var(--ease) both}
.opts.wiggle .opt{animation:wiggle .6s var(--ease)}
@keyframes wiggle{0%,100%{transform:none}25%{transform:translateX(-3px)}75%{transform:translateX(3px)}}

.q-foot{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-top:18px;font:500 12px/1.4 var(--ff);color:var(--muted)}
.q-foot span{display:inline-flex;align-items:center;gap:5px}
.q-foot svg{width:13px;height:13px;stroke:var(--green);fill:none;stroke-width:3}

/* ---------- calculating ---------- */
.calc{padding:12px 4px}
.calc-list{list-style:none;display:flex;flex-direction:column;gap:14px;margin-top:22px}
.calc-list li{display:flex;align-items:center;gap:12px;font:500 15px/1.4 var(--ff);color:var(--muted);transition:color .3s}
.calc-list li .st{width:24px;height:24px;border-radius:50%;border:2px solid var(--blu-700);flex-shrink:0;display:flex;align-items:center;justify-content:center}
.calc-list li.run .st{border-color:var(--blu-700);border-top-color:var(--orange-500);animation:spin .8s linear infinite}
.calc-list li.ok{color:#fff}
.calc-list li.ok .st{border-color:var(--green);background:var(--green)}
.calc-list li.ok .st::after{content:"";width:9px;height:5px;border-left:2.5px solid var(--blu-900);border-bottom:2.5px solid var(--blu-900);transform:rotate(-45deg) translate(1px,-1px)}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- result + gate ---------- */
.badge{display:inline-flex;align-items:center;gap:8px;font:700 12px/1 var(--ff);letter-spacing:1.2px;text-transform:uppercase;color:var(--green);background:rgba(14,216,88,.12);border:1px solid rgba(14,216,88,.35);border-radius:100px;padding:8px 14px;animation:pop .45s var(--ease)}
.profile{font:600 26px/1.25 var(--ff);letter-spacing:-.5px;margin-top:14px;text-wrap:balance}
.estimate{margin-top:16px;border:1px solid var(--blu-700);border-radius:14px;padding:16px 18px;display:flex;align-items:center;gap:16px}
.estimate .big{font:700 34px/1 var(--ff);color:var(--green);white-space:nowrap}
.estimate .big small{font-size:16px;font-weight:600}
.estimate p{font:400 13px/1.45 var(--ff);color:var(--blu-200)}
.estimate p b{color:#fff}
.fineprint{font:400 11px/1.4 var(--ff);color:var(--blu-400);margin-top:6px}

.gate{margin-top:20px;padding-top:20px;border-top:1px solid rgba(113,132,188,.25)}
.gate h3{font:600 18px/1.3 var(--ff)}
.gate .q-hint{margin-top:4px}
.fields{display:flex;flex-direction:column;gap:10px;margin-top:14px}
.field{position:relative}
.field input{width:100%;height:56px;border-radius:12px;border:1.5px solid var(--blu-700);background:rgba(18,28,52,.9);color:#fff;font:500 16px/1 var(--ff);padding:0 16px;transition:border-color .15s}
.field input::placeholder{color:var(--blu-400)}
.field input:focus{outline:none;border-color:var(--orange-500)}
.field input[aria-invalid="true"]{border-color:#F4577E}
.field .opt-tag{position:absolute;right:14px;top:50%;transform:translateY(-50%);font:500 11px/1 var(--ff);color:var(--blu-400);pointer-events:none}
.err{font:500 12px/1.3 var(--ff);color:#F4577E;min-height:0}
.check{display:flex;align-items:flex-start;gap:10px;font:400 13px/1.45 var(--ff);color:var(--blu-200);margin-top:4px;cursor:pointer}
.check input{width:18px;height:18px;margin-top:1px;accent-color:var(--orange-500);flex-shrink:0}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:60px;border-radius:100px;background:var(--orange-700);color:#fff;font:600 17px/1.2 var(--ff);text-decoration:none;padding:0 24px;margin-top:14px;box-shadow:inset 0 0 0 1px rgba(10,13,18,.18),0 10px 30px -10px rgba(222,47,0,.7);transition:background .2s,transform .15s}
.btn:hover{background:#C42900;transform:translateY(-1px)}
.btn[disabled]{opacity:.6;cursor:wait;transform:none}
.btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.btn:hover svg{transform:translateX(3px)}
.btn.ghost{background:transparent;box-shadow:inset 0 0 0 1.5px var(--blu-700);margin-top:10px}
.btn.ghost:hover{background:rgba(255,255,255,.05);box-shadow:inset 0 0 0 1.5px var(--blu-400)}
.legal{font:400 11.5px/1.5 var(--ff);color:var(--blu-400);text-align:center;margin-top:12px}
.legal a{color:var(--blu-300)}

/* ---------- done / next steps ---------- */
.done-ic{width:64px;height:64px;border-radius:50%;background:rgba(14,216,88,.14);display:flex;align-items:center;justify-content:center;animation:pop .5s var(--ease)}
.done-ic svg{width:30px;height:30px;stroke:var(--green);fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.steps{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:18px}
.steps li{display:flex;gap:12px;align-items:flex-start;background:rgba(18,28,52,.9);border:1px solid var(--blu-700);border-radius:12px;padding:12px 14px;font:400 14px/1.45 var(--ff);color:var(--blu-200)}
.steps li b{display:block;color:#fff;font-weight:600;font-size:15px}
.steps .n{width:26px;height:26px;border-radius:50%;background:var(--orange-600);color:#fff;font:700 13px/26px var(--ff);text-align:center;flex-shrink:0}

/* ---------- trust ---------- */
.trust{display:flex;flex-direction:column;align-items:center;gap:14px;padding:44px 0 8px;transition:opacity .3s}
.press-row{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:18px 44px;opacity:.9}
.press-row img{height:auto}
.ratings{display:flex;flex-wrap:wrap;justify-content:center;gap:6px 24px;font:500 13px/1.5 var(--ff);color:rgba(255,255,255,.6)}

/* ---------- consent ---------- */
.consent{position:fixed;left:16px;right:16px;bottom:calc(16px + env(safe-area-inset-bottom));z-index:50;max-width:560px;margin:0 auto;display:flex;align-items:center;gap:14px;background:var(--blu-900);border:1px solid var(--blu-700);border-radius:14px;padding:12px 14px;box-shadow:0 20px 50px -10px rgba(0,0,0,.6);font:400 13px/1.45 var(--ff);color:var(--blu-200);animation:rise .4s var(--ease)}
.consent[hidden]{display:none}
.consent-btns{display:flex;gap:8px;flex-shrink:0}
.consent button{font:600 13px/1 var(--ff);border-radius:100px;padding:10px 16px}
.c-reject{box-shadow:inset 0 0 0 1.5px var(--blu-700)}
.c-accept{background:var(--orange-700)}

@keyframes rise{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
@keyframes pop{0%{transform:scale(.6);opacity:0}70%{transform:scale(1.08)}100%{transform:scale(1);opacity:1}}
.screen{animation:rise .35s var(--ease) both}

/* ---------- responsive ---------- */
@media (max-width:960px){
  .stage{padding-top:22px}
  .hero-title{font-size:38px;letter-spacing:-.9px}
}
@media (max-width:560px){
  .container{padding:0 16px}
  .site-header{padding-top:16px}
  .logo img{height:26px}
  .pill-sellers{display:none}
  .stage{padding-top:14px}
  .hero-title{font-size:29px;line-height:1.18;letter-spacing:-.6px;margin:12px 0 8px}
  .hero-sub{font-size:15px;line-height:1.5}
  .quiz{margin-top:18px}
  .card{padding:18px 16px;border-radius:18px}
  .q-title,.profile{font-size:22px}
  .opt{min-height:60px;padding:10px 12px;gap:12px}
  .ic{width:38px;height:38px}
  .key{display:none}
  .estimate{flex-direction:column;align-items:flex-start;gap:8px}
  .consent{left:10px;right:10px;bottom:calc(10px + env(safe-area-inset-bottom));gap:10px;padding:9px 10px 9px 12px;font-size:11.5px;line-height:1.35}
  .consent p{flex:1}
  .consent button{padding:9px 12px;font-size:12px}
  .bg-glow{left:20%;top:45%;width:420px;height:600px;filter:blur(220px)}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
.reward svg,.badge svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.back svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.autobar{height:4px;border-radius:2px;background:rgba(113,132,188,.3);overflow:hidden;margin-top:14px}
.autobar i{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--orange-500),#FFA47B);animation:fill 3.5s linear forwards}
@keyframes fill{to{width:100%}}
.opts.cats .opt{min-height:84px;gap:8px}
.opts.cats .ic{width:36px;height:36px;border-radius:10px}
.opts.cats .ic svg{width:19px;height:19px}
.opts.cats .ptxt{font-size:14px;line-height:1.25}
@media (max-width:560px){.opts.cats .opt{min-height:78px;padding:10px 8px}.opts.cats .ptxt{font-size:13px}}
.field:has(.opt-tag) input{padding-right:82px}
.bar{flex:1;height:6px;border-radius:3px;background:rgba(113,132,188,.3);overflow:hidden}
.bar i{display:block;height:100%;background:linear-gradient(90deg,var(--orange-500),#FFA47B);border-radius:3px;transition:width .6s var(--ease)}
.left:empty{display:none}

/* ---------- "Just me" exit screen: centered, calm, one clear way back in ---------- */
body.dq .stage{padding-top:clamp(40px,16vh,190px)}
.dq-card{text-align:center;display:flex;flex-direction:column;align-items:center;padding:52px 48px 60px;border-color:transparent;background:rgba(1,16,42,.88)}
.dq-title{font:600 48px/1.1 var(--ff);letter-spacing:-1.2px;color:#fff}
.dq-text{font:400 16px/1.6 var(--ff);color:var(--blu-200);max-width:540px;margin-top:14px}
.dq-btn{display:inline-flex;align-items:center;justify-content:center;min-width:292px;height:66px;padding:0 34px;margin-top:34px;border-radius:100px;background:var(--orange-700);color:#fff;font:600 17px/1 var(--ff);box-shadow:inset 0 0 0 1px rgba(10,13,18,.18);transition:background .2s,transform .15s}
.dq-btn:hover{background:#C42900;transform:translateY(-1px)}
.dq-link{margin-top:24px;font:500 18px/1.3 var(--ff);color:var(--orange-500);text-decoration:none}
.dq-link:hover{color:var(--orange-400);text-decoration:underline}
@media (max-width:560px){
  body.dq .stage{padding-top:48px}
  .dq-card{padding:36px 22px 40px}
  .dq-title{font-size:30px;letter-spacing:-.6px}
  .dq-text{font-size:15px}
  .dq-btn{min-width:0;width:100%;height:60px}
}
