:root {
  --green: #0b8a5a;
  --green-dark: #08704a;
  --ink: #13201b;
  --muted: #52615b;
  --line: #dce7e1;
  --soft: #edf7f1;
  --paper: #ffffff;
  --warm: #f8f3e8;
  --amber: #f6a623;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfb;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  background: #f4faf6;
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid #bfe4d1;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  color: #31423b;
  font-size: 1.12rem;
}

.microcopy {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: var(--green-dark);
}

.hero-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(19, 32, 27, 0.08);
}

.hero-card {
  padding: 24px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eaf4ee;
  box-shadow: 0 18px 45px rgba(19, 32, 27, 0.08);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.app-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-kpi {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #d9ede3;
  border-radius: 8px;
  background: #fff;
}

.preview-kpi strong {
  color: var(--green-dark);
  font-size: 1.25rem;
}

.preview-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
}

.preview-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p,
.muted {
  color: var(--muted);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.compact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.compact-strip > div {
  display: grid;
  gap: 4px;
  min-height: 102px;
  padding: 22px 20px;
  background: #fff;
}

.compact-strip strong {
  color: var(--green-dark);
  font-size: 1.02rem;
}

.compact-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.feature,
.topic-card,
.note-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 20px;
}

.feature {
  display: grid;
  gap: 10px;
}

.topic-card {
  display: grid;
  gap: 10px;
  text-decoration: none;
}

.topic-card span {
  color: var(--green-dark);
  font-weight: 800;
}

.content-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 44px 20px 64px;
}

.content-page article {
  display: grid;
  gap: 28px;
}

.content-page section {
  display: grid;
  gap: 14px;
}

.content-page ul {
  margin: 0;
  padding-left: 22px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-box {
  background: var(--warm);
}

.note-box > * + * {
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .compact-strip,
  .split-section,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .section-inner {
    padding: 42px 20px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
