* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: #050713;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(160, 0, 255, .25), transparent 30%),
    radial-gradient(circle at 90% 40%, rgba(140, 0, 255, .25), transparent 35%),
    linear-gradient(#070916, #03040b);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .25;
  z-index: -1;
}

.navbar {
  width: 100%;
  padding: 24px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2bd6, #7c2cff);
  display: grid;
  place-items: center;
}

.nav-actions,
.buttons,
.store-buttons {
  display: flex;
  gap: 14px;
}

.btn {
  border: 0;
  color: #fff;
  padding: 13px 25px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #c000ff, #7c2cff);
  box-shadow: 0 0 25px rgba(176, 36, 255, .45);
}

.btn.ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.16);
}

.btn.big {
  min-width: 160px;
}

.section {
  width: 100%;
  padding: 80px 7%;
  position: relative;
}

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #e8d6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.tag i {
  color: #1cff78;
  font-size: 8px;
}

.tag.purple {
  background: rgba(184, 42, 255, .13);
  color: #d76cff;
}

h1 {
  font-size: clamp(45px, 6vw, 86px);
  line-height: 1.05;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(35px, 4.4vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h1 span,
h2 span {
  color: #c34cff;
}

p {
  color: #b8b4ca;
  line-height: 1.7;
  font-size: 17px;
}

.hero-text p {
  max-width: 620px;
  margin-bottom: 30px;
}

.free {
  color: #d9ffe8;
  margin-top: 22px;
  font-size: 15px;
}

.free i {
  color: #20f47c;
}

.hero-art {
  height: 560px;
  position: relative;
}

.globe {
  position: absolute;
  left: 5%;
  bottom: 40px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(190, 52, 255, .35), rgba(94, 0, 160, .12) 55%, transparent 70%);
  box-shadow: 0 0 80px rgba(181, 43, 255, .8);
}

.globe i {
  font-size: 270px;
  color: #ba44ff;
  filter: drop-shadow(0 0 35px #c73cff);
}

.phone {
  position: absolute;
  right: 8%;
  bottom: 10px;
  width: 230px;
  height: 430px;
  border: 8px solid #151827;
  border-radius: 34px;
  background: linear-gradient(160deg, #13061f, #090b18);
  transform: rotate(12deg);
  box-shadow: 0 0 45px rgba(183, 39, 255, .55);
  padding: 25px 18px;
}

.phone-top {
  width: 65px;
  height: 7px;
  background: #222638;
  border-radius: 20px;
  margin: 0 auto 35px;
}

.balance {
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.phone-grid span {
  height: 70px;
  border-radius: 16px;
  background: rgba(164, 49, 255, .18);
  border: 1px solid rgba(255,255,255,.08);
}

.coin {
  position: absolute;
  font-size: 55px;
  color: #ffb323;
  filter: drop-shadow(0 0 18px #ff8a00);
}

.c1 { left: 0; bottom: 110px; }
.c2 { left: 100px; bottom: 30px; }
.c3 { right: 0; bottom: 170px; }

.trust-box {
  grid-column: 1 / 3;
  margin-top: -40px;
  padding: 20px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(20px);
  margin-top: 50px;
}

.trust-box div {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: #ddd;
  font-weight: 700;
}

.trust-box i {
  color: #b540ff;
  font-size: 25px;
}

.intro,
.reviews,
.cta {
  text-align: center;
}

.intro p,
.global p,
.earnings p,
.reviews p,
.cta p {
  max-width: 620px;
  margin: 0 auto 35px;
}

.mini-grid,
.earn-grid,
.stats,
.pay-grid {
  display: grid;
  gap: 18px;
}

.mini-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  margin: 45px auto;
}

.mini-grid div,
.earn-grid div,
.stats div,
.pay-grid div,
.step-card,
.review-card,
.paid-box,
.cta {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.mini-grid div {
  padding: 35px;
}

.mini-grid i,
.earn-grid i {
  font-size: 50px;
  color: #c84dff;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(199, 61, 255, .7));
}

.steps {
  max-width: 1000px;
  margin: auto;
}

.step-card {
  min-height: 145px;
  padding: 30px 35px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  align-items: center;
}

.step-card b {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(190, 57, 255, .16);
  color: #d75cff;
  font-size: 25px;
}

.step-card i {
  font-size: 62px;
  color: #c84dff;
  text-align: center;
}

.green { color: #19e6a1 !important; }
.gold { color: #ffca43 !important; }
.red { color: #ff6969 !important; }
.blue { color: #77a8ff !important; }

.earn-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 950px;
}

.earn-grid div {
  padding: 45px 35px;
  text-align: center;
}

.global {
  text-align: center;
}

.map {
  margin: 40px auto;
  max-width: 900px;
  height: 350px;
  display: grid;
  place-items: center;
  color: #b83aff;
  opacity: .95;
}

.map i {
  font-size: 330px;
  filter: drop-shadow(0 0 45px rgba(181, 53, 255, .8));
}

.stats {
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  margin: auto;
}

.stats div {
  padding: 35px;
}

.stats h3,
.paid-box h3 {
  font-size: 45px;
  color: #d34fff;
}

.earnings {
  text-align: center;
}

.paid-box {
  max-width: 850px;
  padding: 45px;
  margin: 45px auto;
}

.pay-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  margin: 35px auto 0;
}

.pay-grid div {
  padding: 25px;
  font-size: 20px;
  font-weight: 800;
}

.pay-grid i {
  color: #bd42ff;
  margin-right: 8px;
}

.review-card {
  max-width: 750px;
  margin: 40px auto;
  text-align: left;
  padding: 50px;
}

.review-card i {
  font-size: 38px;
  color: #bd42ff;
}

.review-card .right {
  float: right;
}

.app {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 60px;
}

.store-buttons button {
  background: #080912;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: left;
}

.store-buttons i {
  font-size: 25px;
  margin-right: 8px;
}

.small-phone {
  position: relative;
  right: auto;
  bottom: auto;
  margin: auto;
}

.cta {
  max-width: 900px;
  margin: 70px auto;
  padding: 60px 35px;
}

.rocket {
  font-size: 60px;
  color: #d84eff;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px #ba34ff);
}

.cta a {
  color: #d45cff;
  text-decoration: none;
  font-weight: 800;
}

.footer {
  padding: 55px 7%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}

.footer p {
  margin-top: 18px;
  max-width: 350px;
}

.footer h4 {
  margin-bottom: 18px;
}

.footer a {
  display: block;
  color: #aaa6bd;
  text-decoration: none;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .hero,
  .app {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .buttons,
  .nav-actions,
  .store-buttons {
    justify-content: center;
  }

  .hero-art {
    height: 620px;
  }

  .trust-box {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .step-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .earn-grid,
  .mini-grid,
  .stats,
  .pay-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .phone {
    right: 20%;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 18px 5%;
  }

  .btn {
    padding: 11px 16px;
  }

  .section {
    padding: 60px 5%;
  }

  .globe {
    width: 300px;
    height: 300px;
  }

  .globe i {
    font-size: 200px;
  }

  .phone {
    width: 185px;
    height: 350px;
    right: 6%;
  }

  .map i {
    font-size: 220px;
  }
}