
:root {
  color-scheme: light;
  --bg: #f7f7f8;
  --card: #ffffff;
  --text: #1c1c1e;
  --muted: #6b6b70;
  --accent: #1d6f42;
  --border: #e4e4e7;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
header.site {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
header.site .wrap { padding: 20px; display: flex; align-items: center; justify-content: space-between; }
header.site a.brand { font-weight: 700; text-decoration: none; color: var(--text); }
nav.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
nav.crumbs a { color: var(--accent); text-decoration: none; }
h1 { font-size: 26px; margin-bottom: 4px; }
h2 { font-size: 19px; margin-top: 36px; margin-bottom: 10px; border-top: 1px solid var(--border); padding-top: 24px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
p, li { font-size: 15.5px; }
ul { padding-left: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
table.apps { width: 100%; border-collapse: collapse; margin-top: 12px; }
table.apps th, table.apps td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
table.apps th { color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; }
table.apps a { color: var(--accent); text-decoration: none; margin-right: 12px; }
table.apps a:hover { text-decoration: underline; }
.group-title { margin-top: 32px; }
footer.site { text-align: center; color: var(--muted); font-size: 13px; padding: 40px 20px; }
.badge { display:inline-block; background:#eef6ef; color:var(--accent); border-radius:6px; padding:2px 8px; font-size:12px; font-weight:600; margin-left:8px; }
