:root {
  --bg: #f7f7f2;
  --bg-alt: #f0efe7;
  --card: #ffffff;
  --ink: #2c3a32;
  --muted: #6b7a70;
  --green: #5f8f74;
  --green-dark: #4a7560;
  --green-soft: #e4efe8;
  --line: #e3e5df;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.4rem; }
h1, h2, h3, .logo { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.12; margin: .9rem 0 1.1rem; }
h1 em { font-style: italic; color: var(--green-dark); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.25; margin-bottom: .6rem; }
h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  color: var(--green-dark); font-weight: 700; margin-bottom: .4rem;
}
.lede, .section-lede { color: var(--muted); font-size: 1.12rem; max-width: 620px; }
.section-lede { margin-bottom: 2rem; }

/* Nav */
.nav { padding: 1.1rem 0; border-bottom: 1px solid var(--line); background: var(--bg); position: sticky; top: 0; z-index: 10; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.25rem; display: flex; align-items: center; gap: .55rem; }
.logo-mark {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: italic; font-size: 1.15rem;
}

/* Buttons */
.btn {
  display: inline-block; background: var(--green); color: #fff;
  padding: .8rem 1.7rem; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  transition: background .15s ease;
}
.btn:hover { background: var(--green-dark); }
.btn-small { padding: .55rem 1.2rem; font-size: .92rem; }
.btn-ghost { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green-soft); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { background: var(--green-soft); }

/* Hero */
.hero { padding: 5.5rem 0 5rem; text-align: left; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-green { background: var(--green); color: #fff; }

/* Therapist grid */
.therapist-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.6rem 1.2rem; margin-top: 2.2rem;
}
.therapist-grid figure { text-align: center; }
.therapist-grid img {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: 0 2px 10px rgba(44, 58, 50, .12);
}
.therapist-grid figcaption { margin-top: .6rem; font-size: .92rem; }
.therapist-grid figcaption strong { display: block; }
.therapist-grid figcaption span { color: var(--muted); font-size: .84rem; line-height: 1.3; display: block; margin-top: .15rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.5rem; }
.step p { color: var(--muted); font-size: .98rem; }
.step-num {
  display: inline-flex; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark);
  align-items: center; justify-content: center; font-weight: 700; margin-bottom: .8rem;
}

/* Feature list */
.feature-list { list-style: none; margin-top: 1.8rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: .9rem 2rem; }
.feature-list li { padding: .85rem 1rem; background: var(--card); border: 1px solid var(--line); border-radius: 10px; font-size: .97rem; color: var(--muted); }
.feature-list li strong { color: var(--ink); }

/* Roadmap */
.roadmap { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; margin-top: 1.4rem; }
.road-col { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.3rem; }
.road-col h3 { color: var(--green-dark); }
.road-col ul { list-style: none; }
.road-col li { padding: .34rem 0 .34rem 1.15rem; position: relative; font-size: .93rem; color: var(--muted); }
.road-col li::before { content: ""; position: absolute; left: 0; top: .78em; width: .45rem; height: .45rem; border-radius: 50%; background: var(--green); }

/* Honest section */
.honest p { max-width: 720px; margin-bottom: 1.1rem; }
.crisis-box {
  background: #fdf3f0; border: 1px solid #ecc9bd; border-radius: 12px;
  padding: 1rem 1.2rem; color: #7a4a38; max-width: 720px;
}

/* Waitlist */
.waitlist { text-align: center; max-width: 640px; }
.waitlist h2 { color: #fff; }
.waitlist p { color: rgba(255, 255, 255, .88); margin-bottom: 1.6rem; }
#waitlist-form { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
#waitlist-form input {
  flex: 1 1 280px; max-width: 380px; padding: .8rem 1.1rem; border-radius: 999px;
  border: none; font-size: 1rem; color: var(--ink);
}
#waitlist-msg { margin-top: 1rem; min-height: 1.4em; color: #fff; font-weight: 600; }

/* Footer */
footer { padding: 3rem 0 3.5rem; border-top: 1px solid var(--line); }
footer .fine { color: var(--muted); font-size: .84rem; max-width: 760px; margin-top: .7rem; line-height: 1.55; }

@media (max-width: 560px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3rem 0; }
}
