body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  color: #1a1a1a;
  background-color: #fff;
}

header {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
}

.hero {
  background: linear-gradient(to bottom right, #ffe8e8, #fff4f4);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.hero-content h1 span {
  color: #f52c5f;
  display: block;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 2rem;
  color: #333;
}

.waitlist-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.waitlist-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 260px;
}

.waitlist-form button {
  padding: 0.75rem 1.2rem;
  background-color: #f52c5f;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.waitlist-form button:hover {
  background-color: #e02453;
}

.note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.how-it-works {
  text-align: center;
  padding: 4rem 2rem 5rem;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.how-it-works p {
  font-size: 1rem;
  color: #555;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  width: 280px;
  text-align: center;
}

.circle {
  width: 40px;
  height: 40px;
  background-color: #f52c5f;
  color: white;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.circle.yellow {
  background-color: #fdd835;
  color: #000;
}

.circle.green {
  background-color: #4dd0e1;
  color: #000;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  padding: 2rem 0;
}
