@font-face {
  font-family: "SearchMarket Manrope";
  src: url("/assets/fonts/manrope-cyrillic-variable.ttf?v=20260714-1") format("truetype-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

/* Shared locale and analytics controls */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 6px;
  background: #f2f5f3;
}
.language-switch a {
  min-width: 48px;
  min-height: 30px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  color: #56645e;
  font: 540 10.5px/1 var(--body, "Manrope", Arial, sans-serif);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}
.language-switch img {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(17, 35, 28, .08);
}
.language-switch a[aria-current="page"] {
  color: #173229;
  background: #fff;
  box-shadow: 0 1px 4px rgba(20, 35, 29, .08);
}
.language-switch a:focus-visible {
  outline: 1px solid #6b8f80;
  outline-offset: 2px;
}
.analytics-consent {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  width: min(520px, calc(100vw - 40px));
  padding: 17px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  border-radius: 8px;
  color: #14231d;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 20px 54px rgba(15, 34, 27, .16), 0 0 0 1px rgba(18, 45, 35, .07);
  font-family: var(--body, "Manrope", "Segoe UI", Arial, sans-serif);
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}
.analytics-consent__copy strong,
.analytics-consent__copy span { display: block; }
.analytics-consent__copy strong { font-size: 14px; font-weight: 600; line-height: 1.25; }
.analytics-consent__copy span { margin-top: 5px; color: #617069; font-size: 11.5px; font-weight: 400; line-height: 1.45; }
.analytics-consent__actions { display: flex; align-items: center; gap: 7px; }
.analytics-consent button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  color: #52615a;
  background: #f1f5f3;
  font: 540 11.5px/1 var(--body, "Manrope", "Segoe UI", Arial, sans-serif);
  letter-spacing: 0;
  cursor: pointer;
}
.analytics-consent button.analytics-consent__allow { color: #fff; background: #173e31; }
.analytics-consent button:focus-visible { outline: 2px solid rgba(8, 125, 92, .46); outline-offset: 2px; }
@media (max-width: 640px) {
  .language-switch { gap: 0; }
  .language-switch a { min-width: 34px; padding: 0 5px; }
  .language-switch a span { display: none; }
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }
  .analytics-consent__actions { justify-content: flex-end; }
}

:root {
  --ink: #0d1712;
  --ink-soft: #46554e;
  --muted: #6f7d76;
  --paper: #ffffff;
  --wash: #f5f8f6;
  --green: #087d5c;
  --violet: #6f5bd4;
  --blue: #2a70c9;
  --coral: #cc7252;
  --body: "SearchMarket Manrope", "Manrope", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 390 15px/1.56 var(--body);
  font-feature-settings: "kern" 1, "liga" 1;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.seo-shell {
  width: calc(100vw - 48px);
  margin: 0 auto;
}

.seo-header {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.seo-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.seo-wordmark {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 31px;
  font-weight: 520;
  line-height: 1;
  opacity: .74;
}

.seo-wordmark span {
  color: var(--violet);
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 430;
}

.seo-nav a,
.seo-wordmark,
.seo-login,
.seo-inline-link,
.seo-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.seo-nav a:hover,
.seo-inline-link:hover,
.seo-footer a:hover {
  color: var(--green);
}

.seo-login {
  min-height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #1e2a25;
  background: transparent;
  font-size: 12.25px;
  font-weight: 520;
}

.seo-login img {
  width: 17px;
  height: 17px;
}

.seo-wordmark:focus-visible,
.seo-nav a:focus-visible,
.seo-login:focus-visible,
.seo-primary:focus-visible,
.seo-secondary:focus-visible,
.seo-footer a:focus-visible,
.seo-faq summary:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(8, 125, 92, .46);
  outline-offset: 4px;
}

.seo-hero {
  padding: clamp(42px, 5vw, 68px) 0 30px;
  text-align: center;
}

.seo-kicker {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 580;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(35px, 4.2vw, 52px);
  font-weight: 470;
  line-height: 1.1;
  text-wrap: balance;
}

.seo-hero h1 span {
  color: var(--violet);
}

.seo-lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 380;
  line-height: 1.55;
  text-wrap: balance;
}

.seo-hero-actions {
  margin-top: 23px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.seo-primary,
.seo-secondary {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 520;
}

.seo-primary {
  color: #fff;
  background: #152b23;
}

.seo-secondary {
  color: var(--green);
  background: var(--wash);
}

.seo-arrow {
  font-size: 18px;
  font-weight: 350;
  line-height: 1;
}

.seo-interface {
  margin: 14px auto clamp(52px, 6vw, 78px);
}

.seo-interface img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(24, 46, 37, .09);
}

.seo-interface figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.seo-section {
  padding: clamp(48px, 5.5vw, 70px) 0;
}

.seo-section--wash {
  width: 100%;
  background: var(--wash);
}

.seo-section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.seo-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 470;
  line-height: 1.14;
  text-wrap: balance;
}

.seo-section-head p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 390;
}

.seo-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.seo-fact {
  min-width: 0;
}

.seo-fact img {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  object-fit: contain;
}

