*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #0F6E56;
  --sage: #1D9E75;
  --mist: #E1F5EE;
  --linen: #F7F3EE;
  --ink: #2C2C2A;
  --stone: #888780;
  --border: rgba(44,44,42,0.12);
  --serif: 'Lora', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  border: 0.5px solid var(--forest);
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover {
  background: var(--forest);
  color: #fff;
}

/* HERO */
.hero {
  padding: 72px 0 56px;
  border-bottom: 0.5px solid var(--border);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 520px;
}
.hero-headline em {
  font-style: italic;
  color: var(--forest);
}
.hero-subhead {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero-input {
  font-family: var(--sans);
  font-size: 14px;
  padding: 11px 16px;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  width: 240px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}
.hero-input:focus {
  border-color: var(--sage);
}
.hero-input::placeholder {
  color: var(--stone);
}
.hero-btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.hero-btn:hover {
  background: var(--sage);
}
.hero-note {
  font-size: 12px;
  color: var(--stone);
}

/* SECTIONS */
section {
  padding: 56px 0;
  border-bottom: 0.5px solid var(--border);
}
section:last-of-type {
  border-bottom: none;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 520px;
}
.section-body strong {
  color: var(--ink);
  font-weight: 500;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.stat {
  background: var(--linen);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.5;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.feature {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feature-icon svg {
  width: 18px;
  height: 18px;
}
.feature-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.feature-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.65;
}

/* FOUNDER */
.founder-card {
  background: var(--linen);
  border-radius: 14px;
  padding: 28px;
  margin-top: 8px;
}
.founder-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--forest);
  flex-shrink: 0;
}
.founder-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.founder-role {
  font-size: 12px;
  color: var(--stone);
}
.founder-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  border-left: 2px solid var(--sage);
  padding-left: 16px;
  margin-bottom: 16px;
}
.founder-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.8;
}
.founder-body strong {
  color: var(--ink);
  font-weight: 500;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.price-card {
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
}
.price-card.featured {
  border: 2px solid var(--sage);
}
.price-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mist);
  color: var(--forest);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.price-period {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 10px;
}
.price-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
}

/* WAITLIST BOTTOM */
.waitlist-bottom {
  background: var(--mist);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  margin: 0;
  border: none;
}
.waitlist-bottom .section-label {
  justify-content: center;
  display: block;
}
.waitlist-bottom .section-headline {
  margin-bottom: 12px;
}
.waitlist-bottom .section-body {
  margin: 0 auto 28px;
}
.waitlist-bottom .hero-form {
  justify-content: center;
}

/* FOOTER */
footer {
  padding: 32px 0;
  text-align: center;
  border-top: 0.5px solid var(--border);
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer-contact {
  font-size: 13px;
  color: var(--stone);
}
.footer-contact a {
  color: var(--forest);
  text-decoration: none;
}

/* SUCCESS STATE */
.success-msg {
  display: none;
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  margin-top: 10px;
}

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px 20px;
  background: linear-gradient(to top, #ffffff 70%, transparent);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  background: var(--forest);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  box-shadow: 0 4px 16px rgba(15,110,86,0.25);
}
.sticky-cta-btn:hover {
  background: var(--sage);
}
@media (max-width: 640px) {
  .sticky-cta { display: block; }
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }

/* RESPONSIVE */
@media (max-width: 520px) {
  .hero-headline { font-size: 28px; }
  .stats { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .hero-input { width: 100%; }
  .hero-btn { width: 100%; }
  .waitlist-bottom { padding: 28px 20px; }
  .waitlist-bottom .hero-input { width: 100%; }
  .waitlist-bottom .hero-btn { width: 100%; }
}
