/* ── Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #4a6741;
  --green-dark: #3d5636;
  --green-light: #e8ede6;
  --bg: #f8f7f4;
  --bg-alt: #f0eeea;
  --text: #2d2d2d;
  --text-muted: #5a5a5a;
  --text-light: #888;
  --white: #fff;
  --radius: 8px;
  --max-width: 960px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navigation ──────────────────────────────────── */
.nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--green-light);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-link:hover {
  background: var(--green-dark);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero-logo {
  display: block;
  width: 280px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--green-dark);
}

.hero-powered {
  margin-top: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ── What It Does ────────────────────────────────── */
.what {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.8rem;
  color: var(--green);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.what-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--green-light);
}

.what-card h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.what-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Features ────────────────────────────────────── */
.features {
  padding: 4rem 0;
}

.features-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--green-light);
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.feature-text h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Waitlist ────────────────────────────────────── */
.waitlist {
  padding: 4rem 0;
  background: var(--bg-alt);
  text-align: center;
}

.waitlist p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--green);
}

.waitlist-form button {
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--green-dark);
}

.waitlist-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  min-height: 1.4em;
}

.waitlist-msg.success {
  color: var(--green);
}

.waitlist-msg.error {
  color: #a04040;
}

.waitlist-count {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text-muted);
}

/* ── Pricing ─────────────────────────────────────── */
.pricing {
  padding: 4rem 0;
  text-align: center;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

.pricing-card .badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--green-light);
  color: var(--green);
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--green-light);
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 700px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-logo {
    width: 200px;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form button {
    width: 100%;
  }
}
