/* ============================================================
   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; }
html, body { margin: 0; padding: 0; background: var(--kigo-bg); }
html { scroll-padding-top: 100px; scroll-behavior: smooth; }
@media (max-width: 768px) { html { scroll-padding-top: 80px; } }
.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);
  letter-spacing: -0.3px;
  -webkit-font-smoothing: antialiased;
  /* overflow:clip clips painting but does NOT create a scroll container,
     so iOS Safari can't trap vertical touch-scroll on this element. */
  overflow-x: clip;
}
/* :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); }

/* ============================================================
   FLOATING HEADER (fixed, shared between desktop & mobile)
   ============================================================ */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  /* match feature-card width: 1328 of 1440 stage units, clamped at 1328px on wide viewports */
  width: calc(100vw * 1328 / 1440);
  max-width: 1328px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease, -webkit-backdrop-filter 240ms ease, top 240ms ease, border-radius 240ms ease;
  font-family: var(--kigo-font);
}
.site-header.is-scrolled {
  top: 10px;
  background: rgba(252, 252, 247, 0.94);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
}
.site-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo img { display: block; width: 100px; height: 34px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
  flex: 1 1 auto;
}
.site-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #000;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.site-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2.5px;
  background: var(--kigo-purple);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}
.site-link:hover::after { transform: scaleX(1); }

.site-cta-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.site-getkigo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3F3F3F;
  color: #fff;
  padding: 0 22px;
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.34,1.56,.64,1);
}
.site-getkigo:hover { transform: translateY(-2px); }
.site-getkigo .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;
}

