/* ============================================================
   Subkept SEO shell — visually mirrors the React SPA theme.
   Scoped under .seo-shell so vars never collide with the React
   app (project memory: do NOT promote these to :root).
   Light/dark follows html[data-theme] which is set by an inline
   script in <head> before paint.
   ============================================================ */

.seo-shell {
  /* ---- Theme tokens (LIGHT default) ---- */
  --seo-bg: #f8f9fb;
  --seo-bg-soft: #f3f4f8;
  --seo-bg-elev: #ffffff;
  --seo-panel: #ffffff;
  --seo-panel-strong: #ffffff;
  --seo-text: #111827;
  --seo-text-2: #1f2937;
  --seo-muted: #5b6270;
  --seo-line: #e5e7eb;
  --seo-line-strong: #d1d5db;
  --seo-accent: #757FE0;
  --seo-accent-soft: rgba(117, 127, 224, 0.08);
  --seo-accent-glow: rgba(117, 127, 224, 0.18);
  --seo-accent-2: #757FE0;
  --seo-accent-3: #b45309;
  --seo-danger: #ef4444;
  --seo-success: #10b981;
  --seo-success-bg: rgba(16, 185, 129, 0.08);
  --seo-danger-bg: rgba(239, 68, 68, 0.08);
  --seo-nav-blur: rgba(248, 249, 252, 0.82);
  --seo-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.04);
  --seo-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);

  --seo-max: 70rem;
  --seo-radius: 16px;
  --seo-radius-sm: 12px;
  --seo-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  margin: 0;
  font-family: var(--seo-font);
  background: var(--seo-bg);
  color: var(--seo-text);
  line-height: 1.65;
  letter-spacing: -0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- DARK theme overrides ---- */
html[data-theme="dark"] .seo-shell {
  --seo-bg: #09090b;
  --seo-bg-soft: #0c0c0f;
  --seo-bg-elev: #111113;
  --seo-panel: #111113;
  --seo-panel-strong: #18181b;
  --seo-text: #fafafa;
  --seo-text-2: #e4e4e7;
  --seo-muted: #a1a1aa;
  --seo-line: #1e1e22;
  --seo-line-strong: #27272a;
  --seo-accent-soft: rgba(117, 127, 224, 0.10);
  --seo-success: #34d399;
  --seo-success-bg: rgba(52, 211, 153, 0.10);
  --seo-danger: #f87171;
  --seo-danger-bg: rgba(248, 113, 113, 0.10);
  --seo-nav-blur: rgba(9, 9, 11, 0.82);
  --seo-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 6px 24px rgba(0, 0, 0, 0.18);
  --seo-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.32), 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.seo-shell a { color: inherit; }
.seo-shell img { max-width: 100%; display: block; }

::selection { background: var(--seo-accent-soft); color: var(--seo-accent); }

/* ============================================================
   NAV — mirrors SharedNav: blur, fixed-feel, brand on left
   ============================================================ */
.seo-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: var(--seo-nav-blur);
  border-bottom: 1px solid var(--seo-line);
}

.seo-nav-inner,
.seo-main,
.seo-footer-inner {
  width: min(calc(100% - 48px), var(--seo-max));
  margin: 0 auto;
}

.seo-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

.seo-brand,
.seo-nav-links,
.seo-nav-actions,
.seo-cta-row,
.seo-stat-row,
.seo-card-grid,
.seo-pricing-grid,
.seo-post-grid,
.seo-post-meta,
.seo-inline-links,
.seo-footer-grid,
.seo-footer-bottom,
.seo-breadcrumbs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.seo-brand {
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--seo-text);
  letter-spacing: -0.01em;
}

.seo-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--seo-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 8px var(--seo-accent-glow);
}

