:root {
  --bg: #f3f5f1;
  --bg-soft: #eef3ec;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.86);
  --primary: #00563c;
  --primary-2: #0a6b4d;
  --accent: #a7ca4b;
  --accent-deep: #7ea730;
  --text: #0f261c;
  --muted: #5b6f67;
  --line: rgba(0, 86, 60, 0.12);
  --shadow: 0 25px 80px rgba(0, 56, 39, 0.15);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5f7f2 0%, #eef3ec 100%);
}

img {
  max-width: 100%;
  display: block;
}

body.menu-open {
  overflow: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(167, 202, 75, 0.20), transparent 18%),
    radial-gradient(circle at 85% 15%, rgba(0, 86, 60, 0.10), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(167, 202, 75, 0.18), transparent 20%);
  z-index: -1;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(245, 247, 242, 0.72);
  border-bottom: 1px solid rgba(0, 86, 60, 0.08);
}

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

.brand img,
.footer-logo {
  width: 160px;
  border-radius: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 86, 60, 0.25);
}

.btn-secondary,
.btn-nav {
  background: rgba(0, 86, 60, 0.06);
  color: var(--primary);
  border: 1px solid rgba(0, 86, 60, 0.10);
}

.light-btn {
  background: #fff;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  width: 48px;
  height: 48px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--primary);
  margin: 5px auto;
}

.hero {
  padding: 68px 0 50px;
}

.hero-grid,
.two-col,
.footer-grid,
.governance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(167, 202, 75, 0.18);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-copy h1,
.section h2 {
  margin: 18px 0 18px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 760px;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-copy p,
.section p,
.feature-card p,
.pillar-card p,
.timeline p,
.info-panel li,
.footer p,
.footer li,
.faq-item p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.badge-card,
.pillar-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 86, 60, 0.08);
  box-shadow: var(--shadow);
}

.badge-card strong,
.mini-stats strong,
.timeline h3,
.feature-card h3,
.pillar-card h3,
.info-panel h3,
.footer h3 {
  display: block;
  margin-bottom: 8px;
}

.badge-card span {
  color: var(--primary);
  font-weight: 700;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.64));
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card,
.info-panel,
.timeline {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 22px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(167, 202, 75, 0.18);
}

.hero-logo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 49, 34, 0.18);
}

.mini-stats {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.mini-stats article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 86, 60, 0.05);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.75));
}

.section-dark {
  background: linear-gradient(135deg, #014e36 0%, #003926 100%);
  color: #fff;
}

.section-dark p {
  color: rgba(255,255,255,0.80);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #d7ea98 100%);
  color: var(--primary);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.info-panel ul,
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-panel li,
.footer li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.timeline article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 86, 60, 0.05);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(167, 202, 75, 0.22);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,86,60,0.08);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--primary);
}

.faq-item p {
  margin: 16px 0 0;
}

.footer {
  background: #032f21;
  color: #fff;
  padding: 70px 0 28px;
}

.footer a {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
}

.footer p,
.footer li {
  color: rgba(255,255,255,0.70);
  border-color: rgba(255,255,255,0.10);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #bfd96b 100%);
  color: #083427;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(0, 56, 39, 0.22);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .governance-grid,
  .cards-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,86,60,0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .btn,
  .floating-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand img,
  .footer-logo {
    width: 132px;
  }
}
