:root {
  --green-950: #031f16;
  --green-900: #063624;
  --green-800: #0a4b33;
  --green-700: #0f6848;
  --gold: #d6a433;
  --gold-light: #f2d47c;
  --blue: #0776a8;
  --blue-dark: #034d7a;
  --cream: #fff9ec;
  --paper: #fffdf8;
  --text: #1d2722;
  --muted: #66736d;
  --shadow: 0 24px 70px rgba(3, 31, 22, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(214,164,51,.18), transparent 30%), var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 236, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214,164,51,.25);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(3,31,22,.16);
}
.brand strong { display: block; font-size: 1.08rem; letter-spacing: .02em; }
.brand small { color: var(--muted); font-size: .82rem; }
.nav-links { display: flex; align-items: center; gap: 20px; font-weight: 650; font-size: .94rem; }
.nav-links a { opacity: .78; transition: opacity .2s ease, color .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--green-700); }
.nav-cta { padding: 11px 16px; border-radius: 999px; background: var(--green-900); color: white; opacity: 1 !important; }
.nav-toggle { display: none; border: 0; background: var(--green-900); color: white; border-radius: 12px; padding: 10px 13px; font-size: 1.2rem; }

.section-grid,
.stats,
.section,
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.hero {
  min-height: 78vh;
  padding-top: 72px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr .94fr;
  align-items: center;
  gap: 46px;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--green-700);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: .93;
  letter-spacing: -.065em;
  margin-bottom: 22px;
  color: var(--green-950);
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
  color: #405048;
  max-width: 650px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(3,31,22,.12);
}
.button.primary { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #fff; box-shadow: 0 14px 30px rgba(6,54,36,.22); }
.button.secondary { background: rgba(255,255,255,.65); color: var(--green-900); }
.hero-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-950);
  border: 1px solid rgba(214,164,51,.45);
  position: relative;
}
.hero-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; opacity: .94; }
.hero-card-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(3, 31, 22, .76);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,212,124,.35);
}
.hero-card-caption span { display: block; color: var(--gold-light); font-weight: 900; margin-bottom: 5px; }
.hero-card-caption strong { font-size: 1.15rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 64px;
}
.stat, .metric-card, .feature-card, .panel, .contact-card, .future {
  background: rgba(255, 253, 248, .82);
  border: 1px solid rgba(214,164,51,.22);
  box-shadow: 0 16px 42px rgba(3, 31, 22, 0.08);
}
.stat {
  border-radius: 24px;
  padding: 24px;
}
.stat span, .metric-card span { display: block; color: var(--muted); font-weight: 800; font-size: .84rem; }
.stat strong { display: block; margin: 10px 0 4px; font-size: 1.9rem; color: var(--green-900); letter-spacing: -.04em; }
.stat small { color: var(--muted); }

.section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 32px;
  align-items: stretch;
}
.section-grid.reverse { grid-template-columns: .95fr .75fr; }
.panel, .feature-card, .contact-card, .future {
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--green-950);
  margin-bottom: 18px;
}
h3 { font-size: 1.55rem; color: var(--green-900); margin-bottom: 12px; }
.panel p, .feature-card p, .metric-card p, .future p, .contact-card p { color: #4b5c54; line-height: 1.7; }
.clean-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.clean-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(3,31,22,.10);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.clean-list span { color: var(--muted); font-weight: 750; }
.clean-list strong { text-align: right; color: var(--green-900); }
.feature-card { background: linear-gradient(145deg, rgba(6,54,36,.98), rgba(10,75,51,.96)); color: white; border-color: rgba(242,212,124,.35); }
.feature-card h3, .feature-card p { color: white; }
.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(214,164,51,.18);
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 22px;
}
.mini-metrics { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.mini-metrics span { padding: 13px 15px; border-radius: 16px; background: rgba(255,255,255,.08); color: #fff; }
.mini-metrics b { color: var(--gold-light); }

.section-heading { max-width: 760px; margin-bottom: 28px; }
.performance-section { position: relative; }
.performance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metric-card { border-radius: 24px; padding: 28px; }
.metric-card strong { display: block; margin: 13px 0 10px; font-size: 1.7rem; color: var(--green-900); letter-spacing: -.035em; }
.proof {
  margin-top: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(3,31,22,.1);
  overflow: hidden;
}
.proof summary { cursor: pointer; padding: 18px 22px; font-weight: 800; color: var(--green-900); }
.proof img { width: 100%; background: white; border-top: 1px solid rgba(3,31,22,.1); }
.timeline { margin-top: 26px; display: grid; gap: 18px; }
.timeline div { display: grid; grid-template-columns: 54px 1fr; column-gap: 16px; align-items: start; }
.timeline span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(214,164,51,.18);
  color: var(--green-900);
  font-weight: 900;
}
.timeline strong { color: var(--green-950); }
.timeline p { margin: 4px 0 0; }
.future { background: linear-gradient(145deg, #fffdf8, #fff3d5); }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.roadmap-grid article { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(214,164,51,.2); }
.roadmap-grid span { display: block; font-weight: 900; color: var(--green-900); margin-bottom: 8px; }
.contact-section { padding-bottom: 44px; }
.contact-card { text-align: center; max-width: 760px; margin: 0 auto; }
.contact-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 24px 0 18px; }
.contact-details { display: grid; gap: 10px; margin-top: 18px; color: var(--green-900); }
.contact-details span { display: block; }
.contact-details b { color: var(--muted); margin-right: 8px; }
.contact-details a { font-weight: 800; }
.note { display: block; margin-top: 18px; color: var(--muted); }
.footer {
  padding-top: 26px;
  padding-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(214,164,51,.23);
}
.footer p { margin: 0; }
.footer a { font-weight: 800; color: var(--green-900); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,253,248,.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(214,164,51,.25);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hero, .section-grid, .section-grid.reverse { grid-template-columns: 1fr; }
  .stats, .performance-grid, .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .clean-list li { flex-direction: column; gap: 6px; }
  .clean-list strong { text-align: left; }
}
@media (max-width: 580px) {
  .stats, .performance-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .footer { flex-direction: column; align-items: flex-start; }
  .brand img { width: 46px; height: 46px; }
}
