/* Minimal, self-contained landing page styling (light, green accent) */
:root {
  --bg: #f6faf7;
  --panel: #ffffff;
  --panel-2: #f2f7f3;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.70);
  --line: rgba(15, 23, 42, 0.10);
  --green: #1f8a3a;
  --green-dark: #0e5d24;
  --shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  --radius: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(900px 520px at 15% 0%, rgba(31, 138, 58, 0.10), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(14, 93, 36, 0.10), transparent 65%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(246, 250, 247, 0.85);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--green-dark);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.nav__link {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
  border: 1px solid transparent;
}
.nav__link:hover { border-color: var(--line); background: var(--panel-2); }
.nav__link--muted { color: var(--muted); }
.nav__link--subtle { color: var(--muted); }
.nav__link--subtle:hover { color: var(--text); }

.hero { padding: 54px 0 26px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  border-radius: 999px;
  color: var(--green-dark);
  margin: 0 0 14px;
}
.hero__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}
.hero__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.hero__subnote {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.hero__bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 10px; }
.hero__note { margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  box-shadow: none;
  font-weight: 650;
}
.btn:hover { background: var(--panel-2); }
.btn--primary {
  border-color: rgba(31, 138, 58, 0.35);
  background: linear-gradient(135deg, rgba(31, 138, 58, 0.12), rgba(14, 93, 36, 0.10));
  color: var(--green-dark);
}
.btn--primary:hover {
  border-color: rgba(31, 138, 58, 0.55);
  background: linear-gradient(135deg, rgba(31, 138, 58, 0.18), rgba(14, 93, 36, 0.12));
}
.btn--secondary {
  border-color: rgba(15, 23, 42, 0.12);
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card--hero { padding: 18px; }
.card__title { margin: 0 0 10px; font-size: 16px; }
.card__text { margin: 0; color: var(--muted); line-height: 1.55; }
.card__links { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); }
.dot { opacity: 0.55; }
.link { text-decoration: underline; text-underline-offset: 3px; color: var(--green-dark); }
.link:hover { color: var(--green); }

.list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.6; }
.list strong { color: var(--text); }

.section { padding: 36px 0; }
.section--alt { background: rgba(31, 138, 58, 0.04); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__title { margin: 0 0 14px; font-size: 22px; }
.section__lead {
  margin: -6px 0 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 68ch;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: center;
}
.split__text { margin: 0 0 12px; color: var(--muted); line-height: 1.6; }
.ticks { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }

.heroVisual { display: grid; gap: 12px; }
.heroArt {
  border-radius: var(--radius);
  border: 1px solid rgba(31, 138, 58, 0.16);
  background: linear-gradient(135deg, rgba(31, 138, 58, 0.06), rgba(14, 93, 36, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.heroArt__img,
.heroArt__svg {
  display: block;
  width: 100%;
  height: auto;
}
.heroIcon {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 34px;
}
.heroIcon__svg {
  width: min(240px, 70%);
  height: auto;
}

.heroStats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 12px;
}
.stat__kicker { font-size: 12px; color: var(--muted); }
.stat__value { font-weight: 850; color: var(--green-dark); margin-top: 4px; }
.stat__desc { font-size: 13px; color: var(--muted); margin-top: 2px; }

.sideArt {
  border-radius: var(--radius);
  border: 1px solid rgba(31, 138, 58, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(242, 247, 243, 1));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sideArt__img,
.sideArt__svg {
  display: block;
  width: 100%;
  height: auto;
}

.reveal { opacity: 0; transform: translateY(10px); transition: opacity 420ms ease, transform 420ms ease; }
.reveal--in { opacity: 1; transform: translateY(0); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 16px;
}
.step__num {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid rgba(31, 138, 58, 0.35);
  background: rgba(31, 138, 58, 0.10);
  color: var(--green-dark);
  margin-bottom: 10px;
}
.step__title { margin: 0 0 8px; font-size: 16px; }
.step__text { margin: 0; color: var(--muted); line-height: 1.55; }

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

.contact { display: grid; }
.contact__card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px;
}
.contact__text { margin: 0 0 14px; color: var(--muted); line-height: 1.55; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact__fineprint { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.footer {
  border-top: 1px solid var(--line);
  background: rgba(246, 250, 247, 0.85);
  padding: 18px 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.footer__links { display: flex; gap: 8px; align-items: center; }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .heroStats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
}