.site-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}
.site-toggle-bar {
  width: 20px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), opacity 200ms ease;
}
.site-header.is-open .site-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-header.is-open .site-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.is-open .site-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile layout for the floating header */
@media (max-width: 768px) {
  .site-header {
    top: 12px;
    width: calc(100vw - 40px);
    max-width: none;
    padding: 8px 8px 8px 18px;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 0;
  }
  .site-header.is-scrolled { top: 8px; }
  .site-logo img { width: 88px; height: 30px; }
  .site-nav {
    display: none;
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 8px 10px;
  }
  .site-header.is-open {
    border-radius: 24px;
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-link { font-size: 17px; }
  .site-link::after { bottom: -4px; height: 2px; }
  .site-getkigo {
    height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }
  .site-getkigo .pulse { width: 9px; height: 9px; box-shadow: 0 0 0 4px rgba(246,201,45,0.3); }
  .site-toggle { display: inline-flex; }
}

/* ============================================================
   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: visible;
}

/* ===== 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: 395px; top: 16px; width: 550px; height: 26px; display: flex; gap: 56px; align-items: center; justify-content: center; }
.nav-link { font-weight: 700; font-size: 20px; line-height: 100%; letter-spacing: -0.5px; color: #000; cursor: pointer; position: relative; white-space: nowrap; }
.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: 76px; height: 76px; color: var(--kigo-yellow); transform: rotate(-50deg); animation: spin-slow 22s linear infinite; z-index: 0;}
@keyframes spin-slow { to { transform: rotate(310deg); } }

.hero-purple-zz { position: absolute; left: 1180px; top: 210px; width: 119px; height: 80px; animation: zz-bob 4s ease-in-out infinite; }
@keyframes zz-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-light { position: absolute; left: 215px; top: 350px; width: 35px; height: 69px; animation: zz-bob 3.4s ease-in-out infinite; }

.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: 132px; overflow: hidden; }
.ticker-bg { position: absolute; left: 0; top: 6px; width: 100%; height: 120px; background: var(--kigo-yellow); border-top: 6px solid var(--kigo-purple); border-bottom: 6px solid var(--kigo-purple); overflow: hidden; }
@media (min-width: 1441px) {
  .ticker { left: calc(720px - 50vw); width: 100vw; }
}
.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: no-repeat;
  background-size: 100% 26px;
  background-position: left center;
  background-image: url("assets/line.svg");
}

.f-uline2 {
  position: absolute;
  height: 26px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 26px;
  background-position: left center;
  background-image: url("assets/long-line.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: 140px; width: 520px; height: 380px; }
.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: 70px; width: 500px; font-weight: 800; font-size: 76px; text-align: left; letter-spacing: -1px; line-height: 1.02; }
.fc-find h2.l2 { left: 12px; top: 152px; width: 500px; }
.fc-find .l2-bg { position: absolute; left: 0; top: 220px; width: 460px; height: 26px; }
.fc-find p { position: absolute; left: 10px; top: 280px; width: 460px; 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); } }

.flag-badge { position: absolute; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; animation: pill-bob 4.8s ease-in-out infinite; }
.flag-badge img { width: 100%; height: 100%; object-fit: cover; }
.flag-badge:nth-of-type(2) { animation-delay: -1.2s; }
.flag-badge:nth-of-type(3) { animation-delay: -2.4s; }
.flag-badge:nth-of-type(4) { animation-delay: -3.6s; }

/* ===== 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 .copy { isolation: isolate; }
.fc-pay .l2-bg { position: absolute; left: 172px; top: 100px; width: 230px; height: 26px; z-index: -1; }
.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: 140px; width: 520px; height: 380px; isolation: isolate; }
.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: 70px; width: 500px; font-weight: 800; font-size: 76px; text-align: left; letter-spacing: -1px; color: #fff; line-height: 1.02; }
.fc-roam h2.l2 { left: 1px; top: 156px; width: 500px; text-align: left; }
.fc-roam .l2-bg { position: absolute; left: -50px; top: 120px; width: 360px; height: 26px; z-index: -1; }
.fc-roam p { position: absolute; left: 0; top: 290px; width: 460px; 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: visible; isolation: isolate; }
.how::before, .how::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100vw;
  background: var(--kigo-yellow-20);
  pointer-events: none;
  z-index: -1;
}
.how::before { right: 100%; }
.how::after  { left: 100%; }
.how-head { position: absolute; left: 0; top: 52px; width: 1440px; text-align: center; }
.how-head .eyebrow { font-weight: 700; font-size: 16px; letter-spacing: 1px; color: var(--kigo-purple); display: block; margin-bottom: 16px; }
.how-head h2 { font-weight: 800; font-size: 80px; letter-spacing: -1px; line-height: 100%; white-space: nowrap; }
.how-head h2 .hl { position: relative; display: inline-block; }
.how-head h2 .hl::after {
  content: ""; position: absolute;width: 300px; left: 0px; top:55px; right: -8px; bottom: -14px; height: 26px; z-index: -1;
  background-repeat: no-repeat; background-size: 100% 26px; background-position: left center;
  background-image: url("assets/long-line.svg");
}

.steps { position: absolute; left: 144px; top: 270px; width: 1176px; height: 224px; display: flex; gap: 24px; }
.step { flex: 1; height: 224px; background: #fff; border-radius: 28px; padding: 28px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 2px 14px rgba(0,0,0,0.04); transition: transform 240ms cubic-bezier(.34,1.56,.64,1), box-shadow 240ms; }
.step:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.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-bolt { position: absolute; right: 60px; top: 96px; width: 48px; height: 96px; animation: zz-bob 3.6s ease-in-out infinite; }
.how-stars { position: absolute; left: 40px; bottom: 30px; width: 130px; height: auto; animation: zz-bob 4.2s ease-in-out 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: 110px; width: 460px; height: 380px; }
.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: 60px; width: 420px; font-weight: 800; font-size: 76px; letter-spacing: -1px; color: #fff; line-height: 1.02; }
.cpo-copy h2.l2 { left: 3px; top: 148px; width: 420px; }
.cpo-copy .l2-bg { position: absolute; left: 157px; top: 115px; width: 180px; height: 26px; z-index: -1; }
.cpo-copy p { position: absolute; left: 0; top: 280px; width: 460px; font-size: 18px; line-height: 1.5; color: #fff; letter-spacing: -0.2px; }
.cpo-cta { position: absolute; left: 120px; top: 520px; background: #fff !important; color: #3F3F3F !important; }
.cpo-cta .pip { background: var(--kigo-yellow) !important; color: #3F3F3F !important; }
.cpo-cta:hover .pip { transform: translateX(4px); }

.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: 760px; top: 95px; 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 24px 0 32px; display: inline-flex; align-items: center; font-weight: 700; font-size: 15px; letter-spacing: -0.4px; color: #000; box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.cpo-label.l1 { left: 1070px; top: 40px;  animation: pill-bob 5.4s ease-in-out infinite; }
.cpo-label.l2 { left: 580px;  top: 330px; animation: pill-bob 6s ease-in-out infinite -1.5s; }
.cpo-label.l3 { left: 1010px; top: 530px; animation: pill-bob 5.2s ease-in-out infinite -3s; }
.cpo-label .check { position: absolute; top: -10px; left: -10px; width: 38px; height: 38px; border-radius: 50%; background: var(--kigo-success); border: 2px solid #000; display: inline-flex; align-items: center; justify-content: center; }
.cpo-label .check svg { width: 20px; height: 20px; }

/* ===== DOWNLOAD ===== */
.dl { position: absolute; left: 0; top: 4746px; width: 1440px; height: 520px; 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: 432px; height: 65px; display: flex; gap: 16px; }

.store-badge { display: inline-flex; align-items: center; cursor: pointer; transition: transform 200ms cubic-bezier(.34,1.56,.64,1); }
.store-badge:hover { transform: translateY(-3px); }
.store-badge img { display: block; height: 56px; width: auto; }

.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-star-yellow { position: absolute; left: 230px; top: 140px; width: 40px; height: 58px; animation: zz-bob 4.2s ease-in-out infinite; }
.dl-star-purple { position: absolute; left: 958px; top: 270px; width: 90px; opacity: 0.3; height: 113px; animation: zz-bob 5s ease-in-out infinite -1s; }
.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("assets/white-line.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 100% 26px !important;
}
.fc-roam .l2-bg,
.cpo-copy .l2-bg,
.dl-copy .l2-bg {
  background-image: url("assets/line.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 100% 26px !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: clip;
}

.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: 96px 20px 36px; text-align: center; position: relative; overflow: hidden; }
.m-hero-light { position: absolute; left: 16px; top: 40%; width: 22px; height: auto; animation: zz-bob 3.4s ease-in-out infinite; pointer-events: none; }
.m-hero-stars { position: absolute; right: 12px; top: 22%; width: 80px; height: auto; animation: zz-bob 4s ease-in-out infinite; pointer-events: none; }
.m-hero-yellow-star {
  position: absolute;
  left: 14px;
  bottom: 14%;
  width: 54px;
  height: 54px;
  transform: rotate(-50deg);
  animation: spin-slow 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.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(60px, 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 { position: relative; z-index: 1; 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: var(--kigo-yellow);
  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; }
.m-fhead h2 .m-fhead-l2 { position: relative; display: inline-block; isolation: isolate; }
.m-fhead h2 .m-fhead-l2::after { display: none !important; }
.m-feature h3 .l2-bg,
.m-how-head h2 .hl::after,
.m-cpo h3 .l2-bg,
.m-dl h3 .l2-bg { display: none !important; }

/* --- mobile feature stack (sticky scroll effect, mirrors desktop .feature-stack) --- */
.m-feature-stack {
  position: relative;
  padding-bottom: 24px;
}
.m-feature-stack > .m-feature {
  position: sticky;
  will-change: transform;
}
.m-feature-stack > .m-feature.f-find { top: 12px; z-index: 1; }
.m-feature-stack > .m-feature.f-pay  { top: 24px; z-index: 2; }
.m-feature-stack > .m-feature.f-roam { top: 36px; z-index: 3; }
.m-feature-stack > .m-feature.f-pay,
.m-feature-stack > .m-feature.f-roam {
  box-shadow: 0 -10px 28px -10px rgba(0,0,0,0.18);
}

/* --- 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;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.m-feature h3 span { display: inline-block; position: relative; isolation: isolate; }
.m-feature h3 .l2-bg {
  position: absolute; left: -6px; right: -6px; bottom: -8px; height: 18px;
  background-repeat: no-repeat !important;
  background-size: 100% 18px !important;
  background-position: left center !important;
  background-image: url("assets/line.svg") !important;
  z-index: -1;
}
.m-feature.f-find h3 .l2-bg {
  background-image: url("assets/long-line.svg") !important;
}
.m-feature.f-pay h3 .l2-bg {
  background-image: url("assets/white-line.svg") !important;
}
.m-feature.f-roam h3 .l2-bg {
  background-image: url("assets/line.svg") !important;
}
.m-feature p { font-size: 15px; line-height: 1.5; margin-top: 32px; 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-roam .m-graphic { padding: 16px; }

/* Find card — doudou overlaps the phone illustration like desktop */
.m-feature.f-find .m-graphic { height: 320px; }
.m-feature.f-find .m-graphic > img:not(.m-searching) {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.m-feature.f-find .m-searching {
  position: absolute;
  left: 22%;
  bottom: 8%;
  width: 120px;
  height: 120px;
  max-width: none;
  max-height: none;
  z-index: 2;
}

/* --- 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(28px, 7vw, 44px); line-height: 1.05; letter-spacing: -1px; }
.m-how-head h2 .hl { position: relative; display: inline-block; isolation: isolate; }
.m-how-head h2 .hl::after {
  content: ""; position: absolute; left: -6px; right: -6px; bottom: -8px; height: 16px; z-index: -1;
  background-repeat: no-repeat; background-size: 100% 16px; background-position: left center;
  background-image: url("assets/long-line.svg");
}
.m-steps { display: grid; gap: 14px; }
.m-step { background: #fff; border-radius: 24px; padding: 22px; box-shadow: 0 2px 14px rgba(0,0,0,0.04); }
.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; display: flex; flex-direction: column; align-items: flex-start; }
.m-cpo h3 span { display: inline-block; position: relative; isolation: isolate; }
.m-cpo h3 .l2-bg { position: absolute; left: -6px; right: -6px; bottom: -6px; height: 16px; background-repeat: no-repeat !important; background-size: 100% 16px !important; background-position: left center !important; z-index: -1; background-image: url("assets/line.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: var(--kigo-bg); padding: 56px 20px; text-align: center; }
.m-dl h3 { font-weight: 800; font-size: clamp(36px, 10vw, 56px); line-height: 1; letter-spacing: -1px; display: flex; flex-direction: column; align-items: center; }
.m-dl h3 span { display: inline-block; position: relative; isolation: isolate; }
.m-dl h3 .l2-bg { position: absolute; left: -6px; right: -6px; bottom: -6px; height: 16px; background-repeat: no-repeat !important; background-size: 100% 16px !important; background-position: left center !important; z-index: -1; background-image: url("assets/line.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 .store-badge img { height: 50px; }
.m-dl-car { width: 80%; max-width: 280px; margin: 28px auto 0; display: block; }

/* --- mobile footer --- */
.m-footer { padding: 28px 16px calc(48px + env(safe-area-inset-bottom)); }
.m-footer-card { background: var(--kigo-fg-2); border-radius: 32px; padding: 40px 24px 0; color: #fff; text-align: center; }
.m-footer-logo { width: 160px; margin: 0 auto; }
.m-footer-logo img { width: 100%; display: block; }
.m-footer-links { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.m-footer-col { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.m-footer-col h5 { font-weight: 700; font-size: 18px; color: var(--kigo-yellow); margin-bottom: 4px; letter-spacing: -0.3px; }
.m-footer-col a { font-size: 16px; color: #fff; font-weight: 500; }
.m-footer-socials { display: flex; gap: 32px; margin-top: 36px; justify-content: center; }
.m-footer-socials a { width: 24px; height: 24px; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.m-footer-copy { font-size: 14px; color: #fff; margin-top: 16px; letter-spacing: -0.187px; }

/* ============================================================
   MOBILE — Desktop content parity additions
   ============================================================ */

/* Mobile nav — collapsed menu behind hamburger toggle */
.m-nav { flex-wrap: wrap; row-gap: 0; }
.m-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  order: 3;
}
.m-nav-toggle-bar {
  width: 22px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), opacity 200ms ease;
}
.m-nav.is-open .m-nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.m-nav.is-open .m-nav-toggle-bar:nth-child(2) { opacity: 0; }
.m-nav.is-open .m-nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.m-nav-links {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 100%;
  order: 4;
  padding: 18px 4px 6px;
}
.m-nav.is-open .m-nav-links { display: flex; }
.m-nav-link {
  font-weight: 700; font-size: 18px; letter-spacing: -0.3px;
  color: #000; white-space: nowrap; position: relative;
}
.m-nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--kigo-purple); border-radius: 99px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}
.m-nav-link:hover::after, .m-nav-link:active::after { transform: scaleX(1); }

/* Ticker zigzag separators */
.m-ticker-track { gap: 28px; }
.m-ticker-sep { color: var(--kigo-purple); flex-shrink: 0; display: inline-flex; align-items: center; }

/* Mobile graphic acts as positioning context for overlays */
.m-feature .m-graphic { position: relative; }

/* Pay & Go — pulse overlay (reuses desktop paygo-spin / paygo-pulse keyframes) */
.m-graphic-pay > img,
.m-graphic-pay > .m-paygo-pulse-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.m-graphic-pay > img { object-fit: contain; }
.m-paygo-pulse-wrap { transform-origin: 55% 50%; animation: paygo-spin 8s linear infinite; }
.m-paygo-pulse { width: 100%; height: 100%; object-fit: contain; transform-origin: 50% 50%; animation: paygo-pulse 1.4s ease-in-out infinite; }

/* Roaming — rings (hidden on phones, shown on tablet) + flag badges */
/* Roam — halo composition: doudou + 2 rotating dashed rings + 4 corner flags (matches desktop) */
.m-feature.f-roam .m-graphic {
  display: block;
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  height: auto;
  margin: 24px auto 0;
  padding: 0;
}
.m-feature.f-roam .m-roam-art {
  position: absolute;
  left: 50%; top: 50%;
  width: 42%;
  aspect-ratio: 1;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 2;
  max-width: none;
  max-height: none;
}
.m-feature.f-roam .m-roam-ring {
  display: block;
  position: absolute;
  left: 50%; top: 50%;
  pointer-events: none;
}
.m-feature.f-roam .m-roam-ring-outer {
  width: 92%;
  aspect-ratio: 1;
  margin: -44% 0 0 -44%;
  animation: roam-spin 40s linear infinite;
}
.m-feature.f-roam .m-roam-ring-inner {
  width: 85%;
  aspect-ratio: 1;
  margin: -40.5% 0 0 -40.5%;
  animation: roam-spin 32s linear infinite reverse;
}
.m-feature.f-roam .m-flag-row {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  gap: 0;
  flex-wrap: nowrap;
}
.m-feature.f-roam .m-flag-badge {
  position: absolute;
  width: 16%;
  aspect-ratio: 1;
  height: auto;
  min-width: 44px;
  max-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  animation: pill-bob 4.8s ease-in-out infinite;
}
.m-flag-badge img { width: 100%; height: 100%; object-fit: cover; }
.m-feature.f-roam .m-flag-badge:nth-of-type(1) { left: 0;    top: 0;    animation-delay: 0s; }
.m-feature.f-roam .m-flag-badge:nth-of-type(2) { right: 0;   top: 0;    animation-delay: -1.2s; }
.m-feature.f-roam .m-flag-badge:nth-of-type(3) { left: 0;    bottom: 0; animation-delay: -2.4s; }
.m-feature.f-roam .m-flag-badge:nth-of-type(4) { right: 0;   bottom: 0; animation-delay: -3.6s; }

/* How It Works — decorations */
.m-how { position: relative; }
.m-how-bolt {
  position: absolute; right: 18px; top: 24px;
  width: 22px; height: 44px;
  animation: zz-bob 3.6s ease-in-out infinite;
  pointer-events: none;
}
.m-how-stars {
  position: absolute; left: 14px; bottom: 18px;
  width: 60px; height: auto;
  animation: zz-bob 4.2s ease-in-out infinite;
  pointer-events: none; opacity: 0.85;
}

/* CPO — mascot + benefit labels */
.m-cpo-card { position: relative; }
.m-cpo-mascot {
  width: 64px; height: 64px; display: block;
  margin: 16px 0 8px;
  animation: mascot-jump 2.8s ease-in-out infinite -0.5s;
}
.m-cpo-charger-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 24px;
}
.m-cpo-charger {
  position: absolute;
  left: 50%;
  top: 32px;
  width: 180px;
  height: 240px;
  margin: 0 0 0 -90px;
  animation: pill-bob 5s ease-in-out infinite;
}
.m-cpo-charger img { width: 100%; height: 100%; object-fit: contain; }
.m-cpo-labels {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  padding: 0;
  gap: 0;
}
.m-cpo-label {
  position: absolute;
  align-self: auto;
  margin: 0;
  height: 36px;
  padding: 0 14px 0 26px;
  border-radius: 24px; background: #fff; color: #000;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 12px; letter-spacing: -0.3px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.m-cpo-label:nth-child(1) { top: 8px; right: 0; animation: pill-bob 5.4s ease-in-out infinite; }
.m-cpo-label:nth-child(2) { top: 50%; left: 0; margin-top: -18px; animation: pill-bob 6s ease-in-out infinite -1.5s; }
.m-cpo-label:nth-child(3) { bottom: 16px; right: 16px; animation: pill-bob 5.2s ease-in-out infinite -3s; }
.m-cpo-label .check {
  position: absolute; top: -8px; left: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--kigo-success); border: 2px solid #000;
  display: inline-flex; align-items: center; justify-content: center;
}
.m-cpo-label .check svg { width: 14px; height: 14px; }

/* Download — yellow bolt + rating */
.m-dl { position: relative; }
.m-dl-yellow-bolt {
  position: absolute; right: 16px; top: 18px;
  width: 38px; height: auto;
  color: var(--kigo-yellow);
  transform: rotate(45deg);
  animation: zz-bob 4s ease-in-out infinite;
  pointer-events: none;
}
.m-dl-star-yellow {
  position: absolute; left: 18px; top: 60px;
  width: 28px; height: auto;
  animation: zz-bob 4.2s ease-in-out infinite;
  pointer-events: none;
}
.m-dl-star-purple {
  position: absolute; right: 22px; bottom: 24%;
  width: 60px; height: auto;
  opacity: 0.3;
  animation: zz-bob 5s ease-in-out infinite -1s;
  pointer-events: none;
}
.m-dl-rating { display: block; margin: 18px auto 0; text-align: center; }
.m-dl-rating .n { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 24px; }
.m-dl-rating .lbl { font-weight: 500; font-size: 12px; color: var(--kigo-fg-3); }

/* Footer — Get Kigo pill + doudou peeking below */
.m-footer-card { position: relative; overflow: hidden; }
.m-footer-cta {
  display: block;
  margin: 36px auto 0;
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.m-footer-cta-label {
  display: block;
  height: 60px;
  line-height: 56px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  background: transparent;
  transition: transform 200ms;
}
.m-footer-cta-img {
  width: 200px;
  height: auto;
  display: block;
  margin: -10px auto 0;
}
.m-footer-cta:hover .m-footer-cta-label { transform: translateY(-2px); }

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