/* ============================================================
   Kigo Landing — Webflow-ready stylesheet
   ============================================================
   Two layouts:
     - .stage-wrap   : fixed 1440×5752 desktop frame, scaled to viewport
     - .mobile-wrap  : true mobile-responsive vertical stack
   Switch via @media (max-width: 768px) at the bottom.
   ============================================================ */

@font-face {
  font-family: "Reddit Sans";
  src: url("fonts/RedditSans-VariableFont_wght.ttf") format("truetype-variations"),
       url("fonts/RedditSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --kigo-yellow:        #F6C92D;
  --kigo-black:         #000000;
  --kigo-white:         #FFFFFF;
  --kigo-purple:        #6600FF;
  --kigo-light-purple:  #AD97FF;
  --kigo-purple-40:     #DEC8FF;
  --kigo-turquoise:     #41E2BA;
  --kigo-yellow-60:     #FFEBAA;
  --kigo-yellow-40:     #FFF1CA;
  --kigo-yellow-20:     #FEF9EB;
  --kigo-fg:            #000000;
  --kigo-fg-2:          #3F3F3F;
  --kigo-fg-3:          #737373;
  --kigo-fg-4:          #A3A3A3;
  --kigo-border:        #C0C0C0;
  --kigo-border-2:      #EFEFEF;
  --kigo-bg:            #FCFCF7;
  --kigo-surface:       #FFFFFF;
  --kigo-success:       #39EDA6;
  --kigo-error:         #FF4141;
  --kigo-font:          "Reddit Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
.kigo-root { margin: 0; padding: 0; }
.kigo-root *, .kigo-root *::before, .kigo-root *::after { box-sizing: border-box; margin: 0; padding: 0; }

.kigo-root {
  background: var(--kigo-bg);
  color: #000;
  font-family: var(--kigo-font);
  overflow-x: hidden;
  letter-spacing: -0.3px;
  -webkit-font-smoothing: antialiased;
}
/* :where() drops specificity to 0 so component classes (.cta-pill, .nav-link,
   .m-nav-cta, etc.) can set their own color without being clobbered. */
:where(.kigo-root a) { color: inherit; text-decoration: none; }

/* Reveal animation utility */
.kigo-root .reveal { opacity: 0; transform: translateY(40px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.kigo-root .reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   DESKTOP STAGE (1440 × 5752, scaled)
   ============================================================ */
.stage-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--kigo-bg);
}
.stage {
  position: relative;
  width: 1440px;
  height: 5752px;
  margin: 0 auto;
  background: #FCFCF7;
  transform-origin: 0 0;
  overflow: hidden;
}

/* ===== HERO ===== */
.hero { position: absolute; left: 0; top: 0; width: 1440px; height: 790px; overflow: hidden; }

.nav-bar { position: absolute; left: 50px; top: 48px; width: 1334px; height: 59px; z-index: 10; }
.nav-logo { position: absolute; left: 6px; top: 3px; width: 162px; height: 56px; display: flex; align-items: center; }
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-menu { position: absolute; left: 462px; top: 16px; width: 415px; height: 26px; display: flex; gap: 64px; align-items: center; }
.nav-link { font-weight: 700; font-size: 20px; line-height: 100%; letter-spacing: -0.5px; color: #000; cursor: pointer; position: relative; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: var(--kigo-purple); border-radius: 99px; transform: scaleX(0); transform-origin: left; transition: transform 220ms cubic-bezier(.2,.8,.2,1); }
.nav-link:hover::after { transform: scaleX(1); }

.cta-pill { display: inline-flex; align-items: center; border-radius: 48px; background: #3F3F3F; color: var(--kigo-yellow); font-weight: 700; font-size: 16px; letter-spacing: -0.5px; padding: 5px 5px 5px 24px; gap: 16px; height: 65px; cursor: pointer; transition: transform 200ms cubic-bezier(.34,1.56,.64,1); }
.cta-pill:hover { transform: translateY(-3px); }
.cta-pill .pip { width: 55px; height: 55px; border-radius: 50%; background: var(--kigo-yellow); display: flex; align-items: center; justify-content: center; color: #3F3F3F; transition: transform 300ms cubic-bezier(.34,1.56,.64,1); }
.cta-pill:hover .pip { transform: rotate(45deg); }
.cta-pill.dense { padding: 0 48px; height: 48px; font-size: 20px; gap: 16px; }
.cta-pill.dense .pulse { width: 16px; height: 16px; border-radius: 50%; background: var(--kigo-yellow); box-shadow: 0 0 0 8px rgba(246,201,45,0.3); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 8px rgba(246,201,45,0.3);} 50% { box-shadow: 0 0 0 12px rgba(246,201,45,0.1);} }

.nav-get-kigo { position: absolute; left: 1078px; top: 5px; }

.hero-yellow-star { position: absolute; left: 159px; top: 660px; width: 127px; height: 127px; color: var(--kigo-yellow); transform: rotate(-50deg); animation: spin-slow 22s linear infinite; }
@keyframes spin-slow { to { transform: rotate(310deg); } }

.hero-purple-zz { position: absolute; left: 1114px; top: 217px; width: 118px; height: 80px; color: var(--kigo-purple-40); animation: zz-bob 4s ease-in-out infinite; }
@keyframes zz-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-headline { position: absolute; left: 348px; top: 130px; width: 744px; height: 173px; }
.h-roam { position: absolute; left: 0; top: 0; transform: matrix(0.998,-0.056,0.056,0.998,0,17.729); transform-origin: 0 0; width: 314px; height: 156px; font-weight: 800; font-size: 120px; line-height: 100%; letter-spacing: -1px; color: #000; text-align: center; opacity: 0; animation: word-in 600ms ease 0ms forwards; }
.h-charge { position: absolute; left: 0; top: 0; transform: matrix(1,0.017,-0.017,1,343.640,0); transform-origin: 0 0; width: 401px; height: 156px; font-weight: 800; font-size: 120px; line-height: 100%; letter-spacing: -1px; color: #000; text-align: center; opacity: 0; animation: word-in 600ms ease 150ms forwards; }
@keyframes word-in { to { opacity: 1; } }

.hero-bubble { position: absolute; left: 466px; top: 304px; transform: rotate(-3.2deg); transform-origin: 50% 50%; width: 502px; height: 209px; border-radius: 150px; background: var(--kigo-yellow); border: 13.9px solid var(--kigo-purple); display: flex; align-items: center; justify-content: center; opacity: 0; animation: bubble-pop 800ms cubic-bezier(.34,1.56,.64,1) 300ms forwards; }
@keyframes bubble-pop { 0% { transform: rotate(-3.2deg) scale(0.4); opacity: 0; } 70% { transform: rotate(-1deg) scale(1.06); opacity: 1; } 100% { transform: rotate(-3.2deg) scale(1); opacity: 1; } }
.hero-bubble span { font-weight: 800; font-size: 120px; line-height: 156px; letter-spacing: -1px; color: #000; white-space: nowrap; }

.hero-mascot { position: absolute; left: 1011px; top: 411px; width: 165px; height: 165px; animation: mascot-jump 2.4s ease-in-out infinite; }
@keyframes mascot-jump { 0%,100% { transform: translateY(0) rotate(-2deg); } 35% { transform: translateY(-16px) rotate(2deg); } 60% { transform: translateY(0) rotate(-2deg); } }

.hero-sub { position: absolute; left: 504px; top: 545px; width: 432px; height: 69px; font-size: 18px; line-height: 1.45; text-align: center; color: #000; letter-spacing: -0.2px; }
.hero-cta { position: absolute; left: 606px; top: 646px; }

/* ===== TICKER ===== */
.ticker { position: absolute; left: 0; top: 790px; width: 1440px; height: 122px; overflow: hidden; }
.ticker-bg { position: absolute; left: 0; top: 6px; width: 1440px; height: 110px; background: var(--kigo-yellow); border-top: 4px solid var(--kigo-purple); border-bottom: 4px solid var(--kigo-purple); overflow: hidden; }
.ticker-track { position: absolute; left: 0; top: 34px; height: 42px; display: flex; gap: 65px; align-items: center; white-space: nowrap; animation: ticker-slide 40s linear infinite; padding-left: 50px; }
@keyframes ticker-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-weight: 700; font-size: 32px; line-height: 100%; letter-spacing: -0.5px; color: #000; flex-shrink: 0; }
.ticker-sep { color: var(--kigo-purple); flex-shrink: 0; display: inline-flex; }

/* ===== FEATURES HEAD ===== */
.f-head { position: absolute; left: 383px; top: 1000px; width: 674px; height: 199px; }
.f-head .eyebrow { position: absolute; left: 273px; top: 0; width: 128px; font-weight: 700; font-size: 16px; letter-spacing: 1px; color: var(--kigo-purple); }
.f-head .l1 { position: absolute; left: 0; top: 37px; width: 674px; font-weight: 800; font-size: 70px; text-align: center; letter-spacing: -1px; color: #000; line-height: 100%; }
.f-head .l2 { position: absolute; left: 46px; top: 108px; width: 582px; font-weight: 800; font-size: 70px; text-align: center; letter-spacing: -1px; color: #000; line-height: 100%; }
.f-uline {
  position: absolute;
  height: 26px;
  z-index: -1;
  background-repeat: repeat-x;
  background-size: 90px 26px;
  background-position: left center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23F6C92D' stroke-width='6' fill='none' stroke-linecap='round'/></svg>");
}

/* ===== Common feature card ===== */
.fc { position: absolute; width: 1328px; height: 670px; border-radius: 54px; overflow: hidden; }
.fc-graphic { position: absolute; right: 40px; top: 50%; width: 560px; height: 560px; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; }
.fc-graphic img { width: 100%; height: 100%; object-fit: contain; }
.fc-graphic-discover { animation: fc-float 5.5s ease-in-out infinite; right: 100px; }
.fc-discover-svg { transform: scale(1.2); transform-origin: center center; }
.fc-discover-searching { position: absolute; left: 18px; top: 263px; width: 240px !important; height: 240px !important; object-fit: contain; pointer-events: none; }
.fc-graphic-pay { animation: fc-float 6s ease-in-out infinite -1.5s; }
.fc-graphic-pay > img, .fc-graphic-pay > .paygo-pulse-wrap { position: absolute; inset: 0; }
.paygo-pulse-wrap { transform-origin: 56% 50%; animation: paygo-spin 8s linear infinite; }
.paygo-pulse { width: 100%; height: 100%; transform-origin: 50% 50%; animation: paygo-pulse 1.4s ease-in-out infinite; }
@keyframes paygo-spin { to { transform: rotate(360deg); } }
@keyframes paygo-pulse {
  0%   { transform: scale(1);    opacity: 0.95; filter: drop-shadow(0 0 0 rgba(57,237,166,0)); }
  12%  { transform: scale(1.06); opacity: 1;    filter: drop-shadow(0 0 8px rgba(57,237,166,0.9)); }
  22%  { transform: scale(0.95); opacity: 0.65; filter: drop-shadow(0 0 2px rgba(57,237,166,0.4)); }
  36%  { transform: scale(1.10); opacity: 1;    filter: drop-shadow(0 0 12px rgba(57,237,166,1)); }
  50%  { transform: scale(1.00); opacity: 0.85; filter: drop-shadow(0 0 4px rgba(57,237,166,0.6)); }
  64%  { transform: scale(1.08); opacity: 1;    filter: drop-shadow(0 0 10px rgba(57,237,166,0.9)); }
  78%  { transform: scale(0.97); opacity: 0.8;  filter: drop-shadow(0 0 3px rgba(57,237,166,0.5)); }
  100% { transform: scale(1);    opacity: 0.95; filter: drop-shadow(0 0 0 rgba(57,237,166,0)); }
}
.fc-graphic-roam { animation: fc-float 6.5s ease-in-out infinite -3s; right: 60px; }
@keyframes fc-float { 0%,100% { transform: translateY(-50%) rotate(-1deg); } 50% { transform: translateY(calc(-50% - 10px)) rotate(1deg); } }

/* ===== Stacking feature cards ===== */
.feature-stack { position: absolute; left: 0; top: 1267px; width: 1440px; height: 2063px; }
.feature-stack > .fc { position: absolute !important; left: 56px !important; width: 1328px; height: 670px; will-change: transform; transition: box-shadow 300ms ease; }
.feature-stack > .fc.fc-find { top: 0 !important; z-index: 1; }
.feature-stack > .fc.fc-pay  { top: 694px !important; z-index: 2; }
.feature-stack > .fc.fc-roam { top: 1388px !important; z-index: 3; }
.feature-stack > .fc.is-stuck { box-shadow: 0 -24px 60px -16px rgba(0,0,0,0.18); }

/* ===== FIND CHARGERS card ===== */
.fc-find { background: rgb(255,241,202); }
.fc-find .copy { position: absolute; left: 64px; top: 185px; width: 442px; height: 322px; }
.fc-find .tag { position: absolute; left: 10px; top: 0; height: 37px; border-radius: 19.5px; background: var(--kigo-purple); color: #fff; padding: 8px 16px; font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.fc-find h2 { position: absolute; left: 13px; top: 55px; width: 419px; font-weight: 800; font-size: 70px; text-align: center; letter-spacing: -1px; line-height: 100%; }
.fc-find h2.l2 { left: 12px; top: 126px; width: 390px; }
.fc-find .l2-bg { position: absolute; left: 0; top: 188px; width: 415px; height: 26px; }
.fc-find p { position: absolute; left: 10px; top: 215px; width: 432px; font-size: 18px; line-height: 1.5; color: #000; letter-spacing: -0.2px; }

.status-pill { position: absolute; height: 44px; border-radius: 48px; background: #fff; border: 2px solid #000; padding: 0 24px; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 20px; letter-spacing: -0.6px; color: #3F3F3F; white-space: nowrap; }
.status-pill .dot { width: 16px; height: 16px; border-radius: 50%; }
.status-pill.by { left: 1058px; top: 835px; animation: pill-bob 4.8s ease-in-out infinite -3s; }
@keyframes pill-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== PAY & GO card ===== */
.fc-pay { background: var(--kigo-purple-40); }
.fc-pay .copy { position: absolute; left: 64px; top: 185px; width: 423px; height: 313px; }
.fc-pay .tag { position: absolute; left: 0; top: 0; height: 37px; border-radius: 19.5px; background: #fff; color: var(--kigo-purple); padding: 8px 16px; font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.fc-pay h2 { position: absolute; left: 0; top: 53px; width: 413px; font-weight: 800; font-size: 70px; text-align: left; letter-spacing: -1px; line-height: 100%; color: #000; }
.fc-pay h2.l2 { left: 1px; top: 124px; width: 177px; text-align: center; }
.fc-pay .l2-bg { position: absolute; left: 172px; top: 116px; width: 230px; height: 26px; }
.fc-pay p { position: absolute; left: 0; top: 215px; width: 432px; font-size: 18px; line-height: 1.5; letter-spacing: -0.3px; }

/* ===== ROAMING dark card ===== */
.fc-roam { background: #3f3f3f; }
.fc-roam .copy { position: absolute; left: 64px; top: 185px; width: 463px; height: 300px; }
.fc-roam .tag { position: absolute; left: 1px; top: 0; height: 37px; border-radius: 19.5px; background: var(--kigo-yellow); color: #3F3F3F; padding: 8px 16px; font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.fc-roam h2 { position: absolute; left: 1px; top: 53px; width: 462px; font-weight: 800; font-size: 70px; text-align: left; letter-spacing: -1px; color: #fff; line-height: 100%; }
.fc-roam h2.l2 { left: 4px; top: 124px; width: 309px; text-align: center; }
.fc-roam .l2-bg { position: absolute; left: 0; top: 191px; width: 270px; height: 26px; }
.fc-roam p { position: absolute; left: 0; top: 215px; width: 376px; font-size: 18px; line-height: 1.5; color: #fff; letter-spacing: -0.2px; }

.roam-ring { position: absolute; transform-origin: 50% 50%; pointer-events: none; overflow: visible; }
.roam-ring-outer { left: 746px; top: 101px; width: 470px; height: 470px; animation: roam-spin 40s linear infinite; }
.roam-ring-inner { left: 761px; top: 116px; width: 440px; height: 440px; animation: roam-spin 32s linear infinite reverse; }
@keyframes roam-spin { to { transform: rotate(360deg); } }

/* ===== HOW IT WORKS ===== */
.how { position: absolute; left: 0; top: 3430px; width: 1440px; height: 550px; background: var(--kigo-yellow-20); overflow: hidden; }
.how-head { position: absolute; left: 389px; top: 52px; width: 669px; height: 128px; }
.how-head .eyebrow { position: absolute; left: 265px; top: 0; width: 133px; font-weight: 700; font-size: 16px; letter-spacing: 1px; color: var(--kigo-purple); }
.how-head h2 { position: absolute; left: 0; top: 37px; width: 662px; font-weight: 800; font-size: 70px; text-align: center; letter-spacing: -1px; line-height: 100%; }
.how-head .l2-bg { position: absolute; left: 388px; top: 96px; width: 281px; height: 26px; z-index: -1; }

.steps { position: absolute; left: 144px; top: 236px; width: 1176px; height: 224px; display: flex; gap: 16px; }
.step { flex: 1; height: 224px; background: #fff; border-radius: 32px; border: 2px solid #000; padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: transform 240ms cubic-bezier(.34,1.56,.64,1), box-shadow 240ms; }
.step:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--kigo-purple); }
.step .num { font-weight: 800; font-size: 64px; line-height: 0.9; color: var(--kigo-yellow); font-feature-settings: "tnum"; }
.step h3 { font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.step p { font-size: 14px; color: var(--kigo-fg-2); line-height: 1.4; font-weight: 500; }

.how-star { position: absolute; left: 1300px; top: 73px; width: 34px; height: 67px; color: var(--kigo-yellow); animation: spin-slow 24s linear infinite; }

/* ===== CPO ===== */
.cpo { position: absolute; left: 0; top: 3980px; width: 1440px; height: 766px; overflow: hidden; }
.cpo-card { position: absolute; left: 56px; top: 48px; width: 1328px; height: 670px; border-radius: 54px; background: var(--kigo-purple); }
.cpo-copy { position: absolute; left: 120px; top: 142px; width: 432px; height: 300px; }
.cpo-tag { position: absolute; left: 1px; top: 0; height: 37px; border-radius: 19.5px; background: var(--kigo-yellow); color: #3F3F3F; display: inline-flex; align-items: center; padding: 0 16px; font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.cpo-copy h2 { position: absolute; left: 0; top: 53px; width: 311px; font-weight: 800; font-size: 70px; letter-spacing: -1px; color: #fff; line-height: 100%; }
.cpo-copy h2.l2 { left: 3px; top: 124px; width: 290px; }
.cpo-copy .l2-bg { position: absolute; left: 137px; top: 192px; width: 174px; height: 26px; z-index: -1; }
.cpo-copy p { position: absolute; left: 0; top: 215px; width: 432px; font-size: 18px; line-height: 1.4; color: #fff; letter-spacing: -0.2px; }
.cpo-cta { position: absolute; left: 120px; top: 472px; background: #fff !important; color: #3F3F3F !important; }
.cpo-cta .pip { background: var(--kigo-yellow) !important; color: #3F3F3F !important; }

.cpo-mascot { position: absolute; left: 325px; top: 115px; width: 90px; height: 90px; animation: mascot-jump 2.8s ease-in-out infinite -0.5s; }

.charger { position: absolute; left: 880px; top: 100px; width: 360px; height: 480px; animation: pill-bob 5s ease-in-out infinite; }
.charger img { width: 100%; height: 100%; object-fit: contain; }

.cpo-label { position: absolute; height: 48px; border-radius: 24px; background: #fff; padding: 0 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; letter-spacing: -0.4px; color: #000; box-shadow: 4px 4px 0 var(--kigo-yellow); }
.cpo-label.l1 { left: 680px; top: 220px; animation: pill-bob 5.4s ease-in-out infinite; }
.cpo-label.l2 { left: 660px; top: 320px; animation: pill-bob 6s ease-in-out infinite -1.5s; }
.cpo-label.l3 { left: 700px; top: 440px; animation: pill-bob 5.2s ease-in-out infinite -3s; }
.cpo-label .plus { color: var(--kigo-purple); font-weight: 800; }

/* ===== DOWNLOAD ===== */
.dl { position: absolute; left: 0; top: 4746px; width: 1440px; height: 520px; background: #fff; overflow: hidden; }
.dl-copy { position: absolute; left: 417px; top: 95px; width: 605px; height: 329px; }
.dl-copy h2 { position: absolute; left: 0; top: 0; width: 605px; font-weight: 800; font-size: 70px; text-align: center; letter-spacing: -1px; line-height: 100%; }
.dl-copy h2.l2 { left: 83px; top: 71px; width: 439px; }
.dl-copy .l2-bg { position: absolute; left: 76px; top: 129px; width: 252px; height: 26px; z-index: -1; }
.dl-copy p { position: absolute; left: 87px; top: 186px; width: 432px; font-size: 18px; text-align: center; line-height: 1.5; letter-spacing: -0.2px; }
.dl-cta-row { position: absolute; left: 110px; top: 264px; width: 386px; height: 65px; display: flex; gap: 32px; }

.dl-yellow-bolt { position: absolute; left: 1145px; top: 26px; width: 66px; height: 130px; color: var(--kigo-yellow); transform: rotate(45deg); animation: zz-bob 4s ease-in-out infinite; }
.dl-rating { position: absolute; left: 1309px; top: 436px; width: 83px; height: 60px; text-align: center; }
.dl-rating .n { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 32px; }
.dl-rating .lbl { font-weight: 500; font-size: 14px; }

.dl-illust { position: absolute; left: 43px; top: 244px; width: 320px; height: 234px; }
.dl-car { width: 100%; height: 100%; object-fit: contain; transform: translateX(-1600px) rotate(-3deg); }
.dl-car.drive-in { animation: car-drive 1.6s cubic-bezier(.2,.8,.25,1) forwards, car-idle-bob 3.4s ease-in-out 1.6s infinite; }
@keyframes car-drive {
  0%   { transform: translateX(-1600px) rotate(-3deg); }
  70%  { transform: translateX(40px) rotate(1deg); }
  85%  { transform: translateX(-12px) rotate(-0.5deg); }
  100% { transform: translateX(0) rotate(0); }
}
@keyframes car-idle-bob { 0%,100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-6px) rotate(0.5deg); } }

.dl-zz1 { position: absolute; left: 280px; top: 60px; color: var(--kigo-purple-40); animation: zz-bob 4.5s ease-in-out infinite; }
.dl-zz2 { position: absolute; left: 970px; top: 320px; color: var(--kigo-purple-40); animation: zz-bob 5s ease-in-out infinite -1s; }

/* ===== FOOTER ===== */
.footer { position: absolute; left: 0; top: 5314px; width: 1440px; height: 438px; overflow: hidden; }
.footer-card { position: absolute; left: 56px; top: 0; width: 1328px; height: 390px; border-radius: 54px; background: var(--kigo-fg-2); }
.footer-logo { position: absolute; left: 60px; top: 40px; width: 162px; height: 56px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-socials { position: absolute; left: 60px; top: 285px; display: flex; gap: 24px; }
.footer-socials a { width: 24px; height: 24px; color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: transform 200ms, color 200ms; }
.footer-socials a:hover { color: var(--kigo-yellow); transform: translateY(-3px); }
.footer-copy { position: absolute; left: 60px; top: 325px; width: 200px; font-weight: 500; font-size: 12px; color: #fff; line-height: 25px; letter-spacing: -0.187px; }
.footer-links { position: absolute; left: 796px; top: 49px; width: 508px; display: flex; gap: 115px; }
.footer-col { display: flex; flex-direction: column; gap: 16px; min-width: 88px; }
.footer-col h4 { font-weight: 700; font-size: 20px; letter-spacing: -0.563px; color: var(--kigo-yellow); }
.footer-col a { font-weight: 500; font-size: 16px; letter-spacing: -0.5px; color: #fff; }
.footer-col a:hover { color: var(--kigo-yellow); }
.footer-cta { position: absolute; right: 60px; bottom: 0; width: 220px; height: 160px; cursor: pointer; }
.footer-cta-img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; transition: transform 200ms; }
.footer-cta:hover .footer-cta-img { transform: translateY(-4px) scale(1.02); }

/* Hand-drawn squiggle underline */
.l2-bg {
  background-color: transparent !important;
  border-radius: 0 !important;
  transform: none !important;
  height: 26px !important;
  background-repeat: repeat-x !important;
  background-size: 90px 26px !important;
  background-position: left center !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23F6C92D' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important;
}
.fc-pay .l2-bg {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23FFFFFF' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important;
}

/* ============================================================
   MOBILE LAYOUT (vertical stack)
   ============================================================ */
.mobile-wrap { display: none; }

@media (max-width: 768px) {
  .stage-wrap { display: none; }
  .mobile-wrap { display: block; }
}

.mobile-wrap {
  width: 100%;
  background: var(--kigo-bg);
  font-family: var(--kigo-font);
  color: #000;
  overflow-x: hidden;
}

.mobile-wrap section { position: relative; overflow: hidden; }

/* --- mobile nav --- */
.m-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 0; gap: 12px; }
.m-nav-logo { width: 96px; height: 36px; display: flex; align-items: center; }
.m-nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.m-nav-cta { display: inline-flex; align-items: center; gap: 10px; background: #3F3F3F; color: #fff; padding: 0 18px; height: 38px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: -0.3px; }
.m-nav-cta .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--kigo-yellow); box-shadow: 0 0 0 5px rgba(246,201,45,0.3); animation: pulse-dot 1.6s ease-in-out infinite; }

/* --- mobile hero --- */
.m-hero { padding: 28px 20px 36px; text-align: center; }
.m-hero-headline {
  font-weight: 800;
  font-size: clamp(54px, 18vw, 92px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin: 16px 0 8px;
}
.m-hero-headline span { display: block; }
.m-hero-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--kigo-yellow);
  border: 7px solid var(--kigo-purple);
  border-radius: 999px;
  padding: 14px 46px;
  font-weight: 800;
  font-size: clamp(40px, 13vw, 64px);
  line-height: 1;
  letter-spacing: -1px;
  transform: rotate(-3deg);
  margin-top: 6px;
}
.m-hero-mascot { width: 130px; height: 130px; margin: 18px auto -6px; display: block; animation: mascot-jump 2.4s ease-in-out infinite; }
.m-hero-sub { font-size: 15px; line-height: 1.5; color: #000; max-width: 380px; margin: 14px auto 22px; letter-spacing: -0.2px; }
.m-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #3F3F3F;
  color: #fff;
  padding: 6px 6px 6px 22px;
  border-radius: 999px;
  height: 56px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
}
.m-hero-cta .pip { width: 44px; height: 44px; border-radius: 50%; background: var(--kigo-yellow); color: #3F3F3F; display: inline-flex; align-items: center; justify-content: center; }

/* --- mobile ticker --- */
.m-ticker { background: var(--kigo-yellow); border-top: 3px solid var(--kigo-purple); border-bottom: 3px solid var(--kigo-purple); padding: 14px 0; }
.m-ticker-track { display: flex; gap: 36px; align-items: center; white-space: nowrap; animation: ticker-slide 30s linear infinite; padding-left: 20px; }
.m-ticker-track .ticker-item { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }

/* --- mobile features head --- */
.m-fhead { padding: 56px 20px 28px; text-align: center; }
.m-fhead .eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 1px; color: var(--kigo-purple); margin-bottom: 14px; }
.m-fhead h2 {
  font-weight: 800;
  font-size: clamp(36px, 10vw, 56px);
  line-height: 1;
  letter-spacing: -1px;
}
.m-fhead h2 span { display: block; }

/* --- mobile feature card --- */
.m-feature {
  margin: 0 16px 16px;
  border-radius: 28px;
  padding: 36px 24px 32px;
  overflow: hidden;
  position: relative;
}
.m-feature.f-find { background: rgb(255,241,202); }
.m-feature.f-pay { background: var(--kigo-purple-40); }
.m-feature.f-roam { background: #3F3F3F; color: #fff; }
.m-feature .m-tag {
  display: inline-flex; align-items: center; height: 30px; border-radius: 999px;
  padding: 0 14px; font-weight: 700; font-size: 12px; letter-spacing: 1px;
  margin-bottom: 14px;
}
.m-feature.f-find .m-tag { background: var(--kigo-purple); color: #fff; }
.m-feature.f-pay .m-tag { background: #fff; color: var(--kigo-purple); }
.m-feature.f-roam .m-tag { background: var(--kigo-yellow); color: #3F3F3F; }
.m-feature h3 {
  font-weight: 800;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1;
  letter-spacing: -1px;
}
.m-feature h3 span { display: block; position: relative; }
.m-feature h3 .l2-bg {
  position: absolute; left: 0; right: 0; bottom: -8px; height: 18px;
  background-size: 70px 18px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23F6C92D' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important;
  z-index: -1;
}
.m-feature.f-pay h3 .l2-bg {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23FFFFFF' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important;
}
.m-feature p { font-size: 15px; line-height: 1.5; margin-top: 22px; letter-spacing: -0.2px; }
.m-feature .m-graphic { margin-top: 24px; height: 260px; display: flex; align-items: center; justify-content: center; position: relative; }
.m-feature .m-graphic img { max-width: 100%; max-height: 100%; object-fit: contain; }
.m-feature.f-find .m-graphic .m-searching { position: absolute; left: 8%; top: 50%; transform: translateY(-30%); width: 130px; height: 130px; }
.m-feature.f-roam .m-graphic { padding: 16px; }

/* --- mobile how --- */
.m-how { background: var(--kigo-yellow-20); padding: 56px 20px; }
.m-how-head { text-align: center; margin-bottom: 28px; }
.m-how-head .eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 1px; color: var(--kigo-purple); margin-bottom: 12px; }
.m-how-head h2 { font-weight: 800; font-size: clamp(34px, 9vw, 48px); line-height: 1; letter-spacing: -1px; }
.m-how-head h2 span { position: relative; }
.m-how-head h2 .l2-bg { position: absolute; left: 0; right: 0; bottom: -6px; height: 16px; background-size: 60px 16px !important; z-index: -1; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23F6C92D' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important; }
.m-steps { display: grid; gap: 14px; }
.m-step { background: #fff; border: 2px solid #000; border-radius: 24px; padding: 22px; }
.m-step .num { font-weight: 800; font-size: 48px; line-height: 0.9; color: var(--kigo-yellow); }
.m-step h4 { font-weight: 800; font-size: 18px; letter-spacing: -0.5px; margin-top: 8px; }
.m-step p { font-size: 14px; color: var(--kigo-fg-2); line-height: 1.4; font-weight: 500; margin-top: 6px; }

/* --- mobile CPO --- */
.m-cpo { padding: 28px 16px; }
.m-cpo-card { background: var(--kigo-purple); border-radius: 32px; padding: 36px 24px; color: #fff; position: relative; overflow: hidden; }
.m-cpo-tag { display: inline-flex; align-items: center; height: 30px; border-radius: 999px; background: var(--kigo-yellow); color: #3F3F3F; padding: 0 14px; font-weight: 700; font-size: 12px; letter-spacing: 1px; }
.m-cpo h3 { font-weight: 800; font-size: clamp(36px, 10vw, 56px); line-height: 1; letter-spacing: -1px; margin-top: 14px; }
.m-cpo h3 span { display: block; position: relative; }
.m-cpo h3 .l2-bg { position: absolute; left: 0; right: 0; bottom: -6px; height: 16px; background-size: 60px 16px !important; z-index: -1; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23F6C92D' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important; }
.m-cpo p { font-size: 15px; line-height: 1.5; margin-top: 22px; letter-spacing: -0.2px; }
.m-cpo-charger { margin: 24px auto 0; width: 220px; height: 280px; display: block; }
.m-cpo-charger img { width: 100%; height: 100%; object-fit: contain; }
.m-cpo-cta { display: inline-flex; align-items: center; gap: 14px; background: #fff; color: #3F3F3F; padding: 6px 6px 6px 22px; border-radius: 999px; height: 56px; font-weight: 700; font-size: 15px; letter-spacing: -0.3px; margin-top: 22px; }
.m-cpo-cta .pip { width: 44px; height: 44px; border-radius: 50%; background: var(--kigo-yellow); color: #3F3F3F; display: inline-flex; align-items: center; justify-content: center; }

/* --- mobile download --- */
.m-dl { background: #fff; padding: 56px 20px; text-align: center; }
.m-dl h3 { font-weight: 800; font-size: clamp(36px, 10vw, 56px); line-height: 1; letter-spacing: -1px; }
.m-dl h3 span { display: block; position: relative; }
.m-dl h3 .l2-bg { position: absolute; left: 0; right: 0; bottom: -6px; height: 16px; background-size: 60px 16px !important; z-index: -1; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 26'><path d='M0 17 Q 22 2 45 17 T 90 17' stroke='%23F6C92D' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") !important; }
.m-dl p { font-size: 15px; line-height: 1.5; margin: 18px auto 24px; max-width: 380px; letter-spacing: -0.2px; }
.m-dl-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.m-dl-row a { display: inline-flex; align-items: center; gap: 12px; background: #000; color: #fff; padding: 5px 5px 5px 18px; border-radius: 999px; height: 50px; font-weight: 700; font-size: 14px; }
.m-dl-row a .pip { width: 40px; height: 40px; border-radius: 50%; background: var(--kigo-yellow); color: #3F3F3F; display: inline-flex; align-items: center; justify-content: center; }
.m-dl-car { width: 80%; max-width: 280px; margin: 28px auto 0; display: block; }

/* --- mobile footer --- */
.m-footer { padding: 28px 16px; }
.m-footer-card { background: var(--kigo-fg-2); border-radius: 32px; padding: 32px 24px; color: #fff; }
.m-footer-logo { width: 110px; }
.m-footer-logo img { width: 100%; }
.m-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.m-footer-col h5 { font-weight: 700; font-size: 16px; color: var(--kigo-yellow); margin-bottom: 12px; letter-spacing: -0.3px; }
.m-footer-col a { display: block; font-size: 14px; color: #fff; margin-bottom: 8px; font-weight: 500; }
.m-footer-socials { display: flex; gap: 20px; margin-top: 28px; }
.m-footer-socials a { width: 22px; height: 22px; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.m-footer-copy { font-size: 12px; color: #fff; opacity: 0.7; margin-top: 18px; letter-spacing: -0.187px; }

/* Animations always play — this landing relies on motion as a design element.
   (Reduced-motion override intentionally omitted.) */
