:root {
  color-scheme: light;
  --bg: #f6f8f7;
  --panel: rgba(255, 255, 255, 0.94);
  --text: #111315;
  --muted: #586064;
  --line: rgba(17, 19, 21, 0.12);
  --accent: #16745f;
  --strong: #111315;
  --shadow: 0 18px 44px rgba(28, 36, 39, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(22, 116, 95, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 8%, rgba(49, 95, 154, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #ffffff 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav,
.inner,
.footer-inner {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.nav-links,
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-links {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 800;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(22, 116, 95, 0.34);
  box-shadow: 0 0 0 3px rgba(22, 116, 95, 0.1);
}

.button.primary {
  background: var(--strong);
  color: #ffffff;
  border-color: var(--strong);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #26292b;
  border-color: #26292b;
}

.hero {
  padding: 2rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 2rem;
  align-items: center;
}

h1 {
  margin: 0;
  max-width: 62rem;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  margin: 1rem 0 0;
  max-width: 45rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-icon {
  display: grid;
  place-items: center;
  min-height: 18rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-icon img {
  width: min(10rem, 56%);
  height: auto;
  object-fit: contain;
}

.actions {
  margin-top: 1.4rem;
}

.section {
  padding: 0 0 2.5rem;
}

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

.panel {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.6;
}

.panel p {
  margin: 0.7rem 0 0;
}

.panel ul,
.panel ol {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.footer {
  padding: 0 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  text-decoration: none;
  font-weight: 800;
}

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

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

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

  .nav-links,
  .actions {
    width: 100%;
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 1.3rem;
  }
}
