/* RESET & VARS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #060608;
  --bg2: #0c0c10;
  --bg3: #131318;
  --bg4: #1a1a22;
  --bg5: #222230;
  --p: #00e676;
  --pd: #00c853;
  --n: #39ff14;
  --lm: #b9ff66;
  --t1: #eaeaea;
  --t2: #8a8a9a;
  --t3: #55556a;
  --bd: #1e1e2a;
  --gld: #ffd700;
  --org: #ff6d00;
  --blu: #448aff;
  --red: #ff5252;
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}
html {
  background: var(--bg);
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
body {
  font-family: var(--fb);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: none;
}
::selection {
  background: var(--p);
  color: var(--bg);
}
@media (pointer: coarse) {
  body,
  a,
  button {
    cursor: auto !important;
  }
  #cur {
    display: none;
  }
}

/* CURSOR */
.cur {
  position: fixed;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--p);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition:
    width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    background 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cur.h {
  width: 48px;
  height: 48px;
  background: rgba(0, 230, 118, 0.1);
  border-color: var(--n);
}

/* LOADER */
.ldr {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s,
    visibility 0.6s;
}
.ldr.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ldr-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  animation: lp 1.2s ease-in-out infinite;
}
@keyframes lp {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
.ldr-trk {
  width: 200px;
  height: 3px;
  background: var(--bg4);
  border-radius: 2px;
  overflow: hidden;
}
.ldr-fill {
  height: 100%;
  width: 0%;
  background: var(--p);
  border-radius: 2px;
  transition: width 0.3s;
}
.ldr-txt {
  margin-top: 16px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--t3);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}
.nav.sc {
  background: rgba(6, 6, 8, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-l {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 102;
}
.nav-l img {
  height: 32px;
}
.nav-lt {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-lt em {
  font-style: normal;
  font-weight: 500;
  color: var(--t2);
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 102;
}
.lt {
  display: flex;
  border: 1px solid var(--bd);
  border-radius: 8px;
  overflow: hidden;
}
.lb {
  padding: 6px 14px;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: transparent;
  color: var(--t3);
  border: none;
  transition: all 0.2s;
}
.lb.a {
  background: var(--p);
  color: var(--bg);
}

/* HAMBURGER */
.hb {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--bd);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color 0.3s;
}
.hb:hover {
  border-color: var(--p);
}
.hb span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--t1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  transform-origin: center;
}
.hb.o span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hb.o span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hb.o span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* MENU OVERLAY */
.mo {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(6, 6, 8, 0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.77, 0, 0.18, 1),
    visibility 0.5s;
}
.mo.op {
  opacity: 1;
  visibility: visible;
}
.mo-in {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 60px;
}
.mo-lk {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mo-lk li {
  overflow: hidden;
}
.ml {
  display: block;
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--t2);
  transition:
    color 0.3s,
    transform 0.3s;
  transform: translateY(100%);
}
.mo.op .ml {
  transform: translateY(0);
  transition:
    color 0.3s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mo.op .mo-lk li:nth-child(1) .ml {
  transition-delay: 0.05s;
}
.mo.op .mo-lk li:nth-child(2) .ml {
  transition-delay: 0.1s;
}
.mo.op .mo-lk li:nth-child(3) .ml {
  transition-delay: 0.15s;
}
.mo.op .mo-lk li:nth-child(4) .ml {
  transition-delay: 0.2s;
}
.mo.op .mo-lk li:nth-child(5) .ml {
  transition-delay: 0.25s;
}
.mo.op .mo-lk li:nth-child(6) .ml {
  transition-delay: 0.3s;
}
.ml:hover {
  color: var(--p);
}
.ml .mn {
  font-size: 14px;
  font-weight: 600;
  color: var(--p);
  margin-right: 16px;
  vertical-align: super;
}
.mo-imgs {
  position: relative;
  width: 360px;
  height: 450px;
  flex-shrink: 0;
}
.mo-fi {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.mo.op .mo-fi {
  opacity: 1;
}
.mo-fi:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation: mf 6s ease-in-out infinite;
  transition-delay: 0.35s;
}
.mo-fi:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 5%;
  animation: mf 7s ease-in-out infinite 1s;
  transition-delay: 0.45s;
}
.mo-fi:nth-child(3) {
  width: 140px;
  height: 140px;
  bottom: 5%;
  left: 20%;
  animation: mf 5.5s ease-in-out infinite 0.5s;
  transition-delay: 0.55s;
}
.mo-fi:nth-child(4) {
  width: 90px;
  height: 90px;
  top: 5%;
  right: 20%;
  animation: mf 6.5s ease-in-out infinite 1.5s;
  transition-delay: 0.4s;
}
@keyframes mf {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}
.mo-ft {
  position: absolute;
  bottom: 40px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.mo-ft a {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: var(--p);
  transition: opacity 0.3s;
}
.mo-ft a:hover {
  opacity: 0.7;
}
.mo-sc {
  display: flex;
  gap: 24px;
}
.mo-sc a {
  font-size: 13px;
  color: var(--t3);
  text-transform: lowercase;
}

/* MARQUEE */
.mq {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  background: var(--bg2);
}
.mq-in {
  display: inline-flex;
  animation: mqs 30s linear infinite;
}
.mq:hover .mq-in {
  animation-play-state: paused;
}
.mq-it {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--t3);
}
.mq-it .dt {
  width: 6px;
  height: 6px;
  background: var(--p);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes mqs {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.06) 0%, transparent 70%);
  top: 20%;
  right: -10%;
  pointer-events: none;
}
.hero-gr {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 230, 118, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 118, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 50% 70% at 70% 40%, black, transparent);
  pointer-events: none;
}
.hero-t {
  font-family: var(--fd);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 900px;
}
.hero-t .ln {
  display: block;
  overflow: hidden;
}
.hero-t .ln-i {
  display: block;
  transform: translateY(110%);
}
.gt {
  background: linear-gradient(135deg, var(--p) 0%, var(--lm) 50%, var(--p) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sh 5s ease-in-out infinite;
}
@keyframes sh {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-bt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 420px;
}
.hero-cg {
  display: flex;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fd);
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}
.bp {
  padding: 16px 36px;
  font-size: 15px;
  background: var(--p);
  color: var(--bg);
}
.bp:hover {
  background: var(--n);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 230, 118, 0.3);
}
.bg {
  padding: 16px 36px;
  font-size: 15px;
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--bd);
}
.bg:hover {
  border-color: var(--p);
  color: var(--p);
}

