/* 06-components/_caps.css */
/* ── c-caps / c-cap — Act 6's curated capability grid: a small, deliberately short set of
   the genuinely important features (not the old nine-item dump), each a phosphor glyph plus
   a few words. Laid out on the shared .o-grid object; styled from semantic tokens only. */
.c-caps { list-style: none; margin: 0; padding: 0; }

.c-cap {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-sm);
  row-gap: var(--space-2xs);
  align-items: baseline;
  border: var(--bw) solid var(--line);
  background: var(--surface-raised);
  padding: var(--space-md);
}
.c-cap__glyph { grid-row: 1 / span 2; align-self: start; color: var(--accent); font-size: var(--text-lg); }
.c-cap__label { color: var(--text-bright); font-weight: var(--fw-medium); }
.c-cap__note { color: var(--text-muted); font-size: var(--text-sm); }
