From the 2026-05-30 SEO audit (P1-3 partial follow-up to #7).
The four pillar cards on the homepage ("Workflow-gated reads & writes", "SOC2-ready audit", "No KMS lock-in", "Plaintext never on the wire") render their titles as <strong> because Material's grid-cards plugin converts the first bold line. They should be semantic <h3> so crawlers see a real content outline (the audit noted there are zero h2/h3 tags on the homepage before #7; #7 added the h2's; this issue adds the h3's).
Likely fix: replace the leading bold line in each card with explicit HTML <h3 class="sb-pillar-title">…</h3> inside the card body, since Material doesn't currently support a ### title markdown form inside grid cards.
CSS classes that style .sb-pillar-icon already exist; add .sb-pillar-title if needed to match the current visual weight.
From the 2026-05-30 SEO audit (P1-3 partial follow-up to #7).
The four pillar cards on the homepage ("Workflow-gated reads & writes", "SOC2-ready audit", "No KMS lock-in", "Plaintext never on the wire") render their titles as
<strong>because Material's grid-cards plugin converts the first bold line. They should be semantic<h3>so crawlers see a real content outline (the audit noted there are zero h2/h3 tags on the homepage before #7; #7 added the h2's; this issue adds the h3's).Likely fix: replace the leading bold line in each card with explicit HTML
<h3 class="sb-pillar-title">…</h3>inside the card body, since Material doesn't currently support a### titlemarkdown form inside grid cards.CSS classes that style
.sb-pillar-iconalready exist; add.sb-pillar-titleif needed to match the current visual weight.