.seo-fact h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 540;
  line-height: 1.3;
}

.seo-fact p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.seo-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.seo-step {
  padding-top: 3px;
}

.seo-step-number {
  width: 30px;
  height: 30px;
  margin-bottom: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.seo-step:nth-child(2) .seo-step-number {
  background: var(--violet);
}

.seo-step:nth-child(3) .seo-step-number {
  background: var(--blue);
}

.seo-step h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 520;
}

.seo-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.seo-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 42px;
}

.seo-signal {
  min-height: 76px;
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.seo-signal::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(8, 125, 92, .08);
}

.seo-signal:nth-child(3n + 2)::before {
  background: var(--violet);
  box-shadow: 0 0 0 6px rgba(111, 91, 212, .08);
}

.seo-signal:nth-child(3n)::before {
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(204, 114, 82, .08);
}

.seo-signal strong {
  display: block;
  font-size: 15px;
  font-weight: 540;
}

.seo-signal span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.seo-faq {
  max-width: 920px;
}

.seo-faq details {
  padding: 19px 0;
}

.seo-faq details + details {
  margin-top: 2px;
}

.seo-faq summary {
  position: relative;
  padding-right: 38px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 510;
}

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

.seo-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -3px;
  color: var(--green);
  font-size: 25px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.seo-faq details[open] summary::after {
  transform: rotate(45deg);
}

.seo-faq p {
  max-width: 780px;
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.seo-final {
  padding: 82px 0;
  text-align: center;
}

.seo-final h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 460;
  line-height: 1.15;
  text-wrap: balance;
}

.seo-final p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--ink-soft);
}

.seo-footer {
  min-height: 82px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
}

.seo-footer > .language-switch {
  justify-self: end;
}

.seo-inline-link {
  color: var(--green);
  font-weight: 510;
}

.report-page main {
  align-items: center;
}

.report-source-line {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 12px;
}

.report-product-visual {
  grid-column: 2;
  width: min(100%, 520px);
  min-width: 0;
  margin: 24px auto 20px;
  text-align: center;
}

.report-product-visual img {
  width: 100%;
  height: min(48vw, 490px);
  padding: 24px;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f8f6;
  box-shadow: 0 26px 70px rgba(19, 39, 31, .12);
}

.report-product-visual figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11.5px;
}

.report-metrics {
  width: 100%;
  margin: 18px 0 8px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  background: #f5f8f6;
}

.report-metrics div {
  min-width: 0;
  padding: 0 clamp(18px, 2.6vw, 34px);
}

.report-metrics span,
.report-metrics strong,
.report-metrics small {
  display: block;
}

.report-metrics span {
  color: var(--muted);
  font-size: 11.5px;
}

.report-metrics strong {
  margin-top: 5px;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 470;
  line-height: 1.05;
}

.report-metrics small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 11px;
}

.report-conclusion {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr);
  align-items: end;
  gap: clamp(36px, 5vw, 80px);
}

.report-conclusion .seo-section-head {
  margin: 0;
}

.report-decision {
  padding: 22px 24px;
  border-radius: 6px;
  background: #edf6f2;
}

.report-decision strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.report-decision p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.report-funnel {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.report-funnel div {
  min-width: 0;
}

.report-funnel strong,
.report-funnel span {
  display: block;
}

.report-funnel strong {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 450;
  line-height: 1;
}

.report-funnel span {
  max-width: 150px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.report-funnel > i {
  width: clamp(24px, 4vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 125, 92, .14), rgba(8, 125, 92, .6));
}

.report-query-facts {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--ink-soft);
  font-size: 12.5px;
}

.report-query-facts strong {
  color: var(--ink);
  font-weight: 600;
}

.report-comparisons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 58px;
}

.report-comparisons article {
  min-width: 0;
}

.report-comparison-head span,
.report-comparison-head strong {
  display: block;
}

.report-comparison-head span {
  color: var(--muted);
  font-size: 11.5px;
}

.report-comparison-head strong {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 540;
  line-height: 1.35;
}

.report-comparisons article > p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.report-bar {
  height: 7px;
  margin-top: 18px;
  display: flex;
  gap: 2px;
  overflow: hidden;
  border-radius: 4px;
  background: #eef2f0;
}

.report-bar > i {
  width: var(--share);
  background: var(--tone);
}

.report-legend {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  color: var(--muted);
  font-size: 10.5px;
}

.report-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.report-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tone);
}

.report-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 8vw, 120px);
}

.report-evidence h2 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.16;
}

.report-evidence ul {
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.report-evidence li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.report-evidence li + li {
  margin-top: 10px;
}

.report-evidence li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.report-evidence > div:last-child li::before {
  background: var(--coral);
}

.report-method-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.report-method-link h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
}

