/* waiv-interactive.css — playable widgets + scroll-synced motion for the
   How-it-works, Share, Onelynk and Business sections. Built on waiv.css tokens. */

/* ── shared scroll-reveal niceties already in waiv-home.css ── */

/* nav scroll progress bar */
.hb-nav-progress{position:absolute;left:0;bottom:0;height:2px;background:var(--yellow);width:0;
  box-shadow:0 0 10px rgba(255,213,39,.7);transition:width .08s linear;z-index:6;}

/* ════════════════ HOW IT WORKS — tap simulator ════════════════ */
.iw{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,6vw,84px);align-items:center;margin-top:60px;}

/* step widgets (left) */
.iw-steps{display:flex;flex-direction:column;gap:14px;}
.iw-step{position:relative;display:grid;grid-template-columns:auto 1fr;gap:18px;padding:22px 24px;border-radius:18px;cursor:pointer;
  background:rgba(255,255,255,.025);box-shadow:inset 0 0 0 1px rgba(230,235,255,.08);
  transition:box-shadow .35s,background .35s,transform .35s;overflow:hidden;}
.iw-step:hover{transform:translateY(-2px);}
.iw-step.is-active{background:rgba(255,213,39,.06);box-shadow:inset 0 0 0 1px rgba(255,213,39,.32);}
.iw-step.is-done{background:rgba(63,123,255,.05);box-shadow:inset 0 0 0 1px rgba(63,123,255,.22);}
.iw-step-prog{position:absolute;left:0;top:0;bottom:0;width:0;background:linear-gradient(90deg,rgba(255,213,39,.14),rgba(255,213,39,.02));z-index:0;}
.iw-step>*{position:relative;z-index:1;}
.iw-step-num{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex:none;
  font-family:'Space Mono',monospace;font-weight:700;font-size:15px;color:rgba(230,235,255,.55);
  background:rgba(230,235,255,.05);box-shadow:inset 0 0 0 1px rgba(230,235,255,.14);transition:.35s;}
.iw-step.is-active .iw-step-num{color:var(--navy);background:var(--yellow);box-shadow:0 6px 16px -5px rgba(255,213,39,.6);}
.iw-step.is-done .iw-step-num{color:var(--sapphire);background:rgba(63,123,255,.14);box-shadow:inset 0 0 0 1px rgba(63,123,255,.4);}
.iw-step-num svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;}
.iw-step h3{font-family:'Ubuntu',sans-serif;font-size:clamp(18px,1.7vw,22px);font-weight:700;letter-spacing:-.02em;color:#fff;margin:2px 0 6px;}
.iw-step p{font-size:14.5px;line-height:1.5;color:rgba(230,235,255,.6);margin:0;}

.iw-replay{display:inline-flex;align-items:center;gap:11px;margin-top:26px;cursor:pointer;border:none;border-radius:999px;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;padding:13px 22px;
  background:var(--yellow);color:var(--navy);box-shadow:0 12px 28px -10px rgba(255,213,39,.6);transition:transform .2s,box-shadow .2s,opacity .2s;}
.iw-replay:hover{transform:translateY(-2px);box-shadow:0 16px 34px -10px rgba(255,213,39,.7);}
.iw-replay svg{width:15px;height:15px;fill:var(--navy);}

/* simulator stage (right) */
.iw-stage{position:relative;display:flex;align-items:center;justify-content:center;min-height:540px;}
.iw-stage-glow{position:absolute;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(255,213,39,.16),transparent 70%);filter:blur(60px);z-index:0;}

