/* SEO long-tail landing pages — reuses the site tokens, nav and footer.
   Adds a compact hero, readable article prose and a related-links block. */

.seo-hero {
  padding-block: clamp(48px, 8vw, 96px) 8px;
  text-align: center;
}
.seo-hero .container { max-width: 60rem; }
.seo-hero .eyebrow { display: block; margin-bottom: 14px; }
.seo-hero h1 {
  font-size: var(--step-h1);
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
}
.seo-hero h1 .accent { color: var(--aqua); }
.seo-lede {
  color: var(--ink-2);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 42rem;
  margin: 18px auto 0;
}
.seo-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.seo-cta-row .btn { padding: 13px 26px; }

/* article body */
.seo-prose { max-width: 52rem; }
.seo-prose > h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-top: 44px;
  margin-bottom: 12px;
}
.seo-prose > h2:first-child { margin-top: 0; }
.seo-prose > h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.seo-prose p {
  color: var(--ink-2);
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 14px;
}
.seo-prose a { color: var(--aqua); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.seo-prose a:hover { color: var(--aqua-2); }
.seo-prose ul, .seo-prose ol { margin: 0 0 16px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.seo-prose ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); line-height: 1.6; }
.seo-prose ul li::before { content: "✓"; color: var(--aqua); font-weight: 700; flex: none; }
.seo-prose ol { counter-reset: step; }
.seo-prose ol li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); line-height: 1.6; counter-increment: step; }
.seo-prose ol li::before {
  content: counter(step);
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.86rem;
  color: var(--aqua);
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--aqua) 10%, transparent);
}

/* inline FAQ on the SEO page (accordion reuse) */
.seo-faq { max-width: 52rem; margin-top: 20px; }

/* related / sibling links */
.seo-related {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.seo-related h2 { font-size: 1.2rem; margin-bottom: 14px; }
.seo-related-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.seo-related-grid a {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 0.92rem; font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.seo-related-grid a:hover { color: var(--aqua); border-color: var(--aqua); background: var(--accent-soft); }
