:root{
  --bg:#f6faf7;
  --card:#ffffff;
  --text:#0b1b12;
  --muted:#4d6b5b;
  --line: rgba(16,24,40,.10);
  --brand:#0f5132;
  --brand2:#17c964;
  --shadow: 0 16px 40px rgba(16,24,40,.10);
  --radius: 18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(23,201,100,.18), transparent 60%),
    radial-gradient(900px 520px at 95% 0%, rgba(15,81,50,.15), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--bg) 30%, #f3f8f5 70%, #f6faf7);
}
a{color:inherit}
.container{max-width:1180px; margin:0 auto; padding:0 18px;}
.topbar{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.2px;
}
.logo{
  width:44px; height:44px; border-radius:50%;
  object-fit:cover;
  box-shadow: 0 18px 35px rgba(23,201,100,.25);
}
.brand small{
  display:block;
  font-weight:850;
  color: var(--muted);
  margin-top: 2px;
}
nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
nav a{
  text-decoration:none;
  padding: 9px 10px;
  border-radius: 999px;
  border:1px solid transparent;
  color: rgba(11,27,18,.86);
  font-weight:850;
  font-size: 13.5px;
}
nav a:hover{border-color: var(--line); background: rgba(15,81,50,.06)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:950;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{background:#fff; box-shadow: 0 10px 26px rgba(16,24,40,.12)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand2), #1ad06b);
  color:#052012;
  box-shadow: 0 18px 40px rgba(23,201,100,.22);
}
.tagline{
  font-size: 12.5px;
  color: rgba(11,27,18,.75);
  font-weight:850;
  display:inline-flex; gap:10px; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  width: fit-content;
}
.dot{width:10px;height:10px;border-radius:99px;background: var(--brand2); box-shadow:0 0 0 6px rgba(23,201,100,.14)}
.hero{ padding: 18px 0 14px; }
.hero-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  padding: 18px;
}
h1{margin:10px 0 6px; font-size: clamp(26px, 3.3vw, 42px); line-height:1.08; letter-spacing:-.6px}
.lead{margin:0; color:var(--muted); font-size:15.5px; line-height:1.7; max-width: 75ch}
.controls{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; align-items:center}
.input, select, textarea{
  padding: 11px 12px;
  border-radius: 14px;
  border:1px solid rgba(16,24,40,.14);
  background:#fff;
  font-weight:750;
  color: var(--text);
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 980px){ .grid{grid-template-columns:1fr} nav{display:none} }
.tile{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(16,24,40,.06);
}
.tile h3{margin:0 0 4px; font-size:16px}
.tile .meta{margin:0 0 10px; color: var(--muted); font-size: 13.5px}
.row{display:flex; gap:10px; flex-wrap:wrap}
small.count{color:var(--muted); font-weight:850}
.footer{
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  color: rgba(11,27,18,.82);
}
.small{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.6}
