body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #f8f9fa;
  color: #222;
}

h1, h2, h5 {
  font-weight: 700;
}

p {
  font-size: 1.1rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url('https://images.unsplash.com/photo-1603098677067-e9d571b8fabc?auto=format&fit=crop&w=1950&q=80')
    no-repeat center center/cover;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  padding: 80px 20px;
}

.logo {
  max-width: 240px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

/* CTA Button */
.btn-gradient {
  background: linear-gradient(to right, #1e3a8a, #2563eb);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Features */
.features {
  background: #fff;
}

.feature-box {
  background: #f6f9fc;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  background: #eef2f8;
}

/* Waitlist */
.waitlist-section {
  background-color: #fff8db !important;
  padding: 60px 20px;
  color: #222 !important;
}

.waitlist-section h2 {
  color: #b45309;
  font-weight: 700;
}

.waitlist-section p {
  font-size: 1.2rem;
}

.waitlist-section iframe {
  background-color: white;
  border-radius: 12px;
  border: none;
  width: 100%;
  max-width: 900px;
  height: 600px;
}

/* Footer */
footer {
  background-color: #000;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    max-width: 180px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .waitlist-section iframe {
    height: 500px;
  }
}
