:root {
  color-scheme: dark;
  --neon-magenta: #ff3d8a;
  --neon-magenta-soft: rgba(255, 61, 138, 0.14);
  --neon-magenta-line: rgba(255, 61, 138, 0.28);
  --copper: #d4b896;
  --copper-soft: rgba(212, 184, 150, 0.14);
  --bg: #0A0A0A;
  --bg-1: #0F0F0F;
  --surface: #100d13;
  --surface-high: #16121b;
  --fg: #F2F0EC;
  --fg-72: rgba(242, 240, 236, 0.72);
  --fg-60: rgba(242, 240, 236, 0.6);
  --fg-44: rgba(242, 240, 236, 0.44);
  --fg-30: rgba(242, 240, 236, 0.3);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --green: #6BD96B;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

body.seo-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 61, 138, 0.06) 0%, rgba(10, 10, 10, 0) 22rem),
    radial-gradient(circle at 82% 0%, rgba(255, 61, 138, 0.05), transparent 28rem),
    var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.005em;
}

body.seo-page[data-seo-kind="article"] {
  background: var(--bg);
}

.seo-page a { color: inherit; }
.seo-page button,
.seo-page input,
.seo-page textarea { font: inherit; }

.seo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.020) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 72%);
}

/* ---------- shells ---------- */
.seo-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-shell--narrow {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- nav (matches homepage 1:1) ---------- */
.seo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid rgba(242, 240, 236, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.seo-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 12%);
}

.seo-nav-inner { display: contents; }

:target,
.seo-page [id] {
  scroll-margin-top: 100px;
}

.seo-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 24px;
  color: #f2f0ec;
  text-decoration: none;
}

.seo-page .logo-bubble {
  width: 46px;
  height: 46px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seo-page .logo-bubble svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.seo-page .logo-bubble .lb-shape {
  fill: none;
  stroke: var(--neon-magenta);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(255, 61, 138, 0.7))
          drop-shadow(0 0 14px rgba(255, 61, 138, 0.4));
}

.seo-page .logo-bubble .lb-heart {
  fill: var(--neon-magenta);
  filter: drop-shadow(0 0 5px rgba(255, 61, 138, 0.8));
}

.seo-page .logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.seo-page .logo-wordmark .wm-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--fg);
}

.seo-page .logo-wordmark .wm-sub {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(242, 240, 236, 0.45);
  margin-top: 2px;
  text-transform: none;
}

.seo-nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(242, 240, 236, 0.55);
}

.seo-nav-links a {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.seo-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--neon-magenta);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-nav-links a:hover { color: var(--fg); }
.seo-nav-links a:hover::after { transform: scaleX(1); }

/* ---------- buttons ---------- */
.seo-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.seo-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 61, 138, 0.48);
  background: rgba(255, 61, 138, 0.08);
}

.seo-btn-primary {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background: linear-gradient(135deg, #ff3d8a, #c084fc);
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 1px rgba(255, 61, 138, 0.25), 0 12px 32px -8px rgba(255, 61, 138, 0.45), 0 0 24px -4px rgba(192, 132, 252, 0.4);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease, filter 240ms ease;
}

/* `.seo-page a { color: inherit }` (0,1,1) outranks a bare `.seo-btn-primary`
   (0,1,0): without bumping specificity the page color is inherited onto the pill
   and overrides the intended dark label. Mirrors `.seo-promo .seo-btn-primary`. */
.seo-page a.seo-btn-primary { color: #0A0612; }

/* Auto gloss sweep — matches the landing primary pill 1:1. */
.seo-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(40, 30, 55, 0.18) 50%, transparent 62%);
  transform: translateX(-120%);
  animation: seoBtnShine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes seoBtnShine {
  0%, 70%, 100% { transform: translateX(-120%); }
  85%           { transform: translateX(220%); }
}

.seo-btn-primary:hover {
  border-color: transparent;
  /* Re-declare the gradient: the base .seo-btn:hover sets a translucent magenta
     background that would otherwise win here and wipe the pill to near-transparent
     (looked black over the dark page). */
  background: linear-gradient(135deg, #ff3d8a, #c084fc);
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 61, 138, 0.35), 0 16px 40px -8px rgba(255, 61, 138, 0.55), 0 0 32px -2px rgba(192, 132, 252, 0.5);
}
.seo-btn-primary:active { transform: translateY(0) scale(0.99); }

@media (prefers-reduced-motion: reduce) {
  .seo-btn-primary,
  .seo-btn-primary::before { animation: none; transition: none; }
}

.seo-btn-secondary {
  color: var(--fg);
}

/* ---------- hero ---------- */
.seo-hero {
  min-height: calc(100vh - 74px);
  padding: 82px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.seo-hero--article {
  min-height: auto;
  grid-template-columns: 1fr;
  padding: 72px 0 28px;
  gap: 0;
  text-align: center;
}

.seo-hero--article .seo-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seo-hero--article .seo-eyebrow {
  margin-bottom: 22px;
}

.seo-hero--article h1 {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Inter Tight", Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.012em;
}

.seo-hero--article .seo-lede {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--fg-72);
}

.seo-article-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 28px auto 0;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg-44);
  font-size: 13px;
}

