/* Shared styles for crawlable static HTML pages (guides, legal) */
body.seo-page {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: #1e1e24;
  line-height: 1.65;
}

/* Home index only: in HTML for crawlers, never shown above the React app */
.seo-crawl-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.seo-page h1,
.seo-page h2 {
  color: #8b1a4a;
  line-height: 1.25;
}
.seo-page h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}
.seo-eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b1a4a;
  margin-bottom: 0.75rem;
}
.seo-lede {
  font-size: 1.05rem;
  max-width: 42rem;
}
.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.25rem 0 1.5rem;
}
.seo-cta {
  display: inline-block;
  background: #8b1a4a;
  color: #fff !important;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.seo-cta-ghost {
  display: inline-block;
  border: 1.5px solid #d8cfc8;
  color: #8b1a4a !important;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.seo-note,
.seo-trust {
  background: #fbf4e4;
  border: 1px solid #ead9b5;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}
.seo-trust h2 {
  font-size: 1.1rem;
  margin-top: 0;
}
.seo-trust ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}
.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.seo-guide-grid a {
  display: block;
  border: 1px solid #e2d9d0;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}
.seo-guide-grid a:hover {
  border-color: #8b1a4a;
}
.seo-guide-grid strong {
  color: #8b1a4a;
  display: block;
  margin-bottom: 4px;
}
.seo-nav {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.seo-nav a {
  color: #8b1a4a;
}
