:root {
  --green-dark: #173c2d;
  --green: #2f684d;
  --green-light: #eaf3ed;
  --cream: #f8f3e8;
  --yellow: #e7b94a;
  --text: #26342c;
  --muted: #66756b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

a {
  color: var(--green);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e7ece8;
}

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

.brand {
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
  line-height: 1.25;
}

nav a {
  text-decoration: none;
  margin-left: 22px;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  background:
    radial-gradient(circle at 80% 15%, rgba(231,185,74,.25), transparent 32%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 100px 0 95px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero p {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 19px;
  opacity: .9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-meta span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 14px;
}

section {
  padding: 76px 0;
}

section.alt {
  background: var(--cream);
}

.kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

h2 {
  margin: 8px 0 20px;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.lead {
  max-width: 800px;
  font-size: 18px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.card {
  background: white;
  border: 1px solid #e3e9e5;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(23,60,45,.04);
}

.card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 6px 0 10px;
  color: var(--green-dark);
}

.app-box {
  margin-top: 35px;
  padding: 32px;
  border-radius: 20px;
  background: var(--green-light);
  border: 1px solid #d5e6db;
}

.app-box h3 {
  margin-top: 0;
  color: var(--green-dark);
}

.button {
  display: inline-block;
  margin-top: 18px;
  background: var(--green-dark);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
}

footer {
  background: #102a20;
  color: #dbe6df;
  padding: 44px 0;
  font-size: 14px;
}

footer a {
  color: white;
}

.policy {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 0;
}

.policy h1 {
  color: var(--green-dark);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
}

.policy h2 {
  font-size: 25px;
  margin-top: 42px;
}

.policy li {
  margin-bottom: 8px;
}

.notice {
  padding: 18px 20px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

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

  nav {
    display: none;
  }

  .hero {
    padding: 75px 0;
  }

  section {
    padding: 58px 0;
  }
}
