:root {
  color-scheme: light;
  --ink: #07100d;
  --muted: #5f6662;
  --paper: #fbfaf6;
  --line: #dedbd2;
  --green: #00a878;
  --green-dark: #007f5f;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  height: 34px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green);
  color: #001f17;
  padding: 0 18px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  padding: 76px 0 56px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(0, 168, 120, 0.22);
  border-radius: 999px;
  background: rgba(0, 168, 120, 0.08);
  color: var(--green-dark);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  margin: 22px 0 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.06);
}

.card h2,
.card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.section {
  padding: 40px 0;
}

.section h2 {
  max-width: 740px;
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section p {
  max-width: 850px;
  color: var(--muted);
  line-height: 1.8;
}

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

.list li {
  border-left: 3px solid var(--green);
  background: #fff;
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  margin: 56px 0 70px;
  border-radius: 24px;
  background: #07100d;
  color: #fff;
  padding: 34px;
}

.cta p {
  color: #b9c0bc;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

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

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

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

  .hero {
    padding-top: 42px;
  }
}
