:root {
  --bg: #0f1117; --surface: #1a1d27; --border: #2a2d3a;
  --text: #e2e4ed; --muted: #6b7280; --accent: #4f8ef7;
  --green: #22c55e; --red: #ef4444; --yellow: #f59e0b; --purple: #a78bfa;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text);
       font-family: 'Segoe UI', system-ui, sans-serif; line-height: 1.6; padding: 2rem 1rem; }
.page { max-width: 820px; margin: 0 auto; }

nav { font-size: .8rem; color: var(--muted); margin-bottom: 2rem; }
nav a { color: var(--accent); text-decoration: none; }
nav a:hover { text-decoration: underline; }

header { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; margin-bottom: 2rem; }
.label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
         color: var(--accent); margin-bottom: .4rem; }
h1 { font-size: 1.5rem; font-weight: 700; }
.meta { font-size: .8rem; color: var(--muted); margin-top: .4rem; }

h2 { font-size: .9rem; font-weight: 700; color: var(--accent); text-transform: uppercase;
     letter-spacing: .06em; margin: 2rem 0 .75rem; padding-bottom: .35rem;
     border-bottom: 1px solid var(--border); }
h3 { font-size: .875rem; font-weight: 600; color: var(--yellow); margin: 1.25rem 0 .5rem; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem;
                padding: .4rem .65rem; background: var(--surface);
                border-radius: 6px; border: 1px solid var(--border); }
.box { width: 16px; height: 16px; border: 2px solid var(--border); border-radius: 3px;
       flex-shrink: 0; margin-top: 2px; }
.done .box { background: var(--green); border-color: var(--green); }
.done .box::after { content: '✓'; color: #000; font-size: 10px; display: flex;
                    align-items: center; justify-content: center; font-weight: 900; }
.must { background: #0d2218; border-color: #166534; }
.must .box { border-color: var(--green); }

code { font-family: 'Cascadia Code','Fira Code',monospace; font-size: .8rem;
       background: #252836; padding: .1em .35em; border-radius: 3px; color: #a5b4fc; }

.scope-list { list-style: disc; padding-left: 1.4rem; display: flex; flex-direction: column; gap: .25rem; }
.scope-list li { font-size: .85rem; color: var(--muted); }

.badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .7rem; font-weight: 700;
         letter-spacing: .06em; text-transform: uppercase; padding: .2rem .55rem;
         border-radius: 99px; }
.badge-done     { background: #14532d; color: var(--green); }
.badge-progress { background: #1e3a5f; color: var(--accent); }
.badge-planned  { background: #2d1b69; color: var(--purple); }
.badge-open     { background: #292524; color: var(--yellow); }

footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border);
         font-size: .75rem; color: var(--muted); }
