:root {
  color-scheme: light;
  --green: #74c04c;
  --dark: #102010;
  --ink: #1a2e1a;
  --muted: #607168;
  --line: rgba(116, 192, 76, 0.2);
  --paper: #f8faf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(116, 192, 76, 0.16), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  line-height: 1.7;
}

a {
  color: #3a8a21;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.topbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--dark));
  font-family: Barlow, Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #4b9b2c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Barlow, Arial, sans-serif;
  line-height: 1.08;
  color: var(--ink);
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 13px 22px;
  color: white;
  background: var(--green);
  font-family: Barlow, Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(116, 192, 76, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: none;
}

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

.card,
.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(16, 32, 16, 0.06);
}

.card {
  padding: 22px;
}

.panel {
  padding: clamp(26px, 4vw, 48px);
  margin: 28px 0;
}

.muted {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
}

.faq {
  display: grid;
  gap: 18px;
}

.footer {
  margin-top: 60px;
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
}

.footer a {
  color: #b8f49a;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }

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