:root {
  --forest: #0E3B2E;
  --deep-forest: #0A2C22;
  --lime: #C6F24E;
  --reward-green: #0E7C5A;
  --mist: #F2F7F3;
  --ink: #0B1220;
  --gray: #5b6b63;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}
a { color: var(--reward-green); }
header {
  background: linear-gradient(160deg, #1b5a43, #0b2f23 62%, #061a11);
  padding: 20px 24px;
}
.nav-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand span { color: #fff; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-left: 22px;
}
nav a:hover { color: #fff; }
main { max-width: 900px; margin: 0 auto; padding: 0 24px 80px; }
.hero {
  background: linear-gradient(160deg, #1b5a43, #0b2f23 62%, #061a11);
  margin: 0 -1000px;
  padding: 64px 1000px 72px;
  text-align: center;
}
.hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  max-width: 640px;
  margin: 0 auto 16px;
}
.hero p {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.pill {
  display: inline-block;
  background: var(--lime);
  color: var(--forest);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
}
section { padding: 56px 0; border-bottom: 1px solid #E3F3EC; }
section:last-of-type { border-bottom: none; }
h2 { font-size: 26px; font-weight: 800; color: var(--forest); letter-spacing: -0.5px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.step { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #E3F3EC; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px; background: var(--limeTint, #EEF8CE);
  color: var(--forest); font-weight: 800; font-size: 14px; margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; font-size: 16px; color: var(--forest); }
.step p { margin: 0; font-size: 14px; color: var(--gray); }
.about p { font-size: 16px; color: #374151; max-width: 640px; }
footer {
  background: var(--forest);
  color: rgba(255,255,255,.7);
  padding: 40px 24px;
  font-size: 14px;
}
.footer-wrap { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer a { color: rgba(255,255,255,.85); }
.legal main { padding-top: 40px; }
.legal h1 { color: var(--forest); font-size: 32px; letter-spacing: -0.5px; }
.legal .updated { color: var(--gray); font-size: 14px; margin-bottom: 40px; }
.legal section { border: none; padding: 0 0 32px; }
.legal h2 { font-size: 19px; margin-bottom: 10px; }
.legal p, .legal li { color: #374151; font-size: 15px; }
.legal ul { padding-left: 20px; }
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .steps { grid-template-columns: 1fr; }
  nav a { margin-left: 14px; font-size: 13px; }
}
