/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #EDE8DD;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 640px; }
a { color: #1B7A4A; text-decoration: none; }
a:hover { color: #145C38; }
img { max-width: 100%; }

/* ── Nav ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1148px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1B7A4A;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: #1B7A4A;
  color: #fff;
  border-color: #1B7A4A;
}
.btn-primary:hover { background: #145C38; border-color: #145C38; color: #fff; }
.btn-secondary {
  background: transparent;
  color: #1B7A4A;
  border-color: #1B7A4A;
}
.btn-secondary:hover { background: #1B7A4A10; }
.btn-outline {
  background: transparent;
  color: #1A1A1A;
  border-color: #C8C0AC;
}
.btn-outline:hover { border-color: #1B7A4A; color: #1B7A4A; }
.btn-full { width: 100%; }

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #EDE8DD 0%, #E8E0D0 100%);
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content .accent { color: #1B7A4A; }
.subtitle {
  font-size: 1.15rem;
  color: #5A5040;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.badge {
  background: #fff;
  border: 1px solid #C8C0AC;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #5A5040;
}

/* ── Features ── */
.features { padding: 100px 0; background: #fff; }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  background: #F5F2EC;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #E8E0D0;
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: #1B7A4A; }
.feature-card p { font-size: 0.95rem; color: #5A5040; }

/* ── Tiers ── */
.tiers { padding: 100px 0; background: #EDE8DD; }
.tiers h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.section-sub { text-align: center; color: #5A5040; margin-bottom: 48px; }
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: start; }
.tier-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #C8C0AC;
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: #1B7A4A;
  border-width: 2px;
  position: relative;
  transform: scale(1.03);
}
.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1B7A4A;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tier-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price { font-size: 2.5rem; font-weight: 700; color: #1B7A4A; }
.price-period { font-size: 0.9rem; color: #7A7060; margin-bottom: 24px; }
.tier-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.tier-card ul li { padding: 6px 0; font-size: 0.95rem; color: #1A1A1A; }
.tier-card ul li::before { content: "— "; color: #1B7A4A; font-weight: 600; }

/* ── Waitlist ── */
.waitlist { padding: 100px 0; background: #fff; }
.waitlist h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.signup-form { margin-top: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: #1A1A1A; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #C8C0AC;
  border-radius: 8px;
  font-size: 1rem;
  background: #F5F2EC;
  color: #1A1A1A;
  transition: border-color 0.2s ease;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1B7A4A;
  box-shadow: 0 0 0 3px #1B7A4A20;
}
.form-footnote { text-align: center; font-size: 0.85rem; color: #7A7060; margin-top: 12px; }

/* ── Success ── */
.success-message { text-align: center; }
.success-message[hidden] { display: none; }
.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1B7A4A;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.success-message h3 { font-size: 1.5rem; margin-bottom: 8px; color: #1B7A4A; }
.success-message p { color: #5A5040; margin-bottom: 24px; }

/* ── Footer ── */
footer { padding: 32px 0; background: #1A1A1A; color: #8A7E6A; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
footer .logo { color: #52B788; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .tier-card.featured { transform: none; }
  .hero-content h1 { font-size: 2.2rem; }
}