.seo-article-byline .seo-byline-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--neon-magenta), #ff8eb1);
  color: #0A0612;
  font-weight: 900;
  font-size: 12px;
  font-family: "Inter Tight", Inter, sans-serif;
}

.seo-article-byline .seo-byline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.seo-article-byline .seo-byline-meta strong {
  color: var(--fg);
  font-weight: 600;
}

.seo-article-byline .seo-byline-meta a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg-30);
}

.seo-article-byline .seo-byline-meta a:hover {
  color: var(--neon-magenta);
  border-bottom-color: var(--neon-magenta);
}

.seo-article-byline .seo-byline-dot {
  color: var(--fg-30);
}

.seo-article-hero-media {
  margin: 28px 0 0;
}

.seo-article-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.seo-article-hero-media figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--fg-30);
}

.seo-hero-copy {
  min-width: 0;
}

.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 61, 138, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 61, 138, 0.08);
  color: var(--neon-magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(107, 217, 107, 0.65);
}

.seo-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.seo-hero h1 em {
  color: var(--neon-magenta);
  font-style: normal;
  text-shadow: 0 0 22px rgba(255, 61, 138, 0.32);
}

.seo-subline {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(242, 240, 236, 0.46);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.005em;
}

.seo-lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--fg-72);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.58;
}

.seo-cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- visual phone ---------- */
.seo-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.seo-visual::before {
  content: "";
  position: absolute;
  inset: 9% 2% 2% 6%;
  border-radius: 38px;
  background:
    radial-gradient(circle at 42% 48%, rgba(255, 61, 138, 0.34), transparent 30%),
    radial-gradient(circle at 70% 72%, rgba(212, 184, 150, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 61, 138, 0.15), rgba(212, 184, 150, 0.05));
  filter: blur(6px);
  opacity: 0.78;
}

.seo-phone {
  position: relative;
  z-index: 2;
  width: min(320px, 74vw);
  height: 520px;
  border: 4px solid rgba(255, 61, 138, 0.22);
  border-radius: 42px 42px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(255, 61, 138, 0.78), rgba(60, 22, 38, 0.94) 52%, rgba(8, 7, 9, 0.96));
  box-shadow: 0 0 46px rgba(255, 61, 138, 0.16), 0 38px 120px -48px rgba(255, 61, 138, 0.8);
}