.report-method-link p:not(.seo-kicker) {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.report-method-link .seo-primary {
  flex: 0 0 auto;
}

/* Product pages share the same restrained editorial system as the public home page. */
.seo-product-page main {
  width: calc(100vw - 48px);
  margin: 0 auto;
  display: block;
}

.seo-product-page main > .seo-hero {
  width: 100%;
  margin: 0;
  padding: clamp(26px, 3vw, 42px) 0 clamp(24px, 2.5vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr);
  grid-template-areas:
    "heading lead"
    "heading evidence"
    "heading actions";
  align-items: end;
  gap: 11px clamp(34px, 5vw, 82px);
  text-align: left;
}

.seo-product-page .seo-hero-heading {
  grid-area: heading;
  align-self: center;
}

.seo-product-page .seo-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(29px, 2.35vw, 36px);
  font-weight: 500;
  line-height: 1.09;
  text-wrap: balance;
}

.seo-product-page .seo-hero h1 span {
  display: block;
  color: var(--violet);
  font-weight: 450;
}

.seo-product-page .seo-lead {
  grid-area: lead;
  max-width: 760px;
  margin: 0;
  color: #52615b;
  font-size: 13.5px;
  font-weight: 410;
  line-height: 1.58;
  text-wrap: pretty;
}

.seo-product-page .seo-hero-evidence {
  grid-area: evidence;
  margin: 5px 0 1px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 24px;
  color: #67756f;
  font-size: 11.25px;
  font-weight: 430;
  line-height: 1.35;
}

.seo-product-page .seo-hero-evidence span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seo-product-page .seo-hero-evidence span::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--page-accent, var(--green));
  opacity: .72;
}

.seo-product-page .seo-hero-actions {
  grid-area: actions;
  margin-top: 8px;
  justify-content: flex-start;
}

.seo-product-page .seo-primary,
.seo-product-page .seo-secondary {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 3px;
  font-size: 12.25px;
  font-weight: 520;
}

.seo-product-page .seo-primary {
  box-shadow: 0 10px 25px rgba(14, 35, 27, .14);
}

.seo-product-page .seo-secondary {
  padding-right: 2px;
  padding-left: 2px;
  background: transparent;
}

.seo-product-page .seo-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 570;
}

.seo-product-page .seo-section,
.seo-product-page .seo-final {
  width: 100%;
  padding: clamp(25px, 2.8vw, 40px) 0;
  background: transparent;
}

.seo-product-page .seo-section--wash {
  background: #f7faf8;
  box-shadow: 0 0 0 100vmax #f7faf8;
  clip-path: inset(0 -100vmax);
}

.seo-product-page .seo-section-head {
  max-width: 360px;
  margin-bottom: 12px;
}

.seo-product-page .seo-section-head p {
  margin-top: 10px;
  color: #5b6963;
  font-size: 12.75px;
  line-height: 1.58;
}

.seo-product-page .seo-section-head h2 {
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 490;
  line-height: 1.12;
}

.seo-product-page .seo-facts {
  gap: 24px clamp(24px, 3vw, 46px);
}

.seo-product-page .seo-fact img {
  width: 31px;
  height: 31px;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.seo-product-page .seo-fact p {
  margin-top: 6px;
  color: #5b6963;
  font-size: 12.5px;
  line-height: 1.54;
}

.seo-product-page .seo-fact h3 {
  font-size: 14.5px;
  font-weight: 520;
}

.seo-product-page .seo-process {
  gap: clamp(16px, 1.8vw, 28px);
}

.seo-product-page .seo-step-number {
  width: auto;
  height: auto;
  margin-bottom: 7px;
  display: block;
  border-radius: 0;
  color: var(--green);
  background: transparent;
  font-size: 17px;
  font-weight: 480;
  line-height: 1;
}

.seo-product-page .seo-step:nth-child(2) .seo-step-number {
  color: var(--violet);
  background: transparent;
}

.seo-product-page .seo-step:nth-child(3) .seo-step-number {
  color: var(--blue);
  background: transparent;
}

.seo-product-page .seo-step p {
  margin-top: 7px;
  color: #5b6963;
  font-size: 12.5px;
  line-height: 1.54;
}

.seo-product-page .seo-step h3 {
  font-size: 14.5px;
  font-weight: 520;
}

.seo-product-page .seo-signal-list {
  gap: 6px 28px;
}

.seo-product-page .seo-signal {
  min-height: 58px;
}

.seo-product-page .seo-signal span {
  margin-top: 5px;
  color: #5b6963;
  font-size: 12.5px;
}

.seo-product-page .seo-faq {
  max-width: 880px;
}

.seo-product-page .seo-faq details {
  padding: 11px 0;
}

.seo-product-page .seo-faq summary {
  font-size: 15px;
  font-weight: 500;
}

.seo-product-page + .seo-footer {
  min-height: 70px;
  padding: 16px 0;
}

.seo-product-page .seo-final {
  display: block;
  margin-top: 8px;
  padding: clamp(25px, 2.8vw, 38px) 0;
  text-align: left;
}

.seo-product-page .seo-final > .seo-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "final-title final-action"
    "final-copy final-action";
  align-items: end;
  gap: 8px clamp(30px, 5vw, 86px);
}

.seo-product-page .seo-final h2 {
  grid-area: final-title;
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 1.8vw, 29px);
  font-weight: 480;
  line-height: 1.13;
  text-align: left;
}