.seo-nav-links { gap: 24px; }
.seo-nav-links a,
.seo-inline-links a,
.seo-footer-grid a,
.seo-breadcrumbs a {
  color: var(--seo-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.seo-nav-links a:hover,
.seo-inline-links a:hover,
.seo-footer-grid a:hover,
.seo-breadcrumbs a:hover { color: var(--seo-text); }

/* ============================================================
   BUTTONS — mirrors sk-btn-primary / sk-btn-ghost
   ============================================================ */
.seo-button,
.seo-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--seo-font);
  cursor: pointer;
  border: none;
}

.seo-button {
  background: var(--seo-accent);
  color: #fff;
  box-shadow: 0 1px 2px var(--seo-accent-glow);
}
.seo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--seo-accent-glow);
  opacity: 0.95;
}

.seo-button-secondary {
  color: var(--seo-text);
  border: 1px solid var(--seo-line);
  background: var(--seo-panel);
}
.seo-button-secondary:hover {
  border-color: var(--seo-accent);
  color: var(--seo-accent);
}

/* ============================================================
   MAIN / SECTIONS — match SK card style
   ============================================================ */
.seo-main { padding: 56px 0 80px; }

.seo-hero,
.seo-section,
.seo-article-shell,
.seo-legal-shell {
  position: relative;
  border: 1px solid var(--seo-line);
  background: var(--seo-panel);
  border-radius: var(--seo-radius);
  box-shadow: var(--seo-shadow);
}

.seo-hero,
.seo-section {
  padding: 36px;
  margin-bottom: 24px;
}

.seo-hero { overflow: hidden; }

.seo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--seo-accent-soft);
  color: var(--seo-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.seo-hero h1,
.seo-page-title,
.seo-article-shell h1 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--seo-text);
  font-weight: 700;
}

.seo-page-title,
.seo-article-shell h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.seo-hero-copy,
.seo-lead,
.seo-card p,
.seo-post-card p,
.seo-legal-copy p,
.seo-article-body p,
.seo-article-body li {
  color: var(--seo-muted);
}

.seo-hero-grid,
.seo-split,
.seo-feature-layout,
.seo-pricing-layout,
.seo-about-layout,
.seo-blog-layout,
.seo-article-layout,
.seo-footer-grid {
  display: grid;
  gap: 24px;
}

.seo-hero-grid,
.seo-feature-layout,
.seo-pricing-layout,
.seo-about-layout,
.seo-blog-layout,
.seo-article-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-hero-shot {
  align-self: center;
  justify-self: end;
  max-width: 480px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--seo-line);
}

.seo-stat-row,
.seo-card-grid,
.seo-pricing-grid,
.seo-post-grid {
  gap: 16px;
}

.seo-stat,
.seo-card,
.seo-price-card,
.seo-post-card,
.seo-quote,
.seo-faq,
.seo-legal-copy,
.seo-toc {
  border-radius: var(--seo-radius-sm);
  border: 1px solid var(--seo-line);
  background: var(--seo-bg-elev);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.seo-card:hover,
.seo-post-card:hover,
.seo-quote:hover {
  border-color: var(--seo-accent);
  box-shadow: var(--seo-shadow-lg);
}

.seo-stat { min-width: 190px; flex: 1 1 0; }

.seo-stat strong,
.seo-price strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--seo-text);
}

.seo-card-grid,
.seo-pricing-grid,
.seo-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card h3,
.seo-price-card h3,
.seo-post-card h2,
.seo-post-card h3,
.seo-section h2,
.seo-section h3,
.seo-legal-copy h2,
.seo-article-body h2,
.seo-article-body h3 {
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--seo-text);
}

.seo-list,
.seo-price-card ul,
.seo-toc ol,
.seo-article-body ul,
.seo-article-body ol {
  margin: 0;
  padding-left: 18px;
}

.seo-price-card.featured {
  background: linear-gradient(180deg, var(--seo-accent-soft), var(--seo-bg-elev));
  border-color: var(--seo-accent);
  box-shadow: 0 0 0 1px var(--seo-accent-soft), var(--seo-shadow);
}