.seo-phone-speaker {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  width: 80px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.seo-phone-top {
  height: 88px;
  padding: 36px 24px 14px;
  display: grid;
  grid-template-columns: 18px 34px 1fr 28px;
  gap: 10px;
  align-items: center;
  background: rgba(12, 9, 16, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.seo-back {
  color: rgba(242, 240, 236, 0.58);
  font-size: 26px;
  line-height: 1;
}

.seo-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--neon-magenta), #ff8eb1);
  color: #fff;
  font-weight: 900;
}

.seo-phone-top strong,
.seo-paid-card strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.seo-phone-top small,
.seo-paid-card span {
  display: block;
  color: rgba(242, 240, 236, 0.6);
  font-size: 11px;
  margin-top: 2px;
}

.seo-dots {
  color: rgba(242, 240, 236, 0.48);
  letter-spacing: 2px;
  transform: rotate(90deg);
}

.seo-chat {
  padding: 22px 20px;
  display: grid;
  gap: 12px;
}

.seo-bubble {
  width: fit-content;
  max-width: 88%;
  border-radius: 18px;
  padding: 11px 13px;
  color: #fff;
  font-size: 13px;
  line-height: 1.28;
  box-shadow: 0 12px 28px -20px #000;
}

.seo-bubble--fan {
  justify-self: end;
  background: rgba(255, 255, 255, 0.11);
}

.seo-bubble--persona {
  background: rgba(255, 61, 138, 0.48);
}

.seo-paid-card {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 13px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  align-items: center;
  background: rgba(11, 8, 15, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.seo-paid-media {
  height: 86px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 46% 48%, rgba(255, 255, 255, 0.28), transparent 25%),
    linear-gradient(135deg, rgba(255, 61, 138, 0.85), rgba(212, 184, 150, 0.55));
}

.seo-unlock-pill {
  justify-self: center;
  margin-top: 4px;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(10, 10, 10, 0.72);
  color: rgba(242, 240, 236, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.seo-telegram-float {
  position: absolute;
  z-index: 4;
  top: 68px;
  left: 0;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1d9bf0;
  color: #fff;
  font-size: 31px;
  box-shadow: 0 0 34px rgba(29, 155, 240, 0.42);
}

.seo-stat-card,
.seo-mini-proof {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 61, 138, 0.24);
  border-radius: 14px;
  background: rgba(20, 12, 18, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px -24px rgba(255, 61, 138, 0.6);
}

.seo-stat-card {
  width: min(210px, 44vw);
  padding: 16px;
}

.seo-stat-card small {
  display: block;
  color: rgba(242, 240, 236, 0.52);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.seo-stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--fg);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 29px;
}

.seo-stat-card--top {
  top: 76px;
  right: 0;
}

.seo-stat-card--bottom {
  right: -12px;
  bottom: 104px;
}

.seo-mini-proof {
  left: 18px;
  bottom: 46px;
  max-width: 250px;
  padding: 11px 13px;
  color: rgba(242, 240, 236, 0.74);
  font-size: 12px;
  font-weight: 800;
}

/* ---------- feature grid (software) ---------- */
.seo-grid {
  margin: 12px auto 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-card {
  min-height: 202px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 13, 19, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.seo-card small {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-card h2,
.seo-card h3 {
  margin: 16px 0 12px;
  color: var(--fg);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.005em;
}

.seo-card p {
  margin: 0;
  color: var(--fg-72);
  line-height: 1.58;
}

/* ---------- generic section ---------- */
.seo-section {
  border-top: 1px solid var(--line);
  padding: 76px 0;
}

.seo-section h2 {
  max-width: 820px;
  margin: 0 0 20px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -0.01em;
}

.seo-section p {
  max-width: 840px;
  color: var(--fg-72);
  font-size: 17px;
  line-height: 1.72;
}

.seo-section ul {
  max-width: 840px;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

/* Narrow variant for article kind — keeps everything in a 720 column */
.seo-section--narrow {
  padding: 56px 0;
}

.seo-section--narrow h2 {
  font-size: clamp(26px, 2.8vw, 32px);
  line-height: 1.15;
  font-weight: 600;
}

.seo-section--narrow .seo-related {
  grid-template-columns: 1fr;
}

.seo-section li {
  position: relative;
  padding-left: 24px;
  color: rgba(242, 240, 236, 0.8);
  line-height: 1.55;
  list-style: none;
}

.seo-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--neon-magenta);
  box-shadow: 0 0 11px rgba(255, 61, 138, 0.72);
}

/* ---------- FAQ ---------- */
.seo-faq {
  display: grid;
  gap: 14px;
}

.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(16, 13, 19, 0.72);
}

.seo-faq details[open] {
  border-color: rgba(255, 61, 138, 0.28);
}

.seo-faq summary {
  color: var(--fg);
  cursor: pointer;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 21px;
  letter-spacing: -0.005em;
  list-style: none;
}

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

.seo-faq summary::after {
  content: "+";
  float: right;
  margin-left: 16px;
  color: var(--neon-magenta);
  font-weight: 900;
  transition: transform 180ms ease;
}

.seo-faq details[open] summary::after {
  content: "−";
}

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

/* ---------- related ---------- */
.seo-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-related a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(16, 13, 19, 0.72);
  color: var(--fg);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.seo-related a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 61, 138, 0.36);
  background: rgba(255, 61, 138, 0.075);
}

.seo-related a strong {
  display: block;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 18px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.seo-related a span {
  display: block;
  margin-top: 10px;
  color: var(--fg-44);
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- final CTA ---------- */
.seo-final {
  border-top: 1px solid var(--line);
  padding: 92px 0 108px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255, 61, 138, 0.08));
}

.seo-final h2 {
  max-width: 860px;
  margin: 0 auto 22px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.01em;
  line-height: 0.96;
}

.seo-final p {
  max-width: 630px;
  margin: 0 auto 28px;
  color: var(--fg-72);
  line-height: 1.6;
}

.seo-final .seo-cta-row { justify-content: center; }

.seo-final .seo-cta-note {
  max-width: 630px;
  margin: 16px auto 0;
  color: var(--fg-44);
  font-size: 13px;
}

/* ---------- footer sitemap (4-col, mirrors the landing .footer-seo) ---------- */
.footer-seo {
  padding: 56px 40px 32px;
  border-top: 1px solid rgba(242, 240, 236, 0.06);
}
.footer-seo-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}
.footer-seo-col h4 {
  margin: 0 0 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 240, 236, 0.42);
}
.footer-seo-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.footer-seo-col a {
  color: rgba(242, 240, 236, 0.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-seo-col a:hover {
  color: rgba(242, 240, 236, 0.95);
}
@media (max-width: 680px) {
  .footer-seo { padding: 44px 22px 24px; }
  .footer-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- footer (mirrors the main landing footer, minus backlink badges) ---------- */
.seo-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 52px;
  color: var(--fg-44);
  font-size: 13px;
}

.seo-footer .seo-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.seo-footer .tag {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.seo-footer .tag em {
  font-style: normal;
  font-weight: 500;
  color: var(--fg-72);
}

.seo-footer .right {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.seo-footer .right .wm {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-72);
}

.seo-footer a,
.seo-footer .footer-link {
  color: var(--fg-72);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 180ms ease;
}

.seo-footer a:hover,
.seo-footer .footer-link:hover,
.seo-footer .footer-link:focus-visible {
  color: var(--neon-magenta);
}

/* ---------- compare table ---------- */
.seo-compare {
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16, 13, 19, 0.7);
  overflow: hidden;
}

.seo-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.seo-compare thead th {
  padding: 18px 20px;
  text-align: left;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-44);
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
}

.seo-compare thead th.is-tease {
  color: var(--neon-magenta);
  background: rgba(255, 61, 138, 0.08);
}

.seo-compare tbody td {
  padding: 18px 20px;
  vertical-align: top;
  color: var(--fg-72);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}

.seo-compare tbody tr:last-child td {
  border-bottom: 0;
}

.seo-compare td.is-tease {
  color: var(--fg);
  background: rgba(255, 61, 138, 0.04);
}

.seo-compare td:first-child {
  font-weight: 800;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.02);
  width: min(28%, 220px);
}

