body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #050508;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0,0,0,0.6);
}

.logo {
  color: #00e6ff;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle, #00e6ff22, #000);
}

.hero h2 {
  font-size: 40px;
}

.download-btn img {
  width: 200px;
  margin-top: 20px;
}

/* FEATURES */
.features {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* ROADMAP */
.roadmap {
  padding: 80px;
  text-align: center;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.step {
  background: #00e6ff22;
  padding: 15px;
  border-radius: 10px;
}

/* FAQ */
.faq {
  padding: 80px;
}

.faq-item {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #777;
}


/* GLOW EFFECT */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: cyan;
  filter: blur(120px);
  opacity: 0.2;
  top: -100px;
  left: -100px;
}

/* BUTTON ANIMATION */
.download-btn {
  padding: 14px 30px;
  background: #00e6ff;
  color: black;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 0 20px #00e6ff;
  transition: 0.3s;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #00e6ff;
}

.leader-item {
  display: flex;
  justify-content: space-between;
  background: #111;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
}