/* SiteHealth "front door" styling — landing page, login, signup.
   Design by Art (2026-08-24), extends the trust badge's own palette
   (plate #1b1e26, green #1f8354) so the badge and the site read as one
   product. Wired in by Bob from Art's design spec artifact. */

:root {
  --sh-paper: #f7f8f5;
  --sh-paper-raised: #ffffff;
  --sh-ink: #1b1e26;
  --sh-ink-soft: #5b6470;
  --sh-line: rgba(27,30,38,0.12);
  --sh-green: #1f8354;
  --sh-green-soft: #e3f1ea;
  --sh-green-dark: #16613e;
  --sh-amber: #7a4814;
  --sh-amber-soft: #f7ecdc;
  --sh-plate: #1b1e26;
  --sh-danger: #b3261e;
  --sh-danger-soft: #fbe8e6;
  --sh-serious: #9a3412;
  --sh-serious-soft: #fdefe6;
  --sh-slate: #57617a;
  --sh-slate-soft: #eceef2;
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --sh-paper: #14161b;
    --sh-paper-raised: #1b1e26;
    --sh-ink: #eceef2;
    --sh-ink-soft: #9aa1b0;
    --sh-line: rgba(255,255,255,0.14);
    --sh-amber: #e0a052;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.sh { background: var(--sh-paper); color: var(--sh-ink); font-family: var(--font-body); line-height: 1.55; }

.sh-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; border-bottom: 1px solid var(--sh-line);
}
.sh-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; color: inherit; text-decoration: none; }
.sh-nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.sh-nav-links a:not(.sh-btn) { color: var(--sh-ink-soft); text-decoration: none; }
.sh-btn {
  display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer;
}
.sh-btn-primary { background: var(--sh-green-dark); color: #fff; }
.sh-btn-ghost { background: transparent; color: var(--sh-ink); border: 1px solid var(--sh-line); }
.sh-btn-danger { background: var(--sh-danger); color: #fff; }
.sh-btn-warn {
  background: var(--sh-amber-soft); color: var(--sh-amber); border: 1px solid var(--sh-amber);
}
/* nav-chrome logout button — plain text link, not a visual button. Used
   inside the dark app-nav (base.html) so color is set inline where used,
   not hardcoded here (the same markup pattern used to render on a light
   background in base_public.html's public pages too, before the app-nav
   redesign). */
.link-button {
  background: none; border: none; padding: 0; font: inherit; font-weight: normal;
  color: #0b5fff; cursor: pointer; text-decoration: none;
}
.link-button:hover { background: none; text-decoration: underline; }

/* ============ app chrome (logged-in pages: dashboard, manage panel) ============ */
.sh-nav-app {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; background: var(--sh-plate);
}
.sh-nav-app .sh-brand { color: #f5f6f8; }
.sh-nav-app-right { display: flex; align-items: center; gap: 18px; font-size: 13px; color: #c3c8d4; }
.sh-nav-app-right a { color: #f5f6f8; text-decoration: none; font-weight: 600; }
.sh-nav-app-right a.muted { color: #c3c8d4; font-weight: 400; }
.sh-body { padding: 32px; max-width: 1100px; margin: 0 auto; }
.sh-page-title { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; }
.sh-lede { font-size: 13.5px; color: var(--sh-ink-soft); max-width: 62ch; margin: 0 0 22px; line-height: 1.6; }

.sh-addrow { display: flex; gap: 10px; margin-bottom: 22px; }
.sh-input {
  flex: 1; max-width: 340px; padding: 9px 12px; border: 1px solid var(--sh-line); border-radius: 6px;
  font-size: 13.5px; font-family: var(--font-body); background: var(--sh-paper-raised); color: var(--sh-ink);
}

.sh-card { background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 8px; overflow: hidden; }
table.sh-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sh-table th {
  text-align: left; padding: 11px 16px; font-size: 11px; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--sh-ink-soft); background: rgba(27,30,38,0.02); border-bottom: 1px solid var(--sh-line); font-weight: 600;
}
.sh-table td { padding: 14px 16px; border-bottom: 1px solid var(--sh-line); vertical-align: middle; }
.sh-table tr:last-child td { border-bottom: none; }
.sh-table tr:hover td { background: rgba(27,30,38,0.015); }
.sh-url { font-weight: 600; }
.sh-run-link { color: var(--sh-green-dark); text-decoration: none; font-size: 12.5px; display: block; }
.sh-run-status { color: var(--sh-ink-soft); font-size: 11px; }
.sh-actions { display: flex; gap: 6px; flex-wrap: wrap; }

.sh-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.sh-pill-verified { background: var(--sh-green-soft); color: var(--sh-green-dark); }
.sh-pill-unverified { background: rgba(27,30,38,0.06); color: var(--sh-ink-soft); }
.sh-pill svg { width: 11px; height: 11px; }

/* ============ plain pages not yet redesigned (password-reset, site_edit, ============ */
/* delete-confirm's old form, etc.) — carried over from base.html's old inline  */
/* styles so these keep working unchanged. site_verify/site_delete_confirm and  */
/* run_report graduated off this 2026-08-25/26 — see the report-page and        */
/* site_verify/delete sections below instead.                                  */
.sh-plain { font-family: var(--font-body); color: var(--sh-ink); }
.sh-plain h1 { font-size: 1.4rem; }
.sh-plain h3 { font-size: 1.05rem; }
.sh-plain a { color: #0b5fff; }
.sh-plain table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
.sh-plain th, .sh-plain td { text-align: left; padding: 0.5rem 0.6rem; border-bottom: 1px solid #ddd; }
.sh-plain input[type=text], .sh-plain input[type=url] {
  font-size: 1rem; padding: 0.5rem 0.65rem; border: 2px solid #333; border-radius: 0.375rem;
}
.sh-plain button {
  font-size: 0.95rem; font-weight: 700; padding: 0.5rem 0.9rem; border: none; border-radius: 0.375rem;
  background: #0b5fff; color: #fff; cursor: pointer;
}
.sh-plain button:hover { background: #0847c4; }
.sh-plain button.danger { background: var(--sh-danger); }
.sh-plain code { background: #f2f2f2; padding: 0.1rem 0.3rem; border-radius: 0.25rem; font-size: 0.85rem; }
.sh-plain pre { background: #f2f2f2; padding: 0.75rem; border-radius: 0.375rem; overflow-x: auto; }
.sh-plain .msg { padding: 0.6rem 0.9rem; border-radius: 0.375rem; margin-bottom: 1rem; font-weight: 600; }
.sh-plain .msg.success { background: #eef7ec; border: 2px solid #2e7d32; color: #1b5e20; }
.sh-plain .msg.error { background: #fdecea; border: 2px solid var(--sh-danger); color: #7a0000; }
.sh-plain .badge {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 0.15rem 0.5rem;
  border-radius: 999px; border: 2px solid currentColor; white-space: nowrap;
}
.sh-plain .verified { color: #1b5e20; }
.sh-plain .unverified { color: #a30000; }

.sh-hero { padding: 72px 32px 56px; max-width: 640px; margin: 0 auto; text-align: center; }
.sh-eyebrow-pill {
  display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--sh-green-dark);
  background: var(--sh-green-soft); padding: 5px 13px; border-radius: 999px; margin-bottom: 20px;
}
.sh-h1 {
  font-family: var(--font-display); font-size: clamp(30px, 5vw, 42px); font-weight: 700;
  line-height: 1.15; margin: 0 0 18px;
}
.sh-sub { font-size: 17px; color: var(--sh-ink-soft); margin: 0 0 30px; line-height: 1.6; }
.sh-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.sh-cta-row .sh-btn-primary { padding: 13px 26px; font-size: 15px; }
.sh-fineprint { font-size: 12.5px; color: var(--sh-ink-soft); }

.sh-section { padding: 52px 32px; border-top: 1px solid var(--sh-line); }
.sh-section-inner { max-width: 720px; margin: 0 auto; }
.sh-h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 0 0 8px; text-align: center; }
.sh-h2-sub { text-align: center; color: var(--sh-ink-soft); font-size: 14.5px; margin: 0 0 36px; }

.sh-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sh-step { text-align: left; }
.sh-step-num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--sh-plate); color: #fff;
  font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-family: var(--font-mono);
}
.sh-step h3 { font-size: 15px; margin: 0 0 5px; }
.sh-step p { font-size: 13.5px; color: var(--sh-ink-soft); margin: 0; line-height: 1.55; }

.sh-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 26px; }
.sh-cat-card {
  background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 8px;
  padding: 22px 22px 20px; text-align: left;
}
.sh-cat-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--sh-green-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.sh-cat-card h3 { font-size: 15.5px; margin: 0 0 6px; }
.sh-cat-card p { font-size: 13.5px; color: var(--sh-ink-soft); margin: 0; line-height: 1.6; }
.sh-verify-note { background: var(--sh-green-soft); border-radius: 8px; padding: 15px 18px; }
.sh-verify-note p { font-size: 13px; color: var(--sh-green-dark); margin: 0; line-height: 1.6; }
.sh-verify-note b { color: var(--sh-ink); }

.sh-finding-card {
  background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 8px;
  padding: 20px 22px; text-align: left;
}
.sh-finding-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sh-finding-title { font-weight: 700; font-size: 14.5px; }
.sh-finding-tag {
  font-size: 11px; font-weight: 600; color: var(--sh-amber); background: var(--sh-amber-soft);
  padding: 3px 9px; border-radius: 999px;
}
.sh-finding-tag.cat { color: var(--sh-green-dark); background: var(--sh-green-soft); }
.sh-finding-card p { font-size: 13.5px; margin: 0 0 10px; color: var(--sh-ink-soft); line-height: 1.55; }
.sh-finding-fix { background: var(--sh-green-soft); border-radius: 6px; padding: 10px 13px; }
.sh-finding-fix b { color: var(--sh-green-dark); font-size: 12px; }
.sh-finding-fix p { margin: 3px 0 0; color: var(--sh-ink); }
.sh-finding-caption { text-align: center; font-size: 12.5px; color: var(--sh-ink-soft); margin-top: 14px; }

.sh-trust { background: var(--sh-plate); color: #f5f6f8; }
.sh-trust .sh-h2, .sh-trust .sh-h2-sub { color: #f5f6f8; }
.sh-trust .sh-h2-sub { color: #9aa1b5; }
.sh-trust-body { font-size: 14.5px; color: #d7dbe4; line-height: 1.7; text-align: center; max-width: 560px; margin: 0 auto; }
.sh-trust-body + .sh-trust-body { margin-top: 14px; font-size: 13px; color: #9aa1b5; }

.sh-final { text-align: center; padding: 56px 32px; }
.sh-final h2 { font-family: var(--font-display); font-size: 26px; margin: 0 0 22px; }

.sh-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 32px; border-top: 1px solid var(--sh-line); font-size: 12.5px; color: var(--sh-ink-soft);
}
.sh-footer a { color: var(--sh-ink-soft); }

.sh-early-note {
  max-width: 720px; margin: 26px auto 0; text-align: center; font-size: 12.5px; color: var(--sh-ink-soft);
  background: var(--sh-paper-raised); border: 1px dashed var(--sh-line); border-radius: 8px;
  padding: 12px 18px;
}

.sh-msg { max-width: 720px; margin: 18px auto 0; padding: 10px 16px; border-radius: 6px; font-size: 13.5px; font-weight: 600; }
.sh-msg.success { background: var(--sh-green-soft); color: var(--sh-green-dark); }
.sh-msg.error { background: var(--sh-amber-soft); color: var(--sh-amber); }

/* auth screens */
.sh-auth-wrap { display: flex; align-items: center; justify-content: center; padding: 64px 24px; min-height: 480px; }
.sh-auth-card { width: 100%; max-width: 360px; text-align: center; }
.sh-auth-mark { margin-bottom: 18px; display: flex; justify-content: center; }
.sh-auth-card h1 { font-family: var(--font-display); font-size: 24px; margin: 0 0 6px; }
.sh-auth-card .sh-sub { font-size: 14px; margin-bottom: 26px; }
.sh-field { text-align: left; margin-bottom: 14px; }
.sh-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--sh-ink-soft); margin-bottom: 5px; }
.sh-hint { display: block; font-size: 11px; color: var(--sh-ink-soft); margin-top: 4px; line-height: 1.4; }
.sh-field input {
  width: 100%; padding: 11px 13px; border: 1px solid var(--sh-line); border-radius: 6px;
  font-size: 14px; font-family: var(--font-body); background: var(--sh-paper-raised); color: var(--sh-ink);
}
.sh-auth-card .sh-btn-primary { width: 100%; padding: 12px; font-size: 14.5px; margin-top: 4px; border: none; cursor: pointer; }
.sh-auth-switch { font-size: 13px; color: var(--sh-ink-soft); margin-top: 20px; }
.sh-auth-switch a { color: var(--sh-green-dark); font-weight: 600; text-decoration: none; }
.sh-field .errorlist { list-style: none; padding: 0; margin: 4px 0 0; color: var(--sh-amber); font-size: 12px; }

/* ============ report page (run_report / manage run detail) ============ */
.sh-backlink { font-size: 12.5px; margin-bottom: 18px; }
.sh-backlink a { color: var(--sh-green-dark); text-decoration: none; }

.sh-summary {
  display: flex; align-items: center; gap: 16px; background: var(--sh-paper-raised);
  border: 1px solid var(--sh-line); border-radius: 8px; padding: 16px 20px; margin-bottom: 24px; flex-wrap: wrap;
}
.sh-summary-badge {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; flex: none;
}
.sh-summary-text b { display: block; font-size: 14.5px; }
.sh-summary-text span { font-size: 12.5px; color: var(--sh-ink-soft); }
.sh-owner-line { margin-left: auto; font-size: 12px; color: var(--sh-ink-soft); font-family: var(--font-mono); }

/* Phase 3, 2026-08-28: performance score card - reuses .sh-summary's own
   layout/badge classes exactly (same visual language as the issue-count
   summary above it), just pulled up right under it with a bit less
   bottom margin since a finding list (or nothing at all, on a clean
   score) follows directly after. */
.sh-perf-card { margin-top: -12px; margin-bottom: 24px; }

/* ============ site run history (2026-08-27) ============ */
.sh-history-link { display: block; text-decoration: none; color: inherit; }
.sh-history-row { margin-bottom: 12px; transition: border-color 0.1s; }
.sh-history-link:hover .sh-history-row { border-color: var(--sh-green-dark); }

.sh-finding {
  background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 8px;
  padding: 18px 22px 20px; margin-bottom: 16px;
}
.sh-finding-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.sh-finding .sh-pill { font-size: 10.5px; letter-spacing: 0.02em; text-transform: uppercase; }
.sh-finding .sh-pill.cat { background: var(--sh-slate-soft); color: var(--sh-slate); }
.sh-finding-title { font-size: 15.5px; font-weight: 700; margin: 0 0 8px; }
.sh-finding-body { font-size: 13.5px; color: var(--sh-ink-soft); line-height: 1.65; margin: 0 0 12px; }
.sh-finding-fix { background: var(--sh-green-soft); border-radius: 6px; padding: 11px 15px; margin-bottom: 12px; }
.sh-finding-fix b { color: var(--sh-green-dark); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.03em; }
.sh-finding-fix p { margin: 3px 0 0; color: var(--sh-ink); font-size: 13.5px; }
.sh-finding-meta { font-size: 12px; color: var(--sh-ink-soft); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sh-finding-meta code { font-family: var(--font-mono); background: var(--sh-paper); border: 1px solid var(--sh-line); border-radius: 4px; padding: 2px 7px; font-size: 11.5px; }

/* severity variants — needs_review deliberately reuses the trust badge's
   own "Monitored" slate (#57617a), same meaning both places: "we're
   watching this, not confirmed either way," not "something's wrong."
   Dashed left border instead of solid for the same reason: pending, not
   flagged. */
.sev-critical { background: var(--sh-danger-soft); color: var(--sh-danger); }
.sev-serious { background: var(--sh-serious-soft); color: var(--sh-serious); }
.sev-moderate { background: var(--sh-amber-soft); color: var(--sh-amber); }
.sev-minor { background: var(--sh-paper); color: var(--sh-ink-soft); border: 1px solid var(--sh-line); }
.sev-needs_review { background: var(--sh-slate-soft); color: var(--sh-slate); }
.sev-clear { background: var(--sh-green-soft); color: var(--sh-green-dark); }
.sh-finding.critical { border-left: 3px solid var(--sh-danger); }
.sh-finding.serious { border-left: 3px solid var(--sh-serious); }
.sh-finding.moderate { border-left: 3px solid var(--sh-amber); }
.sh-finding.needs_review { border-left: 3px dashed var(--sh-slate); }

@media (max-width: 640px) {
  .sh-steps { grid-template-columns: 1fr; }
}

/* ============ site_verify / site_delete_confirm (Art's spec, 2026-08-26) ==
   Every color/component reused from run_report/dashboard, nothing new
   invented for these two pages specifically — see the artifact's own spec
   sheet. Graduates both pages off .sh-plain, same as run_report did. */
.sh-verified-card {
  background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 8px;
  padding: 18px 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.sh-verified-when { font-size: 12.5px; color: var(--sh-ink-soft); }

.sh-option {
  background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 8px;
  padding: 22px 24px; margin-bottom: 18px;
}
.sh-option-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sh-green-dark); background: var(--sh-green-soft); padding: 3px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 10px;
}
.sh-option h3 { font-size: 16px; margin: 0 0 10px; }
.sh-option p.instr { font-size: 13.5px; color: var(--sh-ink-soft); margin: 0 0 10px; }
.sh-pre {
  background: var(--sh-plate); color: #e3f1ea; font-family: var(--font-mono); font-size: 12.5px;
  border-radius: 6px; padding: 12px 15px; overflow-x: auto; margin: 0 0 10px; line-height: 1.7;
}
.sh-fields { display: grid; grid-template-columns: max-content 1fr; gap: 4px 14px; margin: 0 0 12px; }
.sh-fields dt {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--sh-ink-soft); text-transform: uppercase;
  letter-spacing: 0.03em; padding-top: 2px;
}
.sh-fields dd { font-family: var(--font-mono); font-size: 13px; color: var(--sh-ink); margin: 0; word-break: break-all; }
/* Left-rule, not a colored box — informational, deliberately not competing
   visually with the real danger box below on the delete page. */
.sh-note {
  font-size: 12.5px; color: var(--sh-ink-soft); background: var(--sh-paper); border-left: 3px solid var(--sh-line);
  padding: 8px 12px; margin: 0 0 8px; border-radius: 0 4px 4px 0;
}
.sh-note b { color: var(--sh-ink); }
code.inline { font-family: var(--font-mono); font-size: 12.5px; }

.sh-danger-box {
  background: var(--sh-danger-soft); border: 1px solid #e8b9b3; border-radius: 8px; padding: 18px 22px; margin-bottom: 20px;
}
.sh-danger-box p { margin: 0 0 8px; font-size: 14px; color: var(--sh-danger); font-weight: 600; }
.sh-danger-box ul { margin: 6px 0 10px; padding-left: 20px; font-size: 13.5px; color: var(--sh-ink); }
.sh-danger-box .final { margin: 0; font-weight: 700; }

/* ============ pricing page ============ */
.sh-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 720px; margin: 0 auto; }
.sh-price-card {
  background: var(--sh-paper-raised); border: 1px solid var(--sh-line); border-radius: 10px;
  padding: 28px 26px; text-align: left;
}
.sh-price-card.featured { border: 2px solid var(--sh-green-dark); }
.sh-price-card h3 { font-size: 17px; margin: 0 0 4px; }
.sh-price-amount { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin: 6px 0 2px; }
.sh-price-amount span { font-family: var(--font-body); font-size: 13.5px; font-weight: 400; color: var(--sh-ink-soft); }
.sh-price-list { list-style: none; padding: 0; margin: 18px 0 22px; font-size: 13.5px; }
.sh-price-list li { padding: 6px 0; display: flex; gap: 8px; align-items: flex-start; color: var(--sh-ink); }
.sh-price-list li svg { flex: none; margin-top: 2px; width: 13px; height: 13px; color: var(--sh-green-dark); }
.sh-price-card .sh-btn { width: 100%; text-align: center; justify-content: center; }
.sh-price-note { font-size: 12px; color: var(--sh-ink-soft); text-align: center; margin-top: 14px; }
@media (max-width: 640px) {
  .sh-price-grid { grid-template-columns: 1fr; }
}

/* ============ CSP cleanup: extracted inline styles ============
   style-src used to need 'unsafe-inline' for the style="" attributes
   below - every one of them was genuinely static (no per-request
   interpolation), so each moves here as a real class/selector instead of
   switching to a nonce. See CONTENT_SECURITY_POLICY in settings.py. */

/* small reusable spacing utilities - the values are the literal ones the
   inline styles already used, nothing new invented */
.sh-mt-2px { margin-top: 2px; }
.sh-mt-10px { margin-top: 10px; }
.sh-mt-20px { margin-top: 20px; }
.sh-mt-0_5rem { margin-top: 0.5rem; }
.sh-mt-1_25rem { margin-top: 1.25rem; }
.sh-mt-1_5rem { margin-top: 1.5rem; }
.sh-mt-2rem { margin-top: 2rem; }
.sh-mb-16px { margin-bottom: 16px; }
.sh-mb-32px { margin-bottom: 32px; }
.sh-flex-gap-10 { display: flex; gap: 10px; }

/* component-scoped rules, one per real inline usage removed */
.sh-msg.info { background: var(--sh-slate-soft); color: var(--sh-slate); }
.sh-danger-box.success { background: var(--sh-green-soft); border-color: var(--sh-green-dark); }
.sh-danger-box.success p { color: var(--sh-green-dark); }
.sh-app-h2 { font-family: var(--font-display); font-size: 20px; }
.sh-section.tight { padding-top: 0; }
.sh-section-inner.narrow { max-width: 760px; }
.sh-field small { color: var(--sh-ink-soft); }
.sh-lede.accent-links a { color: var(--sh-green-dark); }
.sh-trust-body a { color: #f5f6f8; text-decoration: underline; }
.sh-nav-app-right .link-button { color: #f5f6f8; font-weight: 600; }
.sh-inline-form { display: inline; }
.sh-backlink.no-margin { margin: 0; }
.sh-url-input { width: 100%; max-width: 28rem; }
.sh-form-hint { margin-top: 1.5rem; color: #555; font-size: 0.9rem; }
.sh-badge-note { margin-top: 1.5rem; color: var(--ink-soft, #555); }
.sh-verify-consent { display: flex; gap: 9px; align-items: flex-start; cursor: pointer; border-left-color: var(--sh-green-dark); }
.sh-verify-actions { display: flex; gap: 10px; align-items: center; margin-top: 14px; }

/* ============ long-form policy pages (privacy policy) ============
   Left-aligned prose - .sh-h2 is centered/display-sized for marketing
   section headers, wrong shape for a document with many subsection
   headings read top to bottom. */
.sh-policy-body { max-width: 68ch; margin: 0 auto; }
.sh-policy-body h2 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin: 32px 0 10px; color: var(--sh-ink);
}
.sh-policy-body h2:first-child { margin-top: 0; }
.sh-policy-body p { font-size: 14.5px; line-height: 1.7; color: var(--sh-ink); margin: 0 0 14px; }
.sh-policy-body a { color: var(--sh-green-dark); }
