* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b17;
  color: #fff;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 6%;
  background: radial-gradient(circle at top, #6a11cb, #0b0b17);
  animation: fadeIn 1.2s ease-in;
}

.content {
  max-width: 600px;
  text-align: center;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  animation: slideDown 1s ease;
}

/* HEADLINE */
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  animation: slideUp 1s ease;
}

h1 span {
  color: #ffd700;
}

/* TEXT */
p {
  font-size: 17px;
  color: #e0e0e0;
  margin-bottom: 35px;
  animation: fadeIn 1.8s ease;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #1ebea5);
  color: #000;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: glow 2s infinite;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 45px;
}

.stats h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  color: #ffd700;
}

.stats span {
  font-size: 13px;
  opacity: 0.85;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 30px rgba(37, 211, 102, 1); }
  100% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}
