/* smooth scroll globally */
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0; padding: 0;
  background: linear-gradient(to bottom right, #ede7f6, #d1c4e9);
  color: #333; text-align: center;
}

/* fade-in reveal */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  padding: 2em 1em;
}
.logo {
  width: 90px; margin-bottom: 1em;
}
h1 {
  font-size: 2em; color: #4a148c;
}
.highlight { color: #673ab7; }
.subheading {
  font-size: 1.2em; margin-top: 0.2em;
}

.features, .how-it-works {
  padding: 2em 1em;
}

.features ul {
  list-style: none; padding: 0; font-size: 1.1em;
}
.features li {
  margin: 0.5em 0;
}

.how-it-works p {
  max-width: 600px; margin: 0 auto; font-size: 1.1em;
}

.waitlist {
  background: #fff; padding: 2em 1em;
  margin: 2em auto; max-width: 400px;
  border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.waitlist form {
  display: flex; flex-direction: column; gap: 1em; margin-top: 1em;
}
.waitlist input {
  padding: 0.8em; font-size: 1em;
  border: 1px solid #ccc; border-radius: 6px;
}
.waitlist button {
  padding: 0.8em; background-color: #673ab7;
  color: #fff; border: none; border-radius: 6px;
  font-size: 1em; cursor: pointer;
}
.waitlist button:hover {
  background-color: #5e35b1;
}
.thank-you {
  margin-top: 1em; color: #2e7d32; font-weight: bold;
}

footer {
  padding: 2em 1em; background-color: #ede7f6; font-size: 0.9em;
}
.coming-soon {
  margin-top: 0.5em; font-style: italic; color: #666;
}