/* ---------- editorial article ---------- */
.seo-article-body {
  padding: 12px 0 56px;
}

.seo-article-prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(242, 240, 236, 0.82);
}

.seo-article-prose h2 {
  margin: 56px 0 18px;
  scroll-margin-top: 96px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--fg);
}

.seo-article-prose h2:first-child {
  margin-top: 0;
}

.seo-article-prose h3 {
  margin: 36px 0 10px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--fg);
}

.seo-article-prose p {
  margin: 0 0 18px;
}

.seo-article-prose ul,
.seo-article-prose ol {
  margin: 0 0 22px;
  padding-left: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.seo-article-prose ul li,
.seo-article-prose ol li {
  position: relative;
  padding-left: 22px;
  line-height: 1.62;
}

.seo-article-prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--neon-magenta);
}

.seo-article-prose ol {
  counter-reset: prose-ol;
}

.seo-article-prose ol li {
  counter-increment: prose-ol;
}

.seo-article-prose ol li::before {
  content: counter(prose-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--neon-magenta);
}

.seo-article-prose a {
  color: var(--neon-magenta);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 61, 138, 0.45);
  transition: text-decoration-color 180ms ease;
}

.seo-article-prose a:hover {
  text-decoration-color: var(--neon-magenta);
}

.seo-article-prose strong {
  color: var(--fg);
  font-weight: 600;
}