.seo-eyebrow {
  color: var(--seo-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-post-card,
.seo-quote {
  text-decoration: none;
  color: inherit;
}

.seo-stat-card { text-align: center; }
.seo-stat-value { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.04em; color: var(--seo-text); line-height: 1; margin-bottom: 8px; }
.seo-stat-label { font-size: 14px; color: var(--seo-muted); margin: 0 0 6px; line-height: 1.5; }
.seo-stat-src { font-size: 11px; color: var(--seo-muted); opacity: .6; font-style: italic; }

.seo-quote strong,
.seo-post-meta,
.seo-kv,
.seo-breadcrumbs,
.seo-footer-bottom,
.seo-footer-grid span {
  color: var(--seo-muted);
  font-size: 14px;
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--seo-text);
}

.seo-faq p { margin: 12px 0 0; }

.seo-article-shell,
.seo-legal-shell { padding: 32px; }

.seo-article-layout,
.seo-blog-layout { align-items: start; }

.seo-toc {
  position: sticky;
  top: 96px;
}

.seo-article-body { font-size: 17px; color: var(--seo-text-2); }
.seo-article-body h2 { margin-top: 32px; font-size: 1.7rem; }
.seo-article-body h3 { margin-top: 24px; font-size: 1.25rem; }

.seo-article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--seo-accent);
  background: var(--seo-accent-soft);
  color: var(--seo-text-2);
  border-radius: 0 8px 8px 0;
}

.seo-article-body a {
  color: var(--seo-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.seo-footer {
  padding: 56px 0 48px;
  background: var(--seo-bg-soft);
  border-top: 1px solid var(--seo-line);
  margin-top: 40px;
}

.seo-footer-inner { padding: 0; }

.seo-footer-grid {
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.2fr;
  margin-bottom: 24px;
  gap: 32px;
}

.seo-footer-grid > * { min-width: 0; }

.seo-footer-grid h3 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--seo-text);
}

.seo-footer-grid nav,
.seo-footer-grid div {
  display: grid;
  gap: 10px;
}

.seo-footer-grid nav a,
.seo-footer-grid div a {
  font-size: 14px;
  color: var(--seo-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seo-footer-bottom {
  justify-content: space-between;
  border-top: 1px solid var(--seo-line);
  padding-top: 20px;
  font-size: 12px;
}

.seo-noindex {
  text-align: center;
  max-width: 680px;
  margin: 100px auto;
  padding: 36px;
}

@media (max-width: 960px) {
  .seo-hero-grid,
  .seo-feature-layout,
  .seo-pricing-layout,
  .seo-about-layout,
  .seo-blog-layout,
  .seo-article-layout,
  .seo-card-grid,
  .seo-pricing-grid,
  .seo-post-grid { grid-template-columns: 1fr; }
  .seo-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .seo-nav-inner {
    padding: 12px 0;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-nav-links,
  .seo-nav-actions { width: 100%; }
  .seo-hero-shot { justify-self: stretch; }
  .seo-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .seo-main { padding-top: 24px; }
  .seo-hero,
  .seo-section,
  .seo-article-shell,
  .seo-legal-shell { padding: 22px; }
  .seo-hero h1,
  .seo-page-title,
  .seo-article-shell h1 { font-size: 2rem; }
}

/* ============================================================
   Article extras (lede, author, figures, category badge)
   ============================================================ */
.seo-shell .seo-lede {
  font-size: 1.15rem;
  line-height: 1.55;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--seo-accent);
  background: var(--seo-accent-soft);
  border-radius: 0 8px 8px 0;
  margin: 1.25rem 0 2rem;
  color: var(--seo-text-2);
}

.seo-shell .seo-author-box {
  margin-top: 2.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  background: var(--seo-bg-elev);
}
.seo-shell .seo-author-box h3 { margin: 0.25rem 0 0.5rem; }
.seo-shell .seo-author-box p { margin: 0; color: var(--seo-muted); }

.seo-shell .seo-cover-figure,
.seo-shell .seo-inline-figure {
  margin: 1.75rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--seo-line);
  background: var(--seo-bg-elev);
}
.seo-shell .seo-cover-figure { margin: 1.5rem 0 2.25rem; }
.seo-shell .seo-cover-figure img,
.seo-shell .seo-inline-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.seo-shell .seo-cover-figure figcaption,
.seo-shell .seo-inline-figure figcaption {
  font-size: 0.82rem;
  padding: 0.6rem 0.95rem 0.7rem;
  color: var(--seo-muted);
  border-top: 1px solid var(--seo-line);
}
.seo-shell .seo-cover-figure figcaption a,
.seo-shell .seo-inline-figure figcaption a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-shell .seo-category-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--seo-accent);
  color: var(--seo-accent);
  background: var(--seo-accent-soft);
  text-decoration: none;
  margin: 0.5rem 0 0.75rem;
  font-weight: 600;
}
.seo-shell .seo-category-badge:hover {
  background: var(--seo-accent);
  color: #fff;
}

