:root {
  --bg: #10160f;
  --panel: #161e14;
  --ink: #e8efe4;
  --muted: #9aab94;
  --line: rgba(255,255,255,0.12);
  --accent: #c4e38a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.55 "Segoe UI", system-ui, sans-serif;
}
a { color: var(--accent); }
header, main, footer { width: min(760px, calc(100% - 32px)); margin: 0 auto; }
header {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  align-items: baseline; justify-content: space-between;
  padding: 20px 0 12px; border-bottom: 1px solid var(--line);
}
header strong { color: var(--accent); font-size: 15px; }
nav { display: flex; gap: 14px; font-size: 14px; }
nav a { text-decoration: none; }
nav a[aria-current="page"] { text-decoration: underline; }
h1 { font-size: 1.85rem; line-height: 1.25; margin: 1.4rem 0 0.6rem; }
h2 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; color: var(--accent); }
p, li { color: #d5ddcf; }
.lede { font-size: 1.05rem; color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
footer {
  margin-top: 3rem; padding: 1.2rem 0 2.5rem;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 13px;
}
table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 1rem 0; }
th, td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
.cta {
  display: inline-block; margin: 1rem 0 0; padding: 8px 14px;
  border: 1px solid var(--accent); border-radius: 8px; text-decoration: none;
}