/* TL;DR / Key takeaways callout — placed at top of article body */
.seo-tldr {
  margin: 0 0 32px;
  padding: 24px 26px 20px;
  border: 1px solid rgba(255, 61, 138, 0.22);
  border-radius: 12px;
  background: rgba(255, 61, 138, 0.04);
}

.seo-tldr-label {
  margin: 0 0 12px;
  color: var(--neon-magenta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-tldr ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.seo-tldr li {
  position: relative;
  padding-left: 22px;
  color: var(--fg);
  font-size: 15px;
  line-height: 1.55;
}

.seo-tldr li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--neon-magenta);
}

.seo-tldr a {
  color: var(--neon-magenta);
  text-decoration: underline;
  text-decoration-color: rgba(255, 61, 138, 0.45);
  text-underline-offset: 3px;
}

.seo-tldr a:hover { text-decoration-color: var(--neon-magenta); }

/* Inline TOC (Wikipedia-style contained box at top) */
.seo-article-toc {
  margin: 8px 0 40px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.seo-article-toc-label {
  margin: 0 0 14px;
  color: var(--fg-44);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  counter-reset: toc;
  font-size: 14px;
  line-height: 1.5;
}

.seo-article-toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 28px;
}

.seo-article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fg-30);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.seo-article-toc a {
  color: var(--fg-72);
  text-decoration: none;
  transition: color 180ms ease;
}

.seo-article-toc a:hover {
  color: var(--neon-magenta);
}

/* Pull quote — softer, no big magenta block */
.seo-pull-quote {
  margin: 32px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--copper);
  background: transparent;
  color: var(--fg);
  font-family: "Inter Tight", Inter, sans-serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* Blog index — list of articles */
.seo-blog-list {
  display: grid;
  gap: 14px;
  padding: 32px 0 56px;
}

.seo-blog-card {
  display: grid;
  gap: 8px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16, 13, 19, 0.7);
  color: var(--fg);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.seo-blog-card:hover {
  border-color: rgba(255, 61, 138, 0.32);
  background: rgba(255, 61, 138, 0.04);
  transform: translateY(-1px);
}

.seo-blog-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-blog-card-eyebrow em {
  font-style: normal;
  color: var(--fg-30);
}