.seo-shell .seo-post-card-cover {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: var(--seo-radius-sm);
}
.seo-shell .seo-post-card-cover .seo-post-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--seo-bg-soft);
}
.seo-shell .seo-post-card-cover .seo-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}
.seo-shell .seo-post-card-cover:hover .seo-post-card-image img {
  transform: scale(1.04);
}
.seo-shell .seo-post-card-cover .seo-post-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.seo-shell .seo-post-card-cover .seo-post-card-body h2,
.seo-shell .seo-post-card-cover .seo-post-card-body h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
}
.seo-shell .seo-post-card-cover .seo-post-card-body p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.95rem;
}

/* ============================================================
   Comparison table & choose-either grid
   ============================================================ */
.seo-shell .seo-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  background: var(--seo-bg-elev);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  overflow: hidden;
}
.seo-shell .seo-compare-table thead th {
  text-align: left;
  font-weight: 700;
  padding: 0.85rem 1rem;
  background: var(--seo-bg-soft);
  border-bottom: 1px solid var(--seo-line);
  font-size: 0.92rem;
  color: var(--seo-text);
}
.seo-shell .seo-compare-table tbody th {
  text-align: left;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--seo-line);
  background: transparent;
  width: 32%;
  color: var(--seo-text);
}
.seo-shell .seo-compare-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--seo-line);
  vertical-align: top;
  font-size: 0.92rem;
  color: var(--seo-text-2);
}
.seo-shell .seo-compare-table tbody tr:last-child th,
.seo-shell .seo-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.seo-shell .seo-check {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.seo-shell .seo-check-yes {
  background: var(--seo-success-bg);
  color: var(--seo-success);
}
.seo-shell .seo-check-no {
  background: var(--seo-danger-bg);
  color: var(--seo-danger);
}

.seo-shell .seo-choose-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.seo-shell .seo-choose-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}
.seo-shell .seo-choose-card li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--seo-text-2);
}

@media (max-width: 720px) {
  .seo-shell .seo-choose-grid { grid-template-columns: 1fr; }
  .seo-shell .seo-compare-table { font-size: 0.85rem; }
  .seo-shell .seo-compare-table thead th,
  .seo-shell .seo-compare-table tbody th,
  .seo-shell .seo-compare-table tbody td {
    padding: 0.55rem 0.6rem;
  }
}

/* ============================================================
   Comparison page v2 — calmer, more readable layout.
   All selectors scoped under .seo-shell per project convention.
   ============================================================ */

.seo-shell .seo-cmp-hero { padding-bottom: 12px; }
.seo-shell .seo-cmp-byline {
  font-size: 13px;
  color: var(--seo-muted);
  margin: 12px 0 24px;
}

.seo-shell .seo-cmp-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.seo-shell .seo-cmp-toc a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--seo-text-2);
  background: var(--seo-bg-soft);
  border: 1px solid var(--seo-line);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.seo-shell .seo-cmp-toc a:hover {
  color: var(--seo-accent);
  border-color: var(--seo-accent-glow);
  background: var(--seo-accent-soft);
}

