:root {
  --ink: #1c2521;
  --muted: #617169;
  --line: #dce5df;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --green: #265c4b;
  --green-dark: #173b30;
  --mint: #d9eee2;
  --yellow: #f3c95f;
  --shadow: 0 20px 60px rgba(23, 59, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.nav {
  width: min(1120px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-actions {
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-actions a {
  color: var(--ink);
  text-decoration: none;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 48px;
  padding: 56px 0 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

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

.facts {
  display: grid;
  gap: 14px;
}

.facts div,
.grid article,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.facts div {
  padding: 22px;
}

.facts strong {
  display: block;
  margin-bottom: 4px;
  font-size: 34px;
  line-height: 1;
}

.facts span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

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

.grid article {
  padding: 24px;
}

.grid p,
.legal-content p,
.legal-list {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal-content {
  padding: 42px;
}

.legal-content h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 22px;
}

.legal-list {
  padding-left: 22px;
}

.legal-list li {
  margin-bottom: 8px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .nav {
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

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

  .legal-content {
    padding: 28px;
  }
}