.seo-blog-card-title {
  font-family: "Inter Tight", Inter, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.seo-blog-card-desc {
  color: var(--fg-72);
  font-size: 15px;
  line-height: 1.55;
}

.seo-blog-card-meta {
  margin-top: 4px;
  color: var(--fg-44);
  font-size: 12px;
}

/* Read-next contextual link at end of article */
.seo-article-readnext {
  display: block;
  margin: 56px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.seo-article-readnext:hover {
  border-color: rgba(255, 61, 138, 0.32);
  background: rgba(255, 61, 138, 0.04);
}

.seo-article-readnext small {
  display: block;
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-article-readnext strong {
  display: block;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.seo-article-readnext span {
  display: block;
  margin-top: 6px;
  color: var(--fg-44);
  font-size: 13px;
}

.seo-article-readnext em {
  font-style: normal;
  color: var(--neon-magenta);
}

/* ---------- in-article promo card ---------- */
.seo-promo {
  position: relative;
  margin: 3rem 0;
  border-radius: 22px;
  isolation: isolate;
  overflow: hidden;
  color: var(--fg);
  background: linear-gradient(180deg, rgba(20, 18, 24, 0.97), rgba(12, 10, 14, 0.97));
  border: 1px solid rgba(242, 240, 236, 0.08);
  box-shadow: 0 32px 70px -26px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}
/* Magenta + lavender atmosphere wash (lavender is ambient-only, per DESIGN.md). */
.seo-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 70% at 14% 4%, rgba(255, 61, 138, 0.13), transparent 58%),
    radial-gradient(ellipse 56% 64% at 96% 100%, rgba(174, 162, 255, 0.09), transparent 56%);
}
.seo-promo-inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 30px;
  align-items: center;
  padding: 30px 32px;
}
/* ── left: copy ── */
.seo-promo .seo-promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-44);
}
.seo-promo-heart {
  width: 13px;
  height: 13px;
  flex: none;
  fill: var(--neon-magenta);
  filter: drop-shadow(0 0 5px rgba(255, 61, 138, 0.6));
}
.seo-promo .seo-promo-title {
  margin: 0 0 12px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--fg);
}
.seo-promo .seo-promo-body {
  margin: 0 0 1.4rem;
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fg-60);
}
.seo-promo-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.seo-promo .seo-promo-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3d8a 0%, #c084fc 100%);
  color: #0A0612;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 61, 138, 0.35), 0 10px 30px -8px rgba(255, 61, 138, 0.6), 0 0 28px -4px rgba(192, 132, 252, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}
.seo-promo .seo-promo-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(255, 61, 138, 0.5), 0 16px 44px -8px rgba(255, 61, 138, 0.72), 0 0 38px -2px rgba(192, 132, 252, 0.62);
}
.seo-promo-cta-label,
.seo-promo-cta-arrow { position: relative; }
.seo-promo-cta-arrow {
  font-size: 1.05em;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.seo-promo .seo-promo-cta:hover .seo-promo-cta-arrow { transform: translateX(3px); }
.seo-promo-cta-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: seoPromoShine 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes seoPromoShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  60%, 100% { transform: translateX(360%) skewX(-18deg); }
}
.seo-promo-note {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-30);
}
/* ── right: light Telegram chat card — canonical .tg-bubble template (fan = magenta, bot = white) ── */
.seo-promo-chat {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 12, 30, 0.08);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
}
.seo-promo-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: #fff;
  border-bottom: 1px solid rgba(20, 12, 30, 0.08);
}
.seo-promo-chat-avatar {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3d8a, #aea2ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.seo-promo-chat-id {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.seo-promo-chat-id strong {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #18121f;
}
.seo-promo-chat-id span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: #15803d;
}
.seo-promo-chat-live {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: #22c55e;
}
.seo-promo-chat-tg { margin-left: auto; flex: none; }
.seo-promo-chat-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 61, 138, 0.10), transparent 62%),
    #fdfafd;
}
.seo-promo-day {
  align-self: center;
  margin-bottom: 2px;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(24, 18, 31, 0.6);
  background: rgba(20, 12, 30, 0.05);
}
.seo-promo-bubble {
  display: inline-block;
  max-width: 88%;
  padding: 7px 12px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.35;
  box-shadow: 0 1px 2px rgba(20, 12, 30, 0.06);
}
.seo-promo-bubble.fan {
  align-self: flex-end;
  background: var(--neon-magenta);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.seo-promo-bubble.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(20, 12, 30, 0.08);
  color: #18121f;
  border-bottom-left-radius: 4px;
}
/* Sale receipt — reads as a clear "fan paid 120 Stars to unlock a locked set". */
.seo-promo-receipt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
  padding: 9px 10px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid rgba(20, 12, 30, 0.08);
  box-shadow: 0 1px 2px rgba(20, 12, 30, 0.06);
}
.seo-promo-receipt-ic {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 14px;
  background: linear-gradient(135deg, rgba(255, 61, 138, 0.16), rgba(174, 162, 255, 0.16));
}
.seo-promo-receipt-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.seo-promo-receipt-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(24, 18, 31, 0.5);
}
.seo-promo-receipt-price {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #18121f;
  font-variant-numeric: tabular-nums;
}
.seo-promo-receipt-paid {
  margin-left: auto;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.13);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #15803d;
}
@media (max-width: 600px) {
  .seo-promo-inner { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .seo-promo .seo-promo-cta,
  .seo-promo-cta-arrow,
  .seo-promo-cta-shine { transition: none; animation: none; }
}

/* ---------- request-access modal ---------- */
.ra-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ra-modal-backdrop.is-open { display: flex; }

.ra-modal {
  width: min(440px, 100%);
  border: 1px solid rgba(255, 61, 138, 0.22);
  border-radius: 8px;
  background: #100d13;
  padding: 28px;
  box-shadow: 0 30px 90px -35px rgba(255, 61, 138, 0.62);
}

.ra-modal h2 {
  margin: 0 0 8px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 32px;
  letter-spacing: -0.005em;
}

.ra-modal p {
  margin: 0 0 20px;
  color: var(--fg-72);
  line-height: 1.5;
}

.ra-form {
  display: grid;
  gap: 12px;
}

.ra-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--fg);
}

