/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: #0d1224;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #a855f7;
}

.menu a {
  margin-left: 22px;
  font-size: 14px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  gap: 40px;
  background: radial-gradient(circle at top right,#1a1440,#0b0f1a);
}

.hero-left {
  flex: 1;
}

.badge {
  display: inline-block;
  background: rgba(168,85,247,0.15);
  color: #cbbcff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #a855f7;
}

.hero-left p {
  font-size: 16px;
  color: #cfd3ff;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-right {
  flex: 1;
  text-align: right;
}

.hero-right img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 60px rgba(168,85,247,.35));
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: #aaa;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}
