
/*
 * Editorial SEO system for public secondary pages.
 *
 * The landing page keeps its Signal OS experience. These pages use a
 * deliberately different reading-first system: light canvas, clear editorial
 * hierarchy, practical content blocks and a shared canonical shell.
 */
:root {
  --seo-ink: #0a1b36;
  --seo-navy: #061936;
  --seo-muted: #607492;
  --seo-subtle: #8a9ab1;
  --seo-cloud: #f5f8fc;
  --seo-surface: #ffffff;
  --seo-line: #d8e3f0;
  --seo-orange: #ff642f;
  --seo-orange-soft: #fff0ea;
  --seo-blue-soft: #eaf2fb;
  --seo-shadow: 0 18px 48px rgba(20, 47, 88, .08);
}

html {
  scroll-behavior: smooth;
}

body.seo-editorial-page,
body.landing.plans-page.seo-editorial-page {
  min-width: 0;
  background: var(--seo-cloud) !important;
  color: var(--seo-ink) !important;
}

body.seo-editorial-page {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body.seo-editorial-page main#main {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--seo-cloud);
}

body.seo-editorial-page .l-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}

body.seo-editorial-page .seo-shell {
  width: min(1180px, calc(100% - 48px));
  min-width: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

body.seo-editorial-page .seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 30px 0 18px;
  color: var(--seo-muted);
  font: 600 13px/1.4 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-breadcrumbs a {
  color: var(--seo-ink);
  text-decoration: none;
}

body.seo-editorial-page .seo-breadcrumbs a:hover,
body.seo-editorial-page .seo-related a:hover,
body.seo-editorial-page .seo-link:hover {
  color: var(--seo-orange);
}

body.seo-editorial-page .seo-kicker {
  margin: 0 0 16px;
  color: var(--seo-orange);
  font: 700 11px/1.2 "Instrument Sans", Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.seo-editorial-page .seo-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: stretch;
  gap: 52px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid var(--seo-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(42, 117, 213, .13), transparent 42%),
    var(--seo-surface);
  box-shadow: var(--seo-shadow);
}

body.seo-editorial-page .seo-page-header--article {
  display: block;
  padding-right: min(12vw, 140px);
}

body.seo-editorial-page .seo-page-header h1,
body.seo-editorial-page .seo-section h2,
body.seo-editorial-page .seo-section h3,
body.seo-editorial-page .seo-article-body h2,
body.seo-editorial-page .seo-article-body h3 {
  margin: 0;
  color: var(--seo-ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  letter-spacing: -.045em;
}

body.seo-editorial-page .seo-page-header h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
}

body.seo-editorial-page .seo-page-header h1 span {
  color: var(--seo-orange);
}

body.seo-editorial-page .seo-page-header p:not(.seo-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--seo-muted);
  font: 400 19px/1.55 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-header-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--seo-line);
  border-radius: 16px;
  background: var(--seo-cloud);
}

body.seo-editorial-page .seo-header-aside strong {
  display: block;
  color: var(--seo-ink);
  font: 700 21px/1.15 "Bricolage Grotesque", Arial, sans-serif;
}

body.seo-editorial-page .seo-header-aside p {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font: 400 14px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-aside-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.seo-editorial-page .seo-aside-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--seo-ink);
  font: 600 13px/1.35 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-aside-list li::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--seo-orange);
  border-radius: 50%;
  color: var(--seo-orange);
  content: "→";
  font: 700 12px/1 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 28px;
  color: var(--seo-subtle);
  font: 600 12px/1.3 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

body.seo-editorial-page .seo-actions a {
  min-height: 46px;
  box-sizing: border-box;
  padding: 13px 18px;
  border-radius: 9px;
  font: 700 14px/1 "Instrument Sans", Arial, sans-serif;
  text-decoration: none;
}

body.seo-editorial-page .seo-actions .seo-primary {
  color: #fff;
  background: var(--seo-orange);
  box-shadow: 0 12px 24px rgba(255, 100, 47, .2);
}

body.seo-editorial-page .seo-actions .seo-secondary {
  color: var(--seo-ink);
  border: 1px solid var(--seo-line);
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-quick-answer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  align-items: center;
  gap: 32px;
  margin-top: 34px;
  padding: 28px 32px;
  border: 1px solid #cfe0f2;
  border-radius: 18px;
  background: var(--seo-blue-soft);
}

