:root {
  color: #1b2920;
  background: #f5f4ef;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgb(217 232 220 / 75%), transparent 34rem),
    #f5f4ef;
  line-height: 1.65;
}

a {
  color: #1d5b3e;
  font-weight: 700;
}

.shell {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #203228;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: #4c5f53;
  font-size: 0.9rem;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 56px;
  padding: 76px 0 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #52705f;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: #536359;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid #1d5138;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #1d5138;
  box-shadow: 0 10px 24px rgb(29 81 56 / 18%);
  color: #fff;
}

.button-primary:hover {
  background: #17442f;
}

.button-secondary {
  background: rgb(255 255 255 / 60%);
  color: #1d5138;
}

.trust-note {
  margin: 14px 0 0;
  color: #67766d;
  font-size: 0.85rem;
}

.hero img {
  width: 100%;
  border-radius: 46px;
  box-shadow: 0 30px 70px rgb(25 47 34 / 15%);
}

.content-card {
  margin-bottom: 48px;
  padding: 36px;
  border: 1px solid #d7dbd5;
  border-radius: 18px;
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 22px 60px rgb(34 49 40 / 7%);
}

.content-card h2 {
  margin: 0 0 20px;
  font-size: 2rem;
}

.demo-section {
  margin-bottom: 48px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.section-heading p:last-child,
.comparison-card p:last-child {
  color: #536359;
}

.demo-section video {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid #ccd5ce;
  border-radius: 18px;
  background: #e8ece8;
  box-shadow: 0 24px 64px rgb(34 49 40 / 12%);
}

.comparison-card p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  margin: 0;
  padding-left: 20px;
}

.policy {
  max-width: 780px;
  padding-bottom: 70px;
}

.policy h1 {
  margin: 56px 0 14px;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
}

.policy h2 {
  margin: 42px 0 12px;
  font-size: 1.6rem;
}

.policy li + li {
  margin-top: 7px;
}

.updated {
  color: #68776d;
  font-size: 0.9rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 64px 0 72px;
  padding: 34px 36px;
  border-radius: 18px;
  background: #e3eee7;
}

.final-cta h2,
.final-cta .eyebrow {
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid #d8ddd8;
  color: #66746b;
  font-size: 0.82rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a {
  color: inherit;
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero img {
    order: -1;
    width: 128px;
    border-radius: 28px;
  }

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

  .content-card {
    padding: 26px;
  }

  .final-cta,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
  }

  nav a {
    font-size: 0.82rem;
  }

  .hero-actions .button {
    width: 100%;
  }
}
