:root {
  --bg: #f3f8f5;
  --surface: #ffffff;
  --surface-muted: #eef5f0;
  --text: #1f2f2a;
  --muted: #49625a;
  --line: #d8e4dc;
  --brand: #1d8f68;
  --brand-strong: #147152;
  --accent: #f2b672;
  --shadow: 0 18px 42px rgba(18, 42, 35, 0.11);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 15%, rgba(29, 143, 104, 0.15), transparent 42%),
    radial-gradient(circle at 86% 10%, rgba(242, 182, 114, 0.18), transparent 36%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-title,
h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1,
.section-title {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  max-width: 13ch;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1.2rem;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--surface);
  padding: 0.65rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(243, 248, 245, 0.8);
  border-bottom: 1px solid rgba(31, 47, 42, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-weight: 700;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.lead {
  margin-top: 1rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
}

.microcopy {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-visual {
  background: linear-gradient(145deg, #deeee6, #edf6f1);
  border: 1px solid #d5e3dc;
  border-radius: 28px;
  padding: clamp(0.9rem, 1.5vw, 1.3rem);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-visual img {
  border-radius: 14px;
  border: 1px solid #d3e0d9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.store-badges {
  gap: 0.65rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-badge img {
  display: block;
  height: auto;
}

.app-store-badge img {
  width: 156px;
}

.play-store-badge img {
  width: 202px;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  min-height: 2.85rem;
  padding: 0.35rem 1.15rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-strong);
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
}

.value-strip {
  padding: 1.5rem 0 2.5rem;
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.value-grid h2 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.value-grid p {
  color: var(--muted);
}

.feature-grid,
.testimonial-grid,
.support-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.support-card,
blockquote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.card h3,
.support-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.card p,
.support-card p,
blockquote {
  color: var(--muted);
}

.benefit {
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.steps {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  max-width: 76ch;
}

.steps li + li {
  margin-top: 0.75rem;
}

.outcomes {
  padding-top: 1rem;
}

.chips {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.chips span {
  background: rgba(29, 143, 104, 0.09);
  color: #21493c;
  border: 1px solid rgba(29, 143, 104, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  font-size: 1.01rem;
}

cite {
  margin-top: 0.8rem;
  display: block;
  color: #223d35;
  font-style: normal;
  font-weight: 700;
}

.narrow {
  width: min(760px, 92vw);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

.legal-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul,
.legal-content ul + ul {
  margin-top: 0.75rem;
}

.legal-content ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

details + details {
  margin-top: 0.65rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.text-link {
  margin-top: 1rem;
  display: inline-block;
  color: #184e3b;
  font-weight: 700;
}

.cta-band {
  padding-top: 1.2rem;
}

.cta-band-inner {
  border-radius: 26px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  background: linear-gradient(140deg, #e4f3eb 0%, #fff6eb 100%);
  border: 1px solid #d8e4dc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.support-intro {
  color: var(--muted);
  max-width: 70ch;
}

.support-grid {
  margin-top: 1.3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.support-card details {
  background: #fbfdfc;
}

.support-card details + details {
  margin-top: 0.5rem;
}

.support-contact {
  margin-top: 1.35rem;
  text-align: center;
  background: #f8fbf9;
  border: 1px solid var(--line);
  padding: 1.35rem;
  border-radius: var(--radius);
}

.support-contact p {
  margin: 0.45rem 0 0.8rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.8rem 0 2.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
}

.footer-grid p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-grid a {
  color: #22453a;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .hero-grid,
  .value-grid,
  .testimonial-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.2rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 4vw;
    min-width: 200px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }
}
