/* === Static / trust pages (issue #58 PR1) ===
   Used by templates/pages/{about,methodology,contact,license}.html.
   Keeps prose readable on desktop and mobile without the article-card framing
   so these pages feel "official" rather than "blog post". */
.static-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  line-height: 1.65;
  color: var(--text);
}
.static-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.static-page-header h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.static-page-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin: 0;
}
.static-page section { margin: 1.75rem 0 2rem; }
.static-page h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.static-page p { margin: 0.6rem 0; }
.static-page ul,
.static-page ol { margin: 0.6rem 0; padding-left: 1.5rem; }
.static-page li { margin: 0.3rem 0; }
.static-page a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.static-page a:hover { color: var(--primary-dark); }
.static-page code {
  background: var(--bg-elevated);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
.citation-example {
  border-left: 3px solid var(--primary);
  padding: 0.6rem 1rem;
  margin: 0.75rem 0;
  background: var(--primary-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}
.contact-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none !important;
  margin: 0.5rem 0;
}
.contact-cta:hover { background: var(--primary-dark); color: #fff !important; }

/* Footer trust links row (issue #58 PR1) — secondary nav under the main
   product links. Smaller, muted, separated by a thin border. */
.footer-trust-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.25rem;
  margin: 0.5rem 0 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  font-size: 0.85rem;
}
.footer-trust-links a {
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
}
.footer-trust-links a:hover { color: var(--text-secondary, #cbd5e1); text-decoration: underline; }