body.seo-editorial-page .seo-quick-answer h2 {
  max-width: 760px;
  margin: 0;
  color: var(--seo-ink);
  font: 700 clamp(25px, 3vw, 38px)/1.05 "Bricolage Grotesque", Arial, sans-serif;
  letter-spacing: -.045em;
}

body.seo-editorial-page .seo-quick-answer p:not(.seo-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--seo-muted);
  font: 400 15px/1.55 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-quick-answer-points {
  display: grid;
  gap: 10px;
}

body.seo-editorial-page .seo-quick-answer-points strong {
  color: var(--seo-orange);
  font: 700 12px/1.2 "Instrument Sans", Arial, sans-serif;
  letter-spacing: .08em;
}

body.seo-editorial-page .seo-quick-answer-points strong span {
  margin-left: 8px;
  color: var(--seo-ink);
  font: 700 14px/1.2 "Instrument Sans", Arial, sans-serif;
  letter-spacing: 0;
}

body.seo-editorial-page .seo-glossary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.seo-editorial-page .seo-glossary-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--seo-line);
  border-radius: 14px;
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-glossary-grid h3 {
  font-size: 18px;
  line-height: 1.1;
}

body.seo-editorial-page .seo-glossary-grid p {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font: 400 13px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-section {
  padding: 86px 0 0;
}

body.seo-editorial-page .seo-section--compact {
  padding-top: 58px;
}

body.seo-editorial-page .seo-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

body.seo-editorial-page .seo-section-head > div {
  min-width: 0;
}

body.seo-editorial-page .seo-section h2 {
  max-width: 800px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

body.seo-editorial-page .seo-section-head p,
body.seo-editorial-page .seo-section > p:not(.seo-kicker) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--seo-muted);
  font: 400 17px/1.55 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.seo-editorial-page .seo-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
  padding: 26px;
  border: 1px solid var(--seo-line);
  border-radius: 16px;
  background: var(--seo-surface);
  box-shadow: 0 10px 24px rgba(20, 47, 88, .04);
}

body.seo-editorial-page a.seo-card {
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

body.seo-editorial-page a.seo-card:hover {
  border-color: rgba(255, 100, 47, .66);
  box-shadow: var(--seo-shadow);
  transform: translateY(-3px);
}

body.seo-editorial-page .seo-card--wide {
  grid-column: span 2;
}

body.seo-editorial-page .seo-card-number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  border: 1px solid var(--seo-orange);
  border-radius: 50%;
  color: var(--seo-orange);
  font: 700 12px/1 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-card h3 {
  font-size: 22px;
  line-height: 1.08;
}

body.seo-editorial-page .seo-card p {
  margin: 12px 0 0;
  color: var(--seo-muted);
  font: 400 14px/1.52 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--seo-orange);
  font: 700 13px/1.2 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  align-items: stretch;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--seo-line);
  border-radius: 20px;
  background: var(--seo-navy);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(6, 25, 54, .18);
}

body.seo-editorial-page .seo-featured h3 {
  max-width: 680px;
  color: #fff;
  font: 700 clamp(28px, 3.5vw, 44px)/1.02 "Bricolage Grotesque", Arial, sans-serif;
  letter-spacing: -.045em;
}

body.seo-editorial-page .seo-featured p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #c7d6e8;
  font: 400 16px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  color: #9db1ca;
  font: 600 12px/1.2 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-featured-visual {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px solid rgba(255, 100, 47, .62);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 100, 47, .2), transparent 48%),
    rgba(255, 255, 255, .03);
}

body.seo-editorial-page .seo-featured-visual span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid var(--seo-orange);
  border-radius: 50%;
  color: var(--seo-orange);
  font-size: 30px;
}

body.seo-editorial-page .seo-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--seo-line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-stat-strip article {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--seo-line);
}

body.seo-editorial-page .seo-stat-strip article:last-child {
  border-right: 0;
}

body.seo-editorial-page .seo-stat-strip strong {
  display: block;
  color: var(--seo-orange);
  font: 700 28px/1 "Bricolage Grotesque", Arial, sans-serif;
}

body.seo-editorial-page .seo-stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--seo-ink);
  font: 700 14px/1.25 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-stat-strip p {
  margin: 8px 0 0;
  color: var(--seo-muted);
  font: 400 12px/1.4 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-checklist {
  overflow-x: auto;
  border: 1px solid var(--seo-line);
  border-radius: 16px;
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-checklist table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: var(--seo-ink);
  font: 400 14px/1.45 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-checklist th,
body.seo-editorial-page .seo-checklist td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--seo-line);
  text-align: left;
  vertical-align: top;
}

