:root{
  --bg-1:#79c7ff;
  --bg-2:#2f6fbc;
  --bg-3:#071327;
  --surface:rgba(255,255,255,.06);
  --surface-2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.14);
  --stroke-strong:rgba(255,255,255,.22);
  --text:#f6f8ff;
  --muted:rgba(227,233,255,.76);
  --muted-2:rgba(227,233,255,.54);
  --gold-1:#ffd96c;
  --gold-2:#f4bf20;
  --gold-text:#10131f;
  --cyan:#79f1dd;
  --shadow:0 18px 50px rgba(0,0,0,.28);
  --radius:28px;
}

*{box-sizing:border-box}
body{
  margin:0;
  min-height:100dvh;
  padding-bottom:env(safe-area-inset-bottom);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:transparent;
  overflow-x:hidden;
}
html{scroll-behavior:smooth}

body{
  margin:0;
  min-height:100dvh;
  padding-bottom: env(safe-area-inset-bottom);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg-1) 0%, var(--bg-2) 42%, var(--bg-3) 100%);
  overflow-x:hidden;
}

img{max-width:100%; display:block}
button,input,textarea{font:inherit}

.bg{
  position:fixed;
  inset:0;
  z-index:-2;
  overflow:hidden;
  pointer-events:none;
}

.bg__gradient{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 720px at 50% -8%, rgba(255,255,255,.18), transparent 52%),
    radial-gradient(900px 560px at 18% 16%, rgba(121,241,221,.10), transparent 58%),
    radial-gradient(900px 560px at 82% 20%, rgba(114,193,255,.16), transparent 58%),
    linear-gradient(180deg, #79c7ff 0%, #4d93de 22%, #21549c 58%, #071327 100%);
}

.bg__glow{
  display:none;
}

.bg__glow--1{
  width:420px;
  height:420px;
  top:8%;
  left:-80px;
  background:rgba(121,241,221,.08);
}

.bg__glow--2{
  width:520px;
  height:520px;
  top:20%;
  right:-120px;
  background:rgba(114,193,255,.12);
}

.bg__glow--3{
  width:560px;
  height:560px;
  bottom:-180px;
  left:18%;
  background:rgba(255,255,255,.05);
}

.bg__bubbles{
  position:absolute;
  inset:0;
}

.bg__bubbles span{
  position:absolute;
  left:var(--left);
  bottom:-120px;
  width:var(--size);
  height:var(--size);
  border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,.03) 64%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 20px rgba(121,241,221,.04);
  opacity:.16;
  animation:bubbleUp var(--duration) linear infinite;
  animation-delay:var(--delay);
}

@keyframes bubbleUp{
  0%{
    transform:translateY(0) scale(.95);
    opacity:0;
  }
  8%{
    opacity:.12;
  }
  50%{
    opacity:.18;
  }
  100%{
    transform:translateY(-120vh) scale(1.08);
    opacity:0;
  }
}

.wrap{
  width:min(1160px, calc(100vw - 40px));
  margin:118px auto 84px;
}

.section{
  padding:56px 0;
}

.section__head h2{
  margin:0 0 7px;
  font-size:clamp(36px, 4vw, 54px);
  letter-spacing:.06em;
}

.section__head p{
  margin:0;
  color:var(--muted);
  font-size:18px;
}

.section__head--center{
  text-align:center;
}

.nav{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 28px;
  background:linear-gradient(to bottom, rgba(7,19,39,.38), rgba(7,19,39,.14));
  border-bottom:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(16px) saturate(140%);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--text);
  min-width:max-content;
}

.brand__coin{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 26px rgba(0,0,0,.16);
}

.brand__coin img{
  width:70%;
  height:70%;
  object-fit:contain;
}

.brand__coin--pump img{
  width:64%;
  height:64%;
}

.brand__coin img{
  width:78%;
  height:78%;
  object-fit:contain;
}

.brand__text{
  font-family:"Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight:800;
  font-size:20px;
  letter-spacing:.04em;
}

.hero__title,
.section__head h2,
.howCard__title,
.roadmap__content h3,
.community__cta,
.nav__buy,
.menu__buy{
  font-family:"Sora", Inter, ui-sans-serif, system-ui, sans-serif;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px;
  border-radius:16px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
}

.nav__links a{
  text-decoration:none;
  color:rgba(245,248,255,.92);
  font-size:13px;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  transition:background .2s ease, color .2s ease;
}

.nav__links a:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
}

.nav__buy,
.menu__buy,
.btn--primary,
.community__cta,
.contract__copy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  color:var(--gold-text);
  background:linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  border:1px solid rgba(255,217,108,.72);
  box-shadow:
    0 8px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.34);
}

