:root {
  --green-dark: #0B3B2D;
  --green-field: #2C4A38;
  --green-sprout: #5B7361;
  --yellow-harvest: #B08D3E;
  --terracotta: #8C4A2F;
  --cream: #F4EFE6;
  --max-width: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--green-dark);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

h1, h2, .logo {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* subtle ambient glow, decorative only */
.bg-glow {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 70vh;
  background:
    radial-gradient(circle at 25% 20%, rgba(176, 141, 62, 0.16), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(91, 115, 97, 0.22), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.topbar {
  position: relative;
  z-index: 1;
  padding: 1.75rem 0 0.5rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-mark {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terracotta);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(3rem, 6vw, 4rem);
  text-align: center;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-harvest);
  margin: 0 0 1.25rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--cream);
}

h1 .accent {
  color: var(--yellow-harvest);
}

.lede {
  max-width: 620px;
  margin: 0 auto 2.75rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(244, 239, 230, 0.82);
}

.waitlist {
  max-width: 480px;
  margin: 0 auto 3.5rem;
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.waitlist h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.waitlist-sub {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: rgba(244, 239, 230, 0.72);
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  background: var(--yellow-harvest);
  color: var(--green-dark);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.whatsapp-cta:hover {
  background: #c19c4a;
}

.whatsapp-cta:active {
  transform: translateY(1px);
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.55);
  min-height: 1.2em;
}

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

.pillars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.75);
  background: rgba(44, 74, 56, 0.4);
  border-radius: 12px;
  padding: 1rem 0.5rem;
}

.pillar-icon {
  font-size: 1.4rem;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.5);
}

@media (max-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}
