:root {
  --bg: #0f1a12;
  --surface: #16241a;
  --crop: #4caf6d;
  --harvest: #e0a533;
  --text: #eef4ee;
  --muted: #9fb3a3;
  --border: rgba(255, 255, 255, 0.08);
  --maxw: 760px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--crop); text-decoration: none; }
a:hover { text-decoration: underline; }
header.site {
  padding: 28px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
header.site .brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
header.site .brand .leaf { color: var(--crop); }
header.site nav { margin-top: 12px; font-size: 0.9rem; }
header.site nav a { margin: 0 10px; color: var(--muted); }
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 20px 80px;
}
h1 { font-size: 2rem; letter-spacing: -0.02em; margin: 0 0 6px; }
h2 { font-size: 1.25rem; margin: 40px 0 10px; color: var(--crop); }
h3 { font-size: 1.05rem; margin: 26px 0 8px; }
.updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
p, li { color: #dfeadf; }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 18px 0;
}
.hero {
  text-align: center;
  padding: 60px 20px 30px;
}
.hero .logo { font-size: 3.4rem; }
.hero h1 { font-size: 2.6rem; }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin: 12px auto 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: var(--maxw);
  margin: 30px auto;
  padding: 0 20px;
}
.grid a.tile {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  color: var(--text);
}
.grid a.tile:hover { border-color: var(--crop); text-decoration: none; }
.grid a.tile .t { font-weight: 700; margin-bottom: 4px; }
.grid a.tile .d { color: var(--muted); font-size: 0.9rem; }
footer.site {
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer.site a { color: var(--muted); margin: 0 8px; }
code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 6px; font-size: 0.9em; }