.nav__buy{
  min-width:158px;
  height:44px;
  padding:0 16px;
  border-radius:12px;
  font-size:12px;
  letter-spacing:.02em;
}

.nav__burger{
  display:none;
  width:56px;
  height:56px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
  cursor:pointer;
}

.nav__burger span{
  display:block;
  width:22px;
  height:2px;
  margin:5px auto;
  background:#fff;
  border-radius:2px;
}

.menu{
  position:fixed;
  inset:0;
  z-index:60;
  display:none;
  background:rgba(0,0,0,.44);
}

.menu.isOpen{
  display:block;
}

.menu__panel{
  position:absolute;
  right:14px;
  top:14px;
  width:min(360px, 92vw);
  border-radius:24px;
  background:rgba(10,17,36,.94);
  border:1px solid var(--stroke);
  padding:16px;
  box-shadow:var(--shadow);
}

.menu__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}

.menu__title{
  font-weight:900;
  letter-spacing:.06em;
}

.menu__close{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.08);
  color:var(--text);
  cursor:pointer;
}

.menu__link{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:800;
}

.menu__link:hover{
  background:rgba(255,255,255,.08);
}

.menu__divider{
  height:1px;
  background:rgba(255,255,255,.12);
  margin:10px 0 14px;
}

.menu__buy{
  width:100%;
  height:48px;
  border-radius:14px;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(360px, 500px);
  gap:42px;
  align-items:center;
  min-height:min(720px, calc(100vh - 170px));
  padding:18px 0 28px;
}

.hero__left{
  max-width:560px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(235,242,255,.74);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
}

.pill__dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#7ff5dc;
  box-shadow:
    0 0 0 0 rgba(127,245,220,.45),
    0 0 18px rgba(127,245,220,.75),
    0 0 34px rgba(127,245,220,.30);
  animation:pillPulse 2.2s ease-in-out infinite;
}

@keyframes pillPulse{
  0%,100%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(127,245,220,.42),
      0 0 18px rgba(127,245,220,.72),
      0 0 34px rgba(127,245,220,.28);
  }
  50%{
    transform:scale(1.08);
    box-shadow:
      0 0 0 8px rgba(127,245,220,0),
      0 0 24px rgba(127,245,220,.92),
      0 0 46px rgba(127,245,220,.38);
  }
}

.hero__title{
  margin:18px 0 14px;
  font-family:"Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size:clamp(46px, 6vw, 72px);
  font-weight:900;
  line-height:.94;
  letter-spacing:-.05em;
  text-shadow:
    0 0 24px rgba(255,255,255,.10),
    0 10px 24px rgba(0,0,0,.16);
}

.hero__sub{
  margin:0;
  color:var(--muted);
  font-size:clamp(18px, 2vw, 22px);
  line-height:1.55;
  max-width:30ch;
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  white-space:nowrap;
  line-height:1;
  min-height:56px;
  padding:0 22px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.08);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.btn--ghost{
  background:rgba(255,255,255,.10);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 10px 26px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.btn--ghost:hover,
.btn--primary:hover,
.nav__buy:hover,
.menu__buy:hover,
.community__cta:hover,
.contract__copy:hover{
  transform:translateY(-2px);
}

.hero__right{
  display:flex;
  justify-content:center;
  align-items:center;
}

.heroBubble{
  position:relative;
  width:min(470px, 92vw);
  aspect-ratio:1/1;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,.14), transparent 58%),
    radial-gradient(circle at 70% 78%, rgba(114,193,255,.14), transparent 64%),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 30px 80px rgba(4,10,26,.45),
    inset 0 0 30px rgba(121,241,221,.08);
}

.heroBubble__ring{
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.12);
}

.heroBubble__glow{
  position:absolute;
  width:92px;
  height:92px;
  right:12%;
  top:14%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(121,241,221,.62), rgba(121,241,221,.08) 70%);
  filter:blur(.2px);
}

.heroBubble::after{
  content:"";
  position:absolute;
  width:46px;
  height:46px;
  left:16%;
  bottom:18%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(121,241,221,.72), rgba(121,241,221,.08) 70%);
}

.hero__img{
  width:64%;
  max-width:360px;
  filter:drop-shadow(0 24px 50px rgba(0,0,0,.34));
  animation:heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-10px) rotate(-1deg)}
}

.contractSection{
  padding:8px 0 8px;
}

.contractCard{
  padding:18px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
}

.contract__label{
  color:var(--muted-2);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:12px;
}

.contract__row{
  display:flex;
  gap:12px;
  align-items:center;
}

.contract__code{
  flex:1;
  min-width:0;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(6,14,30,.72);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  font-size:18px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.contract__copy{
  min-width:128px;
  height:54px;
  border-radius:18px;
  cursor:pointer;
}

.toast{
  min-height:20px;
  margin-top:10px;
  color:rgba(255,255,255,.84);
  font-weight:700;
}

.how{
  padding-top:56px;
  padding-bottom:52px;
}

.howCards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:18px;
}

