/* Home — hand-authored additions.

   pages/home.css is GENERATED from the design handoff by scripts/extract_page_css.py and must
   never be hand-edited; additions live here (CLAUDE.md house style).

   The hero's convener line links to pmg.engineering. base.css gives every `a` the accent-600
   link colour, which is a light-surface token and fails contrast on the inverse hero — so the
   link inherits the hero's own muted treatment and brightens on hover/focus instead. */

.hero__conv a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-1) var(--ease-out);
}

.hero__conv a:hover,
.hero__conv a:focus-visible {
  color: var(--c-text-inverse);
}
