The grid overlay (press G)
Two layers, toggled by one class on <html>. The columns are a fixed-position element containing the same .container.grid markup the page uses, so it mirrors the real grid at every breakpoint. The baselines are a repeating 1px gradient every 8px, positioned absolutely over the whole document so the lines scroll with the text they audit.
/* the columns are the real grid, re-used */
.grid-overlay .grid{ height: 100%; }
/* baselines: 1px of red every 8px */
background: repeating-linear-gradient(
to bottom,
rgba(227,6,19,.14) 0 1px,
transparent 1px var(--u));