:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f6f8f2;
  color: #123a1d;
}
* { box-sizing: border-box; }
body { margin: 0; background: linear-gradient(135deg, #f7fbef 0%, #e8f1dc 100%); }
img { max-width: 100%; display: block; }
.page-shell { max-width: 1120px; margin: 0 auto; padding: 32px 20px 64px; }
.hero { display: flex; justify-content: space-between; gap: 24px; align-items: center; background: #183d22; color: white; border-radius: 24px; padding: 28px; box-shadow: 0 18px 50px rgba(24, 61, 34, 0.15); }
.hero h1 { margin: 6px 0 8px; font-size: 2.2rem; }
.subtitle { margin: 0; opacity: 0.92; max-width: 640px; line-height: 1.5; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; opacity: 0.8; margin: 0; }
.hero img { width: 220px; border-radius: 18px; border: 2px solid rgba(255,255,255,0.16); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 24px 0; }
.stat-card { background: white; border-radius: 16px; padding: 18px; box-shadow: 0 12px 30px rgba(20, 56, 28, 0.08); }
.stat-card strong { font-size: 1.5rem; display: block; margin-top: 6px; }
.panel { background: white; border-radius: 20px; padding: 20px; margin-top: 18px; box-shadow: 0 12px 30px rgba(20, 56, 28, 0.08); }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: #edf7e4; color: #24572b; padding: 8px 12px; border-radius: 999px; font-size: 0.93rem; }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list li { border: 1px solid #e8efe0; border-radius: 12px; padding: 12px 14px; }
.list small { color: #59755d; }
@media (max-width: 700px) { .hero { flex-direction: column; align-items: flex-start; } .hero img { width: 100%; max-width: 320px; } }