.howCard{
  min-height:240px;
  padding:24px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.055));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 30px rgba(0,0,0,.10);
  display:flex;
  flex-direction:column;
}

.howCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.howCard__icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
}

.howCard__icon svg{
  width:24px;
  height:24px;
  display:block;
}

.howCard__num{
  font-size:15px;
  font-weight:900;
  color:rgba(255,255,255,.74);
  letter-spacing:.08em;
}

.howCard__title{
  margin-top:22px;
  font-size:28px;
  font-weight:900;
  line-height:1.08;
}

.howCard__text{
  margin-top:14px;
  color:var(--muted);
  font-size:17px;
  line-height:1.52;
  max-width:26ch;
}

.roadmap{
  padding-top:34px;
  padding-bottom:26px;
}

.roadmap .section__head p{
  max-width:560px;
  margin:0 auto;
}

.roadmap__timeline{
  position:relative;
  width:min(980px, 100%);
  margin:22px auto 0;
  padding-left:84px;
}

.roadmap__line{
  position:absolute;
  left:36px;
  top:10px;
  bottom:10px;
  width:2px;
  border-radius:999px;
  background:linear-gradient(
    180deg,
    rgba(255,217,108,.78) 0%,
    rgba(255,217,108,.18) 100%
  );
}

.roadmap__item{
  position:relative;
  display:grid;
  grid-template-columns:68px 1fr;
  gap:20px;
  align-items:start;
}

.roadmap__item + .roadmap__item{
  margin-top:24px;
}

.roadmap__node{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color:var(--gold-text);
  border:1px solid rgba(255,217,108,.72);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:
    0 10px 24px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.34);
  position:relative;
  z-index:2;
}

.roadmap__content h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.08;
}

.roadmap__content p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width:36ch;
}

.community{
  padding-top:28px;
  padding-bottom:20px;
}