.ra-form input:focus {
  border-color: rgba(255, 61, 138, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 61, 138, 0.13);
}

.ra-message {
  min-height: 20px;
  color: var(--fg-72);
  font-size: 13px;
}

.ra-message.is-error { color: #ff8aa8; }
.ra-message.is-ok { color: var(--green); }

.ra-close {
  width: 100%;
  min-height: 36px;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--fg-44);
  cursor: pointer;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .seo-article-body { padding: 8px 0 36px; }
  .seo-hero--article { padding: 56px 0 20px; }
}

@media (max-width: 900px) {
  .seo-nav-links { display: none; }
  .seo-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
    gap: 38px;
  }
  .seo-visual {
    min-height: 520px;
    width: min(100%, 560px);
    margin: 0 auto;
  }
  .seo-grid,
  .seo-related {
    grid-template-columns: 1fr;
  }
  .seo-card { min-height: auto; }
  .seo-compare table { font-size: 13px; }
  .seo-compare thead th,
  .seo-compare tbody td { padding: 14px 14px; }
}

@media (max-width: 560px) {
  .seo-shell { width: min(100% - 28px, 1120px); }
  .seo-shell--narrow { width: min(100% - 28px, 760px); }
  .seo-nav-inner { width: min(100% - 28px, 1180px); }
  .seo-page .logo-bubble {
    width: 38px;
    height: 38px;
  }
  .seo-page .logo-wordmark .wm-name { font-size: 19px; }
  .seo-nav .seo-btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }
  .seo-hero h1 { font-size: clamp(38px, 11.5vw, 48px); }
  .seo-subline { font-size: 21px; }
  .seo-visual {
    min-height: 438px;
    overflow: hidden;
  }
  .seo-phone {
    width: 262px;
    height: 410px;
    border-radius: 36px 36px 0 0;
  }
  .seo-phone-top {
    height: 80px;
    padding: 32px 18px 12px;
  }
  .seo-chat { padding: 18px 15px; }
  .seo-stat-card {
    width: 168px;
    padding: 12px;
  }
  .seo-stat-card strong { font-size: 23px; }
  .seo-stat-card--top {
    top: 34px;
    right: 2px;
  }
  .seo-stat-card--bottom {
    right: 6px;
    bottom: 74px;
  }
  .seo-telegram-float {
    left: 4px;
    top: 54px;
    width: 48px;
    height: 48px;
    font-size: 25px;
  }
  .seo-mini-proof {
    left: 8px;
    bottom: 34px;
    max-width: 206px;
  }
  .seo-btn { width: 100%; }
  .seo-nav .seo-btn { width: auto; }
  .seo-cta-row { flex-direction: column; }
  .seo-article-prose { font-size: 17px; line-height: 1.72; }
  .seo-article-toc { padding: 18px 20px; }
  .seo-pull-quote { font-size: 17px; padding-left: 18px; }
}