.seo-product-page .seo-final p {
  grid-area: final-copy;
  max-width: 760px;
  margin: 0;
  color: #5b6963;
  font-size: 12.75px;
  line-height: 1.55;
}

.seo-product-page .seo-final .seo-hero-actions {
  grid-area: final-action;
  margin: 0;
}

.seo-view-market { --page-accent: #6d5ce7; }
.seo-view-competitors { --page-accent: #247594; }
.seo-view-pricing { --page-accent: #087d5c; }
.seo-view-inventory { --page-accent: #2d7b74; }
.seo-view-reviews { --page-accent: #ad5d78; }
.seo-view-listings { --page-accent: #426da9; }
.seo-view-operations { --page-accent: #174b3a; }
.seo-view-methodology { --page-accent: #6650b5; }

.seo-product-page .seo-hero h1 span,
.seo-product-page .seo-kicker,
.seo-product-page .seo-step-number,
.seo-product-page .seo-step:nth-child(2) .seo-step-number,
.seo-product-page .seo-step:nth-child(3) .seo-step-number {
  color: var(--page-accent);
}

.seo-product-page .seo-signal::before,
.seo-product-page .seo-signal:nth-child(3n + 2)::before,
.seo-product-page .seo-signal:nth-child(3n)::before {
  background: var(--page-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--page-accent) 9%, transparent);
}

@media (min-width: 901px) {
  .seo-product-page .seo-section.seo-shell,
  .seo-product-page .seo-section > .seo-shell {
    display: grid;
    grid-template-columns: minmax(250px, 350px) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(42px, 6vw, 96px);
  }

  .seo-product-page .seo-section-head {
    margin-bottom: 0;
  }

  .seo-product-page .seo-facts {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 28px clamp(32px, 4vw, 62px);
  }

  .seo-product-page .seo-process {
    gap: 18px 28px;
  }

  .seo-product-page .seo-signal-list {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 16px clamp(32px, 4vw, 62px);
  }

  .seo-product-page .seo-faq {
    width: 100%;
    max-width: none;
  }

  .seo-view-competitors main > .seo-section:nth-of-type(2) .seo-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-view-competitors main > .seo-section:nth-of-type(2) .seo-fact:first-child {
    grid-column: 1 / -1;
    max-width: 660px;
  }

  .seo-view-pricing main > .seo-section:nth-of-type(2) .seo-facts {
    grid-template-columns: minmax(250px, 1.08fr) minmax(220px, .92fr);
  }

  .seo-view-pricing main > .seo-section:nth-of-type(2) .seo-fact:first-child {
    grid-row: span 3;
    align-self: center;
    max-width: 420px;
    padding-right: clamp(20px, 3vw, 48px);
  }

  .seo-view-inventory main > .seo-section:nth-of-type(2) > .seo-shell,
  .seo-view-reviews main > .seo-section:nth-of-type(2) > .seo-shell,
  .seo-view-listings main > .seo-section:nth-of-type(2) > .seo-shell {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .seo-view-inventory main > .seo-section:nth-of-type(2) .seo-section-head,
  .seo-view-reviews main > .seo-section:nth-of-type(2) .seo-section-head,
  .seo-view-listings main > .seo-section:nth-of-type(2) .seo-section-head {
    max-width: 760px;
  }

  .seo-view-inventory main > .seo-section:nth-of-type(2) .seo-facts,
  .seo-view-reviews main > .seo-section:nth-of-type(2) .seo-facts,
  .seo-view-listings main > .seo-section:nth-of-type(2) .seo-facts {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
  }

  .seo-view-operations main > .seo-section:nth-of-type(2) .seo-facts,
  .seo-view-methodology main > .seo-section:nth-of-type(2) .seo-facts,
  .seo-view-market main > .seo-section:nth-of-type(2) .seo-facts {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .seo-product-page main > .seo-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "lead"
      "evidence"
      "actions";
  }

  .seo-product-page .seo-lead {
    max-width: 900px;
    margin-top: 6px;
  }

  .seo-product-page .seo-facts,
  .seo-product-page .seo-signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-view-inventory main > .seo-section:nth-of-type(2) .seo-facts,
  .seo-view-reviews main > .seo-section:nth-of-type(2) .seo-facts,
  .seo-view-listings main > .seo-section:nth-of-type(2) .seo-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .seo-header {
    grid-template-columns: 1fr auto;
  }

  .seo-nav {
    display: none;
  }

  .seo-product-page main > .seo-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "lead"
      "evidence"
      "actions";
  }

  .seo-product-page .seo-lead {
    max-width: 100%;
    margin-top: 6px;
  }

  .seo-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .seo-process {
    gap: 24px;
  }

  .report-product-visual {
    grid-column: 1;
    width: min(100%, 460px);
    margin-top: 0;
  }

  .report-product-visual img {
    height: min(72vw, 500px);
  }

  .report-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-conclusion {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .report-funnel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .report-funnel > i {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .seo-shell {
    width: calc(100vw - 40px);
    max-width: 100%;
  }

  .seo-header {
    min-height: 58px;
    gap: 14px;
  }

  .seo-header-actions {
    gap: 7px;
  }

  .seo-wordmark {
    font-size: 20px;
  }

  .seo-login {
    width: 34px;
    min-height: 34px;
    padding: 0;
  }

  .seo-login span {
    display: none;
  }

  .seo-product-page main {
    width: calc(100vw - 40px);
  }

  .seo-product-page main > .seo-hero {
    padding: 23px 0 14px;
  }

  .seo-product-page .seo-hero h1 {
    font-size: 23px;
  }

  .seo-product-page .seo-lead {
    font-size: 13.5px;
  }

  .seo-product-page .seo-hero-evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    font-size: 10.5px;
  }

  .seo-product-page .seo-hero-actions {
    margin-top: 14px;
  }

  .seo-product-page .seo-section {
    padding: 22px 0;
  }

  .seo-product-page .seo-section-head {
    margin-bottom: 14px;
  }

  .seo-product-page .seo-section-head h2 {
    font-size: 21px;
  }

  .seo-product-page .seo-final > .seo-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "final-title"
      "final-copy"
      "final-action";
    align-items: start;
    gap: 9px;
  }

  .seo-product-page .seo-final .seo-hero-actions {
    width: 100%;
    margin-top: 5px;
  }

  .seo-hero {
    padding: 38px 0 24px;
  }

  .seo-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 29px;
    line-height: 1.1;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .seo-hero h1 span {
    display: block;
  }

  .seo-lead {
    font-size: 15px;
  }

  .seo-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .seo-primary,
  .seo-secondary {
    width: 100%;
  }

  .seo-interface {
    margin-top: 8px;
    margin-bottom: 62px;
  }

  .seo-interface img {
    width: 100%;
    height: auto;
  }

  .seo-section {
    padding: 54px 0;
  }

  .seo-section-head {
    margin-bottom: 34px;
  }

  .seo-section-head h2 {
    font-size: 31px;
  }

  .seo-section-head p {
    font-size: 14px;
  }

  .seo-facts,
  .seo-process,
  .seo-signal-list {
    grid-template-columns: 1fr;
  }

  .seo-facts {
    gap: 31px;
  }

  .seo-process {
    gap: 33px;
  }

  .seo-signal-list {
    gap: 8px;
  }

  .seo-final {
    padding: 64px 0;
  }

  .seo-footer {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .seo-footer > .language-switch {
    justify-self: start;
  }

  .report-product-visual img {
    height: min(105vw, 470px);
    padding: 18px;
  }

  .report-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px 8px;
    margin-top: 7px;
    padding: 20px 0;
  }

  .report-metrics div {
    padding: 0 14px;
  }

  .report-metrics strong {
    font-size: 25px;
  }

  .report-funnel,
  .report-comparisons,
  .report-evidence {
    grid-template-columns: 1fr;
  }

  .report-funnel {
    gap: 22px;
  }

  .report-funnel span {
    max-width: none;
  }

  .report-comparisons {
    gap: 30px;
  }

  .report-evidence {
    gap: 38px;
  }

  .report-method-link {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* Editorial market-analysis benchmark: no cards, matrices or dashboard imitation. */
.market-editorial-page .market-editorial {
  width: 100%;
  margin: 0;
}

.market-opening {
  padding: clamp(30px, 3.5vw, 48px) 0 clamp(30px, 3.6vw, 48px);
}

.market-opening h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(30px, 2.75vw, 38px);
  font-weight: 475;
  line-height: 1.08;
  text-wrap: balance;
}

.market-opening h1 span {
  display: block;
  color: #6554dc;
  font-weight: 430;
}

.market-opening-lead {
  max-width: 790px;
  margin: 20px 0 0;
  color: #50605a;
  font-size: 15px;
  font-weight: 390;
  line-height: 1.62;
}

.market-opening-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.market-opening-actions .seo-secondary {
  padding: 0;
  background: transparent;
}

.market-opening-scope {
  margin: clamp(26px, 3vw, 38px) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  color: #6b7872;
  font-size: 11.5px;
}

.market-opening-scope span {
  display: inline-flex;
  align-items: center;
}

.market-opening-scope span + span::before {
  content: "·";
  margin: 0 13px;
  color: #6959dc;
}

.market-benefit {
  padding: clamp(48px, 4.8vw, 68px) 0 clamp(46px, 4.6vw, 64px);
  overflow: hidden;
  background: #f5f8f6;
}

.market-benefit-head {
  max-width: 790px;
}

.market-benefit-head h2,
.market-reading-head h2,
.market-decision-intro h2,
.market-portfolio h2 {
  margin: 0;
  font-size: clamp(27px, 2.6vw, 37px);
  font-weight: 475;
  line-height: 1.13;
  text-wrap: balance;
}

.market-benefit-head > p:not(.seo-kicker) {
  max-width: 700px;
  margin: 17px 0 0;
  color: #51615a;
  font-size: 14px;
  line-height: 1.62;
}

.market-benefit-map {
  position: relative;
  min-height: 260px;
  margin-top: clamp(30px, 3.2vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 78px);
}

.market-benefit-map::before,
.market-benefit-map::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(105, 89, 220, 0), rgba(105, 89, 220, .46), rgba(8, 125, 92, .62));
  transform: translateY(-50%);
}

.market-benefit-map::before {
  left: 29%;
  width: 18%;
}

.market-benefit-map::after {
  right: 25%;
  width: 20%;
}

.market-manual-flow,
.market-guided-flow {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
}

.market-manual-flow > p,
.market-guided-flow > p {
  margin: 0 0 20px;
  color: #53625c;
  font-size: 12px;
}

.market-manual-flow > p span,
.market-guided-flow > p span {
  display: block;
  margin-bottom: 4px;
  color: #18261f;
  font-size: 17px;
  font-weight: 520;
}

.market-manual-flow ol,
.market-guided-flow ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-manual-flow ol {
  max-width: 410px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.market-manual-flow li {
  position: relative;
  padding-left: 13px;
  color: #7a8781;
  font-size: 11.5px;
}

.market-manual-flow li::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8f81e8;
  box-shadow: 0 0 0 4px rgba(105, 89, 220, .08);
}

.market-ai-core {
  position: relative;
  z-index: 2;
  width: clamp(180px, 17vw, 238px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border-radius: 50%;
  background: #17352b;
  box-shadow: 0 32px 70px rgba(23, 53, 43, .2), inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.market-ai-core::before,
.market-ai-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(126, 204, 173, .22);
}

.market-ai-core::before { inset: 16px; }
.market-ai-core::after { inset: 34px; border-color: rgba(161, 145, 255, .3); }

.market-ai-core strong {
  position: relative;
  z-index: 2;
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 480;
}

.market-ai-core span {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: #b8d8cb;
  font-size: 10.5px;
  line-height: 1.55;
  text-align: center;
}

.market-ai-core i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b78ff;
  box-shadow: 0 0 18px rgba(139, 120, 255, .9);
  animation: marketBenefitPulse 4.8s ease-in-out infinite;
}

.market-ai-core i:nth-child(1) { top: 22%; left: 31%; }
.market-ai-core i:nth-child(2) { top: 31%; right: 24%; animation-delay: -1.2s; }
.market-ai-core i:nth-child(3) { bottom: 27%; right: 31%; animation-delay: -2.4s; }
.market-ai-core i:nth-child(4) { bottom: 24%; left: 27%; animation-delay: -3.6s; }

.market-guided-flow {
  max-width: 360px;
}

.market-guided-flow ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.market-guided-flow li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #203129;
  font-size: 13px;
}

.market-guided-flow b {
  color: #0a8a64;
  font-size: 11px;
  font-weight: 620;
}

.market-benefit-results {
  margin-top: clamp(30px, 3.2vw, 44px);
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 5vw, 78px);
}

.market-benefit-results article {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.market-benefit-results strong {
  flex: 0 0 auto;
  color: #6554dc;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 440;
  line-height: 1;
}

.market-benefit-results h3 {
  margin: 1px 0 0;
  color: #1b2a23;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.25;
}

.market-benefit-results p {
  margin: 7px 0 0;
  color: #68766f;
  font-size: 11.5px;
  line-height: 1.5;
}

.market-benefit-note {
  max-width: 760px;
  margin: 30px 0 0;
  color: #7c8983;
  font-size: 10.5px;
  line-height: 1.5;
}

@keyframes marketBenefitPulse {
  0%, 100% { opacity: .32; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.28); }
}

.market-reading {
  padding: clamp(62px, 7vw, 102px) 0;
}

.market-reading-head {
  max-width: 760px;
}

.market-reading-head > p:not(.seo-kicker),
.market-decision-intro > p:not(.seo-kicker),
.market-portfolio-copy > p:not(.seo-kicker) {
  margin: 15px 0 0;
  color: #586861;
  font-size: 13.5px;
  line-height: 1.62;
}

.market-reading-flow {
  margin-top: clamp(44px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 4.5vw, 64px);
}

.market-reading-flow article {
  max-width: 820px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.market-reading-flow article:nth-child(2) {
  margin-left: clamp(70px, 12vw, 190px);
}

.market-reading-flow article:nth-child(3) {
  margin-left: clamp(140px, 24vw, 380px);
}

.market-reading-flow img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.market-reading-flow article span {
  color: #6b5adf;
  font-size: 11px;
  font-weight: 570;
}

.market-reading-flow h3 {
  margin: 5px 0 0;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 475;
  line-height: 1.2;
}

.market-reading-flow p {
  max-width: 690px;
  margin: 9px 0 0;
  color: #596861;
  font-size: 13.25px;
  line-height: 1.6;
}

.market-decision {
  padding: clamp(58px, 7vw, 96px) 0;
  color: #fff;
  background: #152a22;
}

.market-decision-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(54px, 9vw, 144px);
}

.market-decision-intro {
  max-width: 470px;
  flex: 0 0 38%;
}

.market-decision .seo-kicker {
  color: #83c6ae;
}

.market-decision-intro > p:not(.seo-kicker) {
  color: #b9c8c1;
}

.market-decision-path {
  max-width: 700px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-decision-path li + li {
  margin-top: 32px;
}

.market-decision-path span,
.market-decision-path strong,
.market-decision-path p {
  display: block;
}

.market-decision-path span {
  color: #83c6ae;
  font-size: 10.5px;
  font-weight: 560;
  text-transform: uppercase;
}

.market-decision-path strong {
  margin-top: 5px;
  font-size: 19px;
  font-weight: 480;
}

.market-decision-path p {
  margin: 7px 0 0;
  color: #b9c8c1;
  font-size: 12.75px;
  line-height: 1.55;
}

.market-portfolio {
  padding: clamp(68px, 8vw, 116px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px clamp(52px, 8vw, 126px);
}

.market-portfolio-copy {
  max-width: 720px;
  flex: 1 1 620px;
}

.market-portfolio-statement {
  max-width: 430px;
  flex: 1 1 330px;
  margin: 0;
  color: #52625b;
  font-size: 16px;
  line-height: 1.58;
}

.market-portfolio-statement span {
  color: #111b16;
  font-weight: 560;
}

.market-portfolio > .seo-primary {
  margin-left: auto;
}

.market-questions {
  padding: clamp(48px, 5vw, 74px) 0;
  background: #f5f8f6;
}

.market-questions-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(60px, 12vw, 190px);
}

.market-questions h2 {
  min-width: 250px;
  margin: 0;
  font-size: clamp(24px, 2.3vw, 33px);
  font-weight: 475;
}

.market-questions .seo-faq {
  max-width: 820px;
  flex: 1 1 auto;
}

@media (max-width: 900px) {
  .market-decision-inner,
  .market-questions-inner {
    flex-direction: column;
  }

  .market-benefit-map {
    gap: 28px;
  }

  .market-ai-core {
    width: 168px;
  }

  .market-benefit-results {
    flex-wrap: wrap;
  }

  .market-benefit-results article {
    flex-basis: calc(50% - 20px);
  }

  .market-reading-flow article:nth-child(2),
  .market-reading-flow article:nth-child(3) {
    margin-left: 0;
  }

  .market-decision-intro {
    max-width: 680px;
    flex-basis: auto;
  }

  .market-portfolio > .seo-primary {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .market-opening {
    padding: 28px 0 34px;
  }

  .market-opening h1 {
    font-size: 27px;
  }

  .market-opening-lead {
    margin-top: 15px;
    font-size: 13.5px;
  }

  .market-opening-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .market-opening-actions .seo-secondary {
    min-height: 38px;
  }

  .market-opening-scope {
    margin-top: 28px;
  }

  .market-benefit,
  .market-reading,
  .market-decision,
  .market-portfolio,
  .market-questions {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .market-benefit-head h2,
  .market-reading-head h2,
  .market-decision-intro h2,
  .market-portfolio h2 {
    font-size: 25px;
  }

  .market-benefit-map {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .market-benefit-map::before,
  .market-benefit-map::after {
    display: none;
  }

  .market-manual-flow ol {
    gap: 9px 15px;
  }

  .market-ai-core {
    width: 160px;
    align-self: center;
  }

  .market-guided-flow {
    max-width: none;
  }

  .market-benefit-results {
    flex-direction: column;
    gap: 26px;
  }

  .market-benefit-results article {
    width: 100%;
  }

  .market-benefit-results strong {
    min-width: 76px;
  }

  .market-reading-flow article {
    gap: 16px;
  }

  .market-reading-flow img {
    width: 31px;
    height: 31px;
  }

  .market-reading-flow h3 {
    font-size: 19px;
  }

  .market-questions-inner {
    gap: 22px;
  }
}

/* Text-only editorial SEO pages. */
.seo-copy-page .seo-copy-main {
  width: 100%;
  overflow: hidden;
}

.seo-copy-hero {
  padding: clamp(23px, 2.1vw, 31px) 0 clamp(18px, 1.6vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: end;
  column-gap: clamp(34px, 4.2vw, 76px);
}

.seo-copy-hero > .seo-kicker {
  grid-column: 1 / -1;
}

.seo-copy-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #101915;
  font-size: clamp(31px, 3.1vw, 42px);
  font-weight: 455;
  line-height: 1.08;
  text-wrap: balance;
}

.seo-copy-lead {
  max-width: 720px;
  margin: 0;
  color: #4f5f58;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 385;
  line-height: 1.68;
}

.seo-copy-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.seo-copy-actions .seo-secondary {
  min-height: 38px;
  padding: 0;
  background: transparent;
}

.seo-copy-section {
  width: calc(100vw - 48px);
  padding: clamp(21px, 2vw, 29px) 0;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  column-gap: clamp(34px, 4.2vw, 76px);
}

.seo-copy-section--offset {
  margin-right: auto;
  margin-left: auto;
}

.seo-copy-kicker {
  grid-column: 1 / -1;
  margin: 0 0 13px;
  color: #6b5bd1;
  font-size: 10.5px;
  font-weight: 580;
  line-height: 1.2;
  text-transform: uppercase;
}

.seo-copy-section h2,
.seo-copy-faq h2,
.seo-copy-closing h2 {
  margin: 0;
  font-size: clamp(25px, 2.15vw, 32px);
  font-weight: 465;
  line-height: 1.16;
  text-wrap: balance;
}

.seo-copy-section h2 {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.seo-copy-section > p:not(.seo-copy-kicker) {
  grid-column: 2;
  max-width: 900px;
  margin: 0;
  color: #4f5f58;
  font-size: 15px;
  line-height: 1.72;
}

.seo-copy-section > p + p {
  margin-top: 12px;
}

.seo-copy-quote {
  width: calc(100vw - 48px);
  margin: clamp(5px, .7vw, 10px) auto;
  padding: clamp(25px, 2.5vw, 36px) clamp(24px, 3.6vw, 58px);
  color: #ffffff;
  background: #17372c;
}

.seo-copy-quote p {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 410;
  line-height: 1.28;
  text-wrap: balance;
}

.seo-copy-faq {
  padding: clamp(27px, 2.8vw, 40px) 0;
  background: #f5f8f6;
}

.seo-copy-faq > .seo-shell {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  column-gap: clamp(34px, 4.2vw, 76px);
}

.seo-copy-faq .seo-copy-kicker {
  grid-column: 1 / -1;
}

.seo-copy-faq h2 {
  grid-column: 1;
  grid-row: 2 / span 8;
  max-width: 520px;
}

.seo-copy-faq article {
  grid-column: 2;
  max-width: 900px;
  margin-top: 0;
}

.seo-copy-faq article + article {
  margin-top: 14px;
}

.seo-copy-faq h3 {
  margin: 0;
  color: #1b2b24;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.32;
}

.seo-copy-faq article p {
  margin: 9px 0 0;
  color: #53635c;
  font-size: 14px;
  line-height: 1.65;
}

.seo-copy-closing {
  padding: clamp(27px, 3vw, 42px) 0;
}

.seo-copy-closing > .seo-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px 60px;
}

.seo-copy-closing h2 {
  max-width: 930px;
}

.seo-copy-closing .seo-primary {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .seo-copy-hero,
  .seo-copy-section,
  .seo-copy-faq > .seo-shell {
    display: block;
  }

  .seo-copy-lead {
    margin-top: 18px;
  }

  .seo-copy-section > p:not(.seo-copy-kicker) {
    margin-top: 15px;
  }

  .seo-copy-faq article {
    margin-top: 26px;
  }

  .seo-copy-faq article + article {
    margin-top: 22px;
  }
}

@media (max-width: 760px) {
  .seo-copy-hero {
    padding: 21px 0 23px;
  }

  .seo-copy-hero h1 {
    font-size: 29px;
    line-height: 1.12;
  }

  .seo-copy-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.62;
  }

  .seo-copy-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .seo-copy-section,
  .seo-copy-section--offset {
    width: calc(100vw - 28px);
    margin-right: auto;
    margin-left: auto;
    padding: 22px 0;
  }

  .seo-copy-section h2,
  .seo-copy-faq h2,
  .seo-copy-closing h2 {
    font-size: 25px;
  }

  .seo-copy-section > p:not(.seo-copy-kicker) {
    font-size: 14px;
    line-height: 1.66;
  }

  .seo-copy-quote {
    width: calc(100vw - 20px);
    padding: 27px 20px;
  }

  .seo-copy-quote p {
    font-size: 22px;
  }

  .seo-copy-faq {
    padding: 27px 0;
  }

  .seo-copy-faq article {
    margin-top: 21px;
  }

  .seo-copy-closing {
    padding: 27px 0 31px;
  }

  .seo-copy-closing > .seo-shell {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Public 404: an editorial recovery route, never a soft error. */
.seo-error-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.seo-error-main {
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 76px) 0;
}

.seo-error-content {
  display: grid;
  grid-template-columns: minmax(140px, .34fr) minmax(300px, 1fr) minmax(300px, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 88px);
}

.seo-error-code {
  margin: -10px 0 0;
  color: #cfc9f1;
  font-size: clamp(72px, 8vw, 126px);
  font-weight: 430;
  line-height: .9;
}

.seo-error-copy h1,
.seo-error-copy h2 {
  max-width: 570px;
  margin: 0;
  color: #101915;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 455;
  line-height: 1.14;
  text-wrap: balance;
}

.seo-error-copy > p:not(.seo-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: #596861;
  font-size: 14px;
  line-height: 1.6;
}

.seo-error-actions {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.seo-error-actions .seo-secondary {
  min-height: 38px;
  padding: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .seo-error-content {
    grid-template-columns: 1fr 1fr;
  }

  .seo-error-code {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .seo-error-main {
    align-items: start;
    padding: 30px 0 38px;
  }

  .seo-error-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seo-error-code {
    grid-column: auto;
    font-size: 66px;
  }

  .seo-error-copy h1,
  .seo-error-copy h2 {
    font-size: 25px;
  }

  .seo-error-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
}
