body {
  font-family: 'Inter', sans-serif;
  /*background: #0A2540;*/
    background: linear-gradient(180deg, #0A2540 0%, #071B2E 100%);
  color: #FFFFFF;
  margin: 0; padding: 0;
  text-align: center;
}
.logo {
  width: 180px; margin: 30px auto;
}
h1 {
  color: #00E0A1;
  font-size: 1.8em;
}
.intro p {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 1.6em;
}
.waitlist-form {
  margin-top: 20px;
}
.waitlist-form input {
  padding: 12px;
  border: none;
  border-radius: 6px 0 0 6px;
  width: 250px;
}
.waitlist-form button {
  padding: 12px 18px;
  border: none;
  /*background: #00E0A1;*/
  background: linear-gradient(90deg, #00E0A1 0%, #00B2B2 100%);
  color: #0A2540;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}
footer {
  margin-top: 60px;
  font-size: 0.9em;
  opacity: 0.7;
  text-align: center;
}
footer .trust {
  margin-top: 10px;
}
footer .links a {
  color: #9bdcff;
  text-decoration: none;
}
footer .links a:hover {
  text-decoration: underline;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: center;
  max-width: 420px;
  color: #fff;
}
.benefits li {
  margin: 8px 0;
  font-size: 1em;
}
.site-footer {
  margin-top: 60px;
  padding: 24px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.footer-nav a {
  color: #00E0A1;
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav .dot {
  color: #FFFFFF;
  opacity: 0.35;
}
.how-it-works {
  /*background: #0A2540;*/
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.steps div {
  max-width: 240px;
}
.steps h3 {
  color: #00E0A1;
  font-size: 1.2em;
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