/* timer ring + readout */
.iw-timer{position:absolute;top:6%;left:50%;transform:translateX(-50%);z-index:6;display:flex;flex-direction:column;align-items:center;gap:7px;}
.iw-ring{width:84px;height:84px;transform:rotate(-90deg);}
.iw-ring circle{fill:none;stroke-width:5;stroke-linecap:round;}
.iw-ring .iw-ring-bg{stroke:rgba(230,235,255,.12);}
.iw-ring .iw-ring-fg{stroke:var(--yellow);transition:stroke-dashoffset .08s linear;}
.iw-time-val{position:absolute;top:30px;left:0;right:0;text-align:center;font-family:'Space Mono',monospace;font-weight:700;font-size:16px;color:#fff;}
.iw-time-lbl{font-family:'Space Mono',monospace;font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:rgba(230,235,255,.45);}

/* tapping card (beat 1 only) + step dots */
.iw-tapcard{position:absolute;z-index:4;left:16%;top:46%;width:150px;height:95px;border-radius:11px;
  box-shadow:0 24px 44px -16px rgba(0,2,12,.9);opacity:0;transform:translate(-50%,-50%) rotate(-13deg) scale(.9);
  transition:opacity .5s,transform .5s;pointer-events:none;}
.iw-stage.is-stage0 .iw-tapcard{opacity:1;transform:translate(-50%,-50%) rotate(-12deg) scale(1);animation:iw-nudge 1.7s ease-in-out infinite;}
@keyframes iw-nudge{0%,100%{transform:translate(-50%,-50%) rotate(-12deg) scale(1)}50%{transform:translate(calc(-50% + 16px),-52%) rotate(-9deg) scale(1.02)}}
.iw-tapcard .iw-card-logo{position:absolute;left:13px;top:11px;height:14px;}
.iw-tapcard .iw-card-nfc{position:absolute;right:11px;top:10px;width:15px;height:15px;border-radius:50%;
  box-shadow:0 0 0 2px rgba(234,201,130,.5),0 0 0 5px rgba(234,201,130,.28),0 0 0 8px rgba(234,201,130,.12);}
.iw-tapcard-hint{position:absolute;left:50%;bottom:9px;transform:translateX(-50%);font-family:'Space Mono',monospace;
  font-size:9px;letter-spacing:.22em;text-transform:uppercase;color:rgba(234,201,130,.85);}

.iw-dots3{display:flex;gap:9px;margin-top:28px;}
.iw-dot3{width:30px;height:4px;border-radius:2px;border:none;padding:0;cursor:pointer;background:rgba(230,235,255,.16);transition:background .3s,transform .3s;}
.iw-dot3:hover{background:rgba(230,235,255,.4);}
.iw-dot3.is-on{background:var(--yellow);box-shadow:0 0 10px rgba(255,213,39,.7);}

/* card that flies in to tap */
.iw-card{position:absolute;z-index:4;width:160px;height:101px;border-radius:11px;will-change:transform,opacity;
  box-shadow:0 24px 44px -16px rgba(0,2,12,.9);}
.iw-card-logo{position:absolute;left:13px;top:11px;height:15px;}
.iw-card-nfc{position:absolute;right:12px;top:11px;width:16px;height:16px;border-radius:50%;
  box-shadow:0 0 0 2px rgba(234,201,130,.5),0 0 0 5px rgba(234,201,130,.28),0 0 0 8px rgba(234,201,130,.12);}

/* tap pulse from phone */
.iw-tap{position:absolute;z-index:3;left:50%;top:20%;pointer-events:none;}
.iw-tap span{position:absolute;width:80px;height:80px;margin:-40px;border-radius:50%;border:2px solid rgba(255,213,39,.6);opacity:0;}
.iw-stage.is-pulsing .iw-tap span{animation:iw-pulse 1.6s ease-out infinite;}
.iw-stage.is-pulsing .iw-tap span:nth-child(2){animation-delay:.5s;}
.iw-stage.is-pulsing .iw-tap span:nth-child(3){animation-delay:1s;}
@keyframes iw-pulse{0%{transform:scale(.3);opacity:.8}100%{transform:scale(3.4);opacity:0}}

/* phone */
.iw-phone{position:relative;width:260px;height:528px;border-radius:42px;padding:10px;z-index:2;
  background:linear-gradient(160deg,#0a1c3e,#001127);box-shadow:0 44px 80px -28px rgba(0,0,0,.8),inset 0 0 0 2px rgba(120,150,210,.28),inset 0 0 0 7px #00254f;}
.iw-screen{position:relative;width:100%;height:100%;border-radius:33px;overflow:hidden;background:linear-gradient(175deg,#04183a,#001026);}
.iw-notch{position:absolute;top:11px;left:50%;transform:translateX(-50%);width:84px;height:19px;background:#000a1c;border-radius:11px;z-index:8;}
.iw-pcover{height:118px;background:radial-gradient(120% 130% at 20% 0%,rgba(63,123,255,.5),transparent 60%),linear-gradient(135deg,#13407e,#0a2a5c);opacity:0;transition:opacity .4s;}
.iw-screen.s1 .iw-pcover,.iw-screen.s2 .iw-pcover,.iw-screen.s3 .iw-pcover{opacity:1;}
.iw-pbody{padding:0 18px;position:relative;}
.iw-pav{width:70px;height:70px;border-radius:50%;margin-top:-38px;position:relative;z-index:2;opacity:0;transform:scale(.6);transition:opacity .45s,transform .45s;
  background:linear-gradient(135deg,var(--yellow),var(--sapphire));box-shadow:0 8px 20px -6px rgba(63,123,255,.6),0 0 0 4px #04183a;}
.iw-pname,.iw-prole,.iw-plink,.iw-psave{opacity:0;transform:translateY(10px);transition:opacity .45s,transform .45s;}
.iw-pname{font-family:'Ubuntu',sans-serif;font-size:19px;font-weight:700;color:#fff;margin:13px 0 2px;letter-spacing:-.02em;}
.iw-prole{font-size:12px;color:rgba(230,235,255,.6);margin:0;}
.iw-plinks{display:flex;flex-direction:column;gap:8px;margin-top:16px;}
.iw-plink{display:flex;align-items:center;gap:11px;padding:11px 13px;border-radius:12px;background:rgba(230,235,255,.05);box-shadow:inset 0 0 0 1px rgba(230,235,255,.1);}
.iw-plink-ico{width:26px;height:26px;border-radius:8px;background:rgba(255,213,39,.14);flex:none;display:flex;align-items:center;justify-content:center;}
.iw-plink-ico svg{width:14px;height:14px;stroke:var(--yellow);fill:none;stroke-width:1.9;}
.iw-plink b{font-size:12.5px;color:#fff;font-weight:600;}
.iw-psave{margin-top:14px;background:var(--yellow);color:var(--navy);font-weight:700;font-size:14px;text-align:center;padding:12px;border-radius:12px;font-family:'Ubuntu',sans-serif;}
/* staged reveals */
.iw-screen.s2 .iw-pav,.iw-screen.s3 .iw-pav{opacity:1;transform:none;}
.iw-screen.s2 .iw-pname,.iw-screen.s3 .iw-pname{opacity:1;transform:none;transition-delay:.05s;}
.iw-screen.s2 .iw-prole,.iw-screen.s3 .iw-prole{opacity:1;transform:none;transition-delay:.1s;}
.iw-screen.s2 .iw-plink,.iw-screen.s3 .iw-plink{opacity:1;transform:none;}
.iw-screen.s2 .iw-plink:nth-of-type(2){transition-delay:.08s;}
.iw-screen.s2 .iw-plink:nth-of-type(3){transition-delay:.16s;}
.iw-screen.s3 .iw-psave{opacity:1;transform:none;}
/* skeleton shimmer shown in s1 */
.iw-skel{position:absolute;inset:118px 18px auto;display:flex;flex-direction:column;gap:10px;opacity:0;transition:opacity .3s;}
.iw-screen.s1 .iw-skel{opacity:1;}
.iw-skel i{display:block;height:13px;border-radius:6px;background:linear-gradient(90deg,rgba(230,235,255,.06),rgba(230,235,255,.14),rgba(230,235,255,.06));
  background-size:200% 100%;animation:iw-shim 1.2s linear infinite;}
.iw-skel i:nth-child(1){width:60%;height:20px;margin-top:24px;}
.iw-skel i:nth-child(2){width:40%;}
.iw-skel i:nth-child(3){width:100%;height:42px;margin-top:8px;}
.iw-skel i:nth-child(4){width:100%;height:42px;}
@keyframes iw-shim{to{background-position:-200% 0;}}
/* saved overlay (final) */
.iw-saved{position:absolute;inset:0;z-index:9;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;
  background:rgba(0,8,22,.78);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .4s;}
.iw-screen.done .iw-saved{opacity:1;}
.iw-check{width:78px;height:78px;border-radius:50%;background:var(--yellow);display:flex;align-items:center;justify-content:center;
  box-shadow:0 16px 40px -10px rgba(255,213,39,.7);transform:scale(.5);transition:transform .5s cubic-bezier(.2,1.5,.4,1);}
.iw-screen.done .iw-check{transform:scale(1);}
.iw-check svg{width:38px;height:38px;stroke:var(--navy);fill:none;stroke-width:3.4;stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:30;stroke-dashoffset:30;transition:stroke-dashoffset .5s ease .25s;}
.iw-screen.done .iw-check svg{stroke-dashoffset:0;}
.iw-saved b{font-family:'Ubuntu',sans-serif;font-size:19px;color:#fff;}
.iw-saved span{font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.1em;color:var(--yellow);}

/* ════════════════ SHARE ORBIT ════════════════ */
.so-sec{position:relative;overflow:hidden;}
.so-wrap{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(40px,5vw,80px);align-items:center;margin-top:30px;}
.so-stage{position:relative;width:100%;max-width:540px;margin:0 auto;aspect-ratio:1;justify-self:center;}
.so-lines{position:absolute;inset:0;width:100%;height:100%;overflow:visible;pointer-events:none;}
.so-lines line{stroke:rgba(120,160,255,.22);stroke-width:1.5;transition:stroke .35s,stroke-width .35s;}
.so-lines line.is-active{stroke:rgba(255,213,39,.6);stroke-width:2;}
.so-core{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:118px;height:118px;border-radius:50%;z-index:3;
  display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at 38% 32%,#13407e,#04122f);
  box-shadow:0 18px 50px -14px rgba(0,4,20,.9),inset 0 0 0 1px rgba(120,160,255,.35),0 0 0 0 rgba(255,213,39,.4);}
.so-core::after{content:"";position:absolute;inset:-12px;border-radius:50%;border:1px solid rgba(120,160,255,.18);animation:so-corepulse 3.2s ease-out infinite;}
@keyframes so-corepulse{0%{transform:scale(1);opacity:.6}100%{transform:scale(1.5);opacity:0}}
.so-core img{width:62px;height:auto;position:relative;z-index:2;}
.so-bubble{position:absolute;width:104px;height:104px;border-radius:50%;z-index:2;cursor:pointer;will-change:transform;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;text-align:center;
  background:rgba(255,255,255,.04);box-shadow:inset 0 0 0 1px rgba(230,235,255,.12),0 16px 34px -18px rgba(0,4,20,.8);
  backdrop-filter:blur(4px);transition:box-shadow .35s,background .35s;animation:so-bob 6s ease-in-out infinite alternate;}
.so-bubble:hover{background:rgba(255,255,255,.07);}
.so-bubble.is-active{background:rgba(255,213,39,.1);box-shadow:inset 0 0 0 1.5px rgba(255,213,39,.5),0 22px 44px -16px rgba(255,213,39,.4);}
.so-bubble-ico{width:34px;height:34px;display:flex;align-items:center;justify-content:center;}
.so-bubble-ico svg{width:26px;height:26px;stroke:var(--yellow);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.so-bubble b{font-size:12.5px;font-weight:600;color:#fff;letter-spacing:-.01em;font-family:'Karla',sans-serif;}
@keyframes so-bob{0%{transform:translateY(-7px)}100%{transform:translateY(8px)}}
@media (prefers-reduced-motion: reduce){.so-bubble,.so-core::after{animation:none;}}

/* detail panel */
.so-detail{min-height:300px;}
.so-detail .wv-kicker{margin-bottom:16px;}
.so-d-ico{width:56px;height:56px;border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;
  background:rgba(255,213,39,.12);box-shadow:inset 0 0 0 1px rgba(255,213,39,.28);}
.so-d-ico svg{width:28px;height:28px;stroke:var(--yellow);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.so-d-title{font-family:'Ubuntu',sans-serif;font-size:clamp(26px,3vw,38px);font-weight:700;letter-spacing:-.03em;color:#fff;margin:0 0 14px;}
.so-d-desc{font-size:17px;line-height:1.6;color:rgba(230,235,255,.66);margin:0 0 22px;max-width:30em;text-wrap:pretty;}
.so-d-chips{display:flex;gap:9px;flex-wrap:wrap;}
.so-d-chips b{font-family:'Space Mono',monospace;font-size:12px;font-weight:400;letter-spacing:.04em;color:rgba(230,235,255,.8);
  padding:8px 14px;border-radius:999px;background:rgba(230,235,255,.05);box-shadow:inset 0 0 0 1px rgba(230,235,255,.14);}
.so-d-anim{animation:so-fade .4s ease;}
@keyframes so-fade{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.so-hint{margin-top:26px;font-family:'Space Mono',monospace;font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:rgba(230,235,255,.4);}

/* ════════════════ ONELYNK — ripple + feature switcher ════════════════ */
.wv-onelynk{position:relative;overflow:hidden;}
.ol-ripple{position:absolute;left:62%;top:50%;transform:translate(-50%,-50%);z-index:0;pointer-events:none;width:0;height:0;}
.ol-ripple span{position:absolute;left:0;top:0;border-radius:50%;border:1px solid rgba(63,123,255,.18);
  width:240px;height:240px;margin:-120px;animation:ol-wave 5s ease-out infinite;}
.ol-ripple span:nth-child(2){animation-delay:1.25s;}
.ol-ripple span:nth-child(3){animation-delay:2.5s;}
.ol-ripple span:nth-child(4){animation-delay:3.75s;}
@keyframes ol-wave{0%{transform:scale(.2);opacity:.8;border-color:rgba(255,213,39,.4)}100%{transform:scale(3.4);opacity:0;border-color:rgba(63,123,255,.05)}}
.ol-burst{position:absolute;border-radius:50%;border:2px solid rgba(255,213,39,.7);pointer-events:none;z-index:1;
  width:40px;height:40px;margin:-20px;animation:ol-burst .9s ease-out forwards;}
@keyframes ol-burst{from{transform:scale(.3);opacity:.9}to{transform:scale(6);opacity:0}}
@media (prefers-reduced-motion: reduce){.ol-ripple span{animation:none;opacity:.12;}}

.wv-onelynk .wv-container{position:relative;z-index:2;}
/* feature rows become interactive tabs */
.ol-feat{cursor:pointer;border-radius:16px;padding:18px 20px;margin-left:-20px;transition:background .3s,box-shadow .3s;
  display:grid;grid-template-columns:auto 1fr;gap:16px;}
.ol-feat:hover{background:rgba(255,255,255,.03);}
.ol-feat.is-active{background:rgba(255,213,39,.06);box-shadow:inset 0 0 0 1px rgba(255,213,39,.28);}
.ol-feat-ico{width:40px;height:40px;border-radius:12px;flex:none;display:flex;align-items:center;justify-content:center;
  background:rgba(255,213,39,.1);box-shadow:inset 0 0 0 1px rgba(255,213,39,.22);transition:.3s;}
.ol-feat.is-active .ol-feat-ico{background:var(--yellow);box-shadow:0 6px 16px -5px rgba(255,213,39,.6);}
.ol-feat-ico svg{width:20px;height:20px;stroke:var(--yellow);fill:none;stroke-width:1.8;transition:stroke .3s;}
.ol-feat.is-active .ol-feat-ico svg{stroke:var(--navy);}
.ol-feat h4{font-family:'Ubuntu',sans-serif;font-size:18px;font-weight:700;letter-spacing:-.01em;color:#fff;margin:2px 0 5px;}
.ol-feat p{font-size:14.5px;line-height:1.5;color:rgba(230,235,255,.62);margin:0;max-height:0;opacity:0;overflow:hidden;transition:max-height .4s,opacity .4s,margin .4s;}
.ol-feat.is-active p{max-height:80px;opacity:1;}

/* phone overlays per feature */
.ol-ovl{position:absolute;inset:0;z-index:6;pointer-events:none;opacity:0;transition:opacity .4s;}
.ol-ovl.is-on{opacity:1;}
/* edit overlay */
.ol-edit-badge{position:absolute;top:14px;right:14px;display:flex;align-items:center;gap:7px;font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.1em;text-transform:uppercase;color:var(--navy);background:var(--yellow);padding:6px 10px;border-radius:999px;font-weight:700;}
.ol-edit-ring{position:absolute;left:22px;right:22px;height:46px;border-radius:12px;box-shadow:0 0 0 2px var(--yellow),0 0 22px rgba(255,213,39,.5);}
/* analytics overlay */
.ol-anal{position:absolute;left:16px;right:16px;bottom:18px;border-radius:16px;padding:16px;background:rgba(0,10,26,.9);
  box-shadow:inset 0 0 0 1px rgba(120,160,255,.25),0 18px 40px -14px rgba(0,0,0,.8);transform:translateY(20px);transition:transform .45s;}
.ol-ovl.is-on .ol-anal{transform:none;}
.ol-anal-h{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:12px;}
.ol-anal-h b{font-family:'Ubuntu',sans-serif;font-size:13px;color:#fff;}
.ol-anal-h span{font-family:'Space Mono',monospace;font-size:10px;color:var(--yellow);}
.ol-bars{display:flex;align-items:flex-end;gap:6px;height:64px;}
.ol-bars i{flex:1;border-radius:4px 4px 0 0;background:linear-gradient(180deg,var(--yellow),rgba(255,213,39,.3));transform-origin:bottom;transform:scaleY(0);transition:transform .5s cubic-bezier(.2,.8,.3,1);}
.ol-ovl.is-on .ol-bars i{transform:scaleY(1);}
/* no-app overlay */
.ol-url{position:absolute;top:46px;left:18px;right:18px;display:flex;align-items:center;gap:8px;padding:9px 12px;border-radius:10px;
  background:rgba(0,10,26,.92);box-shadow:inset 0 0 0 1px rgba(120,160,255,.3);transform:translateY(-14px);transition:transform .4s;}
.ol-ovl.is-on .ol-url{transform:none;}
.ol-url-dot{width:7px;height:7px;border-radius:50%;background:#3fdc7a;box-shadow:0 0 8px #3fdc7a;flex:none;}
.ol-url b{font-family:'Space Mono',monospace;font-size:11px;color:rgba(230,235,255,.85);font-weight:400;}
.ol-url small{margin-left:auto;font-family:'Space Mono',monospace;font-size:9px;letter-spacing:.1em;color:var(--yellow);text-transform:uppercase;}

/* count-up tick */
.wv-biz-stat.is-counting b{color:var(--yellow);}

/* ════════════════ FINAL CTA — cursor-reactive field ════════════════ */
.wv-cta{--mx:50%;--my:40%;}
.wv-cta-spot{position:absolute;inset:0;z-index:0;pointer-events:none;
  background:radial-gradient(420px 420px at var(--mx) var(--my),rgba(255,213,39,.16),transparent 70%);
  transition:background .12s linear;}
.wv-cta-fx{position:absolute;inset:0;z-index:0;pointer-events:none;}
.wv-cta-chip{position:absolute;border-radius:12px;overflow:hidden;aspect-ratio:5/6;will-change:transform;
  box-shadow:0 24px 50px -22px rgba(0,2,12,.85),inset 0 0 0 1px rgba(255,255,255,.08);
  opacity:.62;filter:saturate(1.05);transition:opacity .4s;animation:cta-bob 7s ease-in-out infinite alternate;}
.wv-cta-chip img{width:100%;height:100%;object-fit:cover;object-position:center 46%;transform:scale(1.18);}
.wv-cta-chip:nth-child(2n){animation-duration:8.5s;animation-direction:alternate-reverse;}
@keyframes cta-bob{from{margin-top:-8px}to{margin-top:8px}}
.wv-cta-card>div{will-change:transform;transition:transform .15s ease-out;}
@media (prefers-reduced-motion: reduce){.wv-cta-chip{animation:none;}}
@media (max-width:720px){.wv-cta-chip{display:none;}}

/* ════════════════ CUSTOM CURSOR ════════════════ */
@media (hover:hover) and (pointer:fine){
  .wv-cursor-on, .wv-cursor-on *{cursor:none !important;}
  .wv-cur{position:fixed;left:0;top:0;z-index:9000;pointer-events:none;mix-blend-mode:normal;}
  .wv-cur-dot{position:fixed;left:0;top:0;width:7px;height:7px;border-radius:50%;background:var(--yellow);
    transform:translate(-50%,-50%);z-index:9001;pointer-events:none;box-shadow:0 0 10px rgba(255,213,39,.8);
    transition:width .18s,height .18s,background .18s;}
  .wv-cur-ring{position:fixed;left:0;top:0;width:34px;height:34px;border-radius:50%;border:1.5px solid rgba(255,213,39,.6);
    transform:translate(-50%,-50%);z-index:9000;pointer-events:none;
    transition:width .22s cubic-bezier(.2,.8,.3,1),height .22s,border-color .22s,background .22s,opacity .22s;}
  /* link / button hover → ring expands into a tappable halo, dot hides */
  .wv-cur-ring.is-link{width:58px;height:58px;border-color:rgba(255,213,39,.9);background:rgba(255,213,39,.12);}
  .wv-cur-dot.is-link{width:0;height:0;}
  /* over draggable mascot */
  .wv-cur-ring.is-grab{width:48px;height:48px;border-style:dashed;}
  .wv-cur.is-hidden .wv-cur-dot,.wv-cur.is-hidden .wv-cur-ring{opacity:0;}
}

/* responsive */
@media (max-width:980px){
  .iw,.so-wrap{grid-template-columns:1fr;}
  .iw-stage,.so-stage{order:-1;}
  .so-stage{max-width:420px;}
}
@media (max-width:620px){
  .so-stage{max-width:330px;}
  .so-bubble{width:84px;height:84px;}
  .so-bubble b{font-size:11px;}
  .so-core{width:96px;height:96px;}
}
