/* 06-components/_keycta.css */
/* ── c-keycta — the "press to run" call-to-action key */
.c-keycta {
  display: inline-flex; align-items: center; gap: 1ch;
  padding: var(--space-xs) var(--space-md);
  background: var(--surface-raised);
  border: var(--bw) solid var(--accent);
  color: var(--text-bright);
  font-weight: var(--fw-medium);
}
.c-keycta__glyph { color: var(--accent); }
.c-keycta:hover { background: var(--accent); color: var(--text-on-accent); }
.c-keycta:hover .c-keycta__glyph { color: var(--text-on-accent); }

