:root {
  color-scheme: light;
  --ink: #15352f;
  --muted: #60736e;
  --green: #13785f;
  --green-dark: #0d5947;
  --mint: #e8f5f0;
  --cream: #f7f5ef;
  --white: #ffffff;
  --line: #cfddd8;
  --shadow: 0 18px 45px rgba(21, 53, 47, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.page-shell {
  width: calc(100% - 40px);
  max-width: 1120px;
  min-width: 0;
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

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

.hero {
  display: grid;
  min-height: 450px;
  align-items: center;
  padding: 72px 0 64px;
  border-top: 1px solid var(--line);
}

.hero-copy {
  max-width: 790px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero-lead,
.page-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--green-dark);
  background: var(--green-dark);
  transform: translateY(-1px);
}

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

.products {
  padding: 26px 0 88px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 30px;
}

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

.product-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
}

.product-card p {
  color: var(--muted);
}

.product-card .card-actions {
  margin-top: auto;
  padding-top: 18px;
}

.product-label,
.status-label {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-main {
  padding: 70px 0 90px;
  border-top: 1px solid var(--line);
}

.page-main h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.content-card {
  max-width: 840px;
  margin-top: 38px;
  padding: 36px;
}

.content-card + .content-card {
  margin-top: 20px;
}

.content-card p:last-child,
.content-card ul:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.contact-link {
  color: var(--green-dark);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding: 18px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 390px;
    padding: 52px 0;
  }

  h1,
  .page-main h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .product-card,
  .content-card {
    padding: 26px;
  }
}
