* {
  box-sizing: border-box;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
}

body {
  color: #0f172a;
}

/* Announcement */
.announcement {
  background: #dcfce7;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
.badge {
  background: #16a34a;
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 8px;
}

/* Navbar */
.navbar {
  background: #ecfdf5;
  border-bottom: 1px solid #e5e7eb;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 800;
}
.logo span {
  color: #22c55e;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #334155;
}
.nav-actions button {
  margin-left: 10px;
}

/* Buttons */
.btn-primary {
  background: #22c55e;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.btn-outline {
  border: 1px solid #94a3b8;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
}
.large {
  padding: 14px 28px;
  font-size: 16px;
}
.full {
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(#ecfdf5, #ffffff);
  padding: 100px 20px;
  text-align: center;
}
.hero-content {
  max-width: 900px;
  margin: auto;
}
.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}
.hero h1 span {
  color: #16a34a;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.avatars img {
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid white;
}

/* Waitlist */
.waitlist {
  padding: 50px 20px;   /* reduced top & bottom space */
  background: #f8fafc;
}

.waitlist-container {
  max-width: 900px;     /* wider, more premium */
  margin: auto;
  text-align: center;
}

.waitlist input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
}
/* Waitlist highlight text */
.waitlist-highlight {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 10px;
  color: #0f172a;
}

.waitlist-subtext {
  font-size: 18px;
  color: #475569;
  margin-bottom: 32px;
}

.success {
  display: none;
  margin-top: 20px;
  background: #dcfce7;
  padding: 15px;
  border-radius: 10px;
}


/* Testimonials */
.testimonials {
  padding: 120px 20px;
  text-align: center;
}
.pill {
  background: #dcfce7;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 20px;
}
.testimonial-grid {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.card img {
  border-radius: 50%;
  margin-bottom: 10px;
}
.card span {
  color: #64748b;
  font-size: 14px;
}

/* Footer */
footer {
  background: #dcfce7;
  padding: 80px 20px;
}
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
}
footer a {
  display: block;
  margin: 8px 0;
  color: #334155;
}
.hiring {
  background: #22c55e;
  color: white;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-socials a {
  font-size: 20px;
  color: #475569;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #22c55e; /* matches your green theme */
  transform: translateY(-3px);
}