/* TL;DR verdict cards */
.seo-shell .seo-cmp-verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.seo-shell .seo-cmp-verdict-card {
  background: var(--seo-panel);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.seo-shell .seo-cmp-verdict-subkept {
  border-color: var(--seo-accent-glow);
  background: linear-gradient(180deg, var(--seo-accent-soft) 0%, var(--seo-panel) 65%);
}
.seo-shell .seo-cmp-vlabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seo-accent);
}
.seo-shell .seo-cmp-vlabel-alt { color: var(--seo-muted); }
.seo-shell .seo-cmp-verdict-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--seo-text);
  max-width: 60ch;
}
.seo-shell .seo-cmp-vcta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--seo-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.seo-shell .seo-cmp-vcta:hover { opacity: 0.92; transform: translateY(-1px); }
.seo-shell .seo-cmp-vcta-muted {
  background: transparent;
  color: var(--seo-text-2);
  border: 1px solid var(--seo-line-strong);
}

/* Sticky quick-facts strip */
.seo-shell .seo-cmp-quickstrip {
  position: sticky;
  top: 64px;
  z-index: 20;
  margin: 0 0 48px;
  background: var(--seo-nav-blur);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-top: 1px solid var(--seo-line);
  border-bottom: 1px solid var(--seo-line);
}
.seo-shell .seo-cmp-quickstrip-inner {
  max-width: var(--seo-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.seo-shell .seo-cmp-qfact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.seo-shell .seo-cmp-qlabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--seo-muted);
}
.seo-shell .seo-cmp-qrow {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.seo-shell .seo-cmp-qbrand {
  font-size: 11px;
  font-weight: 700;
  color: var(--seo-accent);
  min-width: 60px;
}
.seo-shell .seo-cmp-qbrand-alt { color: var(--seo-muted); }
.seo-shell .seo-cmp-qval {
  color: var(--seo-text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Overview grid */
.seo-shell .seo-cmp-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.seo-shell .seo-cmp-overview-card {
  background: var(--seo-panel);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  padding: 28px;
}
.seo-shell .seo-cmp-overview-card p {
  margin: 12px 0 0;
  color: var(--seo-text-2);
  line-height: 1.65;
  max-width: 60ch;
}

.seo-shell .seo-cmp-criteria {
  margin: 8px 0 0;
  padding: 16px 20px;
  background: var(--seo-accent-soft);
  border-left: 3px solid var(--seo-accent);
  border-radius: 0 10px 10px 0;
  color: var(--seo-text-2);
  font-size: 0.95rem;
  line-height: 1.6;
}
.seo-shell .seo-cmp-criteria span {
  font-weight: 700;
  color: var(--seo-accent);
  margin-right: 6px;
}

/* Pros & cons */
.seo-shell .seo-cmp-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.seo-shell .seo-cmp-pc-col {
  background: var(--seo-panel);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.seo-shell .seo-cmp-pc-col h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--seo-text);
}
.seo-shell .seo-cmp-pc-block { display: flex; flex-direction: column; gap: 10px; }
.seo-shell .seo-cmp-pc-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.seo-shell .seo-cmp-pc-head-pro { color: var(--seo-success); }
.seo-shell .seo-cmp-pc-head-con { color: var(--seo-danger); }
.seo-shell .seo-cmp-pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-shell .seo-cmp-pc-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--seo-text-2);
}
.seo-shell .seo-cmp-pc-list-pro li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: var(--seo-success-bg);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--seo-success);
}
.seo-shell .seo-cmp-pc-list-pro li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.85em;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--seo-success);
  border-bottom: 1.5px solid var(--seo-success);
  transform: rotate(-45deg);
}
.seo-shell .seo-cmp-pc-list-con li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: var(--seo-danger-bg);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--seo-danger);
}
.seo-shell .seo-cmp-pc-list-con li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1.05em;
  width: 6px;
  height: 0;
  border-top: 1.5px solid var(--seo-danger);
}

