:root{
  --bg1:#f7fbf6;
  --bg2:#eef7f0;
  --card:#ffffff;
  --text:#102018;
  --muted:#4c6356;
  --line:rgba(16,32,24,.14);
  --shadow:0 18px 48px rgba(16,32,24,.10);
  --accent:#2f8f57;
  --accent2:#2f6f8f;
  --pill:#eef7f0;
  --radius:18px;
  --max:1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 460px at 10% -10%, rgba(47,143,87,.18), transparent 60%),
    radial-gradient(900px 460px at 90% -10%, rgba(47,111,143,.14), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  line-height:1.55;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:18px}
header{
  position:sticky; top:0; z-index:10;
  background: rgba(247,251,246,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{height:34px; width:auto}
nav{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
nav a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
  font-size:14px;
}
nav a:hover{border-color:var(--line); background:rgba(255,255,255,.75); color:var(--text)}
.hero{
  padding:18px 0 8px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 940px){ .heroGrid{grid-template-columns:1fr} nav{justify-content:flex-start}}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.cardInner{padding:18px}
h1{margin:0 0 10px; font-size:clamp(28px, 3.2vw, 44px); line-height:1.08}
h2{margin:0 0 10px; font-size:20px}
.sub{margin:0 0 14px; color:var(--muted); font-size:16px}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 16px}
.pill{
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--pill);
  border:1px solid rgba(47,143,87,.12);
  color:#1f3b2a;
}
.btnRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(16,32,24,.14);
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 14px 34px rgba(16,32,24,.10);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(47,143,87,.95), rgba(47,143,87,.70));
  color:white;
  border-color: rgba(47,143,87,.35);
}
.btn.secondary{
  background: linear-gradient(135deg, rgba(47,111,143,.92), rgba(47,111,143,.62));
  color:white;
  border-color: rgba(47,111,143,.35);
}
.heroShot{
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.06)),
    url("/assets/img/hero-1600.png") center/cover no-repeat;
  border-bottom:1px solid var(--line);
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 940px){ .grid3{grid-template-columns:1fr}}
.kpi{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(16,32,24,.10);
  background: rgba(247,251,246,.75);
}
.kpi b{display:block; margin-bottom:6px}
.kpi span{color:var(--muted); font-size:14px}
.two{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 940px){ .two{grid-template-columns:1fr}}
.list{margin:0; padding:0 0 0 18px; color:var(--muted)}
.notice{
  border:1px solid rgba(16,32,24,.12);
  background: rgba(255,255,255,.75);
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(16,32,24,.86);
}
.notice b{color:var(--text)}
.spriteRow{display:flex; gap:12px; flex-wrap:wrap; align-items:flex-end; justify-content:center; padding:12px 0 0}
.spriteRow img{image-rendering:auto; filter: drop-shadow(0 8px 10px rgba(16,32,24,.12));}
.faq details{
  border:1px solid rgba(16,32,24,.10);
  background: rgba(247,251,246,.72);
  border-radius: 16px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.faq summary{cursor:pointer; font-weight:750}
.faq p{margin:8px 0 0; color:var(--muted)}
.footer{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footerRow{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footerLinks{display:flex; gap:10px; flex-wrap:wrap}
.footerLinks a{color:var(--muted); text-decoration:none}
.footerLinks a:hover{color:var(--text); text-decoration:underline}
.prose p{color:var(--muted)}
.small{font-size:12px; color:rgba(76,99,86,.9)}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(47,143,87,.18);
  background: rgba(47,143,87,.08);
  color:#1f3b2a;
  font-size:13px;
}
