:root {
  --green: #A6CE39;
  --green-dark: #7FA829;
  --green-deep: #40590F;
  --black: #0A0A0A;
  --near-black: #121212;
  --ink: #1B1B18;
  --paper: #FAFAF6;
  --gray: #6B6B63;
  --line: #E4E4DC;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; }
p { line-height: 1.65; margin: 0 0 1em; color: var(--ink); }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.brand-logo { height: 64px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: #EDEDE6;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--black) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta:hover { background: #b8dd5a !important; color: var(--black) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green);
  display: block;
}

/* Hero */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, #14170a 0%, var(--black) 55%);
  color: #fff;
  padding: 96px 0 84px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--green); }
.hero-inner { max-width: 780px; }
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #C9C9C0;
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: #b8dd5a; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.hero-tags {
  list-style: none;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.hero-tags li {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #A9A99F;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 7px 16px;
}

/* Sections */
.section { padding: 88px 0; }
.section-dark { background: var(--black); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark p { color: #C9C9C0; }
.section-green { background: var(--green); }
.onGreen { color: var(--black); }
.eyebrow-onGreen { color: var(--green-deep); }
.section-green p { color: var(--green-deep); }

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  max-width: 700px;
}
.section-intro {
  max-width: 620px;
  font-size: 1.08rem;
}

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0 40px;
}
.stat-card {
  background: var(--near-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-figure {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--green);
  font-weight: 700;
}
.stat-figure .plus { font-size: 1.6rem; }
.stat-label { font-size: 0.98rem; color: #E4E4DC; font-weight: 500; }
.stat-source { font-size: 0.82rem; color: #8A8A80; }

.callout {
  background: rgba(166,206,57,0.08);
  border: 1px solid rgba(166,206,57,0.3);
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 820px;
}
.callout p { color: #E4E4DC; margin: 0; }
.callout strong { color: var(--green); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
}
.feature-icon {
  font-size: 1.7rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F6DE;
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p { color: var(--gray); font-size: 0.97rem; margin: 0; }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-top: 44px;
}
.why-item h3 { color: var(--black); font-size: 1.15rem; margin-bottom: 8px; }
.why-item p { color: var(--green-deep); margin: 0; }

/* About */
.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.about-wrap p { color: var(--gray); }
.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 30px 26px;
}
.about-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
.about-list { margin: 0; padding-left: 20px; color: var(--gray); }
.about-list li { margin-bottom: 10px; line-height: 1.5; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.contact-card {
  background: var(--near-black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 34px;
}
.contact-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.contact-role { color: #A9A99F; margin-bottom: 20px; }
.contact-line {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.contact-line:hover { text-decoration: underline; }
.contact-btn { margin-top: 18px; }

/* Footer */
.site-footer {
  background: var(--black);
  padding: 44px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner { text-align: center; }
.footer-logo { height: 42px; margin: 0 auto 18px; }
.footer-legal { color: #A9A99F; font-size: 0.85rem; margin-bottom: 8px; }
.footer-disclaimer {
  color: #6E6E66;
  font-size: 0.78rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px) {
  .stat-grid, .feature-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
}
