* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #2b1055, #0b032d);
  color: white;
  min-height: 100vh;
}

.header {
  padding: 40px;
  text-align: center;
}

/* HERO */

.hero {
  text-align: center;
  padding: 100px 20px;
}

.logo {
  width: 140px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 18px;
  color: #c7b7ff;
  margin-bottom: 40px;
}

.main-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff5fa2, #7b6cff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* FEATURES */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
  padding: 80px 10%;
}

.feature {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.feature h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.feature p {
  color: #d8ccff;
  font-size: 15px;
}

/* WAITLIST */

.waitlist {
  text-align: center;
  padding: 100px 20px;
}

.waitlist h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.waitlist p {
  color: #c7b7ff;
  margin-bottom: 30px;
}

.waitlist form {
  max-width: 400px;
  margin: auto;
  display: flex;
  gap: 10px;
}

.waitlist input {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

.waitlist button {
  padding: 14px 20px;
  border-radius: 10px;
  border: none;
  background: #7b6cff;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 40px;
  color: #8f7cff;
  font-size: 13px;
}