body.seo-editorial-page .seo-checklist th {
  color: var(--seo-muted);
  background: var(--seo-cloud);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.seo-editorial-page .seo-checklist tr:last-child td {
  border-bottom: 0;
}

body.seo-editorial-page .seo-checklist td:first-child {
  width: 28%;
  color: var(--seo-ink);
  font-weight: 700;
}

body.seo-editorial-page .seo-checklist td:last-child {
  color: var(--seo-muted);
}

body.seo-editorial-page .seo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: seo-step;
}

body.seo-editorial-page .seo-step {
  position: relative;
  min-width: 0;
  padding: 28px 26px 26px;
  border-top: 3px solid var(--seo-orange);
  border-radius: 0 0 14px 14px;
  background: var(--seo-surface);
  box-shadow: 0 10px 24px rgba(20, 47, 88, .04);
}

body.seo-editorial-page .seo-step::before {
  display: block;
  margin-bottom: 28px;
  color: var(--seo-orange);
  content: counter(seo-step, decimal-leading-zero);
  counter-increment: seo-step;
  font: 700 12px/1 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-step h3 {
  font-size: 23px;
  line-height: 1.05;
}

body.seo-editorial-page .seo-step p {
  margin: 12px 0 0;
  color: var(--seo-muted);
  font: 400 14px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-callout {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--seo-orange);
  background: var(--seo-orange-soft);
  color: #5e2c1e;
  font: 600 15px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-faq {
  border-top: 1px solid var(--seo-line);
}

body.seo-editorial-page .seo-faq details {
  border-bottom: 1px solid var(--seo-line);
}

body.seo-editorial-page .seo-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  color: var(--seo-ink);
  font: 700 17px/1.3 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-faq summary::-webkit-details-marker {
  display: none;
}

body.seo-editorial-page .seo-faq summary span {
  flex: 0 0 auto;
  color: var(--seo-orange);
  font-size: 24px;
  font-weight: 400;
}

body.seo-editorial-page .seo-faq details[open] summary span {
  transform: rotate(45deg);
}

body.seo-editorial-page .seo-faq details p {
  max-width: 820px;
  margin: -6px 0 22px;
  color: var(--seo-muted);
  font: 400 15px/1.55 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-related {
  padding: 86px 0 96px;
}

body.seo-editorial-page .seo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

body.seo-editorial-page .seo-related a {
  min-height: 150px;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid var(--seo-line);
  border-radius: 14px;
  background: var(--seo-surface);
  color: var(--seo-ink);
  text-decoration: none;
}

body.seo-editorial-page .seo-related small {
  display: block;
  color: var(--seo-orange);
  font: 700 11px/1 "Instrument Sans", Arial, sans-serif;
  letter-spacing: .1em;
}

body.seo-editorial-page .seo-related strong {
  display: block;
  margin-top: 20px;
  font: 700 19px/1.1 "Bricolage Grotesque", Arial, sans-serif;
}

body.seo-editorial-page .seo-related p {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font: 400 13px/1.45 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 86px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 100, 47, .55);
  border-radius: 18px;
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
}

body.seo-editorial-page .seo-cta p {
  margin: 8px 0 0;
  color: var(--seo-muted);
  font: 400 15px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-cta a {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 9px;
  color: #fff;
  background: var(--seo-orange);
  font: 700 14px/1 "Instrument Sans", Arial, sans-serif;
  text-decoration: none;
}

body.seo-editorial-page .seo-article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 28px;
  padding-top: 54px;
}

body.seo-editorial-page .seo-article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 13px;
  padding: 22px 20px;
  border: 1px solid var(--seo-line);
  border-radius: 14px;
  background: var(--seo-navy);
}

body.seo-editorial-page .seo-article-toc strong {
  margin-bottom: 6px;
  color: var(--seo-orange);
  font: 700 10px/1.2 "Instrument Sans", Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.seo-editorial-page .seo-article-toc a {
  color: #c9d7e9;
  font: 600 13px/1.3 "Instrument Sans", Arial, sans-serif;
  text-decoration: none;
}

body.seo-editorial-page .seo-article-toc a:hover {
  color: #fff;
}

body.seo-editorial-page .seo-article-body {
  min-width: 0;
  padding: 42px 48px 58px;
  border: 1px solid var(--seo-line);
  border-radius: 18px;
  background: var(--seo-surface);
  box-shadow: 0 12px 32px rgba(20, 47, 88, .05);
}

body.seo-editorial-page .seo-article-body h2 {
  margin-top: 50px;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.05;
}

body.seo-editorial-page .seo-article-body h2:first-child {
  margin-top: 0;
}

body.seo-editorial-page .seo-article-body h3 {
  margin-top: 30px;
  font-size: 23px;
  line-height: 1.1;
}

body.seo-editorial-page .seo-article-body p,
body.seo-editorial-page .seo-article-body li {
  color: var(--seo-muted);
  font: 400 16px/1.65 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-article-body p {
  margin: 18px 0 0;
}

body.seo-editorial-page .seo-article-body ul,
body.seo-editorial-page .seo-article-body ol {
  margin: 20px 0 0;
  padding-left: 22px;
}

body.seo-editorial-page .seo-article-body li + li {
  margin-top: 8px;
}

body.seo-editorial-page .seo-article-body strong {
  color: var(--seo-ink);
}

body.seo-editorial-page .seo-article-body .seo-callout {
  margin: 28px 0 0;
}

body.seo-editorial-page .seo-article-body .seo-faq {
  margin-top: 26px;
}

body.seo-editorial-page .seo-article-related {
  padding: 54px 0 88px;
}

body.seo-editorial-page .seo-article-related h2 {
  font-size: clamp(30px, 4vw, 48px);
}

body.seo-editorial-page .seo-article-related .seo-related-grid {
  justify-content: start;
}

body.seo-editorial-page .seo-plans-wrap {
  padding: 64px 0 92px;
}

body.seo-editorial-page .seo-plans-intro {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

body.seo-editorial-page .seo-plans-intro h1 {
  margin: 0;
  color: var(--seo-ink);
  font: 700 clamp(40px, 6vw, 68px)/.98 "Bricolage Grotesque", Arial, sans-serif;
  letter-spacing: -.05em;
}

body.seo-editorial-page .seo-plans-intro p {
  margin: 18px auto 0;
  color: var(--seo-muted);
  font: 400 18px/1.55 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-plans-context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 34px;
}

body.seo-editorial-page .seo-plans-context article {
  padding: 20px;
  border: 1px solid var(--seo-line);
  border-radius: 14px;
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-plans-context strong {
  display: block;
  color: var(--seo-ink);
  font: 700 16px/1.15 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-plans-context span {
  display: block;
  margin-top: 7px;
  color: var(--seo-muted);
  font: 400 13px/1.4 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-plans-card {
  padding: 0;
  border: 1px solid var(--seo-line);
  border-radius: 20px;
  background: var(--seo-surface);
  box-shadow: var(--seo-shadow);
  overflow: hidden;
}

body.seo-editorial-page .seo-plans-explanation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

body.seo-editorial-page .seo-plans-explanation article {
  padding: 26px;
  border: 1px solid var(--seo-line);
  border-radius: 15px;
  background: var(--seo-surface);
}

body.seo-editorial-page .seo-plans-explanation h2 {
  font-size: 26px;
}

body.seo-editorial-page .seo-plans-explanation p {
  margin: 11px 0 0;
  color: var(--seo-muted);
  font: 400 14px/1.55 "Instrument Sans", Arial, sans-serif;
}

body.seo-editorial-page .seo-plans-faq {
  max-width: 820px;
  margin: 0 auto;
}

body.seo-editorial-page .seo-plans-faq h2 {
  text-align: center;
}

body.seo-editorial-page .seo-plans-faq .seo-faq {
  margin-top: 28px;
}

body.seo-editorial-page .seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  body.seo-editorial-page .seo-page-header {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px;
  }

  body.seo-editorial-page .seo-page-header--article {
    padding-right: 42px;
  }

  body.seo-editorial-page .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.seo-editorial-page .seo-card--wide {
    grid-column: span 2;
  }

  body.seo-editorial-page .seo-article-layout {
    grid-template-columns: 190px minmax(0, 760px);
  }
}

@media (max-width: 700px) {
  body.seo-editorial-page .seo-shell {
    width: min(100% - 28px, 580px);
  }

  body.seo-editorial-page .seo-breadcrumbs {
    padding-top: 20px;
    padding-bottom: 14px;
  }

  body.seo-editorial-page .seo-page-header,
  body.seo-editorial-page .seo-page-header--article {
    display: block;
    padding: 32px 22px;
    border-radius: 18px;
  }

  body.seo-editorial-page .seo-page-header h1 {
    font-size: clamp(38px, 12vw, 57px);
  }

  body.seo-editorial-page .seo-page-header p:not(.seo-kicker) {
    font-size: 16px;
  }

  body.seo-editorial-page .seo-header-aside {
    margin-top: 28px;
    padding: 20px;
  }

  body.seo-editorial-page .seo-section {
    padding-top: 62px;
  }

  body.seo-editorial-page .seo-section-head {
    display: block;
  }

  body.seo-editorial-page .seo-section h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  body.seo-editorial-page .seo-quick-answer {
    display: block;
    padding: 24px 22px;
  }

  body.seo-editorial-page .seo-quick-answer-points {
    margin-top: 22px;
  }

  body.seo-editorial-page .seo-glossary-grid,
  body.seo-editorial-page .seo-grid,
  body.seo-editorial-page .seo-related-grid,
  body.seo-editorial-page .seo-steps,
  body.seo-editorial-page .seo-stat-strip,
  body.seo-editorial-page .seo-plans-context,
  body.seo-editorial-page .seo-plans-explanation {
    grid-template-columns: 1fr;
  }

  body.seo-editorial-page .seo-card--wide {
    grid-column: auto;
  }

  body.seo-editorial-page .seo-card {
    min-height: 0;
  }

  body.seo-editorial-page .seo-featured {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  body.seo-editorial-page .seo-featured-visual {
    min-height: 130px;
  }

  body.seo-editorial-page .seo-stat-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--seo-line);
  }

  body.seo-editorial-page .seo-stat-strip article:last-child {
    border-bottom: 0;
  }

  body.seo-editorial-page .seo-cta {
    display: block;
    margin-bottom: 62px;
    padding: 26px 22px;
  }

  body.seo-editorial-page .seo-cta a {
    display: inline-block;
    margin-top: 22px;
  }

  body.seo-editorial-page .seo-article-layout {
    display: block;
    padding-top: 32px;
  }

  body.seo-editorial-page .seo-article-toc {
    position: static;
    margin-bottom: 18px;
  }

  body.seo-editorial-page .seo-article-body {
    padding: 30px 22px 42px;
    border-radius: 16px;
  }

  body.seo-editorial-page .seo-article-body h2 {
    margin-top: 40px;
  }

  body.seo-editorial-page .seo-article-related {
    padding-bottom: 62px;
  }

  body.seo-editorial-page .seo-actions a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 420px) {
  body.seo-editorial-page .seo-shell {
    width: calc(100% - 20px);
  }

  body.seo-editorial-page .seo-page-header h1 {
    font-size: 37px;
  }

  body.seo-editorial-page .seo-header-meta {
    gap: 10px 15px;
  }

  body.seo-editorial-page .seo-article-toc {
    padding: 18px 16px;
  }

  body.seo-editorial-page .seo-article-body p,
  body.seo-editorial-page .seo-article-body li {
    font-size: 15px;
  }
}

/* Pricing component keeps its existing interactive behavior but lives inside
   the same light editorial frame as the other public secondary pages. */
body.landing.plans-page.seo-editorial-page .l-plans-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 96px;
  background: transparent;
}

body.landing.plans-page.seo-editorial-page .l-plans-section > .l-eyebrow,
body.landing.plans-page.seo-editorial-page .l-plans-section > .l-h2,
body.landing.plans-page.seo-editorial-page .l-plans-section > .l-section-lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

body.landing.plans-page.seo-editorial-page .l-plans-section > .l-h2 {
  color: var(--seo-ink) !important;
  font: 700 clamp(38px, 5vw, 60px)/1 "Bricolage Grotesque", Arial, sans-serif !important;
  letter-spacing: -.05em;
}

body.landing.plans-page.seo-editorial-page .l-plans-section > .l-section-lead {
  color: var(--seo-muted) !important;
}

body.landing.plans-page.seo-editorial-page .pricing-card-root,
body.landing.plans-page.seo-editorial-page .plans-trust-row,
body.landing.plans-page.seo-editorial-page .l-plans-note,
body.landing.plans-page.seo-editorial-page .plans-legal-note {
  position: relative;
  z-index: 1;
}

body.landing.plans-page.seo-editorial-page .plans-trust-row {
  color: var(--seo-muted);
}

body.landing.plans-page.seo-editorial-page .l-plans-note,
body.landing.plans-page.seo-editorial-page .plans-legal-note {
  color: var(--seo-muted) !important;
}

@media (max-width: 700px) {
  body.landing.plans-page.seo-editorial-page .l-plans-section {
    width: calc(100% - 28px);
    padding-top: 38px;
  }
}


/* Final hardening: visible loading/error states, keyboard focus and reduced motion. */
body.landing.plans-page.seo-editorial-page .pricing-loading-state,
body.landing.plans-page.seo-editorial-page .pricing-error-state {
  display: grid;
  gap: 12px;
  min-height: 180px;
  place-content: center;
  padding: 32px;
  border: 1px solid var(--seo-line);
  border-radius: 18px;
  color: var(--seo-muted);
  text-align: center;
  font: 400 15px/1.5 "Instrument Sans", Arial, sans-serif;
}

body.landing.plans-page.seo-editorial-page .pricing-loading-state p,
body.landing.plans-page.seo-editorial-page .pricing-error-state p {
  margin: 0;
}

body.landing.plans-page.seo-editorial-page .pricing-loading-state small {
  color: var(--seo-muted);
  font-size: 13px;
}

body.landing.plans-page.seo-editorial-page .pricing-loading-bar {
  display: block;
  width: min(100%, 420px);
  height: 12px;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #e6edf6 25%, #f9fbfe 50%, #e6edf6 75%);
  background-size: 200% 100%;
  animation: pricing-shimmer 1.4s ease-in-out infinite;
}

body.landing.plans-page.seo-editorial-page .pricing-loading-bar--wide {
  height: 46px;
  border-radius: 12px;
}

body.landing.plans-page.seo-editorial-page .pricing-error-state strong {
  color: var(--seo-ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 20px;
}

body.landing.plans-page.seo-editorial-page .pricing-error-state button {
  justify-self: center;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  background: var(--seo-orange);
  color: #fff;
  cursor: pointer;
  font: 700 14px/1 "Instrument Sans", Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(255, 100, 37, 0.2);
}

@keyframes pricing-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

html {
  scroll-padding-top: 92px;
}

body.seo-editorial-page :where(a, button, summary):focus-visible {
  outline: 3px solid var(--seo-orange);
  outline-offset: 4px;
  border-radius: 6px;
}

body.seo-editorial-page :where(.seo-card, .seo-related a, .seo-quick-answer, .seo-page-header) {
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.seo-editorial-page *,
  body.seo-editorial-page *::before,
  body.seo-editorial-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 700px) {
  body.landing.plans-page.seo-editorial-page .pricing-loading-state,
  body.landing.plans-page.seo-editorial-page .pricing-error-state {
    min-height: 160px;
    padding: 24px 18px;
  }
}

/* Production pass: editorial pages keep the landing shell, but the reading
   surface remains light, calm and content-first. */
body.seo-editorial-page,
body.landing.plans-page.seo-editorial-page,
body.seo-editorial-page main#main,
body.seo-editorial-page .seo-shell,
body.seo-editorial-page .seo-section,
body.seo-editorial-page .seo-related,
body.landing.plans-page.seo-editorial-page .seo-plans-wrap {
  background: var(--seo-cloud) !important;
}

body.seo-editorial-page::before,
body.seo-editorial-page::after,
body.seo-editorial-page main#main::before,
body.seo-editorial-page main#main::after {
  display: none !important;
  content: none !important;
}

body.seo-editorial-page .seo-page-header {
  background: var(--seo-surface);
  box-shadow: 0 16px 40px rgba(20, 47, 88, .07);
}

body.seo-editorial-page .seo-page-header h1 {
  max-width: 850px;
}

body.seo-editorial-page .seo-quick-answer {
  background: #eef4fb;
  box-shadow: none;
}

body.seo-editorial-page .seo-section {
  padding-top: 72px;
}

body.seo-editorial-page .seo-section--compact {
  padding-top: 52px;
}

body.seo-editorial-page .seo-section-head {
  margin-bottom: 24px;
}

body.seo-editorial-page .seo-section-head p,
body.seo-editorial-page .seo-section > p:not(.seo-kicker) {
  font-size: 17px;
  line-height: 1.62;
}

body.seo-editorial-page .seo-card p,
body.seo-editorial-page .seo-glossary-grid p,
body.seo-editorial-page .seo-step p,
body.seo-editorial-page .seo-related p,
body.seo-editorial-page .seo-plans-explanation p {
  font-size: 15px;
  line-height: 1.58;
}

body.seo-editorial-page .seo-card h3,
body.seo-editorial-page .seo-step h3 {
  letter-spacing: -.035em;
}

body.seo-editorial-page .seo-faq summary {
  min-height: 28px;
  padding: 24px 0;
  font-size: 18px;
}

body.seo-editorial-page .seo-faq details p {
  max-width: 860px;
  font-size: 16px;
  line-height: 1.62;
}

body.seo-editorial-page .seo-related {
  padding-top: 72px;
  padding-bottom: 78px;
}

body.seo-editorial-page .seo-cta {
  margin-bottom: 72px;
}

body.seo-editorial-page .seo-resources-page .seo-page-header,
body.seo-editorial-page .seo-plans-page .seo-plans-card {
  border-top: 3px solid var(--seo-orange);
}

body.seo-editorial-page .seo-guide-page .seo-page-header--article,
body.seo-editorial-page .seo-insurance-page .seo-page-header,
body.seo-editorial-page .seo-calls-page .seo-page-header,
body.seo-editorial-page .seo-sales-ai-page .seo-page-header,
body.seo-editorial-page .seo-quality-page .seo-page-header {
  border-top: 3px solid #1d65c1;
}

body.seo-editorial-page .seo-resources-page .seo-quick-answer {
  border-color: #cadced;
}

body.seo-editorial-page .seo-guide-page .seo-callout,
body.seo-editorial-page .seo-insurance-page .seo-callout,
body.seo-editorial-page .seo-calls-page .seo-callout,
body.seo-editorial-page .seo-sales-ai-page .seo-callout,
body.seo-editorial-page .seo-quality-page .seo-callout {
  background: #fff3ed;
}

@media (max-width: 700px) {
  body.seo-editorial-page .seo-section {
    padding-top: 54px;
  }

  body.seo-editorial-page .seo-section--compact {
    padding-top: 42px;
  }

  body.seo-editorial-page .seo-section-head p,
  body.seo-editorial-page .seo-section > p:not(.seo-kicker),
  body.seo-editorial-page .seo-card p,
  body.seo-editorial-page .seo-glossary-grid p,
  body.seo-editorial-page .seo-step p,
  body.seo-editorial-page .seo-related p,
  body.seo-editorial-page .seo-plans-explanation p {
    font-size: 15px;
  }

  body.seo-editorial-page .seo-faq summary {
    padding: 20px 0;
    font-size: 16px;
  }

  body.seo-editorial-page .seo-faq details p {
    font-size: 15px;
  }
}



/* FINAL VISUAL AUDIT: prevent the landing background system from leaking into editorial SEO pages. */
body.seo-editorial-page,
body.landing.plans-page.seo-editorial-page {
  background: var(--seo-cloud) !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  background-attachment: initial !important;
}

body.seo-editorial-page main#main,
body.seo-editorial-page .seo-shell,
body.landing.plans-page.seo-editorial-page .seo-plans-wrap {
  background-color: var(--seo-cloud) !important;
  background-image: none !important;
}

/* Plans keeps the interactive card, not the landing's atmospheric backdrop. */
body.landing.plans-page.seo-editorial-page .l-plans-section::before {
  display: none !important;
  content: none !important;
}

/* Keep the canonical dark shell surfaces while the reading canvas stays neutral. */
body.seo-editorial-page .l-nav,
body.seo-editorial-page .l-footer {
  background-image: var(--checka-public-shell-background-image, initial);
}

@media (max-width: 700px) {
  body.seo-editorial-page,
  body.landing.plans-page.seo-editorial-page,
  body.seo-editorial-page main#main,
  body.seo-editorial-page .seo-shell {
    background-image: none !important;
  }
}


/* FINAL VISUAL AUDIT V2: outrank the landing body background on editorial pages. */
html body.landing.seo-editorial-page:not(.plans-page):not(.seo-page),
html body.landing.plans-page.seo-editorial-page {
  background: var(--seo-cloud) !important;
  background-color: var(--seo-cloud) !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  background-attachment: initial !important;
}

html body.landing.seo-editorial-page main#main,
html body.landing.seo-editorial-page .seo-shell,
html body.landing.plans-page.seo-editorial-page .seo-plans-wrap {
  background: var(--seo-cloud) !important;
  background-image: none !important;
}
