*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --red:#0fee80;
  --red-dark:#0bc960;
  --green:#2ed166;
  --blue:#4080d8;
  --pink:#d93060;
  --hero-l:#e8fef2;
  --hero-r:#f0fff8;
  --viewport-under-header:calc(100vh - 85px);
}
html{scroll-behavior:auto}
body{
  font-family:'Clash Display',sans-serif;
  background:transparent;
  color:#1a1a1a;
  overflow-x:hidden;
}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 40px;
  transition:background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled{background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);}
.nav-logo{
  display:block;
  height:48px;
  overflow:hidden;
  flex-shrink:0;
  font-size:22px;font-weight:600;color:#0a0a0a;letter-spacing:-0.5px;text-decoration:none;transition:color 0.3s;
}
.nav-logo img{
  display:block;
  width:auto;
  max-width:144px;
  height:72px !important;
  transform:translateY(-17px);
}
nav.scrolled .nav-logo{color:#1a1a1a;}
.nav-right{display:flex;align-items:center;gap:24px;}
.nav-lang{position:relative;display:flex;align-items:center;gap:6px;color:#444;font-size:14px;font-weight:400;cursor:pointer;transition:color 0.3s;}
nav.scrolled .nav-lang{color:#1a1a1a;}
.nav-lang svg{width:18px;height:18px;opacity:0.8;}
.nav-lang-dropdown{
  position:absolute;top:calc(100% + 8px);right:0;
  background:transparent;
  border-radius:14px;
  box-shadow:0 8px 32px rgba(0,0,0,0.12);
  border:1px solid rgba(0,0,0,0.06);
  overflow:visible;
  min-width:160px;
  opacity:0;pointer-events:none;
  transform:translateY(-6px);
  transition:opacity 0.18s,transform 0.18s;
  z-index:2000;
}
/* Transparent bridge fills the gap so hover isn't lost while moving mouse */
.nav-lang-dropdown::before{
  content:'';position:absolute;top:-10px;left:0;right:0;height:10px;
}
.nav-lang-dropdown-inner{
  border-radius:14px;overflow:hidden;
}
.nav-lang.open .nav-lang-dropdown{opacity:1;pointer-events:auto;transform:translateY(0);}
.lang-option{
  display:flex;align-items:center;gap:10px;
  padding:11px 16px;
  font-size:13px;font-weight:400;color:#333;
  transition:background 0.15s;
  cursor:pointer;
  font-family:'Clash Display',sans-serif;
}
.lang-option:hover{background:#f5f5f5;}
.lang-option.active{font-weight:600;color:#0a0a0a;background:#f0fdf4;}
.lang-flag{font-size:18px;line-height:1;}
.lang-chevron{width:12px;height:12px;transition:transform 0.2s;}
.nav-lang.open .lang-chevron{transform:rotate(180deg);}
.nav-login{color:#444;font-size:14px;font-weight:400;text-decoration:none;transition:color 0.3s;}
nav.scrolled .nav-login{color:#1a1a1a;}
.nav-call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 20px;
  border-radius:999px;
  border:1px solid #0fee80;
  background:transparent;
  color:#111;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  font-family:'Clash Display',sans-serif;
  white-space:nowrap;
  transition:background 0.2s,color 0.2s,border-color 0.2s,transform 0.2s;
}
nav.scrolled .nav-call-btn{
  border-color:#0fee80;
  background:transparent;
  color:#111;
}
.nav-call-btn:hover{transform:scale(1.03);}
.nav-signup{
  background:#0fee80;color:#fff;
  font-size:14px;font-weight:600;
  padding:10px 22px;border-radius:50px;
  text-decoration:none;
  font-family:'Clash Display',sans-serif;
  white-space:nowrap;
  transition:background 0.2s,transform 0.2s;
}
nav.scrolled .nav-signup{background:#0fee80;color:#fff;}
.nav-signup:hover{transform:scale(1.03);}

/* ─── HERO ─── */
#hero{
  position:relative;
  min-height:100vh;
  max-height:980px;
  background:linear-gradient(145deg,#f5fffb 0%,#e6fef2 30%,#edfff5 55%,#f8fffb 80%,#ffffff 100%);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  gap:clamp(36px,3vw,56px);
  padding:0 clamp(40px,5vw,96px) 0 clamp(48px,5.5vw,112px);
}
.hero-content{
  position:relative;z-index:2;
  text-align:left;
  max-width:min(600px,45vw);
  padding:20px 0;
  display:flex;flex-direction:column;align-items:flex-start;gap:28px;
  flex:1;
}
.hero-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  width:fit-content;
  max-width:100%;
  font-size:clamp(18px,2.4vw,34px);
  font-weight:600;
  color:#0a0a0a;
  line-height:1.05;
  letter-spacing:-0.04em;
}
.hero-title-line{
  display:block;
  white-space:nowrap;
}
.hero-subtitle{
  font-size:clamp(14px,0.95vw,15px);font-weight:300;color:#555;
  line-height:1.6;
  max-width:520px;
}
.hero-cta-row{
  display:flex;align-items:center;gap:14px;
  flex-wrap:wrap;justify-content:flex-start;
}
.hero-cta-primary{
  background:#0fee80;color:#fff;
  font-size:15px;font-weight:600;
  padding:14px 32px;border-radius:50px;
  text-decoration:none;
  font-family:'Clash Display',sans-serif;
  transition:transform 0.2s,box-shadow 0.2s;
  box-shadow:0 4px 24px rgba(15,238,128,0.35);
}
.hero-cta-primary:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(15,238,128,0.45);}
.hero-cta-secondary{
  background:#0fee80;color:#fff;
  font-size:15px;font-weight:600;
  padding:14px 32px;border-radius:50px;
  text-decoration:none;
  display:flex;align-items:center;gap:6px;
  font-family:'Clash Display',sans-serif;
  transition:transform 0.2s,box-shadow 0.2s;
  box-shadow:0 4px 24px rgba(15,238,128,0.35);
}
.hero-cta-secondary:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(15,238,128,0.45);}
.hero-cta-secondary svg{width:16px;height:16px;opacity:0.82;}
.hero-cta-link{
  color:#6d6d6d;
  font-size:15px;font-weight:400;
  text-decoration:none;
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Clash Display',sans-serif;
  letter-spacing:-0.02em;
  text-transform:lowercase;
  transition:color 0.2s;
}
.hero-cta-link:hover{color:#3f3f3f;}
.hero-cta-link svg{width:18px;height:18px;opacity:0.42;}

.hero-scroll{
  position:absolute;bottom:52px;left:50%;transform:translateX(-50%);z-index:2;
  display:flex;align-items:center;gap:8px;
  background:rgba(0,0,0,0.05);
  border-radius:50px;padding:8px 16px;
  color:#666;font-size:13px;font-weight:400;
  font-family:'Clash Display',sans-serif;
  border:0;
  cursor:pointer;
  transition:transform 0.2s,background-color 0.2s,opacity 0.6s;
}
.hero-scroll:hover{transform:translateX(-50%) translateY(-1px);background:rgba(0,0,0,0.07);}
.hero-scroll:focus-visible{outline:2px solid rgba(15,238,128,0.8);outline-offset:2px;}
.scroll-dot{
  width:8px;height:8px;border-radius:50%;background:#0fee80;
  animation:scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot{0%,100%{opacity:1;transform:translateY(0)}50%{opacity:0.4;transform:translateY(3px)}}

/* Hero canvas */
#heroCanvas{
  position:relative;
  flex-shrink:0;
  width:min(46vw,580px);
  height:min(53vw,650px);
  z-index:1;
  pointer-events:none;
}
@media(min-width:1200px){
  #hero{gap:clamp(64px,5vw,110px);}
}
@media(min-width:1800px){
  .hero-content{max-width:min(680px,46vw);gap:30px;}
  .hero-title{
    font-size:clamp(36px,2.45vw,46px);
  }
  .hero-subtitle{
    font-size:16px;
    max-width:610px;
  }
}
@media(min-width:2400px){
  .hero-content{max-width:min(760px,47vw);}
  .hero-title{
    font-size:clamp(42px,2.55vw,56px);
  }
  .hero-subtitle{
    font-size:17px;
    max-width:660px;
  }
  #heroCanvas{
    width:min(44vw,660px);
    height:min(51vw,720px);
  }
}
@media(max-width:960px){
  #hero{
    flex-direction:column;
    min-height:100svh;
    max-height:none;
    padding:100px 20px 48px;
    gap:28px;
  }
  .hero-content{
    text-align:center;
    align-items:center;
    flex:unset;
    max-width:100%;
    gap:20px;
  }
  .hero-title{
    align-items:center;
    width:auto;
    font-size:clamp(15.5px,4.8vw,29px);
    line-height:1.08;
    letter-spacing:-0.05em;
  }
  .hero-subtitle{
    max-width:34ch;
    font-size:14px;
    line-height:1.58;
  }
  .hero-cta-row{
    justify-content:center;
    gap:12px;
  }
  .hero-cta-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 28px;
    font-size:14px;
  }
  .hero-cta-secondary,.hero-cta-link{font-size:14px;}
  #heroCanvas{width:min(82vw,340px);height:min(88vw,380px);}
  .hero-scroll{bottom:22px;}
}
@media(max-width:640px){
  #hero{
    padding:92px 16px 42px;
    gap:22px;
  }
  .hero-title{
    font-size:clamp(15px,4.75vw,21px);
    line-height:1.1;
  }
  .hero-subtitle{
    max-width:32ch;
    font-size:13.5px;
    line-height:1.55;
  }
  .hero-cta-row{
    width:100%;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .hero-cta-primary{width:min(100%,300px);}
  #heroCanvas{width:min(82vw,320px);height:min(88vw,350px);}
  .hero-scroll{display:none;}
}
@media(max-width:420px){
  #hero{padding:88px 12px 42px;}
  .hero-title{
    font-size:clamp(14.5px,4.7vw,18px);
    line-height:1.12;
  }
  .hero-subtitle{
    max-width:30ch;
    font-size:13px;
  }
  .hero-cta-primary{padding:12px 22px;}
  #heroCanvas{width:min(80vw,300px);height:min(86vw,330px);}
}

/* ─── UNIFY ─── */
#unify{
  position:relative;
  min-height:var(--viewport-under-header);
  margin-bottom:0;
  background:transparent;
  z-index:1;
}
.unify-sticky{
  position:relative;
  z-index:1;
  height:var(--viewport-under-header);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  background:transparent;
}
.unify-title{
  font-size:clamp(52px,8vw,110px);
  font-weight:600;
  color:var(--red);
  line-height:0.95;
  text-align:center;
  letter-spacing:-4px;
  z-index:1;
  pointer-events:none;
  position:relative;
  user-select:none;
}

/* All cards anchored at viewport center via left:50%/top:50%
   GSAP handles the -50%/-50% offset via xPercent/yPercent */
.unify-card{
  position:absolute;
  left:50%;top:50%;
  border-radius:24px;
  box-shadow:0 24px 64px rgba(0,0,0,0.14);
  overflow:hidden;
  z-index:2;
  will-change:transform;
  /* NO CSS transform here - GSAP owns all transforms */
}

/* ── Green Exchange card ── */
.card-exchange{
  width:220px;
  background:#0fee80;
  padding:22px;
}
.card-exchange .card-label{
  font-size:12px;color:rgba(0,0,0,0.6);font-weight:500;
  display:flex;align-items:center;gap:6px;margin-bottom:14px;
  font-family:'Clash Display',sans-serif;
}
.card-exchange .card-label-icon{
  width:20px;height:20px;border-radius:50%;
  background:rgba(255,255,255,0.25);
  display:flex;align-items:center;justify-content:center;
}
.card-exchange .card-amount{
  font-size:18px;font-weight:600;color:#0a0a0a;line-height:1.15;
  font-family:'Clash Display',sans-serif;
}
.card-exchange .card-amount-sub{
  font-size:13px;font-weight:500;color:rgba(0,0,0,0.7);
  font-family:'Clash Display',sans-serif;
}
.card-exchange .card-badge{
  margin-top:18px;
  background:rgba(0,0,0,0.1);
  border-radius:20px;padding:5px 12px;
  display:inline-block;font-size:12px;color:#0a0a0a;font-weight:500;
  font-family:'Clash Display',sans-serif;
}

/* ── Stock card ── */
.card-send{
  width:264px;
  background:#fff;
  border-radius:24px;
  padding:18px 20px 20px;
  border:1.5px solid #f0f0f0;
}
.card-send .cs-header{
  display:flex;align-items:center;gap:8px;margin-bottom:14px;
}
.card-send .cs-icon{
  width:28px;height:28px;border-radius:9px;
  background:#f2fdf7;border:1.5px solid #d0f7e4;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.card-send .cs-title{
  font-size:12px;font-weight:600;color:#1a1a1a;
  font-family:'Clash Display',sans-serif;
}
.card-send .cs-subtitle{font-size:10px;color:#aaa;margin-top:1px;}
.card-send .cs-row{
  display:flex;align-items:center;
  padding:8px 0;border-bottom:1px solid #f5f5f5;gap:10px;
}
.card-send .cs-row:last-child{border-bottom:none;padding-bottom:0;}
.card-send .cs-thumb{
  width:30px;height:30px;border-radius:8px;
  background:#f7f7f7;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:14px;
}
.card-send .cs-name{font-size:11px;font-weight:500;color:#111;flex:1;line-height:1.3;}
.card-send .cs-var{font-size:9px;color:#aaa;margin-top:1px;}
.card-send .cs-qty{
  font-size:12px;font-weight:700;color:#111;
  font-family:'Clash Display',sans-serif;
}
.card-send .cs-dot{
  width:8px;height:8px;border-radius:50%;background:#0fee80;flex-shrink:0;
}
.card-send .cs-dot.low{background:#f59e0b;}
.card-send .cs-cta{
  margin-top:12px;background:#0a0a0a;color:#fff;border-radius:11px;
  padding:9px;text-align:center;font-size:11px;font-weight:600;
  font-family:'Clash Display',sans-serif;
  display:flex;align-items:center;justify-content:center;gap:6px;
}

/* ── Atelier / Fabrication card ── */
.card-person1{
  width:230px;
  background:#FFFDF8;
  border-radius:24px;
  padding:18px;
  border:1.5px solid #EDE8DC;
  overflow:hidden;
}
.card-person1 .cm-topbar{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;
}
.card-person1 .cm-label{
  font-size:9px;font-weight:700;letter-spacing:0.08em;
  color:#C8A96A;text-transform:uppercase;
  font-family:'Clash Display',sans-serif;
}
.card-person1 .cm-eu{
  display:flex;align-items:center;gap:4px;
  background:#F5F0E8;border-radius:20px;padding:3px 8px;
  font-size:8.5px;font-weight:600;color:#8A7860;
  font-family:'Clash Display',sans-serif;
}
.card-person1 .cm-title{
  font-size:15px;font-weight:700;color:#1a1a1a;line-height:1.28;margin-bottom:5px;
  font-family:'Clash Display',sans-serif;
}
.card-person1 .cm-sub{
  font-size:9.5px;color:#9a9080;line-height:1.5;margin-bottom:14px;
}
.card-person1 .cm-steps{
  display:flex;flex-direction:column;gap:6px;margin-bottom:14px;
}
.card-person1 .cm-step{
  display:flex;align-items:center;gap:9px;
  background:#F5F0E8;border-radius:10px;padding:8px 10px;
}
.card-person1 .cm-step-num{
  width:18px;height:18px;border-radius:5px;
  background:#C8A96A;
  display:flex;align-items:center;justify-content:center;
  font-size:9px;font-weight:800;color:#fff;flex-shrink:0;
  font-family:'Clash Display',sans-serif;
}
.card-person1 .cm-step-text{font-size:9.5px;font-weight:500;color:#3a3028;line-height:1.3;}
.card-person1 .cm-step-text b{font-weight:700;color:#1a1a1a;}
.card-person1 .cm-footer{
  display:flex;align-items:center;gap:8px;
  background:#1a1a1a;border-radius:11px;padding:9px 12px;
}
.card-person1 .cm-footer-icon{
  width:22px;height:22px;border-radius:6px;
  background:#0fee80;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.card-person1 .cm-footer-text{font-size:9.5px;font-weight:600;color:#fff;line-height:1.3;font-family:'Clash Display',sans-serif;}
.card-person1 .cm-footer-sub{font-size:8px;color:rgba(255,255,255,0.45);margin-top:1px;}

/* ── Analytics card ── */
.card-person2{
  width:258px;
  background:#fff;
  border-radius:24px;
  padding:18px 20px 20px;
  border:1.5px solid #f0f0f0;
  overflow:visible;
}
.card-person2 .ca-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;}
.card-person2 .ca-title{font-size:12px;font-weight:600;color:#111;font-family:'Clash Display',sans-serif;}
.card-person2 .ca-badge{
  font-size:9px;font-weight:600;background:#f2fdf7;color:#0ba85a;
  border-radius:20px;padding:3px 8px;font-family:'Clash Display',sans-serif;
}
.card-person2 .ca-kpis{display:flex;gap:10px;margin-bottom:12px;}
.card-person2 .ca-kpi{flex:1;background:#fafafa;border-radius:10px;padding:8px 9px;}
.card-person2 .ca-kpi-label{font-size:9px;color:#aaa;margin-bottom:3px;}
.card-person2 .ca-kpi-val{font-size:11px;font-weight:700;color:#111;font-family:'Clash Display',sans-serif;line-height:1;}
.card-person2 .ca-chart{
  height:44px;position:relative;margin-bottom:10px;
}
.card-person2 .ca-chart svg{width:100%;height:100%;overflow:visible;}
.card-person2 .ca-exports{display:flex;gap:6px;}
.card-person2 .ca-export-btn{
  flex:1;background:#f5f5f5;border-radius:9px;padding:7px 5px;
  text-align:center;font-size:9px;font-weight:600;color:#555;
  font-family:'Clash Display',sans-serif;
  display:flex;align-items:center;justify-content:center;gap:3px;
}

/* ── Vendor app card (catalogue light) ── */
.card-jane{
  width:230px;
  background:#f9f9f9;
  border-radius:24px;
  padding:14px 14px 16px;
  border:1.5px solid #efefef;
  overflow:hidden;
}
.card-jane .cva-top{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;
}
.card-jane .cva-title{
  font-size:11px;font-weight:700;color:#111;
  font-family:'Clash Display',sans-serif;
}
.card-jane .cva-pill{
  background:#f0fdf6;border:1px solid #d0f7e4;border-radius:20px;padding:2px 8px;
  font-size:8.5px;font-weight:600;color:#0ba85a;font-family:'Clash Display',sans-serif;
}
/* catalogue grid */
.card-jane .cva-grid{
  display:flex;flex-direction:column;gap:6px;margin-bottom:10px;
}
.card-jane .cva-row{
  display:flex;align-items:center;gap:9px;
  background:#fff;border-radius:10px;padding:7px 9px;
  border:1px solid #f0f0f0;
}
.card-jane .cva-thumb{
  width:32px;height:32px;border-radius:8px;
  background:#f5f5f5;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:15px;
  border:1px solid #eee;
}
.card-jane .cva-info{flex:1;min-width:0;}
.card-jane .cva-name{font-size:9.5px;font-weight:600;color:#111;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.card-jane .cva-price{font-size:9px;color:#888;margin-top:1px;}
.card-jane .cva-add{
  width:24px;height:24px;border-radius:7px;
  background:#0a0a0a;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
}
/* cart summary bar */
.card-jane .cva-cart{
  display:flex;align-items:center;justify-content:space-between;
  background:#fff;border-radius:10px;padding:8px 10px;
  border:1px solid #f0f0f0;margin-bottom:8px;
}
.card-jane .cva-cart-left{display:flex;align-items:center;gap:7px;}
.card-jane .cva-cart-icon{
  width:22px;height:22px;border-radius:6px;background:#0a0a0a;
  display:flex;align-items:center;justify-content:center;
}
.card-jane .cva-cart-label{font-size:9.5px;font-weight:600;color:#111;font-family:'Clash Display',sans-serif;}
.card-jane .cva-cart-sub{font-size:8.5px;color:#aaa;margin-top:1px;}
.card-jane .cva-cart-total{font-size:13px;font-weight:700;color:#111;font-family:'Clash Display',sans-serif;}
.card-jane .cva-btn{
  background:#0a0a0a;border-radius:11px;padding:9px;
  text-align:center;font-size:10px;font-weight:700;color:#fff;
  font-family:'Clash Display',sans-serif;
  display:flex;align-items:center;justify-content:center;gap:6px;
}
.card-jane .cva-btn span.green{color:#0fee80;}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}


/* ─── ANIMATED DASHBOARD BROWSER FRAME ─── */
.step-dashboard-wrap{
  position:relative;z-index:2;flex-shrink:0;
  width:clamp(340px, 52vw, 700px);
  filter:drop-shadow(0 30px 70px rgba(0,0,0,0.25));
}
.db-browser{
  background:#fff;border-radius:14px;overflow:hidden;
  border:1.5px solid #e0e0e0;
}
.db-browser-bar{
  background:#f5f5f5;padding:10px 14px;display:flex;align-items:center;gap:7px;
  border-bottom:1px solid #ececec;
}
.db-dot{width:10px;height:10px;border-radius:50%;}
.db-dot.r{background:#ff5f57;}.db-dot.y{background:#febc2e;}.db-dot.g{background:#28c840;}
.db-screen{padding:0;position:relative;background:#fff;overflow:hidden;}

/* Sidebar */
.db-sidebar{
  position:absolute;left:0;top:0;bottom:0;width:52px;
  background:#1a1a1a;display:flex;flex-direction:column;align-items:center;
  padding:14px 0 10px;gap:16px;z-index:2;
}
.db-sidebar .db-logo{color:#fff;font-size:18px;font-weight:700;font-style:italic;margin-bottom:6px;}
.db-sidebar .db-ico{width:22px;height:22px;border-radius:7px;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;}
.db-sidebar .db-ico svg{width:13px;height:13px;stroke:#888;stroke-width:1.8;fill:none;}
.db-sidebar .db-ico.active{background:#0fee80;}.db-sidebar .db-ico.active svg{stroke:#1a1a1a;}

/* Main content */
.db-main{margin-left:52px;padding:16px 18px 14px;}
.db-header{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:10px;}
.db-venue{font-size:clamp(13px,1.6vw,18px);font-weight:700;color:#1a1a1a;display:flex;align-items:center;gap:8px;}
.db-live-badge{background:#e6fff0;color:#0ba85a;font-size:9px;font-weight:600;padding:3px 10px;border-radius:20px;display:inline-flex;align-items:center;gap:4px;}
.db-live-badge::before{content:'';width:6px;height:6px;border-radius:50%;background:#0fee80;animation:dbPulse 1.5s infinite;}
@keyframes dbPulse{0%,100%{opacity:1}50%{opacity:0.3}}
.db-meta{font-size:9px;color:#999;margin-top:3px;display:flex;gap:12px;}
.db-user{display:flex;align-items:center;gap:6px;font-size:10px;color:#555;}
.db-user-avatar{width:26px;height:26px;border-radius:50%;background:#e8e8e8;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;color:#555;}

/* Tabs */
.db-tabs{display:flex;gap:6px;margin-bottom:12px;}
.db-tab{font-size:9px;padding:5px 12px;border-radius:20px;font-weight:500;color:#888;background:#f5f5f5;display:flex;align-items:center;gap:4px;}
.db-tab.active{background:#1a1a1a;color:#fff;}
.db-tab svg{width:11px;height:11px;}
.db-toggle-btn{
  font-size:9px;padding:5px 14px;border-radius:20px;border:1.5px solid #1a1a1a;
  color:#1a1a1a;font-weight:600;margin-left:auto;display:flex;align-items:center;gap:4px;
}

/* KPI Row */
.db-kpi-row{
  display:grid;grid-template-columns:1.3fr repeat(5,1fr);gap:6px;margin-bottom:14px;
}
.db-kpi{
  background:#fff;border:1px solid #f0f0f0;border-radius:10px;padding:10px 10px 12px;
  min-height:60px;position:relative;
}
.db-kpi.highlight{border:1.5px solid #0fee80;background:linear-gradient(135deg,#e6fff2,#ccffe4);}
.db-kpi-label{font-size:clamp(7px,0.85vw,10px);color:#555;font-weight:500;display:flex;align-items:center;gap:4px;margin-bottom:6px;line-height:1.3;}
.db-kpi-badge{font-size:7px;padding:1px 6px;border-radius:10px;font-weight:600;}
.db-kpi-badge.live{background:#e6fff0;color:#0ba85a;}
.db-kpi-badge.est{background:#f0f0f0;color:#888;}
.db-kpi-val{font-size:12px;font-weight:700;color:#1a1a1a;font-family:'Clash Display',sans-serif;}
.db-kpi.highlight .db-kpi-val{color:#0a0a0a;}

/* Counter animation */
.db-counter{display:inline-block;}
@keyframes dbCountUp{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.db-count-anim{animation:dbCountUp 0.6s ease-out both;}

/* Bottom grid */
.db-bottom{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;}
.db-section{min-height:80px;}
.db-section-title{font-size:clamp(8px,1vw,11px);font-weight:700;color:#1a1a1a;margin-bottom:8px;display:flex;align-items:center;gap:5px;}
.db-section-title svg{width:12px;height:12px;}
.db-row{display:flex;align-items:center;gap:6px;padding:5px 0;border-bottom:1px solid #f8f8f8;}
.db-row:last-child{border-bottom:none;}
.db-row-num{font-size:9px;color:#ccc;font-weight:600;width:12px;}
.db-row-name{font-size:clamp(8px,0.9vw,10px);font-weight:500;color:#333;flex:1;line-height:1.3;}
.db-row-sub{font-size:7px;color:#bbb;}
.db-row-val{font-size:clamp(9px,1vw,12px);font-weight:700;color:#1a1a1a;text-align:right;}
.db-stock-frac{font-size:10px;font-weight:700;}
.db-stock-frac.red{color:#E53935;}
.db-stock-frac.green{color:#0ba85a;}
.db-stock-bar{height:3px;background:#f0f0f0;border-radius:2px;margin-top:3px;overflow:hidden;}
.db-stock-fill{height:100%;border-radius:2px;transition:width 1.5s ease-out;}
.db-stock-fill.red{background:#E53935;}.db-stock-fill.green{background:#0fee80;}.db-stock-fill.gray{background:#ddd;}

@media(max-width:900px){
  .db-kpi-row{grid-template-columns:repeat(3,1fr);}
  .db-bottom{grid-template-columns:repeat(2,1fr);}
  #step1{flex-direction:column !important;}
  #step1 .step-text-left{position:relative;left:auto;top:auto;transform:none;max-width:100%;text-align:center;}
  .step-dashboard-wrap{width:min(92vw,600px);}
  #step2,#step3,#step4{flex-direction:column !important;gap:20px;}
  #step2 .step-text-right,#step3 .step-text-left,#step4 .step-text-right{max-width:90%;text-align:center;align-items:center;}
  #step2 .step-divider,#step3 .step-divider,#step4 .step-divider{margin:0 auto 16px;}
}
@media(max-width:540px){
  .db-kpi-row{grid-template-columns:repeat(2,1fr);}
  .db-bottom{grid-template-columns:1fr 1fr;}
  .db-sidebar{width:38px;}.db-main{margin-left:38px;padding:10px 10px 8px;}
}

/* ── STATS TICKER BANNER ── */
.stats-ticker{
  background:#f9f9f7;
  overflow:hidden;
  position:relative;
  z-index:2;
  border-top:1px solid #e8e8e4;
  border-bottom:1px solid #e8e8e4;
}
.stats-ticker::before,
.stats-ticker::after{
  content:'';
  position:absolute;top:0;bottom:0;width:80px;z-index:3;pointer-events:none;
}
.stats-ticker::before{left:0;background:linear-gradient(to right,#f9f9f7,transparent);}
.stats-ticker::after{right:0;background:linear-gradient(to left,#f9f9f7,transparent);}
.stats-track{
  display:flex;align-items:center;
  width:max-content;
  animation:tickerScroll 60s linear infinite;
}
.stats-track:hover{animation-play-state:paused;}
@keyframes tickerScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.stats-item{
  display:flex;align-items:center;
  padding:18px 0;
  flex-shrink:0;
  white-space:nowrap;
  font-size:13px;
  font-weight:300;
  color:#555;
  letter-spacing:0.1px;
  line-height:1;
  padding-left:36px;
  padding-right:36px;
}
.stats-item em{
  font-style:normal;
  font-weight:600;
  color:#0a0a0a;
}
.stats-sep{
  width:4px;height:4px;
  border-radius:50%;
  background:#0fee80;
  flex-shrink:0;
  opacity:0.9;
}

/* ─── FEATURES (sticky scroll-driven vertical, jeton.com style) ─── */
#features{
  position:relative;
  height:170vh;
  background:transparent;
  z-index:3;
}
@media(max-width:960px){
  #features{
    margin-top:0;
  }
}
.features-sticky{
  position:sticky;
  top:0;
  height:var(--viewport-under-header);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  background:transparent;
  z-index:3;
}
.features-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:8px;
}
.feature-item{
  display:flex;align-items:center;gap:24px;
  will-change:transform,opacity;
  overflow:hidden; /* clip the slide-in */
}
.feature-icon{
  width:72px;height:72px;border-radius:20px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  will-change:transform;
}
.feature-icon.green{ background:#0fee80; }
.feature-icon.blue{  background:#4080d8; }
.feature-icon.pink{  background:#d93060; }
.feature-label{
  font-size:clamp(40px,6.5vw,80px);
  font-weight:600;
  line-height:1;
  letter-spacing:-2.5px;
  white-space:nowrap;
  will-change:transform;
}
.feature-label.green{ color:#0fee80; }
.feature-label.blue{  color:#4080d8; }
.feature-label.pink{  color:#d93060; }

@media(min-width:1800px){
  .features-inner{ gap:12px; }
  .feature-icon{
    width:84px;
    height:84px;
    border-radius:22px;
  }
  .feature-label{
    font-size:clamp(52px,5.2vw,108px);
    letter-spacing:-3px;
  }
}

@media(max-width:640px){
  nav{
    padding:14px 16px;
    gap:12px;
  }
  .nav-logo{
    height:32px;
  }
  .nav-logo img{
    height:48px !important;
    transform:translateY(-11px);
  }
  .nav-right{
    min-width:0;
    gap:10px;
  }
  .nav-lang{
    gap:4px;
    font-size:12px;
    flex-shrink:0;
  }
  .nav-login{
    display:none;
  }
  .nav-call-btn{
    display:none;
  }
  .nav-signup{
    padding:8px 14px;
    font-size:12px;
  }
  .nav-lang-dropdown{
    right:-8px;
  }
  .features-inner{
    gap:12px;
  }
  .feature-item{
    gap:14px;
  }
  .feature-icon{
    width:56px;
    height:56px;
    border-radius:16px;
  }
  .feature-label{
    font-size:clamp(30px,10vw,44px);
    letter-spacing:-1.5px;
  }
  #factory{
    padding:88px 20px 56px;
  }
  .factory-inner{
    gap:28px;
  }
  .factory-metrics{
    gap:8px;
    margin-top:28px;
  }
  .factory-step{
    gap:14px;
    padding:18px 0;
  }
  .factory-step-num{
    width:34px;
    height:34px;
    border-radius:10px;
    font-size:13px;
  }
  footer{
    padding:44px 20px 0;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:24px 18px;
    margin-bottom:32px;
  }
  .footer-divider{
    margin:0 -20px 24px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding-bottom:24px;
  }
  .footer-stores-row{
    width:100%;
    flex-wrap:wrap;
  }
  .footer-badges{
    justify-content:flex-start;
  }
  .footer-lang-row{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:16px 0 24px;
  }
}

@media(max-width:480px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .footer-stores-row{
    flex-direction:column;
    align-items:stretch;
  }
  .footer-stores-row .store-btn-outlined{
    width:100%;
    justify-content:flex-start;
  }
}

/* ─── STEPS ─── */
#steps{
  position:relative;
  height:var(--viewport-under-header);
}
.steps-sticky{
  position:relative;
  height:var(--viewport-under-header);
  background:var(--red);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}

/* Step intro */
.steps-intro{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  pointer-events:none;
  transition:opacity 0.5s;
}
.steps-intro-title{
  font-size:clamp(36px,5vw,64px);
  font-weight:600;
  color:rgba(255,255,255,0.4);
  letter-spacing:-2px;
  transition:opacity 0.5s;
}
.steps-intro-card{
  margin:30px auto 0;
  width:280px;
  background:rgba(255,255,255,0.15);
  border-radius:20px;
  padding:20px;
  backdrop-filter:blur(10px);
}
.intro-card-header{display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,0.7);margin-bottom:12px;}
.intro-card-balance{font-size:28px;font-weight:800;color:#fff;margin-bottom:14px;}
.intro-card-actions{display:flex;gap:8px;}
.intro-card-btn{
  flex:1;background:rgba(255,255,255,0.2);
  border-radius:10px;padding:8px;
  text-align:center;font-size:12px;font-weight:600;color:#fff;
}

/* Step content */
.step-content{
  position:absolute;
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.65s cubic-bezier(0.16,1,0.3,1);
  overflow:visible;
}
.step-content.active{opacity:1;pointer-events:auto;}

.step-phone{
  position:relative;z-index:2;
  width:200px;
  background:#fff;
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
  flex-shrink:0;
}
.phone-notch{height:30px;background:#f8f0f0;display:flex;align-items:center;justify-content:center;gap:4px;font-size:10px;color:#888;}
.phone-status{display:flex;align-items:center;justify-content:space-between;padding:4px 12px 0;font-size:9px;color:#666;}
.phone-body{padding:0 0 20px;}

/* Override step-content layout for step1: text left, dashboard right */
#step1{
  gap:clamp(32px, 4vw, 80px);
  justify-content:center;
  padding:0 7%;
}
#step1 .step-text-left{
  position:relative;left:auto;top:auto;transform:none;
  max-width:300px;
  flex-shrink:0;
}

/* Steps 2–4: uniform flex row, phone + text as peers */
#step2,#step3,#step4{
  gap:clamp(40px,5vw,100px);
  justify-content:center;
  padding:0 8%;
}
/* Step 2: phone LEFT, text RIGHT */
#step2{ flex-direction:row; }
#step2 .step-text-right{
  position:relative;right:auto;top:auto;transform:none;
  max-width:260px;flex-shrink:0;
  display:flex;flex-direction:column;justify-content:center;
}
/* Step 3: phone RIGHT, text LEFT */
#step3{ flex-direction:row-reverse; }
#step3 .step-text-left{
  position:relative;left:auto;top:auto;transform:none;
  max-width:260px;flex-shrink:0;
  display:flex;flex-direction:column;justify-content:center;
}
/* Step 4: phone LEFT, text RIGHT */
/* #step4 layout now defined in step4 CSS section below */


.phone-account .phone-header{background:linear-gradient(135deg,#ffd8cc,#f0b0a0);padding:14px 12px 16px;position:relative;}
.phone-account .acct-avatar{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.4);margin-bottom:8px;}
.phone-account .acct-balance-row{display:flex;align-items:center;gap:8px;}
.phone-account .acct-badge{font-size:9px;color:#888;background:#fff;border-radius:20px;padding:2px 8px;display:inline-flex;align-items:center;gap:3px;}
.phone-account .acct-amount{font-size:20px;font-weight:800;color:#1a1a1a;margin-top:6px;}
.phone-account .acct-actions{display:flex;gap:6px;margin-top:10px;}
.phone-account .acct-btn{flex:1;background:#fff;border-radius:8px;padding:6px 4px;text-align:center;font-size:10px;font-weight:600;color:#1a1a1a;}
.phone-account .transactions{padding:12px;}
.phone-account .trans-title{display:flex;justify-content:space-between;font-size:11px;font-weight:700;color:#1a1a1a;margin-bottom:8px;}
.phone-account .trans-item{display:flex;align-items:center;gap:8px;padding:6px 0;border-bottom:1px solid #f5f5f5;}
.phone-account .trans-icon{width:24px;height:24px;border-radius:50%;background:linear-gradient(135deg,#ff9a6c,#e05c3a);flex-shrink:0;}
.phone-account .trans-info{flex:1;}
.phone-account .trans-name{font-size:10px;font-weight:600;color:#1a1a1a;}
.phone-account .trans-sub{font-size:9px;color:#888;}
.phone-account .trans-amount{font-size:10px;font-weight:700;color:#0fee80;}
.phone-bottom-nav{display:flex;justify-content:space-around;align-items:center;padding:10px 8px 0;border-top:1px solid #f0f0f0;}
.pbn-item{display:flex;flex-direction:column;align-items:center;gap:2px;font-size:7px;color:#ccc;}
.pbn-item.active{color:var(--red);}
.pbn-item svg{width:14px;height:14px;}

/* ── STEP 2: CATALOGUE SCREEN ── */
.phone-catalogue{
  background:#f2f2f7;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  width:210px !important; /* slightly wider for catalogue grid */
}
.phone-catalogue .phone-notch{
  background:#f2f2f7;
  height:28px;
}
.phone-catalogue .phone-status{
  padding:0 12px 4px;
  font-size:8.5px;
  color:#333;
  font-weight:500;
}
.cat-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:6px 12px 4px;
  background:#f2f2f7;
}
.cat-title{
  font-size:18px;font-weight:800;color:#0a0a0a;
  font-family:'Clash Display',sans-serif;
  letter-spacing:-0.5px;
}
.cat-reorg-btn{
  display:flex;align-items:center;gap:3px;
  border:1px solid #d0d0d0;border-radius:8px;
  padding:3px 7px;font-size:8px;font-weight:500;color:#333;
  background:#fff;white-space:nowrap;
}
.cat-tabs{
  display:flex;gap:5px;padding:5px 10px;
  overflow-x:auto;scrollbar-width:none;
}
.cat-tabs::-webkit-scrollbar{display:none;}
.cat-tab{
  padding:4px 9px;border-radius:20px;font-size:9px;font-weight:600;
  white-space:nowrap;color:#555;background:#e0e0e0;
  flex-shrink:0;cursor:pointer;
  transition:background 0.2s,color 0.2s;
}
.cat-tab.active{background:#0a0a0a;color:#fff;}
.cat-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:7px;
  padding:4px 8px 4px;
  overflow:hidden;
}
.cat-card{
  background:#fff;border-radius:12px;
  padding:7px 7px 8px;
  display:flex;flex-direction:column;
  box-shadow:0 1px 6px rgba(0,0,0,0.08);
  opacity:0;transform:translateY(14px);
  transition:opacity 0.38s ease, transform 0.38s ease;
}
.cat-card.visible{opacity:1;transform:translateY(0);}
.cat-card-img{
  position:relative;
  background:#f5f0eb;border-radius:9px;
  height:64px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;margin-bottom:5px;
}
.cat-stock-badge{
  position:absolute;top:4px;left:5px;
  font-size:8px;font-weight:600;color:#555;
  line-height:1.4;
}
.cat-card-name{
  font-size:10px;font-weight:600;color:#0a0a0a;
  padding:0 1px 2px;line-height:1.3;
}
.cat-card-price{
  font-size:11px;font-weight:800;color:#0a0a0a;
  padding:0 1px;
  font-family:'Clash Display',sans-serif;
}
/* Qty row - only on first card */
.cat-qty-row{
  display:flex;align-items:center;gap:6px;
  margin-top:6px;
}
.cat-qty-btn{
  width:20px;height:20px;border-radius:6px;
  background:#0a0a0a;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:600;line-height:1;
  cursor:pointer;
  transition:transform 0.12s,background 0.15s;
  user-select:none;flex-shrink:0;
}
.cat-qty-btn.tap{transform:scale(0.82);background:#333;}
.cat-qty-val{
  font-size:11px;font-weight:700;color:#0a0a0a;
  min-width:12px;text-align:center;
  transition:transform 0.15s;
}
.cat-qty-val.bump{animation:catBump 0.22s ease;}
@keyframes catBump{
  0%{transform:scale(1);}
  50%{transform:scale(1.5);}
  100%{transform:scale(1);}
}
/* Bottom nav */
.cat-bottom-nav{
  display:flex;align-items:center;justify-content:space-around;
  padding:6px 4px 10px;border-top:1px solid #e5e5e5;
  background:#fff;position:relative;margin-top:auto;
}
.cat-nav-item{
  display:flex;flex-direction:column;align-items:center;gap:1.5px;
  font-size:7px;color:#aaa;flex:1;
}
.cat-nav-active{color:#0a0a0a;}
.cat-fab{
  width:32px;height:32px;border-radius:50%;background:#0a0a0a;
  display:flex;align-items:center;justify-content:center;
  position:relative;flex-shrink:0;
  box-shadow:0 4px 14px rgba(0,0,0,0.28);
  margin-bottom:8px;
}
.cat-fab-badge{
  position:absolute;top:-3px;right:-4px;
  width:13px;height:13px;border-radius:50%;
  background:#ff3b30;color:#fff;
  font-size:7.5px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  border:1.5px solid #fff;
  opacity:0;transform:scale(0);
  transition:opacity 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.cat-fab-badge.show{opacity:1;transform:scale(1);}


/* Phone screen - Review */
/* ════════════════════════════════════════════════════════
   STEP 4 — ANALYTICS BROWSER (refined)
   ════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.s4-dash-wrap{
  width:clamp(340px,52vw,660px);
  filter:drop-shadow(0 24px 60px rgba(0,0,0,0.22));
}
.s4-url-bar{
  flex:1;display:flex;align-items:center;justify-content:center;gap:5px;
  background:#ececec;border-radius:5px;padding:3px 10px;margin:0 10px;
}
.s4-screen{ min-height:310px; }
.s4-main{ padding:14px 16px 12px; }

/* ── Page header ── */
.s4-page-header{ margin-bottom:10px; }
.s4-page-title{
  display:flex;align-items:center;gap:7px;
  font-size:14px;font-weight:800;color:#0a0a0a;letter-spacing:-0.3px;
}
.s4-page-sub{ font-size:8.5px;color:#bbb;margin-top:3px;letter-spacing:0.1px; }

/* ── Tabs row ── */
.s4-tabs-row{
  display:flex;align-items:center;
  border-bottom:1px solid #ebebeb;
  margin-bottom:12px;
}
.s4-tab{
  display:flex;align-items:center;gap:4px;
  font-size:8.5px;font-weight:500;color:#aaa;
  padding:5px 9px 8px;
  border-bottom:2px solid transparent;
  cursor:pointer;white-space:nowrap;
  transition:color 0.18s,border-color 0.18s;
  margin-bottom:-1px;
}
.s4-tab svg{ opacity:0.5; transition:opacity 0.18s; }
.s4-tab-active{ color:#0a0a0a;font-weight:700;border-bottom-color:#0a0a0a; }
.s4-tab-active svg{ opacity:1; }

/* Export buttons — clean, no pulse */
.s4-export-group{ margin-left:auto;display:flex;gap:5px;padding-bottom:3px; }
.s4-export-btn{
  display:flex;align-items:center;gap:4px;
  font-size:7.5px;font-weight:600;color:#555;
  background:#f7f7f7;border:1px solid #e8e8e8;border-radius:6px;
  padding:4px 9px;cursor:pointer;font-family:inherit;
  transition:background 0.16s,border-color 0.16s,color 0.16s,box-shadow 0.16s;
}
.s4-export-btn:hover{
  background:#fff;border-color:#ccc;color:#111;
  box-shadow:0 1px 6px rgba(0,0,0,0.07);
}
.s4-export-btn svg{ flex-shrink:0; }
/* Highlight state triggered by JS */
.s4-export-btn.s4-btn-glow{
  background:#0fee80;border-color:#0fee80;color:#0a0a0a;
  box-shadow:0 0 0 3px rgba(14,254,128,0.25);
}

/* ── View switching ── */
.s4-view{ display:flex;flex-direction:column; }
.s4-view-hidden{ display:none; }
.s4-view.s4-fade-in{ animation:s4FadeIn 0.35s ease forwards; }
@keyframes s4FadeIn{
  from{opacity:0;transform:translateY(4px);}
  to{opacity:1;transform:translateY(0);}
}

/* ── KPI cards ── */
.s4-kpi-row{
  display:grid;grid-template-columns:repeat(4,1fr);gap:5px;margin-bottom:9px;
}
.s4-kpi{
  background:#fafafa;border:1px solid #f0f0f0;border-radius:8px;
  padding:8px 9px 10px;
  display:flex;flex-direction:column;
  opacity:0;transform:translateY(6px);
  transition:opacity 0.3s ease,transform 0.3s ease;
}
.s4-fade-in .s4-kpi{ opacity:1;transform:translateY(0); }
.s4-fade-in .s4-kpi:nth-child(1){ transition-delay:0.05s; }
.s4-fade-in .s4-kpi:nth-child(2){ transition-delay:0.1s; }
.s4-fade-in .s4-kpi:nth-child(3){ transition-delay:0.15s; }
.s4-fade-in .s4-kpi:nth-child(4){ transition-delay:0.2s; }
.s4-kpi-head{
  display:flex;align-items:flex-start;justify-content:space-between;
  margin-bottom:6px;
}
.s4-kpi-label{ font-size:7.5px;color:#999;font-weight:500;line-height:1.3; }
.s4-kpi-icon{
  width:18px;height:18px;border-radius:5px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.s4-kpi-val{
  font-size:13px;font-weight:800;color:#0a0a0a;
  font-family:'Clash Display',sans-serif;letter-spacing:-0.5px;
  line-height:1;
}

/* ── Mid row: chart + top products ── */
.s4-mid-row{ display:grid;grid-template-columns:1.55fr 1fr;gap:7px; }
.s4-chart-card,.s4-top-card{
  background:#fafafa;border:1px solid #f0f0f0;border-radius:8px;padding:9px 10px;
}
.s4-card-title{
  font-size:8.5px;font-weight:700;color:#0a0a0a;
  margin-bottom:7px;letter-spacing:-0.1px;
}

/* Chart */
.s4-chart-card{ position:relative; }
.s4-chart-y{
  position:absolute;left:9px;top:25px;bottom:18px;
  display:flex;flex-direction:column;justify-content:space-between;
  font-size:6px;color:#ddd;pointer-events:none;
}
.s4-sparkline{width:100%;height:50px;display:block;margin:0 0 3px;}
.s4-sparkpath{
  stroke-dasharray:500;stroke-dashoffset:500;
  animation:s4DrawSpark 1.8s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
@keyframes s4DrawSpark{to{stroke-dashoffset:0;}}
.s4-chart-axis{
  display:flex;justify-content:space-between;
  font-size:6px;color:#ccc;padding:0 1px;
}

/* Top products */
.s4-top-row{
  display:flex;align-items:center;gap:6px;
  padding:5px 0;border-bottom:1px solid #f4f4f4;
}
.s4-top-row:last-child{ border-bottom:none; }
.s4-rank{
  font-size:8px;font-weight:700;color:#ddd;
  min-width:10px;flex-shrink:0;text-align:center;
}
.s4-top-info{ flex:1;min-width:0; }
.s4-top-name{
  font-size:8px;font-weight:600;color:#0a0a0a;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.s4-top-sub{ font-size:6.5px;color:#bbb;margin-top:1px; }
.s4-top-val{
  font-size:9px;font-weight:800;color:#0a0a0a;
  white-space:nowrap;flex-shrink:0;
}

/* ── Transactions view ── */
.s4-filter-row{ display:flex;gap:6px;margin-bottom:8px; }
.s4-filter-btn{
  display:flex;align-items:center;gap:4px;
  font-size:7.5px;font-weight:500;color:#555;
  background:#f5f5f5;border:1px solid #ebebeb;
  border-radius:6px;padding:4px 8px;cursor:pointer;
  transition:background 0.15s,border-color 0.15s;
}
.s4-filter-btn:hover{ background:#efefef;border-color:#ddd; }

/* Table */
.s4-table{
  border:1px solid #ebebeb;border-radius:8px;overflow:hidden;
}
.s4-thead{
  display:flex;align-items:center;
  background:#f8f8f8;border-bottom:1px solid #ebebeb;
  padding:5px 12px;
}
.s4-thead span{ font-size:7px;font-weight:600;color:#bbb;letter-spacing:0.2px; }
.s4-trow{
  display:flex;align-items:center;
  padding:7px 12px;border-bottom:1px solid #f5f5f5;
  opacity:0;transform:translateX(-4px);
  transition:opacity 0.25s ease,transform 0.25s ease;
}
.s4-trow:last-child{ border-bottom:none; }
.s4-fade-in .s4-trow{ opacity:1;transform:translateX(0); }
.s4-fade-in .s4-trow:nth-child(1){ transition-delay:0.05s; }
.s4-fade-in .s4-trow:nth-child(2){ transition-delay:0.1s; }
.s4-fade-in .s4-trow:nth-child(3){ transition-delay:0.15s; }
.s4-fade-in .s4-trow:nth-child(4){ transition-delay:0.2s; }
.s4-fade-in .s4-trow:nth-child(5){ transition-delay:0.25s; }
.s4-fade-in .s4-trow:nth-child(6){ transition-delay:0.3s; }

/* Column widths */
.s4-col-date{ width:68px;flex-shrink:0;font-size:7.5px;color:#aaa;line-height:1.3; }
.s4-col-event{ flex:1;min-width:0; }
.s4-col-vendor{ width:60px;flex-shrink:0;display:flex;align-items:center; }
.s4-col-ca{
  width:58px;flex-shrink:0;text-align:right;
  font-size:7.5px;font-weight:600;color:#333;
  padding-right:4px;
}
.s4-col-method{
  width:24px;flex-shrink:0;
  display:flex;align-items:center;justify-content:flex-end;
}
.s4-ca-bold{ font-weight:800;color:#0a0a0a; }
.s4-ev-name{
  font-size:8px;font-weight:600;color:#0a0a0a;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.s4-ev-stand{ font-size:6.5px;color:#bbb;margin-top:1px; }
.s4-name-mask{
  display:inline-block;width:38px;height:7px;border-radius:3px;
  background:#ebebeb;
}

/* ── Payment method icon ── */
.s4-card-icon{
  display:inline-flex;flex-direction:column;gap:2px;
  width:18px;height:12px;border-radius:2px;
  border:1.5px solid #ddd;background:#f9f9f9;
  overflow:hidden;padding:1.5px 2px;box-sizing:border-box;
}
.s4-card-icon-stripe{
  height:2px;border-radius:1px;background:#ddd;width:100%;
}
.s4-card-icon-chip{
  width:5px;height:3.5px;border-radius:1px;background:#d4d4d4;align-self:flex-start;
}

/* ── Layout ── */
#step4{ flex-direction:row-reverse; }
#step4 .step-text-right{
  position:relative;right:auto;top:auto;transform:none;
  max-width:240px;flex-shrink:0;
  display:flex;flex-direction:column;justify-content:center;
}

.phone-receipt .rec-header{background:linear-gradient(135deg,#ffd8cc,#f0b0a0);padding:14px 12px 16px;}
.phone-receipt .rec-title{font-size:13px;font-weight:700;color:#1a1a1a;line-height:1.3;}
.phone-receipt .rec-amount{font-size:13px;font-weight:600;color:#1a1a1a;padding:8px 12px 4px;}
.phone-receipt .rec-row{padding:4px 12px;display:flex;align-items:center;gap:6px;}
.phone-receipt .rec-dot{width:8px;height:8px;border-radius:50%;border:1.5px solid #ccc;flex-shrink:0;}
.phone-receipt .rec-dot.done{border-color:#2ed166;background:#2ed166;}
.phone-receipt .rec-info{font-size:10px;color:#888;}
.phone-receipt .rec-btn{margin:8px 12px;background:#fff;border:1.5px solid #e0e0e0;color:#1a1a1a;border-radius:12px;padding:8px;text-align:center;font-size:11px;font-weight:600;}

/* Step text */
/* Default: absolute for step1 (overridden per-step below) */
.step-text-left,.step-text-right{
  position:absolute;width:280px;
}
.step-text-left{left:5%;top:50%;transform:translateY(-50%);}
.step-text-right{right:5%;top:50%;transform:translateY(-50%);}
/* For steps 2-4 these are overridden to relative flow */

.step-divider{
  width:80px;height:1.5px;
  background:rgba(255,255,255,0.4);
  margin-bottom:20px;
}
.step-heading{
  font-size:clamp(20px,2.4vw,30px);
  font-weight:600;color:#fff;
  line-height:1.15;
  margin-bottom:12px;
  letter-spacing:-0.5px;
}
.step-subtext{
  font-size:13px;color:#fff;
  font-weight:300;
  line-height:1.55;
  max-width:240px;
}

/* ── STEP 2: TEXT PANEL ── */
.step2-text-panel{
  max-width:310px !important;
  gap:0;
}
/* Divider aligned left, above title */
.step2-divider{
  margin-left:0 !important;
  margin-bottom:18px;
}
.step2-body{
  max-width:270px !important;
  margin-bottom:28px;
  color:rgba(255,255,255,0.82);
  isolation:isolate;
}
.step2-stat{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:20px 24px 18px;
  border-radius:20px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.22);
  max-width:260px;
}
.step2-stat-intro{
  font-size:11px;
  font-weight:400;
  color:rgba(255,255,255,0.6);
  letter-spacing:0.2px;
  line-height:1.4;
  margin-bottom:2px;
}
.step2-stat-num{
  font-size:clamp(38px,4.5vw,54px);
  font-weight:700;
  color:#fff;
  letter-spacing:-2px;
  line-height:1;
  font-family:'Clash Display',sans-serif;
  margin-bottom:10px;
}
.step2-stat-label{
  font-size:12px;
  font-weight:300;
  color:rgba(255,255,255,0.8);
  line-height:1.5;
  max-width:200px;
}

/* ── Step 3 stat (< 1s) ── */
.step3-text-panel{ /* ensure no extra gap */ }
.step3-body{ color:rgba(255,255,255,0.82); isolation:isolate; margin-bottom:28px; }
.step3-stat{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:20px 24px 18px;
  border-radius:20px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.22);
  max-width:260px;
  margin-top:16px;
}
.step3-stat-intro{
  font-size:11px;
  font-weight:400;
  color:rgba(255,255,255,0.6);
  letter-spacing:0.2px;
  line-height:1.4;
  margin-bottom:2px;
}
.step3-stat-num{
  font-size:clamp(38px,4.5vw,54px);
  font-weight:700;
  color:#fff;
  letter-spacing:-2px;
  line-height:1;
  font-family:'Clash Display',sans-serif;
  margin-bottom:10px;
}
.step3-stat-label{
  font-size:12px;
  font-weight:300;
  color:rgba(255,255,255,0.8);
  line-height:1.5;
  max-width:200px;
}



/* ════════════════════════════════════════════════════════
   STEP 3 — CART + CINEMATIC TAP-TO-PAY
   Architecture: .s3-anchor (overflow:visible, position:relative)
     ├── .s3-card        ← floats above, position:absolute
     ├── .s3-nfc-burst   ← waves, position:absolute
     └── .step-phone     ← normal phone (overflow:hidden inside)
   ════════════════════════════════════════════════════════ */

/* Anchor wrapper: positioning context, overflow:visible so card can exit upward */
.s3-anchor{
  position:relative;
  flex-shrink:0;
  width:200px;   /* same as .step-phone width */
  /* overflow:visible by default */
}

/* Phone cart wrap — fixed height like other phones */
.phone-cart-wrap{
  background:#f5f5f7;
  display:flex;flex-direction:column;
  overflow:hidden;
  position:relative;
  height:430px;  /* match other step phones */
  width:200px;
  border-radius:36px;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
}


/* ── Credit card ─────────────────────────────────────── */
.s3-card{
  position:absolute;
  top:-200px;
  left:50%;
  transform:translateX(-50%) rotate(-5deg);
  width:172px; height:108px;
  border-radius:12px;
  background:linear-gradient(140deg,#1c1c1e 0%,#2e2e2e 50%,#111 100%);
  box-shadow:0 4px 16px rgba(0,0,0,0.35),0 20px 50px rgba(0,0,0,0.5),inset 0 1px 0 rgba(255,255,255,0.07);
  z-index:20; overflow:hidden; pointer-events:none;
}
.s3-card-shine{position:absolute;inset:0;background:linear-gradient(130deg,rgba(255,255,255,0.09) 0%,transparent 55%);border-radius:inherit;}
.s3-card-logo{position:absolute;top:11px;left:13px;}
.s3-card-chip{
  position:absolute;top:38px;left:14px;
  width:22px;height:17px;border-radius:3px;
  background:linear-gradient(135deg,#c8a84b,#f0d870,#b89430);
  overflow:hidden;
}
.s3-chip-line{position:absolute;background:rgba(0,0,0,0.15);}
.s3-chip-line.h{top:50%;left:0;right:0;height:1px;transform:translateY(-50%);}
.s3-chip-line.v{left:50%;top:0;bottom:0;width:1px;transform:translateX(-50%);}
.s3-card-number{
  position:absolute;bottom:20px;left:14px;
  font-size:7px;font-weight:400;color:rgba(255,255,255,0.38);
  letter-spacing:2px;font-family:monospace;
}
.s3-card-nfc{position:absolute;bottom:10px;right:13px;opacity:0.65;}

/* Card animation states */
.s3-card.entering{
  top:-28px;
  transform:translateX(-50%) rotate(0deg);
  transition:top 0.5s cubic-bezier(0.22,1,0.36,1),transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.s3-card.tapped{
  top:6px;
  transform:translateX(-50%) rotate(0deg);
  transition:top 0.12s ease-out,transform 0.12s ease-out;
}
.s3-card.retreating{
  top:-200px;
  transform:translateX(-50%) rotate(-8deg);
  transition:top 0.45s cubic-bezier(0.55,0,1,0.45),transform 0.45s ease-in;
}

/* ── NFC wave burst ───────────────────────────────────── */
.s3-nfc-burst{
  position:absolute;
  top:6px; left:50%;
  width:0;height:0;
  pointer-events:none;z-index:18;
}
.s3-wave{
  position:absolute;border-radius:50%;
  border:2px solid #0fee80;opacity:0;
  transform:translate(-50%,-50%) scale(0);
  pointer-events:none;
}
.s3-wave.w1{width:80px;height:52px;}
.s3-wave.w2{width:138px;height:90px;}
.s3-wave.w3{width:196px;height:128px;}
.s3-wave.w4{width:254px;height:166px;}
@keyframes waveBlast{
  0%  {opacity:1;transform:translate(-50%,-50%) scale(0.1);}
  60% {opacity:0.3;}
  100%{opacity:0;transform:translate(-50%,-50%) scale(1);}
}
.s3-wave.fire{animation:waveBlast 0.9s cubic-bezier(0.15,0.6,0.35,1) forwards;}
.s3-wave.w2.fire{animation-delay:0.07s;}
.s3-wave.w3.fire{animation-delay:0.14s;}
.s3-wave.w4.fire{animation-delay:0.21s;}

/* ── Phone wrapper ────────────────────────────────────── */
.phone-cart-wrap{
  background:#f5f5f7;
  display:flex;flex-direction:column;
  overflow:hidden;position:relative;
}
.s3-nav{background:#fff !important;}

/* ── Cart screen ──────────────────────────────────────── */
.cart-screen{
  flex:1;display:flex;flex-direction:column;background:#f5f5f7;
  transition:opacity 0.4s ease,transform 0.4s ease;
}
.cart-screen.hidden{
  opacity:0;transform:scale(0.96) translateY(-6px);
  pointer-events:none;position:absolute;inset:0;
}
.cart-topbar{display:flex;align-items:center;justify-content:space-between;padding:5px 12px 3px;}
.cart-back{font-size:14px;color:#333;font-weight:300;}
.cart-title{font-size:13px;font-weight:700;color:#0a0a0a;}
.cart-tabs-row{display:flex;gap:6px;padding:2px 10px 5px;}
.cart-tab-pill{padding:4px 10px;border-radius:20px;font-size:9px;font-weight:600;background:#e5e5ea;color:#555;}
.cart-tab-pill.active{background:#0a0a0a;color:#fff;}
.cart-item-row{display:flex;align-items:center;gap:8px;background:#fff;margin:0 8px 5px;border-radius:12px;padding:8px 10px;}
.cart-item-img{width:38px;height:38px;border-radius:8px;background:#faf0f5;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.cart-item-info{flex:1;}
.cart-item-name{font-size:10px;font-weight:600;color:#0a0a0a;line-height:1.3;}
.cart-item-price{font-size:11px;font-weight:800;color:#0a0a0a;font-family:'Clash Display',sans-serif;}
.cart-qty-ctrl{display:flex;align-items:center;gap:4px;flex-shrink:0;}
.cart-qbtn{width:18px;height:18px;border-radius:5px;background:#0a0a0a;color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;}
.cart-qval{font-size:10px;font-weight:700;min-width:10px;text-align:center;color:#0a0a0a;}
.cart-toggle-row{display:flex;align-items:center;justify-content:space-between;background:#fff;margin:0 8px 5px;border-radius:12px;padding:7px 10px;}
.cart-toggle-label{font-size:9px;color:#555;font-weight:400;}
.cart-toggle-switch{width:24px;height:14px;border-radius:7px;background:#ddd;position:relative;flex-shrink:0;}
.cart-toggle-switch::after{content:'';position:absolute;top:2px;left:2px;width:10px;height:10px;border-radius:50%;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,0.2);}
.cart-summary{background:#fff;margin:0 8px 5px;border-radius:12px;padding:7px 12px;}
.cart-sum-row{display:flex;justify-content:space-between;align-items:center;font-size:9px;color:#888;padding:3px 0;}
.cart-sum-row:not(:last-child){border-bottom:1px solid #f5f5f5;}
.cart-sum-link{color:#0a0a0a;text-decoration:underline;font-size:9px;}
.cart-sum-total{font-size:10px;font-weight:700;color:#0a0a0a;}
.cart-cta-wrap{padding:0 8px 6px;display:flex;flex-direction:column;gap:4px;}
.cart-cta-btn{
  display:flex;align-items:center;justify-content:center;gap:6px;
  background:#0a0a0a;color:#fff;border:none;
  border-radius:12px;padding:9px;font-size:10px;font-weight:600;
  cursor:pointer;font-family:inherit;
  transition:transform 0.1s,filter 0.1s;
}
.cart-cta-btn:active{transform:scale(0.97);}
.cart-cta-btn.flash{filter:brightness(1.6);}

/* ── TapToPay screen ──────────────────────────────────── */
.ttp-screen{
  position:absolute;inset:0;
  background:#0a0a0a;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding-bottom:50px;
  opacity:0;transform:scale(0.96);
  transition:opacity 0.45s ease,transform 0.45s ease;
  pointer-events:none;gap:0;
}
.ttp-screen.visible{opacity:1;transform:scale(1);pointer-events:auto;}
.ttp-pay-card{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:18px;padding:14px 24px;text-align:center;
  margin-bottom:20px;
  opacity:0;transform:translateY(12px);
  transition:opacity 0.5s ease 0.15s,transform 0.5s ease 0.15s;
}
.ttp-screen.visible .ttp-pay-card{opacity:1;transform:translateY(0);}
.ttp-pay-label{
  font-size:9px;font-weight:500;color:rgba(255,255,255,0.35);
  letter-spacing:1.5px;text-transform:uppercase;margin-bottom:5px;
}
.ttp-pay-amount{
  font-size:30px;font-weight:700;color:#fff;
  font-family:'Clash Display',sans-serif;letter-spacing:-1.5px;
}
.ttp-hold-label{
  font-size:10px;font-weight:400;color:rgba(255,255,255,0.35);
  letter-spacing:0.3px;transition:opacity 0.3s;
}
.ttp-ok-wrap{
  position:absolute;bottom:76px;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  opacity:0;transform:scale(0.5);
  transition:opacity 0.4s,transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events:none;
}
.ttp-ok-wrap.show{opacity:1;transform:scale(1);}
.ttp-ok-circle{
  width:54px;height:54px;border-radius:50%;
  background:#0fee80;
  display:flex;align-items:center;justify-content:center;
}
.ttp-ok-wrap.show .ttp-ok-circle{animation:okGlow 0.7s ease 0.1s forwards;}
@keyframes okGlow{
  0%  {box-shadow:0 0 0 0 rgba(14,254,128,0.6);}
  50% {box-shadow:0 0 0 22px rgba(14,254,128,0);}
  100%{box-shadow:0 0 0 22px rgba(14,254,128,0);}
}
.ttp-ok-text{
  font-size:11px;font-weight:600;color:rgba(255,255,255,0.7);
  letter-spacing:2px;text-transform:uppercase;
}




.step-done-left{
  position:absolute;left:6%;top:50%;transform:translateY(-50%);
  font-size:clamp(28px,3.5vw,52px);font-weight:300;color:rgba(255,255,255,0.7);letter-spacing:-2px;
}
.step-done-right{
  position:absolute;right:6%;top:50%;transform:translateY(-50%);
  font-size:clamp(28px,3.5vw,52px);font-weight:600;color:rgba(255,255,255,0.9);letter-spacing:-2px;text-align:right;
}
.restart-btn{
  display:inline-flex;align-items:center;gap:8px;
  border:1.5px solid rgba(255,255,255,0.5);
  border-radius:50px;padding:10px 24px;
  color:#fff;font-size:13px;font-weight:600;
  cursor:pointer;transition:background 0.2s,border-color 0.2s;
  background:transparent;font-family:inherit;margin-top:28px;
}
.restart-btn:hover{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.8);}

/* ════════════════════════════════════════════════════════
   STEP 5 — SHOWCASE FINALE
   ════════════════════════════════════════════════════════ */
#step5{
  /* Full viewport, centered */
  align-items:center;justify-content:center;
}
.s5-wrap{
  position:relative;
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}

/* ── Central tagline ── */
.s5-tagline{
  position:relative;z-index:10;
  text-align:center;
  max-width:460px;
  padding:0 24px;
}
.s5-pill{
  display:inline-flex;align-items:center;
  background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.25);
  backdrop-filter:blur(8px);
  border-radius:50px;padding:5px 16px;
  font-size:10px;font-weight:600;color:rgba(255,255,255,0.9);
  letter-spacing:0.3px;margin-bottom:20px;
  animation:s5PillIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.s5-headline{
  font-size:clamp(28px,4vw,52px);
  font-weight:800;color:#fff;
  line-height:1.08;letter-spacing:-1.5px;
  font-family:'Clash Display',sans-serif;
  margin-bottom:16px;
  animation:s5HeadIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.s5-body{
  font-size:12.5px;color:rgba(255,255,255,0.72);
  font-weight:300;line-height:1.6;
  animation:s5BodyIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
@keyframes s5PillIn{from{opacity:0;transform:translateY(-10px);}to{opacity:1;transform:translateY(0);}}
@keyframes s5HeadIn{from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);}}
@keyframes s5BodyIn{from{opacity:0;}to{opacity:1;}}

/* ── Floating mini cards ── */
.s5-cards{
  position:absolute;inset:0;pointer-events:none;
  transform:translateY(clamp(32px,3vw,44px));
  --s5-card-desktop-scale:1;
  z-index:2; /* below .s5-tagline (z:10) — fixes white rect from backdrop-filter stacking */
}
.s5-card{
  position:absolute;
  background:rgba(255,255,255,0.11);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(12px);
  border-radius:16px;
  padding:12px;
  overflow:hidden;
  scale:var(--s5-card-desktop-scale);
}

/* ── Float keyframes (infinite loop after entry) ── */
@keyframes s5Float1{ 0%,100%{translate:0 0px;} 50%{translate:0 -10px;} }
@keyframes s5Float2{ 0%,100%{translate:0 0px;} 50%{translate:0 -8px;}  }
@keyframes s5Float3{ 0%,100%{translate:0 0px;} 50%{translate:0 -12px;} }
@keyframes s5Float4{ 0%,100%{translate:0 0px;} 50%{translate:0 -7px;}  }

/* Entry animations */
@keyframes s5CardL   {from{opacity:0;transform:translateY(-54%) translateX(-24px);}to{opacity:1;transform:translateY(-54%) translateX(0);}}
@keyframes s5CardLtop{from{opacity:0;transform:translateY(-100%) translateX(-16px);}to{opacity:1;transform:translateY(-100%) translateX(0);}}
@keyframes s5CardR   {from{opacity:0;transform:translateY(-54%) translateX(24px);}to{opacity:1;transform:translateY(-54%) translateX(0);}}
@keyframes s5CardRtop{from{opacity:0;transform:translateY(-100%) translateX(16px);}to{opacity:1;transform:translateY(-100%) translateX(0);}}

/* Positions — closer to center, with float loop chained */
.s5-card-1{
  left:clamp(20px,8vw,120px);
  top:50%;transform:translateY(-54%);
  transform-origin:left center;
  width:clamp(150px,17vw,210px);
  animation:
    s5CardL   0.85s cubic-bezier(0.16,1,0.3,1) 0.15s both,
    s5Float1  4.2s ease-in-out          1.1s infinite;
}
.s5-card-2{
  left:clamp(20px,8vw,120px);
  top:calc(50% - clamp(90px,13vw,140px));
  transform:translateY(-100%);
  transform-origin:left top;
  width:clamp(110px,13vw,165px);
  animation:
    s5CardLtop 0.85s cubic-bezier(0.16,1,0.3,1) 0.3s  both,
    s5Float2   3.8s ease-in-out          1.25s infinite;
}
.s5-card-3{
  right:clamp(20px,8vw,120px);
  top:50%;transform:translateY(-54%);
  transform-origin:right center;
  width:clamp(110px,13vw,165px);
  animation:
    s5CardR   0.85s cubic-bezier(0.16,1,0.3,1) 0.25s both,
    s5Float3  4.5s ease-in-out          1.15s infinite;
}
.s5-card-4{
  right:clamp(20px,8vw,120px);
  top:calc(50% - clamp(90px,13vw,140px));
  transform:translateY(-100%);
  transform-origin:right top;
  width:clamp(140px,16vw,195px);
  animation:
    s5CardRtop 0.85s cubic-bezier(0.16,1,0.3,1) 0.4s  both,
    s5Float4   4.0s ease-in-out          1.3s  infinite;
}

.s5-card-label{
  font-size:8px;font-weight:700;color:rgba(255,255,255,0.5);
  letter-spacing:0.4px;text-transform:uppercase;
  margin-bottom:8px;
}

/* ── Mini dashboard (card 1) ── */
.s5-mini-db{
  display:flex;gap:5px;
  background:rgba(255,255,255,0.92);border-radius:8px;
  overflow:hidden;height:80px;
}
.s5-mini-sidebar{
  width:18px;background:#1a1a1a;
  display:flex;flex-direction:column;align-items:center;
  padding:5px 0;gap:5px;flex-shrink:0;
}
.s5-mini-dot{
  width:8px;height:8px;border-radius:2px;
  background:rgba(255,255,255,0.15);
}
.s5-mini-content{
  flex:1;padding:5px 6px 4px;overflow:hidden;
}
.s5-mini-title{
  font-size:6.5px;font-weight:700;color:#0a0a0a;
  margin-bottom:5px;white-space:nowrap;overflow:hidden;
}
.s5-mini-kpi-row{
  display:flex;gap:3px;margin-bottom:5px;
}
.s5-mini-kpi{
  flex:1;background:#f5f5f5;border-radius:4px;padding:3px 3px;
}
.s5-mini-kpi.s5-kpi-green{background:#e6fff0;}
.s5-mini-kpi-v{
  font-size:6.5px;font-weight:800;color:#0a0a0a;
  font-family:'Clash Display',sans-serif;
}
.s5-mini-kpi-l{font-size:5px;color:#aaa;}
.s5-mini-bar-wrap{display:flex;flex-direction:column;gap:2px;}
.s5-mini-bar{
  height:3px;border-radius:2px;background:#0fee80;opacity:0.4;
}

/* ── Mini phone wrapper ── */
.s5-mini-phone{
  background:#fff;border-radius:10px;
  overflow:hidden;
  display:flex;flex-direction:column;
}
.s5-mini-phone-bar{
  background:#f8f8f8;border-bottom:1px solid #f0f0f0;
  padding:4px 6px;display:flex;align-items:center;justify-content:space-between;
}

/* ── Mini catalogue (card 2) ── */
.s5-mini-cat-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:3px;
  padding:5px;flex:1;
  position:relative;
}
.s5-mini-cat-item{
  border-radius:5px;height:28px;
}
.s5-cat-pink{background:#fce4ec;}
.s5-cat-blue{background:#e3f2fd;}
.s5-cat-red{background:#ffebee;}
.s5-cat-yellow{background:#fffde7;}
.s5-mini-stat-badge{
  position:absolute;bottom:6px;right:6px;
  background:#0fee80;color:#0a0a0a;
  font-size:8px;font-weight:800;
  border-radius:6px;padding:2px 6px;
  font-family:'Clash Display',sans-serif;
}

/* ── Mini Tap To Pay (card 3) ── */
.s5-mini-ttp{
  flex:1;display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:4px;padding:8px 6px;
  background:#fff;
}
.s5-mini-ttp-screen{
  display:flex;flex-direction:column;align-items:center;gap:2px;
}
.s5-mini-ttp-icon{
  width:24px;height:24px;border-radius:50%;background:#f5f5f5;
  display:flex;align-items:center;justify-content:center;
}
.s5-mini-ttp-label{
  font-size:5.5px;color:#888;text-align:center;line-height:1.4;
}
.s5-mini-ttp-ok{
  font-size:12px;color:#0fee80;font-weight:700;
  animation:s5TtpBlink 2.5s ease-in-out infinite;
}
@keyframes s5TtpBlink{
  0%,60%,100%{opacity:1;transform:scale(1);}
  80%{opacity:0.5;transform:scale(0.85);}
}

/* ── Mini Analytics (card 4) ── */
.s5-mini-rpt{
  background:#fff;border-radius:8px;
  padding:7px 8px;
  display:flex;flex-direction:column;gap:4px;
}
.s5-mini-rpt-kpi{margin-bottom:2px;}
.s5-mini-rpt-val{
  font-size:12px;font-weight:800;color:#0a0a0a;
  font-family:'Clash Display',sans-serif;
  letter-spacing:-0.5px;
}
.s5-mini-rpt-lbl{font-size:6px;color:#aaa;margin-top:1px;}
.s5-mini-spark{width:100%;height:24px;display:block;}
.s5-sparkpath{
  stroke-dasharray:300;stroke-dashoffset:300;
  animation:s5DrawSpark 1.6s ease 0.5s forwards;
}
@keyframes s5DrawSpark{to{stroke-dashoffset:0;}}
.s5-mini-rpt-exports{
  display:flex;gap:3px;margin-top:2px;
}
.s5-mini-export-btn{
  flex:1;background:#f5f5f5;border-radius:4px;
  font-size:6px;font-weight:700;color:#555;
  text-align:center;padding:3px 0;
}

/* Ambient glow blobs */
.s5-wrap::before,.s5-wrap::after{
  content:'';position:absolute;border-radius:50%;
  pointer-events:none;z-index:0;
}
.s5-wrap::before{
  width:300px;height:300px;
  background:rgba(14,254,128,0.08);
  filter:blur(60px);
  left:15%;top:20%;
  animation:s5Blob 6s ease-in-out infinite;
}
.s5-wrap::after{
  width:250px;height:250px;
  background:rgba(255,255,255,0.05);
  filter:blur(50px);
  right:15%;bottom:20%;
  animation:s5Blob 6s ease-in-out 3s infinite;
}
@keyframes s5Blob{
  0%,100%{transform:translate(0,0);}
  50%{transform:translate(10px,-15px);}
}

@media(min-width:901px){
  .s5-cards{
    --s5-card-desktop-scale:1.28;
  }
}

/* Mobile */
@media(max-width:900px){
  .s5-cards{display:none;}
  .s5-headline{font-size:clamp(22px,5vw,32px);}
}

/* Step nav */
.step-nav{
  position:absolute;
  bottom:36px;left:40px;
  display:flex;align-items:center;gap:8px;
  z-index:10;
}
.step-nav-item{
  display:inline-flex;align-items:center;
  height:34px;
  border-radius:50px;
  cursor:pointer;
  transition:all 0.45s cubic-bezier(0.16,1,0.3,1);
  position:relative;
}
.step-ring-wrap{
  position:relative;
  width:34px;height:34px;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.step-ring{
  position:absolute;inset:0;
  width:34px;height:34px;
  pointer-events:none;
}
.step-ring-progress{
  stroke-dasharray:87.96;
  stroke-dashoffset:87.96;
  stroke-linecap:round;
  transform:rotate(-90deg);
  transform-origin:50% 50%;
  transition:none;
}
.step-num{
  position:relative;z-index:1;
  font-size:11px;font-weight:700;
  color:rgba(255,255,255,0.45);
  line-height:1;
  transition:color 0.3s;
}
.step-nav-item.active .step-num{color:#fff;}
.step-lbl{
  font-size:11px;font-weight:700;
  color:#fff;
  white-space:nowrap;
  max-width:0;overflow:hidden;opacity:0;
  padding-right:0;
  transition:max-width 0.45s cubic-bezier(0.16,1,0.3,1),
             opacity 0.3s,
             padding-right 0.45s cubic-bezier(0.16,1,0.3,1);
}
.step-nav-item.active .step-lbl{
  max-width:80px;opacity:1;padding-right:12px;
}

@media(max-width:900px){
  #steps{
    height:auto;
    min-height:var(--viewport-under-header);
  }
  .steps-sticky{
    height:auto;
    min-height:var(--viewport-under-header);
    align-items:stretch;
  }
  .step-content{
    height:auto;
    min-height:var(--viewport-under-header);
    box-sizing:border-box;
  }
  .step-content:not(.active){
    display:none;
  }
  .step-content.active{
    position:relative;
    display:flex;
  }
  #step1,
  #step2,
  #step3,
  #step4{
    justify-content:flex-start;
    padding-top:72px;
    padding-bottom:118px;
    padding-left:5%;
    padding-right:5%;
  }
  #step1{
    gap:24px;
  }
  #step2,
  #step3,
  #step4{
    gap:24px;
  }
  #step1 .step-text-left,
  #step2 .step-text-right,
  #step3 .step-text-left,
  #step4 .step-text-right{
    max-width:min(90vw,360px);
    margin:0 auto;
    text-align:center;
    align-items:center;
  }
  #step1 .step-divider,
  #step2 .step-divider,
  #step3 .step-divider,
  #step4 .step-divider{
    margin:0 auto 16px;
  }
  .step-subtext{
    max-width:unset;
  }
  .step-dashboard-wrap{
    width:min(92vw,460px);
  }
  #step2 .step-phone,
  #step2 .phone-catalogue{
    width:196px !important;
  }
  #step3{
    gap:28px;
  }
  #step3 .s3-anchor{
    width:188px;
    margin-top:44px;
  }
  #step3 .phone-cart-wrap{
    width:188px;
    height:404px;
    border-radius:34px;
  }
  #step3 .s3-card{
    top:-72px;
    width:160px;
    height:100px;
  }
  #step3 .s3-card.entering{
    top:-28px;
  }
  #step3 .s3-card.tapped{
    top:8px;
  }
  #step3 .s3-card.retreating{
    top:-96px;
  }
  #step4 .s4-dash-wrap{
    width:min(92vw,460px);
  }
  .step-nav{
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
  }
}

@media(max-width:540px){
  #step1,
  #step2,
  #step3,
  #step4{
    padding-top:60px;
    padding-bottom:104px;
  }
  #step1,
  #step2,
  #step3,
  #step4{
    gap:20px;
  }
  .step-heading{
    font-size:clamp(18px,7vw,26px);
  }
  .step-subtext{
    font-size:12px;
  }
  .step-dashboard-wrap{
    width:min(94vw,380px);
  }
  #step2 .step-phone,
  #step2 .phone-catalogue{
    width:184px !important;
  }
  #step3 .s3-anchor{
    width:176px;
    margin-top:28px;
  }
  #step3 .phone-cart-wrap{
    width:176px;
    height:382px;
    border-radius:32px;
  }
  #step3 .s3-card{
    top:-48px;
    width:148px;
    height:93px;
  }
  #step3 .s3-card.entering{
    top:-18px;
  }
  #step3 .s3-card.tapped{
    top:10px;
  }
  #step3 .s3-card.retreating{
    top:-72px;
  }
  #step4 .s4-dash-wrap{
    width:min(94vw,380px);
  }
  .step-nav{
    bottom:20px;
    gap:6px;
  }
}

/* ─── ALL YOUR FINANCES ─── */
#finances{
  position:relative;
  min-height:var(--viewport-under-header);
  background:#100a06;
  display:flex;align-items:center;
  overflow:hidden;
}
.finances-rings{
  position:absolute;inset:0;
  perspective:800px;
  pointer-events:none;
}
.ring{
  position:absolute;
  border-radius:50%;
  transform-style:preserve-3d;
}
.ring-teal{
  width:900px;height:900px;
  top:50%;left:50%;
  transform:translate(-30%,-50%) rotateX(65deg);
  border:60px solid #1a6060;
  animation:ringRot 20s linear infinite;
}
.ring-maroon{
  width:700px;height:700px;
  top:50%;left:50%;
  transform:translate(-15%,-50%) rotateX(65deg);
  border:50px solid #4a1820;
  animation:ringRot 25s linear infinite reverse;
}
.ring-teal2{
  width:1100px;height:1100px;
  top:50%;left:50%;
  transform:translate(-25%,-50%) rotateX(65deg);
  border:40px solid #0e4040;
  animation:ringRot 30s linear infinite;
}
@keyframes ringRot{from{transform:translate(-30%,-50%) rotateX(65deg) rotateZ(0)}to{transform:translate(-30%,-50%) rotateX(65deg) rotateZ(360deg)}}

.finances-content{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:space-between;
  width:100%;max-width:1200px;
  margin:0 auto;
  padding:100px 60px;
  gap:40px;
}
.finances-text{flex:1;max-width:480px;}
.finances-heading{
  font-size:clamp(26px,3.5vw,48px);
  line-height:1.1;
  letter-spacing:-2px;
  margin-bottom:20px;
}
.finances-sub{font-size:16px;font-weight:300;color:rgba(255,255,255,0.6);margin-bottom:32px;}
.finances-cta-row{display:flex;flex-direction:column;gap:14px;align-items:flex-start;}
.get-started-btn{
  background:#fff;color:#1a1a1a;
  font-size:15px;font-weight:600;
  padding:14px 28px;border-radius:12px;
  text-decoration:none;
  font-family:'Clash Display',sans-serif;
  transition:transform 0.2s,background 0.2s;
}
.get-started-btn:hover{transform:scale(1.02);}
.store-btn-dark{
  display:flex;align-items:center;gap:10px;
  border:1.5px solid rgba(255,255,255,0.3);
  border-radius:12px;padding:10px 18px;
  color:#fff;text-decoration:none;
  min-width:150px;
  transition:border-color 0.2s;
}
.store-btn-dark:hover{border-color:#fff;}
.stores-row-dark{display:flex;gap:12px;flex-wrap:wrap;}

.finances-phone{
  flex-shrink:0;
  width:260px;
  background:#fff;
  border-radius:44px;
  overflow:hidden;
  box-shadow:0 40px 100px rgba(0,0,0,0.5);
  position:relative;z-index:2;
}
.finances-phone-notch{
  height:36px;background:#f8f0ee;
  display:flex;align-items:center;justify-content:center;
}
.notch-pill{width:80px;height:6px;background:#e0d0cc;border-radius:3px;}
.finances-phone-content{padding:14px;}
.fp-header{display:flex;align-items:center;gap:8px;margin-bottom:6px;}
.fp-avatar{width:26px;height:26px;border-radius:50%;background:linear-gradient(135deg,#ffcdb8,#e0a090);}
.fp-onboard-title{font-size:16px;font-weight:800;color:#fff;line-height:1.2;padding:14px;}
.fp-onboard-sub{font-size:11px;color:rgba(255,255,255,0.6);padding:0 14px 14px;}
.fp-onboard-bg{background:linear-gradient(135deg,#f8cdb8,#e08070);padding-top:60px;min-height:180px;position:relative;}
.fp-onboard-content{padding:16px;}
.fp-create-btn{background:#fff;color:#1a1a1a;font-size:12px;font-weight:700;border-radius:12px;padding:12px;text-align:center;margin:8px 14px;}
.fp-signin{font-size:10px;text-align:center;color:#888;padding:6px;padding-bottom:12px;}

/* ─── PRICING ─── */
#pricing{
  padding:110px 40px 90px;
  background:#fff;
  position:relative;
  overflow:hidden;
}
#pricing::before{
  content:'';position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:radial-gradient(ellipse 60% 50% at 50% 0%,rgba(15,238,128,0.06) 0%,transparent 100%);
  pointer-events:none;
}
.pricing-top{text-align:center;margin-bottom:60px;position:relative;}
.pricing-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  margin-bottom:20px;
}
.pricing-eyebrow-dot{
  width:6px;height:6px;border-radius:50%;background:#0fee80;
}
.pricing-eyebrow-text{
  font-size:12px;font-weight:500;color:#0fee80;letter-spacing:2px;text-transform:uppercase;
}
.pricing-heading{
  font-size:clamp(28px,3.8vw,52px);
  line-height:1.05;letter-spacing:-2px;
  margin-bottom:14px;
}
.pricing-sub{
  font-size:15px;font-weight:300;color:#888;
  max-width:380px;margin:0 auto;line-height:1.65;
}

/* Toggle */
.pricing-toggle{
  display:inline-flex;align-items:center;
  background:#f4f4f4;
  border-radius:50px;padding:4px;
  gap:0;margin-top:36px;
  position:relative;
}
.toggle-btn{
  font-size:13px;font-weight:500;color:#999;
  padding:9px 24px;border-radius:50px;
  cursor:pointer;transition:all 0.25s cubic-bezier(0.4,0,0.2,1);
  font-family:'Clash Display',sans-serif;
  white-space:nowrap;position:relative;z-index:1;
  display:flex;align-items:center;gap:8px;
}
.toggle-btn.active{color:#0fee80;font-weight:600;}
.toggle-slider{
  position:absolute;top:4px;left:4px;
  height:calc(100% - 8px);
  background:#0fee80;
  border-radius:50px;
  transition:all 0.28s cubic-bezier(0.4,0,0.2,1);
  z-index:0;
  pointer-events:none;
}
.toggle-badge{
  font-size:10px;font-weight:700;color:#fff;
  background:#0a0a0a;
  border-radius:50px;padding:2px 8px;
  letter-spacing:0.5px;
}
.toggle-btn.active .toggle-badge{color:#fff;background:rgba(0,0,0,0.12);}

/* Cards grid */
.pricing-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  max-width:900px;
  margin:0 auto;
  align-items:stretch;
}
@media(max-width:720px){.pricing-cards{grid-template-columns:1fr;}}

.pricing-card{
  background:#fafafa;
  border:1px solid #efefef;
  border-radius:24px;
  padding:36px 36px 32px;
  position:relative;
  transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s;
  display:flex;flex-direction:column;
}
.pricing-card:hover{transform:translateY(-2px);box-shadow:0 12px 40px rgba(0,0,0,0.08);border-color:#e0e0e0;}

.pricing-card.featured{
  background:#fff;
  border:1.5px solid #0fee80;
  border-radius:24px;
  box-shadow:0 8px 48px rgba(15,238,128,0.14);
  padding:36px 36px 32px;
  padding-top:52px; /* badge space */
}
.pricing-card.featured:hover{transform:translateY(-3px);box-shadow:0 16px 64px rgba(15,238,128,0.22);}

/* Spacer so non-featured card aligns its label with featured card's label (after badge) */
.pricing-card:not(.featured)::before{
  content:'';
  display:block;
  height:16px; /* matches badge visual offset */
}

.pc-badge{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:#0fee80;color:#0a0a0a;
  font-size:10px;font-weight:700;letter-spacing:2px;
  padding:6px 22px;
  border-radius:0 0 14px 14px;
  text-transform:uppercase;white-space:nowrap;
}
.pc-label{
  font-size:10px;font-weight:700;letter-spacing:2.5px;
  text-transform:uppercase;color:#0fee80;
  margin-bottom:20px;
}
.pc-price-row{
  display:flex;align-items:baseline;gap:2px;
  margin-bottom:6px;
  line-height:1;
  flex-wrap:nowrap;
}
.pc-currency{
  font-size:19px;font-weight:400;color:#555;
  line-height:1;
  margin-right:2px;
  flex-shrink:0;
}
.pc-amount{
  font-size:52px;font-weight:700;color:#0a0a0a;
  line-height:0.95;letter-spacing:-1px;
  flex-shrink:0;
}
.pc-cents{
  font-size:24px;font-weight:300;color:#9c9c9c;
  line-height:1;letter-spacing:0;
  margin-left:2px;
  flex-shrink:0;
}
.pc-period{
  font-size:13px;font-weight:300;color:#b5b5b5;
  line-height:1;
  margin-left:7px;
  white-space:nowrap;
  flex-shrink:0;
}
@media(max-width:720px){
  #pricing{padding:84px 20px 68px;}
  .pricing-top{margin-bottom:40px;}
  .pricing-eyebrow{margin-bottom:16px;}
  .pricing-heading{
    font-size:clamp(24px,9.2vw,36px);
    line-height:1.02;
    letter-spacing:-1.25px;
  }
  .pricing-sub{
    max-width:31ch;
    font-size:14px;
  }
  .pricing-toggle{margin-top:26px;}
  .toggle-btn{
    gap:6px;
    padding:8px 18px;
    font-size:12px;
  }
  .toggle-badge{
    font-size:9px;
    padding:2px 7px;
  }
  .pricing-cards{
    gap:14px;
    max-width:100%;
  }
  .pricing-card,
  .pricing-card.featured{
    border-radius:22px;
    padding:28px 22px 24px;
  }
  .pricing-card.featured{padding-top:42px;}
  .pricing-card:not(.featured)::before{height:10px;}
  .pc-badge{
    padding:6px 18px;
    border-radius:0 0 12px 12px;
    font-size:9px;
    letter-spacing:1.6px;
  }
  .pc-label{
    margin-bottom:16px;
    letter-spacing:2px;
  }
  .pc-price-row{gap:0;}
  .pc-currency{
    font-size:16px;
    margin-right:1px;
  }
  .pc-amount{
    font-size:42px;
    letter-spacing:-0.7px;
  }
  .pc-cents{font-size:19px;}
  .pc-period{
    font-size:12px;
    margin-left:5px;
  }
  .pc-annual-note{
    min-height:18px;
    margin-top:6px;
    font-size:11px;
  }
  .pc-subtitle{
    margin-bottom:24px;
    font-size:12px;
    line-height:1.45;
  }
  .pc-features li{
    gap:12px;
    padding:9px 0;
    font-size:12.5px;
  }
  .pc-cta{
    margin-top:20px;
    padding:14px 18px;
    font-size:12px;
  }
  .pricing-curie{
    margin-top:22px;
    padding:0 10px 40px;
    font-size:11.5px;
  }
}
@media(max-width:420px){
  #pricing{padding:76px 16px 60px;}
  .pricing-top{margin-bottom:32px;}
  .pricing-heading{
    font-size:clamp(22px,9.4vw,30px);
    letter-spacing:-1px;
  }
  .pricing-sub{
    font-size:13px;
    line-height:1.55;
  }
  .toggle-btn{
    padding:8px 14px;
    font-size:11.5px;
  }
  .pricing-card,
  .pricing-card.featured{padding:24px 18px 22px;}
  .pricing-card.featured{padding-top:38px;}
  .pc-label{
    font-size:9px;
    letter-spacing:1.8px;
  }
  .pc-currency{font-size:15px;}
  .pc-amount{font-size:38px;}
  .pc-cents{font-size:17px;}
  .pc-period{
    font-size:11px;
    margin-left:4px;
  }
  .pc-features li{font-size:12px;}
  .pc-check{
    width:16px;
    height:16px;
  }
  .pc-cta{letter-spacing:0.8px;}
}
.pc-annual-note{
  font-size:12px;color:#0fee80;
  font-weight:500;letter-spacing:0.2px;
  min-height:20px;margin-top:8px;
  display:flex;align-items:center;gap:5px;
}
.pc-subtitle{
  font-size:12.5px;color:#bbb;
  margin-top:12px;margin-bottom:32px;
  font-weight:300;letter-spacing:0.2px;
  line-height:1.5;
}

.pc-divider{height:1px;background:#f0f0f0;margin:4px 0 20px;}

.pc-features{list-style:none;display:flex;flex-direction:column;gap:0;flex:1;}
.pc-features li{
  display:flex;align-items:center;gap:14px;
  padding:10px 0;
  border-bottom:1px solid #f5f5f5;
  font-size:13px;font-weight:300;color:#444;
  line-height:1.4;
}
.pc-features li:last-child{border-bottom:none;}
.pc-check{
  width:18px;height:18px;border-radius:50%;
  background:#f0fdf6;
  border:1px solid rgba(15,238,128,0.3);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.pc-check svg{width:9px;height:9px;}

.pc-cta{
  margin-top:24px;
  display:block;text-align:center;
  padding:15px 20px;border-radius:12px;
  font-size:13px;font-weight:600;
  font-family:'Clash Display',sans-serif;
  text-decoration:none;
  transition:all 0.2s;
  letter-spacing:1px;
  text-transform:uppercase;
}
.pc-cta.free{
  background:transparent;
  border:1.5px solid #e8e8e8;
  color:#888;
}
.pc-cta.free:hover{border-color:#bbb;color:#333;background:#fafafa;}
.pc-cta.paid{
  background:#0fee80;color:#fff;
  box-shadow:0 4px 20px rgba(15,238,128,0.3);
}
.pc-cta.paid:hover{background:#0ddf76;box-shadow:0 6px 28px rgba(15,238,128,0.4);transform:translateY(-1px);}

/* Fees note inside cards */
.pricing-curie{
  text-align:center;
  font-size:12px;
  font-weight:300;
  color:#bbb;
  letter-spacing:0.2px;
  margin:28px auto 0;
  max-width:520px;
  line-height:1.6;
  padding:0 40px 60px;
}
.pricing-curie::before{
  content:'❤️ ';
  font-size:11px;
}
.pc-fees{
  margin-top:14px;
  text-align:center;
}
.pc-fees-text{
  font-size:14px;color:#ccc;font-weight:300;line-height:1.6;
  letter-spacing:0.2px;
  text-align:center;
}
.pc-fees-text strong{color:#bbb;font-weight:400;}


/* ─── INTERNATIONAL ─── */
#exchange{
  padding:100px 0 0;
  background:#f7fdf9;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.exchange-pill{
  display:inline-block;
  background:rgba(15,238,128,0.15);
  border:1.5px solid rgba(15,238,128,0.5);
  border-radius:50px;padding:7px 20px;
  font-size:13px;font-weight:400;color:#0a8c4a;
  margin-bottom:28px;
  letter-spacing:0.5px;
}
.exchange-heading{
  font-size:clamp(28px,4.5vw,62px);
  font-weight:600;color:#0a0a0a;
  line-height:1.0;
  letter-spacing:-2.5px;
  margin-bottom:20px;
  padding:0 40px;
}
.exchange-subhead{
  font-size:17px;font-weight:300;color:#666;
  max-width:480px;margin:0 auto 64px;
  line-height:1.65;
  padding:0 20px;
}

/* Sport icons — horizontal scrolling marquee row */
.sport-marquee-wrap{
  position:relative;
  width:100%;
  overflow:hidden;
  margin-bottom:64px;
  -webkit-mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.sport-marquee{
  --sport-gap:16px;
  --sport-loop-distance:calc(-50% - (var(--sport-gap) / 2));
  display:flex;
  gap:var(--sport-gap);
  width:max-content;
  animation:sportScroll 22s linear infinite;
  will-change:transform;
}
.sport-marquee:hover{ animation-play-state:paused; }
@keyframes sportScroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(var(--sport-loop-distance)); }
}
.sport-item{
  display:flex;flex-direction:column;align-items:center;gap:12px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:24px;
  padding:28px 32px 22px;
  width:148px;
  flex-shrink:0;
  box-shadow:0 2px 16px rgba(0,0,0,0.05);
  transition:transform 0.2s, box-shadow 0.2s;
}
.sport-item:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 32px rgba(15,238,128,0.15);
}
.sport-item .sp-icon{ font-size:42px; line-height:1; }
.sport-item .sp-label{
  font-size:13px;font-weight:400;color:#444;
  font-family:'Clash Display',sans-serif;
  white-space:nowrap;
}

/* Intl tagline strip */
.intl-strip{
  display:flex;align-items:center;justify-content:center;gap:10px;
  margin-bottom:52px;
  font-size:15px;font-weight:300;color:#888;
  padding:0 40px;
  flex-wrap:wrap;
}
.intl-strip strong{ color:#0a0a0a; font-weight:500; }
.intl-dot{ width:4px;height:4px;border-radius:50%;background:#0fee80;flex-shrink:0; }

/* ─── FLAG WATERFALL ─── */
.flag-waterfall{
  position:relative;
  width:100%;
  height:480px;
  overflow:hidden;
  display:flex;
  align-items:flex-start;
  gap:0;
  margin-top:0;
  -webkit-mask-image:linear-gradient(to bottom, transparent 0%, black 8%, black 78%, transparent 100%);
  mask-image:linear-gradient(to bottom, transparent 0%, black 8%, black 78%, transparent 100%);
}
.flag-col{
  display:flex;
  flex-direction:column;
  flex-shrink:0;
  will-change:transform;
}
.flag-col .flag-c{
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#fff;
  flex-shrink:0;
  user-select:none;
  line-height:1;
}


/* ─── LA FACTORY SECTION ─── */
#factory{
  position:relative;
  background:#f7fdf9;
  overflow:hidden;
  padding:110px 7% 90px;
}
/* Fine dot pattern */
#factory::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(rgba(15,238,128,0.18) 1.2px, transparent 1.2px);
  background-size:26px 26px;
  pointer-events:none;
  mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 18%, rgba(0,0,0,0.5) 72%, transparent 100%);
}
.factory-inner{
  position:relative;z-index:1;
  max-width:1180px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:start;
  padding-bottom:0;
}
/* LEFT copy */
.factory-left{padding-top:8px;}
.factory-tag{
  font-family:'Clash Display',sans-serif;
  font-size:11px;font-weight:600;letter-spacing:0.18em;
  color:#0aae5c;text-transform:uppercase;margin-bottom:22px;
  display:flex;align-items:center;gap:8px;
}
.factory-tag::before{
  content:'';display:inline-block;width:20px;height:2px;
  background:#0fee80;border-radius:2px;
}
.factory-title{
  font-family:'Clash Display',sans-serif;
  font-size:clamp(30px,3.5vw,50px);font-weight:800;line-height:1.04;
  color:#0a0a0a;margin-bottom:28px;letter-spacing:-0.025em;
}
.factory-title em{
  color:#0fee80;font-style:normal;
  position:relative;
}
.factory-title em::after{
  content:'';position:absolute;bottom:-3px;left:0;right:0;height:4px;
  background:#0fee80;border-radius:4px;opacity:0.35;
}
.factory-lead{
  font-size:17px;line-height:1.68;color:#1a1a1a;
  margin-bottom:18px;font-weight:500;
}
.factory-body{
  font-size:14.5px;line-height:1.72;color:#666;
  margin-bottom:24px;
}
.factory-tagline{
  font-size:15px;font-weight:700;color:#0a0a0a;margin-bottom:32px;
  font-family:'Clash Display',sans-serif;
}
.factory-cta{
  display:inline-flex;align-items:center;gap:10px;
  background:#0a0a0a;color:#fff;
  padding:15px 30px;border-radius:50px;
  font-family:'Clash Display',sans-serif;font-weight:700;font-size:14px;
  text-decoration:none;cursor:pointer;transition:transform 0.16s,box-shadow 0.16s;
}
.factory-cta:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(10,10,10,0.18);}
.factory-cta .cta-arrow{
  width:28px;height:28px;background:#0fee80;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
/* Metric pills */
.factory-metrics{
  display:flex;gap:12px;margin-top:36px;flex-wrap:wrap;
}
.factory-metric{
  display:flex;align-items:center;gap:8px;
  background:#fff;border:1.5px solid #e8f5ee;
  border-radius:40px;padding:8px 16px 8px 12px;
  box-shadow:0 2px 8px rgba(15,238,128,0.08);
}
.factory-metric-icon{font-size:16px;line-height:1;}
.factory-metric-val{
  font-family:'Clash Display',sans-serif;font-size:13px;font-weight:700;
  color:#0a0a0a;
}
.factory-metric-label{font-size:11px;color:#888;margin-left:2px;}

/* RIGHT steps + canvas */
.factory-right{position:relative;}
.factory-canvas-wrap{
  width:100%;max-width:560px;margin:0 auto 32px;
  border-radius:24px;overflow:hidden;
  background:#fff;border:1.5px solid #e8e8e8;
  box-shadow:0 8px 40px rgba(0,0,0,0.07);
  position:relative;
}
#factoryCanvas{
  display:block;
  width:100%;
  height:auto;
}
.factory-steps{display:flex;flex-direction:column;gap:0;}
.factory-step{
  display:flex;align-items:flex-start;gap:20px;
  padding:22px 0;
  border-bottom:1px solid #f0f0f0;
}
.factory-step:last-child{border-bottom:none;}
.factory-step-num{
  flex-shrink:0;width:40px;height:40px;border-radius:12px;
  background:#f5fdf8;border:1.5px solid #c6f0d8;
  display:flex;align-items:center;justify-content:center;
  font-family:'Clash Display',sans-serif;font-size:15px;font-weight:800;color:#0aae5c;
}
.factory-step-body{}
.factory-step-label{
  font-family:'Clash Display',sans-serif;font-size:14px;font-weight:700;
  color:#0a0a0a;margin-bottom:4px;
}
.factory-step-desc{font-size:13px;line-height:1.60;color:#888;}
@media(max-width:900px){
  .factory-inner{grid-template-columns:1fr;gap:40px;padding-bottom:40px;}
  #factory{padding-bottom:60px;}
}


/* ─── SNEP SECTION (FR only) ─── */
#snep-section{
  display:none;
  background:#f7fdf9;
  padding:48px 6% 64px;
}
.snep-inner{
  max-width:1120px;margin:0 auto;
}
.snep-banner{
  background:#fff;
  border:1.5px solid #e6f5ee;
  border-radius:20px;
  padding:32px 48px;
  display:flex;align-items:center;justify-content:space-between;
  gap:32px;
  box-shadow:0 4px 24px rgba(15,238,128,0.07);
}
.snep-copy{ flex:1; }
.snep-copy p{
  font-family:'Clash Display',sans-serif;
  font-size:clamp(15px,1.4vw,19px);
  font-weight:700;
  color:#0a0a0a;
  line-height:1.55;
  margin:0;
}
.snep-copy p + p{
  color:#888;
  font-weight:500;
  font-size:clamp(13px,1.1vw,15px);
  margin-top:5px;
}
.snep-rules-link{
  display:inline-block;
  margin-top:10px;
  font-size:12px;
  font-weight:500;
  color:#0fee80;
  text-decoration:none;
  letter-spacing:0.01em;
  transition:opacity 0.2s;
}
.snep-rules-link:hover{opacity:0.75;}
.snep-logos{
  display:flex;align-items:center;gap:24px;flex-shrink:0;
}
.snep-logo-snep{
  display:flex;align-items:center;gap:9px;
}
.snep-logo-snep .snep-s{
  width:40px;height:40px;background:#0fee80;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Clash Display',sans-serif;font-weight:900;font-size:18px;color:#0a0a0a;
}
.snep-logo-snep .snep-text{
  display:flex;flex-direction:column;
  font-size:8.5px;color:#888;line-height:1.35;font-weight:500;
  letter-spacing:0.02em;
}
.snep-logo-snep .snep-text strong{
  font-family:'Clash Display',sans-serif;font-size:15px;font-weight:800;
  color:#0a0a0a;letter-spacing:0;line-height:1.1;
}
.snep-divider{
  width:1px;height:36px;background:#e8e8e8;flex-shrink:0;
}
.snep-logo-occ{
  display:flex;align-items:center;gap:8px;
}
.snep-logo-occ .occ-icon{
  width:36px;height:36px;
  background:#f5f5f5;border:1.5px solid #e8e8e8;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.snep-logo-occ .occ-text{
  font-family:'Clash Display',sans-serif;font-weight:700;font-size:13px;color:#0a0a0a;
  letter-spacing:0.03em;
}
.snep-logo-occ .occ-sub{
  font-size:8px;color:#aaa;letter-spacing:0.06em;display:block;
  font-weight:500;margin-top:1px;
}
@media(max-width:700px){
  .snep-banner{flex-direction:column;align-items:flex-start;padding:24px 24px;}
  .snep-logos{
    width:100%;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:center;
    gap:10px;
  }
  .snep-divider{
    display:block;
    height:52px;
  }
  .snep-logo-snep,
  .snep-logo-occ{
    width:auto;
    min-width:0;
    justify-content:flex-start;
  }
  .snep-logo-snep svg,
  .snep-logo-occ svg{
    display:block;
  }
  .snep-logo-snep svg{
    width:clamp(132px,42vw,172px);
    height:auto;
  }
  .snep-logo-occ svg{
    width:clamp(102px,31vw,132px);
    height:auto;
  }
}

/* ─── TESTIMONIALS ─── */
#testimonials{
  position:relative;
  min-height:80vh;
  background:#1a1510;
  overflow:hidden;
  display:flex;align-items:center;
}
.testimonials-bg{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,0.5) 100%);
  z-index:1;
}
/* Fake photo using CSS gradient */
.testimonials-photo{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 20% 50%,#2a2018 0%,transparent 50%),
    radial-gradient(ellipse at 80% 30%,#1a1008 0%,transparent 50%),
    linear-gradient(135deg,#0a0808 0%,#2a1a10 30%,#1a1008 60%,#0a0808 100%);
  /* Simulate the warm-toned café interior */
}
/* Light bulbs hint */
.testimonials-lights{
  position:absolute;top:10%;left:10%;
  display:flex;gap:60px;z-index:1;opacity:0.5;
}
.light-bulb{
  width:2px;height:40px;
  background:rgba(255,200,100,0.5);
  border-radius:1px;
  position:relative;
}
.light-bulb::after{
  content:'';
  position:absolute;
  bottom:-6px;left:50%;transform:translateX(-50%);
  width:10px;height:10px;
  background:rgba(255,220,100,0.8);
  border-radius:50%;
  box-shadow:0 0 20px rgba(255,200,50,0.6);
}

.testimonials-content{
  position:relative;z-index:2;
  width:100%;max-width:900px;
  margin:0 auto;
  padding:80px 60px;
}
.testimonials-title{
  font-size:clamp(24px,3.5vw,46px);
  font-weight:600;color:#fff;
  text-align:center;
  letter-spacing:-2px;
  margin-bottom:48px;
}
.reviews-list{display:flex;flex-direction:column;gap:16px;max-width:500px;}
.review-card{
  background:rgba(30,25,20,0.85);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:20px 22px;
  backdrop-filter:blur(10px);
}
.review-header{font-size:13px;font-weight:600;color:#fff;margin-bottom:8px;}
.review-body{font-size:13px;font-weight:300;color:rgba(255,255,255,0.65);line-height:1.5;margin-bottom:16px;}
.review-author{display:flex;align-items:center;gap:10px;}
.review-avatar{
  width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:800;color:#fff;
  flex-shrink:0;
}
.av-green{background:#5a8f3c;}
.av-purple{background:#7040a8;}
.av-orange{background:#c05020;}
.review-name{font-size:13px;font-weight:400;color:#fff;}

/* ─── 1M USERS ─── */
/* ─── MILLION SECTION ─── */
#million{
  position:relative;
  background:#0fee80;
  text-align:center;
  overflow:hidden;
  min-height:500px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:0;
}

/* White upward chevron — covers bottom portion */
.million-chevron{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
}
.million-chevron::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100%;
  background:#fff;
  clip-path:polygon(0 100%, 50% 28%, 100% 100%);
}

/* Content sits above chevron */
.million-content{
  position:relative;
  z-index:2;
  padding:80px 40px 90px;
  width:100%;
}

.million-heading{
  font-size:clamp(38px,6.9vw,102px);
  font-weight:700;
  line-height:1.0;
  letter-spacing:-4px;
  margin-bottom:0;
  display:block;
}
/* Line 1: white on green */
.mh-line1{
  display:block;
  color:#fff;
}
/* Line 2: dark on white chevron */
.mh-line2{
  display:block;
  color:#0a0a0a;
  margin-top:4px;
}

.million-sub{
  font-size:16px;font-weight:300;color:#888;
  margin:28px auto 36px;
  max-width:380px;
}
.million-stores{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.store-btn-outlined{
  display:flex;align-items:center;gap:10px;
  border:1.5px solid #1a1a1a;
  border-radius:12px;padding:10px 20px;
  color:#1a1a1a;text-decoration:none;
  transition:background 0.2s,color 0.2s;
  min-width:150px;
}
.store-btn-text{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:12px;
  line-height:1.1;
  white-space:nowrap;
}
.store-btn-text small,
.store-btn-text span{
  display:inline;
  font-size:inherit;
}
.store-btn-text small{text-transform:none;}
.store-btn-outlined:hover{background:#1a1a1a;color:#fff;}


/* ─── FOOTER ─── */
footer{
  background:#fff;
  padding:60px 60px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-bottom:50px;
}
.footer-col-title{
  font-size:12px;font-weight:400;color:#aaa;
  text-transform:uppercase;letter-spacing:1.5px;
  margin-bottom:16px;
}
.footer-link{
  display:block;
  font-size:14px;font-weight:400;color:var(--red);
  text-decoration:none;
  margin-bottom:8px;
  transition:opacity 0.2s;
}
.footer-link:hover{opacity:0.7;}

.footer-divider{height:1px;background:#f0f0f0;margin:0 -60px 30px;}

.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:20px;
  padding-bottom:30px;
}
.footer-stores-row{display:flex;gap:12px;}
.footer-badges{display:flex;gap:8px;align-items:center;flex:1;justify-content:center;flex-wrap:wrap;}
.footer-whatsapp-btn{
  display:inline-flex;align-items:center;gap:10px;
  min-height:42px;padding:10px 18px;border-radius:999px;
  background:linear-gradient(135deg,#0fee80 0%,#09d96b 100%);
  color:#fff;text-decoration:none;font-size:13px;font-weight:600;
  letter-spacing:-0.01em;
  box-shadow:0 12px 28px rgba(15,238,128,0.22);
  transition:transform 0.2s ease,box-shadow 0.2s ease,opacity 0.2s ease;
}
.footer-whatsapp-btn:hover{
  transform:translateY(-1px) scale(1.01);
  box-shadow:0 16px 32px rgba(15,238,128,0.28);
}
.footer-whatsapp-icon{
  display:flex;align-items:center;justify-content:center;
  width:20px;height:20px;flex:none;
}
.footer-whatsapp-icon svg{width:18px;height:18px;}
.footer-whatsapp-label{white-space:nowrap;}
.footer-badge{
  height:32px;width:48px;border:1px solid #e8e8e8;border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  font-size:7px;font-weight:700;color:#888;text-align:center;
  line-height:1.2;
}
.footer-social{display:flex;gap:12px;align-items:center;flex-wrap:wrap;justify-content:flex-end;}
.social-btn{
  width:36px;height:36px;border-radius:50%;
  background:#1a1a1a;
  display:flex;align-items:center;justify-content:center;
  color:#fff;text-decoration:none;font-size:14px;
  transition:opacity 0.2s;
}
.social-btn:hover{opacity:0.8;}

.footer-lang-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0 30px;
  border-top:1px solid #f0f0f0;
}
.footer-lang{position:relative;display:flex;align-items:center;gap:6px;color:#444;font-size:14px;font-weight:400;cursor:pointer;transition:color 0.3s;}
.footer-lang svg{width:18px;height:18px;opacity:0.8;}
.footer-lang .lang-chevron{width:12px;height:12px;transition:transform 0.2s;}
.footer-lang.open .lang-chevron{transform:rotate(180deg);}
.footer-lang .nav-lang-dropdown{
  top:auto;
  bottom:calc(100% + 8px);
  left:0;
  right:auto;
}
.footer-lang.open .nav-lang-dropdown{opacity:1;pointer-events:auto;transform:translateY(0);}
.footer-made{font-size:13px;font-weight:400;color:#aaa;}

.footer-wordmark{
  margin:0;
  overflow:hidden;
  line-height:0;
}
.footer-wordmark-logo{
  display:block;
  width:clamp(22px,3.8vw,52px);
  height:auto;
  max-width:100%;
  opacity:0.28;
}

.footer-legal{
  padding:24px 0;
  border-top:1px solid #f0f0f0;
  font-size:11px;color:#aaa;
  line-height:1.6;
}

@media(max-width:640px){
  #factory{
    padding:88px 20px 56px;
  }
  .factory-inner{
    gap:28px;
  }
  .factory-metrics{
    gap:8px;
    margin-top:28px;
  }
  .factory-step{
    gap:14px;
    padding:18px 0;
  }
  .factory-step-num{
    width:34px;
    height:34px;
    border-radius:10px;
    font-size:13px;
  }
  footer{
    padding:44px 20px 0;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:24px 18px;
    margin-bottom:32px;
  }
  .footer-divider{
    margin:0 -20px 24px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding-bottom:24px;
  }
  .footer-stores-row{
    width:100%;
    flex-wrap:wrap;
  }
  .footer-badges{
    justify-content:flex-start;
  }
  .footer-social{
    width:100%;
    justify-content:flex-start;
  }
  .footer-whatsapp-label{
    white-space:normal;
  }
  .footer-lang-row{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:16px 0 24px;
  }
}

@media(max-width:480px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .footer-stores-row{
    flex-direction:column;
    align-items:stretch;
  }
  .footer-stores-row .store-btn-outlined{
    width:100%;
    justify-content:flex-start;
  }
}

/* Requested: remove tracking from the main landing titles */
.unify-title,
.steps-intro-title,
.step-heading,
.s5-headline,
.feature-label,
.pricing-heading,
.factory-title,
.exchange-heading,
.testimonials-title,
.million-heading{
  letter-spacing:0;
}

/* ─── SCROLL BAR ─── */
::-webkit-scrollbar{width:4px;}
::-webkit-scrollbar-track{background:#fff;}
::-webkit-scrollbar-thumb{background:var(--red);border-radius:2px;}