.community__actions{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.community__cta{
  min-width:228px;
  height:52px;
  padding:0 22px;
  border-radius:16px;
}

.community__socials{
  display:flex;
  justify-content:center;
  gap:12px;
}

.community__socialBtn{
  width:56px;
  height:56px;
  border-radius:16px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.community__socialBtn svg{
  width:24px;
  height:24px;
  display:block;
}
.community__socialBtn{
  display:grid;
  place-items:center;
}

.community__socialBtn--tiktok svg{
  width:26px;
  height:26px;
}

.community__socialBtn svg{
  transform:translateY(.5px);
}
.footer{
  margin-top:36px;
  padding:18px 0 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--muted-2);
  font-size:14px;
}

.footer a{
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}

@media (max-width:980px){
  .hero{
    grid-template-columns:1fr;
    gap:30px;
    min-height:auto;
  }

  .hero__right{
    order:-1;
  }

  .hero__left{
    max-width:none;
  }

  .howCards{
    grid-template-columns:1fr;
  }

  .roadmap__timeline{
    width:100%;
  }
}

@media (max-width:860px){
  .nav{
    padding:12px 16px;
  }

  .nav__links{
    display:none;
  }

  .nav__buy{
    display:none;
  }

  .nav__burger{
    display:block;
  }

  .brand__text{
    font-size:18px;
  }

.brand__coin{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 26px rgba(0,0,0,.16);
}
  .brand__coin--pump{
  background:rgba(255,255,255,.08);
}
}

@media (max-width:700px){
  .wrap{
    width:min(calc(100vw - 24px), 100%);
    margin:96px auto 62px;
  }

  .section{
    padding:38px 0;
  }

  .section__head h2{
    font-size:30px;
  }

  .section__head p{
    font-size:16px;
  }

  .hero{
    gap:24px;
    padding:0 0 16px;
  }

  .heroBubble{
    width:min(88vw, 520px);
  }

  .hero__img{
    width:72%;
  }

  .hero__title{
    font-size:60px;
    margin:14px 0 14px;
  }

  .hero__sub{
    font-size:17px;
    max-width:none;
  }

  .hero__cta{
    flex-direction:column;
    align-items:stretch;
  }

 .hero__cta .btn{
  width:100%;
  min-height:58px;
  justify-content:center;
}

  .contractCard{
    padding:16px;
    border-radius:28px;
  }

  .contract__row{
    flex-direction:column;
    align-items:stretch;
  }

  .contract__code{
    white-space:normal;
    word-break:break-all;
    font-size:16px;
  }

  .contract__copy{
    width:100%;
    min-width:0;
  }

  .how{
    padding-top:40px;
    padding-bottom:40px;
  }

  .howCards{
    gap:14px;
    margin-top:16px;
  }

  .howCard{
    min-height:auto;
    padding:22px;
    border-radius:28px;
  }

  .howCard__icon{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .howCard__title{
    margin-top:18px;
    font-size:22px;
  }

  .howCard__text{
    font-size:16px;
    max-width:none;
  }

  .howCard__num{
    font-size:16px;
  }

  .roadmap{
    padding-top:28px;
    padding-bottom:20px;
  }

  .roadmap__timeline{
    padding-left:52px;
    margin-top:20px;
  }

  .roadmap__line{
    left:20px;
    top:8px;
    bottom:8px;
  }

  .roadmap__item{
    grid-template-columns:50px 1fr;
    gap:16px;
  }

  .roadmap__item + .roadmap__item{
    margin-top:18px;
  }

  .roadmap__node{
    width:40px;
    height:40px;
    font-size:11px;
  }

  .roadmap__content h3{
    font-size:20px;
    margin-bottom:6px;
  }

  .roadmap__content p{
    font-size:16px;
    max-width:none;
  }

  .community{
    padding-top:24px;
    padding-bottom:24px;
  }
.community__actions{
  margin-top:12px;
}
  .community__cta{
    width:100%;
    max-width:320px;
  }

  .community__socialBtn{
    width:52px;
    height:52px;
  }

  .footer{
    margin-top:26px;
    font-size:13px;
  }
}
/* ===== HERO BUTTON FIX ===== */
.hero__cta .btn--primary{
  background: linear-gradient(180deg, #ffd96c 0%, #f4bf20 100%) !important;
  color: #10131f !important;
  border: 1px solid rgba(255,217,108,.72) !important;
  box-shadow:
    0 10px 26px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.hero__cta .btn--ghost{
  background: rgba(255,255,255,.10) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow:
    0 10px 26px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
}

/* ===== SOCIAL BUTTONS WHITE ===== */
.community__socialBtn{
  color:#ffffff !important;
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.22) !important;
}

.community__socialBtn svg{
  width:24px !important;
  height:24px !important;
  color:#ffffff !important;
  fill:currentColor !important;
}

/* ===== MORE UNDERWATER FEEL ===== */
.bg__gradient{
  background:
    radial-gradient(900px 680px at 78% 14%, rgba(114,193,255,.18), transparent 64%),
    radial-gradient(720px 540px at 16% 22%, rgba(121,241,221,.07), transparent 60%),
    radial-gradient(500px 300px at 50% 10%, rgba(255,255,255,.05), transparent 70%),
    linear-gradient(180deg, #071327 0%, #0a1d3c 42%, #12376c 100%) !important;
}

.bg__bubbles span{
  opacity:.22 !important;
  border:1px solid rgba(255,255,255,.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 0 24px rgba(121,241,221,.05) !important;
}

/* extra tiny bubbles */
.bg__bubbles::before,
.bg__bubbles::after{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:repeat;
  pointer-events:none;
}

.bg__bubbles::before{
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.08) 0 1.5px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.09) 0 1.5px, transparent 3px);
  background-size: 240px 240px, 320px 320px, 280px 280px, 360px 360px;
  opacity:.22;
}

.bg__bubbles::after{
  background-image:
    radial-gradient(circle at 15% 70%, rgba(121,241,221,.10) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 40%, rgba(121,241,221,.08) 0 2px, transparent 4px),
    radial-gradient(circle at 80% 75%, rgba(121,241,221,.08) 0 2px, transparent 4px);
  background-size: 420px 420px, 520px 520px, 620px 620px;
  opacity:.16;
}

/* ===== MOBILE POLISH ===== */
@media (max-width:700px){
  .hero__cta .btn{
    min-height:58px;
    font-size:16px;
  }

  .community__socialBtn{
    width:54px !important;
    height:54px !important;
  }
}


.bg::before{
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 20% 28%, rgba(121,241,221,.05), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(114,193,255,.06), transparent 22%);
  filter:blur(28px);
  opacity:.75;
}

.bg::after{
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255,255,255,.028) 0 10px,
      rgba(255,255,255,0) 10px 26px
    ),
    repeating-linear-gradient(
      65deg,
      rgba(255,255,255,.018) 0 12px,
      rgba(255,255,255,0) 12px 30px
    );
  mix-blend-mode:screen;
  opacity:.14;
  animation:waterDrift 18s linear infinite;
}

@keyframes waterDrift{
  0%{ transform:translate3d(0,0,0) scale(1.02); }
  50%{ transform:translate3d(-2%,1.5%,0) scale(1.04); }
  100%{ transform:translate3d(0,0,0) scale(1.02); }
}
.brand__coin--pump{
  background:rgba(255,255,255,.08);
}

.brand__coin--pump{
  background:rgba(255,255,255,.08);
}
.wrap{
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