/* HERO MASCOT */
.hero-mw {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-55%);
  z-index: 1;
}
.hero-mc {
  width: clamp(260px, 28vw, 420px);
  filter: drop-shadow(0 30px 80px rgba(0, 230, 118, 0.1));
  animation: fh 7s ease-in-out infinite;
}
@keyframes fh {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  33% {
    transform: translateY(-14px) rotate(1.5deg);
  }
  66% {
    transform: translateY(-6px) rotate(-1deg);
  }
}
.hero-orb {
  position: absolute;
  border: 1px solid rgba(0, 230, 118, 0.06);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-o1 {
  width: 500px;
  height: 500px;
}
.hero-o2 {
  width: 380px;
  height: 380px;
  border-style: dashed;
  border-color: rgba(0, 230, 118, 0.04);
}
.hero-fl {
  position: absolute;
  z-index: 2;
}
.hero-fl img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.hf1 {
  top: 5%;
  left: -15%;
  animation: fi 5s ease-in-out infinite;
}
.hf1 img {
  width: 80px;
}
.hf2 {
  bottom: 10%;
  left: -20%;
  animation: fi 6s ease-in-out infinite 1s;
}
.hf2 img {
  width: 72px;
}
.hf3 {
  top: -5%;
  right: -15%;
  animation: fi 7s ease-in-out infinite 0.5s;
}
.hf3 img {
  width: 88px;
  border-radius: 20px;
}
.hf4 {
  bottom: 0;
  right: -10%;
  animation: fi 5.5s ease-in-out infinite 1.5s;
}
.hf4 img {
  width: 68px;
}
@keyframes fi {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

/* SECTIONS */
section {
  position: relative;
}
.pad {
  padding: 140px 40px;
}
.lbl {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lbl::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--p);
}
.txl {
  font-family: var(--fd);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.mw7 {
  max-width: 700px;
}
.mb8 {
  margin-bottom: 80px;
}
.mb6 {
  margin-bottom: 60px;
}

/* PROBLEM */
.prb {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
}
.prb-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.pi {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 16px;
  transition: border-color 0.3s;
}
.pi:hover {
  border-color: var(--red);
}
.pe {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pi h4 {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pi p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.5;
}

/* WHATSAPP MOCK */
.wa {
  background: #0b141a;
  border-radius: 20px;
  padding: 20px 14px;
  max-width: 340px;
  margin: 0 auto;
  border: 1px solid #1a2730;
  position: relative;
}
.wah {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1a2730;
  margin-bottom: 12px;
}
.wav {
  width: 36px;
  height: 36px;
  background: #2a3942;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.wag {
  font-weight: 600;
  font-size: 15px;
  color: #e9edef;
}
.wac {
  font-size: 11px;
  color: #8696a0;
}
.wms {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.wm {
  max-width: 88%;
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 12.5px;
  line-height: 1.35;
  background: #1f2c34;
  color: #e9edef;
  align-self: flex-start;
  border-top-left-radius: 0;
}
.wm .n {
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}
.wm .n.c1 {
  color: #25d366;
}
.wm .n.c2 {
  color: #53bdeb;
}
.wm .n.c3 {
  color: #ffb300;
}
.wm .n.c4 {
  color: #ff5252;
}
.wm .t {
  font-size: 10px;
  color: #8696a0;
  float: right;
  margin: 3px 0 0 10px;
}
.wst {
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 3px;
  background: var(--red);
  transform: rotate(-2deg);
  border-radius: 2px;
  opacity: 0.85;
}

/* FEATURES */
.fsw {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -40px;
  padding: 0 40px 20px;
}
.fsw::-webkit-scrollbar {
  display: none;
}
.frow {
  display: flex;
  gap: 20px;
  width: max-content;
}
.fc {
  width: 340px;
  padding: 32px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
  flex-shrink: 0;
}
.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p), var(--n));
  opacity: 0;
  transition: opacity 0.3s;
}
.fc:hover {
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-4px);
}
.fc:hover::before {
  opacity: 1;
}
.fi {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}
.fi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.fc p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
}
.ft {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.ftm {
  background: rgba(0, 230, 118, 0.1);
  color: var(--p);
}
.ftv {
  background: rgba(68, 138, 255, 0.1);
  color: var(--blu);
}

/* SPLIT PANELS */
.spl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.sp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}
.sp:first-child {
  border-right: 1px solid var(--bd);
}
.sp::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.sp:first-child::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 230, 118, 0.06) 0%,
    transparent 70%
  );
}
.sp:last-child::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(68, 138, 255, 0.06) 0%,
    transparent 70%
  );
}
.sp:hover::after {
  opacity: 1;
}
.spi {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sp:hover .spi {
  transform: scale(1.08) translateY(-4px);
}
.spi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spt {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.sp:first-child:hover .spt {
  color: var(--p);
}
.sp:last-child:hover .spt {
  color: var(--blu);
}
.sps {
  font-size: 15px;
  color: var(--t2);
  text-align: center;
  max-width: 280px;
}

/* GAMIFICATION */
.gam {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
}
.gaml {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pc {
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--bg3), var(--bg4));
  border: 1px solid var(--bd);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.pc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p), var(--n), var(--blu));
}
.pct {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pctr {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gld);
}
.pcr {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 800;
  color: var(--p);
  letter-spacing: -0.02em;
}
.pcaw {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.pca {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--p);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.15);
}
.pca img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pcnm {
  text-align: center;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pclv {
  text-align: center;
  font-size: 12px;
  color: var(--p);
  font-weight: 600;
  margin-bottom: 16px;
}
.pcsg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pcs {
  text-align: center;
  padding: 10px 6px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}
.pcsv {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pcsl {
  font-size: 10px;
  color: var(--t3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pcxp {
  margin-top: 16px;
  height: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
}
.pcxf {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--p), var(--n));
  border-radius: 3px;
}
.pcxt {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 10px;
  color: var(--t3);
  font-weight: 600;
}
.gls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gi {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 16px;
  transition: border-color 0.3s;
}
.gi:hover {
  border-color: var(--p);
}
.gic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(0, 230, 118, 0.06);
  border-radius: 12px;
}
.gi h4 {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.gi p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

/* ROADMAP */
.rmg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.rmg::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: var(--bd);
}
.rmi {
  text-align: center;
}
.rmq {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--p);
  text-transform: uppercase;
}
.rmd {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 26px auto 20px;
  position: relative;
  z-index: 2;
}
.rmd.on {
  background: var(--p);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.35);
}
.rmd.of {
  background: var(--bg4);
  border: 2px solid var(--bd);
}
.rmt {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.rmds {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

/* CTA */
.cta {
  text-align: center;
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.cta-gl {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta .txl {
  margin-bottom: 20px;
}
.cta p {
  font-size: 17px;
  color: var(--t2);
  max-width: 460px;
  margin: 0 auto 40px;
}

/* WAITLIST FORM */
.wl-form {
  max-width: 500px;
  margin: 32px auto 0;
  text-align: left;
}
.wl-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.wl-inp,
.wl-sel {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 12px;
  color: var(--t1);
  font-family: var(--fb);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.wl-inp:focus,
.wl-sel:focus {
  border-color: var(--p);
}
.wl-inp::placeholder {
  color: var(--t3);
}
.wl-sel {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238A8A9A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.wl-sel option {
  background: var(--bg3);
  color: var(--t1);
}
.wl-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  cursor: pointer;
}
.wl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wl-msg {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}
.wl-msg.ok {
  color: var(--p);
}
.wl-msg.err {
  color: var(--red);
}
.wl-note {
  font-size: 14px;
  color: var(--t3);
  margin-top: 24px;
}
.wl-note a {
  color: var(--p);
}
@media (max-width: 640px) {
  .wl-row {
    flex-direction: column;
  }
}

/* TRUST BADGES */
.trust {
  text-align: center;
  padding: 48px 24px;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.trust-icon {
  font-size: 20px;
}
.trust-label {
  font-size: 14px;
  color: var(--t2);
  font-weight: 500;
}
@media (max-width: 640px) {
  .trust-badges {
    gap: 12px;
  }
  .trust-badge {
    padding: 10px 16px;
  }
}

/* FOOTER */
footer {
  padding: 48px 40px 32px;
  border-top: 1px solid var(--bd);
  background: var(--bg2);
}
.ftop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.flogo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flogo img {
  height: 28px;
}
.flogo span {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 16px;
}
.fkn {
  font-size: 13px;
  color: var(--t3);
}
.fkn a {
  color: var(--p);
}
.ltk {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--bd);
  margin-bottom: 24px;
}
.ltk-in {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: ls 20s linear infinite;
  width: max-content;
}
.ltk-in span {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--t3);
  white-space: nowrap;
  opacity: 0.5;
}
@keyframes ls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.fcpy {
  text-align: center;
  font-size: 12px;
  color: var(--t3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    padding: 0 24px 40px;
  }
  .hero-mw {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: center;
    margin-top: 40px;
  }
  .hero-mc {
    width: 220px;
    margin: 0 auto;
  }
  .hero-fl,
  .hero-orb {
    display: none;
  }
  .hero-bt {
    flex-direction: column;
    gap: 32px;
  }
  .pad {
    padding: 100px 24px;
  }
  .prb-g {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .spl {
    grid-template-columns: 1fr;
  }
  .sp:first-child {
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
  .gaml {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rmg {
    grid-template-columns: 1fr 1fr;
  }
  .rmg::before {
    display: none;
  }
  .mo-imgs {
    display: none;
  }
  .mo-in {
    padding: 0 24px;
  }
  .nav {
    padding: 16px 24px;
  }
}
@media (max-width: 640px) {
  .hero-t {
    font-size: clamp(36px, 10vw, 60px);
  }
  .rmg {
    grid-template-columns: 1fr;
  }
  .ml {
    font-size: 32px;
  }
  .hero-cg {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    justify-content: center;
    width: 100%;
  }
}
/* Footer links */
.flinks {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  font-size: 13px;
  color: var(--t3);
}
.flinks a {
  color: var(--t3);
  text-decoration: none;
  transition: color 0.2s;
}
.flinks a:hover {
  color: var(--t2);
}

/* Live badge under hero CTAs */
.hero-live {
  margin-top: 20px;
  font-size: 15px;
  color: var(--p);
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

/* Download buttons section */
.dl-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.dl-btn {
  min-width: 220px;
  justify-content: center;
  font-size: 17px;
  padding: 16px 32px;
}

@media (pointer: coarse) {
  .cur {
    display: none;
  }
  body {
    cursor: auto;
  }
  a,
  button {
    cursor: pointer;
  }
}
