body {
  font-family: 'Nunito', Inter, Arial, sans-serif;
  background: #f8fafc;
  color: #22223b;
  margin: 0;
  padding: 0;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1rem 0;
}
.logo-img {
  height: 48px;
}

header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hero h1 {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.15rem;
  color: #22223b;
  margin-bottom: 2rem;
}
.cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.cta-button.primary {
  background: #2563eb;
  color: #fff;
}
.cta-button.primary:hover {
  background: #1e40af;
}
.cta-button.secondary {
  background: #fbbf24;
  color: #22223b;
}
.cta-button.secondary:hover {
  background: #f59e42;
}

.benefits {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.benefit-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
  padding: 1.5rem 1rem;
  width: 180px;
  min-width: 150px;
  text-align: center;
}
.benefit-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.waitlist-section, .contact-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
  padding: 2rem 1.5rem;
  margin: 2rem 0;
}
.waitlist-section h2, .contact-section h2 {
  margin-bottom: 1.5rem;
  color: #2563eb;
}
.form-group {
  margin-bottom: 1.2rem;
}
label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
input, textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
button.cta-button {
  width: 100%;
  margin-top: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #64748b;
  font-size: 1rem;
  background: #f8fafc;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .benefit-list {
    flex-direction: column;
    align-items: center;
  }
  main {
    padding: 1rem 0.5rem 0 0.5rem;
  }
  .waitlist-section, .contact-section {
    padding: 1.2rem 0.5rem;
  }
} 