/* Decision tree */
.seo-shell .seo-cmp-decision {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seo-shell .seo-cmp-decision-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  background: var(--seo-panel);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  padding: 24px 26px;
}
.seo-shell .seo-cmp-decision-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--seo-accent-soft);
  color: var(--seo-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.seo-shell .seo-cmp-decision-q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--seo-text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.seo-shell .seo-cmp-decision-answers { display: flex; flex-direction: column; gap: 8px; }
.seo-shell .seo-cmp-decision-a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--seo-text-2);
}
.seo-shell .seo-cmp-decision-tag {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  min-width: 44px;
  text-align: center;
}
.seo-shell .seo-cmp-decision-tag-yes {
  background: var(--seo-success-bg);
  color: var(--seo-success);
}
.seo-shell .seo-cmp-decision-tag-no {
  background: var(--seo-danger-bg);
  color: var(--seo-danger);
}

/* AI quick answers */
.seo-shell .seo-cmp-aifaq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.seo-shell .seo-cmp-aifaq-item {
  background: var(--seo-panel);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  padding: 22px 26px;
}
.seo-shell .seo-cmp-aifaq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--seo-text);
  line-height: 1.4;
}
.seo-shell .seo-cmp-aifaq-item p {
  margin: 0;
  color: var(--seo-text-2);
  line-height: 1.65;
  max-width: 64ch;
}

@media (max-width: 900px) {
  .seo-shell .seo-cmp-verdict,
  .seo-shell .seo-cmp-overview-grid,
  .seo-shell .seo-cmp-proscons {
    grid-template-columns: 1fr;
  }
  .seo-shell .seo-cmp-quickstrip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .seo-shell .seo-cmp-quickstrip { position: static; }
  .seo-shell .seo-cmp-quickstrip-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .seo-shell .seo-cmp-decision-step { grid-template-columns: 1fr; }
}

/* Allow quickstrip values to wrap on narrow screens so they aren't clipped */
@media (max-width: 720px) {
  .seo-shell .seo-cmp-qval {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .seo-shell .seo-cmp-qrow { flex-wrap: wrap; }
  .seo-shell .seo-cmp-qbrand { min-width: 56px; }
}

/* Compare hero — center align for cleaner mobile + desktop look */
.seo-shell .seo-cmp-hero { text-align: center; }
.seo-shell .seo-cmp-hero .seo-page-title,
.seo-shell .seo-cmp-hero .seo-lead,
.seo-shell .seo-cmp-hero .seo-cmp-byline { margin-left: auto; margin-right: auto; }
.seo-shell .seo-cmp-hero .seo-lead { max-width: 64ch; }
.seo-shell .seo-cmp-hero .seo-cmp-toc { justify-content: center; }
.seo-shell .seo-cmp-hero .seo-cta-row,
.seo-shell .seo-cmp-hero .seo-inline-links { justify-content: center; }

/* Blog nav (inline-styled) — hide menu links on mobile, tighten actions */
@media (max-width: 820px) {
  .sk-blog-nav-links { display: none !important; }
  .sk-blog-nav-inner { padding: 0 16px !important; gap: 8px !important; }
}
@media (max-width: 480px) {
  .sk-blog-nav-actions a[href="/#/auth"] {
    padding: 0 12px !important;
    font-size: 13px !important;
  }
  .sk-blog-nav-actions a[href="/#/auth"]:not([style*="background:#6366f1"]) {
    display: none !important;
  }
}

/* Blog footer — collapse 5-col grid responsively */
@media (max-width: 960px) {
  .sk-blog-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }
}
@media (max-width: 560px) {
  .sk-blog-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .sk-blog-footer { padding: 40px 20px !important; }
}

/* Prevent compare-page tables from pushing past viewport */
@media (max-width: 720px) {
  .seo-shell .seo-compare-table { display: block; overflow-x: auto; }
}
