:root {
  --ink: #20332d;
  --muted: #62736d;
  --green: #2f765e;
  --green-dark: #174b3a;
  --mint: #dff2e9;
  --cream: #fbfcf7;
  --line: #dfe8e3;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  line-height: 1.65;
}
a {
  color: var(--green-dark);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: #fbfcf7ef;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}
.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header nav a {
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #40534c;
  font-weight: 650;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--mint);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 9px 12px;
}
.home,
.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.page {
  min-height: 70vh;
  padding: 80px 0 110px;
}
.page > h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.05;
  max-width: 850px;
  margin: 14px 0 30px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
}
.lead {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  max-width: 760px;
  color: #465a53;
}
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 16px 0 26px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 750;
}
.button.secondary {
  background: white;
  color: var(--green-dark);
  border: 1px solid #b9cec5;
}
.status-note {
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-art {
  position: relative;
  min-height: 510px;
  border-radius: 50% 36% 44% 48%;
  background: #cdeadd;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape.one {
  width: 210px;
  height: 210px;
  background: #f2d7ab;
  right: -25px;
  top: 25px;
}
.shape.two {
  width: 160px;
  height: 160px;
  background: #cbbbe7;
  left: 20px;
  bottom: 25px;
}
.shape.three {
  width: 100px;
  height: 100px;
  background: #efb9ad;
  left: 42%;
  top: 36%;
}
.conversation-card {
  position: absolute;
  display: grid;
  gap: 7px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(290px, 70%);
  padding: 25px;
  background: #fffffff2;
  border: 1px solid white;
  border-radius: 20px;
  box-shadow: 0 22px 60px #174b3a22;
}
.conversation-card strong {
  font-size: 1.3rem;
}
.conversation-card span {
  color: var(--green);
  font-weight: 800;
}
.conversation-card small {
  color: var(--muted);
}
.section {
  padding: 80px 0;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}
.section h2,
.callout h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin: 10px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid article,
.rules article {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
}
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 40px 0 100px;
  padding: 45px;
  border-radius: 28px;
  background: #193e32;
  color: white;
}
.callout p {
  max-width: 680px;
  color: #cee4db;
}
.prose {
  max-width: 800px;
  font-size: 1.05rem;
}
.prose h2 {
  margin: 42px 0 12px;
}
.prose li {
  margin: 9px 0;
}
.steps {
  display: grid;
  gap: 10px;
  max-width: 850px;
}
.steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.steps b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
}
.steps h2 {
  margin: 0;
}
.steps p {
  margin: 7px 0;
  color: var(--muted);
}
.rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.rules h2 {
  font-size: 1.25rem;
}
.draft-note,
.legal-banner {
  max-width: 850px;
  padding: 17px 20px;
  margin: 28px 0;
  background: #fff5db;
  border: 1px solid #ead6a3;
  border-radius: 12px;
  color: #654b14;
}
.legal-banner {
  margin-top: -30px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}
.contact-grid a {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
}
.contact-grid span {
  color: var(--muted);
}
.faq {
  max-width: 850px;
}
.faq details {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
}
.faq p {
  color: #4f615b;
}
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 52px max(24px, calc((100vw - 1180px) / 2));
  background: #193e32;
  color: #d4e7df;
}
footer a {
  display: block;
  color: #d4e7df;
  margin: 6px 0;
}
footer strong {
  color: white;
  font-size: 1.2rem;
}
footer small {
  grid-column: 1/-1;
  padding-top: 26px;
  border-top: 1px solid #42675b;
}
@media (max-width: 800px) {
  .site-header {
    padding: 12px 20px;
  }
  .nav-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 50px #173d2d22;
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 50px;
  }
  .hero-art {
    min-height: 360px;
  }
  .feature-grid,
  .rules,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .callout {
    align-items: flex-start;
    flex-direction: column;
  }
  .page {
    padding-top: 60px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  footer > div:first-child,
  footer small {
    grid-column: 1/-1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
