:root {
  --sx-bg: #1a0a0d;
  --sx-bg-2: #220e12;
  --sx-bg-3: #2b1218;
  --sx-surface: #2a131a;
  --sx-surface-soft: #321820;
  --sx-line: #3d2028;
  --sx-line-strong: #4d2935;
  --sx-ink: #f7ecdc;
  --sx-ink-soft: #d7c3a8;
  --sx-muted: #a08773;
  --sx-gold: #f5c451;
  --sx-gold-soft: #f9d97a;
  --sx-rust: #d97757;
  --sx-rust-soft: #ef9077;
  --sx-shadow: 0 28px 64px rgba(0, 0, 0, 0.6);
  --sx-glow-gold: 0 0 22px rgba(245, 196, 81, 0.4);
}

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

body.sx-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(245, 196, 81, 0.08), transparent 45%),
    radial-gradient(ellipse at 100% 30%, rgba(217, 119, 87, 0.1), transparent 50%),
    var(--sx-bg);
  color: var(--sx-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--sx-ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 16px; }
h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; margin: 0 0 14px; }
h3 { font-size: 18px; line-height: 1.35; margin: 0 0 8px; }

.sx-container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

/* Header */
.sx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 10, 13, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sx-line);
}
.sx-header__inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.sx-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--sx-ink);
  font-size: 20px;
  min-width: 0;
}
.sx-logo__mark, .sx-logo__img,
.sx-footer__brand-mark, .sx-footer__brand-img {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sx-logo__img, .sx-footer__brand-img { object-fit: cover; }
.sx-logo__mark svg, .sx-footer__brand-mark svg { display: block; }
.sx-logo__text {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.sx-logo__text-accent {
  background: linear-gradient(135deg, var(--sx-gold), var(--sx-rust));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.sx-nav { display: flex; align-items: center; gap: 22px; }
.sx-nav a {
  text-decoration: none;
  color: var(--sx-ink-soft);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s ease;
}
.sx-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--sx-gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.2s ease;
}
.sx-nav a:hover { color: var(--sx-gold); }
.sx-nav a:hover::after { transform: scaleX(1); }

.sx-header__cta-group {
  margin-left: auto; display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}

.sx-lang {
  display: inline-flex; gap: 4px;
  border: 1px solid var(--sx-line-strong);
  border-radius: 999px; padding: 3px;
}
.sx-lang__link {
  text-decoration: none; color: var(--sx-ink-soft);
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 12px;
  padding: 6px 12px; border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.sx-lang__link.is-active { background: var(--sx-gold); color: #1a0a0d; }
.sx-lang__link:not(.is-active):hover { color: var(--sx-gold); }

.sx-btn, .sx-header__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; padding: 12px 22px;
  border-radius: 999px; text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.sx-header__cta, .sx-btn--primary {
  background: linear-gradient(135deg, var(--sx-gold) 0%, var(--sx-rust) 100%);
  color: #1a0a0d;
  box-shadow: var(--sx-glow-gold);
}
.sx-header__cta:hover, .sx-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(245, 196, 81, 0.55);
}
.sx-btn--ghost {
  background: transparent; color: var(--sx-gold); border-color: var(--sx-gold);
}
.sx-btn--ghost:hover { background: rgba(245, 196, 81, 0.1); }
.sx-btn--wide { width: 100%; margin-top: 18px; }

.sx-burger {
  display: none; width: 46px; height: 46px; margin-left: 6px;
  border: 1px solid var(--sx-line-strong); border-radius: 12px;
  background: var(--sx-surface); cursor: pointer;
  align-items: center; justify-content: center; gap: 4px;
  flex-direction: column; padding: 0;
}
.sx-burger span {
  display: block; width: 22px; height: 2px; background: var(--sx-ink);
  border-radius: 2px;
}

.sx-mobile {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 6, 9, 0.96);
  display: flex; flex-direction: column; gap: 18px;
  padding: 88px 24px 32px;
}
.sx-mobile a {
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 22px;
  text-decoration: none; color: var(--sx-ink);
  padding: 10px 0; border-bottom: 1px solid var(--sx-line);
}
.sx-mobile__cta {
  margin-top: 12px; text-align: center; background: var(--sx-gold);
  color: #1a0a0d; border-radius: 999px; padding: 14px 22px;
  border: none;
}
.sx-mobile__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: var(--sx-surface); color: var(--sx-ink);
  border: 1px solid var(--sx-line-strong); border-radius: 50%;
  font-size: 26px; line-height: 1; cursor: pointer;
}

/* Eyebrow */
.sx-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sx-gold); margin: 0 0 14px;
}
.sx-section__eyebrow {
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sx-rust-soft); margin: 0 0 10px;
}

/* Hero */
.sx-hero {
  position: relative; padding: 80px 0 70px; overflow: hidden;
}
.sx-hero__glow {
  position: absolute; inset: -10% -10% auto auto; width: 60%; height: 90%;
  background: radial-gradient(circle at 70% 30%, rgba(245, 196, 81, 0.2), transparent 60%);
  pointer-events: none;
}
.sx-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px; align-items: start;
}
.sx-hero__content > p { color: var(--sx-ink-soft); }
.sx-hero__lead {
  font-size: 18px; color: var(--sx-ink-soft); margin: 0 0 22px; max-width: 56ch;
}
.sx-hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 30px;
}
.sx-hero__stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px; margin: 0; padding: 0; border-top: 1px solid var(--sx-line);
  padding-top: 22px;
}
.sx-hero__stats dt {
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sx-muted); margin-bottom: 4px;
}
.sx-hero__stats dd { font-weight: 700; color: var(--sx-ink); margin: 0; font-size: 16px; }

.sx-byline {
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0 6px;
  padding: 16px;
  background: rgba(245, 196, 81, 0.05);
  border: 1px solid var(--sx-line);
  border-radius: 14px;
}
.sx-byline__avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--sx-gold);
}
.sx-byline__avatar--placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Manrope", sans-serif; font-weight: 800;
  background: var(--sx-bg-3); color: var(--sx-gold);
}
.sx-byline__body { display: flex; flex-direction: column; gap: 2px; color: var(--sx-ink-soft); font-size: 14px; }
.sx-byline__by { font-weight: 600; color: var(--sx-ink); }
.sx-byline__by a { color: var(--sx-gold); text-decoration: none; }
.sx-byline__role { font-weight: 500; color: var(--sx-muted); margin-left: 6px; font-size: 12px; }
.sx-byline__bio { color: var(--sx-ink-soft); font-size: 13px; }
.sx-byline__date { color: var(--sx-muted); font-size: 12px; }

/* Summary card */
.sx-summary-card {
  background: linear-gradient(160deg, var(--sx-surface) 0%, var(--sx-surface-soft) 100%);
  border: 1px solid var(--sx-line-strong);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--sx-shadow);
}
.sx-summary-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.sx-summary-card__tag {
  background: var(--sx-bg-3);
  color: var(--sx-gold);
  padding: 4px 10px; border-radius: 999px;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em;
}
.sx-summary-card__pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--sx-ink-soft); font-weight: 600;
}
.sx-summary-card__dot {
  width: 8px; height: 8px; background: var(--sx-rust); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 119, 87, 0.5);
  animation: sxPulse 1.6s infinite;
}
@keyframes sxPulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 119, 87, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(217, 119, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 119, 87, 0); }
}
.sx-summary-card__panel {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px; border-radius: 14px;
  background: rgba(245, 196, 81, 0.08);
  margin-bottom: 10px;
}
.sx-summary-card__panel--alt { background: rgba(217, 119, 87, 0.1); }
.sx-summary-card__label {
  color: var(--sx-muted);
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.sx-summary-card__value { color: var(--sx-ink); font-size: 17px; font-weight: 700; }
.sx-summary-card__list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 6px;
}
.sx-summary-card__list li {
  display: flex; justify-content: space-between; gap: 10px;
  color: var(--sx-ink-soft);
  font-size: 14px;
  padding: 6px 2px;
  border-bottom: 1px dashed var(--sx-line);
}
.sx-summary-card__list li:last-child { border-bottom: 0; }
.sx-summary-card__list li :first-child { color: var(--sx-muted); font-weight: 600; }
.sx-summary-card__list li :last-child { color: var(--sx-ink); font-weight: 600; text-align: right; }
.sx-summary-card__legal {
  font-size: 12px; color: var(--sx-muted); margin: 10px 0 0;
}

/* Strip */
.sx-strip {
  background: var(--sx-bg-2);
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
  padding: 20px 0;
}
.sx-strip__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sx-strip__grid > div {
  text-align: center;
}
.sx-strip__grid strong {
  display: block; color: var(--sx-gold); font-family: "Manrope", sans-serif; font-size: 18px;
}
.sx-strip__grid span {
  color: var(--sx-ink-soft); font-size: 13px;
}

/* Sections */
.sx-section { padding: 60px 0; }
.sx-section--soft { background: var(--sx-bg-2); }
.sx-section--dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0)),
    var(--sx-bg-3);
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
}
.sx-section p { color: var(--sx-ink-soft); }

.sx-two-col {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px; align-items: start;
}

.sx-verdict {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 18px; padding: 22px;
  display: grid; gap: 6px;
}
.sx-verdict__score {
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 44px;
  color: var(--sx-gold);
}
.sx-verdict__label {
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sx-muted);
}
.sx-verdict p { margin: 8px 0 0; color: var(--sx-ink-soft); }

.sx-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 18px;
}
.sx-card {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 16px;
  padding: 22px;
  position: relative;
}
.sx-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 28px;
  border-radius: 8px; padding: 0 8px;
  background: rgba(245, 196, 81, 0.15); color: var(--sx-gold);
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 13px;
  margin-bottom: 10px;
}

.sx-bonus-layout {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px; align-items: start;
}
.sx-bonus-box, .sx-steps {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 18px; padding: 24px;
}
.sx-steps h3 { margin-bottom: 12px; }
.sx-steps ol { padding-left: 18px; color: var(--sx-ink-soft); display: grid; gap: 6px; }
.sx-table { display: grid; gap: 8px; margin-top: 14px; }
.sx-table > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px; border-radius: 12px;
  background: rgba(245, 196, 81, 0.06);
}
.sx-table span { color: var(--sx-muted); font-size: 14px; font-weight: 600; }
.sx-table strong { color: var(--sx-ink); font-size: 15px; }

.sx-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px; margin-top: 14px;
}
.sx-payment-grid > div {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 12px; padding: 12px 14px;
  text-align: center; color: var(--sx-ink);
  font-weight: 600;
}

.sx-note {
  color: var(--sx-ink-soft);
  background: rgba(245, 196, 81, 0.07);
  border-left: 3px solid var(--sx-gold);
  padding: 12px 14px; border-radius: 8px;
  margin-top: 18px;
}

.sx-feature {
  background: linear-gradient(155deg, var(--sx-bg-3), var(--sx-surface));
  border: 1px solid var(--sx-line-strong);
  border-radius: 18px; padding: 22px;
}
.sx-check-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 6px;
  color: var(--sx-ink-soft);
}
.sx-check-list li {
  position: relative; padding-left: 26px;
}
.sx-check-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px; border-left: 2px solid var(--sx-gold);
  border-bottom: 2px solid var(--sx-gold); transform: rotate(-45deg);
}

.sx-page-toc { background: var(--sx-bg-2); padding: 30px 0; }
.sx-page-toc ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.sx-page-toc a {
  text-decoration: none;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  color: var(--sx-ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}
.sx-page-toc a:hover { background: var(--sx-gold); color: #1a0a0d; }

.sx-faq { display: grid; gap: 10px; }
.sx-faq details {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 14px; padding: 14px 18px;
}
.sx-faq summary {
  list-style: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif; font-weight: 700; color: var(--sx-ink);
  position: relative; padding-right: 24px;
}
.sx-faq summary::-webkit-details-marker { display: none; }
.sx-faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--sx-gold); font-size: 20px; line-height: 1;
}
.sx-faq details[open] summary::after { content: "−"; }
.sx-faq p { color: var(--sx-ink-soft); margin: 10px 0 0; }

/* CTA */
.sx-cta {
  text-align: center; padding: 70px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 196, 81, 0.18), transparent 70%),
    var(--sx-bg-2);
  border-top: 1px solid var(--sx-line);
}
.sx-cta h2 { font-size: clamp(24px, 3vw, 32px); }
.sx-cta p { color: var(--sx-ink-soft); margin: 0 0 22px; }

/* Footer */
.sx-footer {
  background: #110608;
  border-top: 1px solid var(--sx-line);
  margin-top: 40px;
}
.sx-footer__inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto; padding: 48px 0 32px;
}
.sx-footer__top {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px; margin-bottom: 32px;
}
.sx-footer__brand {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 12px; font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: 18px; color: var(--sx-ink);
}
.sx-footer__brand-block p { color: var(--sx-ink-soft); max-width: 60ch; }
.sx-footer__cta-card {
  background: linear-gradient(155deg, var(--sx-bg-3), var(--sx-surface));
  border: 1px solid var(--sx-line-strong);
  border-radius: 18px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.sx-footer__cta-card a {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sx-gold); color: #1a0a0d;
  padding: 10px 18px; border-radius: 999px;
  text-decoration: none; font-weight: 700;
}
.sx-footer__cta-meta {
  font-family: "Manrope", sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sx-rust-soft);
}
.sx-footer__columns {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
}
.sx-footer__group h2 {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sx-muted); margin: 0 0 10px;
}
.sx-footer__group a {
  display: block; text-decoration: none;
  color: var(--sx-ink); padding: 4px 0;
  font-size: 14px;
}
.sx-footer__group a:hover { color: var(--sx-gold); }
.sx-footer__bottom {
  display: flex; justify-content: space-between;
  gap: 16px; padding-top: 22px; font-size: 13px;
  color: var(--sx-ink-soft); flex-wrap: wrap;
}

/* Simple page */
.sx-simple-page { padding-top: 20px; }
.sx-simple-hero { padding: 60px 0 36px; }
.sx-simple-hero h1 { max-width: 24ch; }
.sx-simple-hero p { color: var(--sx-ink-soft); max-width: 60ch; margin: 0 0 18px; }
.sx-simple-hero .sx-btn { margin-top: 8px; }

/* Download */
.sx-download__buttons {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px; margin-top: 16px;
}
.sx-store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-strong);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none; color: var(--sx-ink);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.sx-store-btn:hover {
  transform: translateY(-1px);
  background: var(--sx-bg-3);
  border-color: var(--sx-gold);
}
.sx-store-btn__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245, 196, 81, 0.15); color: var(--sx-gold);
  flex-shrink: 0;
}
.sx-store-btn__body { display: flex; flex-direction: column; }
.sx-store-btn__caption {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sx-muted); font-weight: 700;
}
.sx-store-btn__label { font-weight: 700; color: var(--sx-ink); font-size: 16px; }
.sx-download__note { color: var(--sx-ink-soft); font-size: 13px; margin-top: 12px; }

/* TOC */
.sx-content-grid {
  display: grid; grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
}
.sx-toc {
  position: sticky; top: 96px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 14px;
  padding: 16px;
  align-self: start;
}
.sx-toc__title {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sx-muted); margin: 0 0 10px;
}
.sx-toc__nav {
  display: flex; flex-direction: column; gap: 4px;
}
.sx-toc__nav a {
  text-decoration: none; color: var(--sx-ink-soft);
  font-size: 13px; padding: 4px 6px; border-radius: 6px;
}
.sx-toc__nav a:hover { background: rgba(245, 196, 81, 0.1); color: var(--sx-gold); }
.sx-toc__nav-sub { padding-left: 16px !important; font-size: 12px !important; }

/* Rich text (CMS body) */
.sx-landing-body .rich-text { color: var(--sx-ink); line-height: 1.7; }
.sx-landing-body .rich-text h2 { margin-top: 28px; }
.sx-landing-body .rich-text h3 { margin-top: 22px; color: var(--sx-gold); }
.sx-landing-body .rich-text p { color: var(--sx-ink); }
.sx-landing-body .rich-text a { color: var(--sx-gold); text-decoration: underline; }
.sx-landing-body .rich-text ul, .sx-landing-body .rich-text ol { color: var(--sx-ink); }

/* Writer page contrast override (uses global writer-page.css colors which may clash) */
main.writer-page { color: var(--sx-ink); }
.writer-profile-hero { color: var(--sx-ink); }
.writer-profile-hero__eyebrow { color: var(--sx-gold); }
.writer-profile-card {
  background: var(--sx-surface) !important;
  border: 1px solid var(--sx-line) !important;
  color: var(--sx-ink) !important;
}
.writer-profile-card__bio, .writer-profile-card__details dd { color: var(--sx-ink-soft); }
.writer-profile-card__type { color: var(--sx-gold); }
.writer-profile-card__placeholder {
  background: var(--sx-bg-3); color: var(--sx-gold); font-family: "Manrope", sans-serif;
}
.writer-profile-empty { color: var(--sx-ink-soft); text-align: center; padding: 40px 16px; }

/* 404 */
.sx-error { padding: 80px 0 60px; text-align: center; }
.sx-error h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.sx-error p { color: var(--sx-ink-soft); max-width: 46ch; margin: 8px auto 22px; }
.sx-error__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* FAQ include override */
.sx-page-faq { padding: 50px 0; }
.sx-page-faq .container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }

/* Responsive */
@media (max-width: 960px) {
  .sx-hero { padding: 60px 0 50px; }
  .sx-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .sx-two-col { grid-template-columns: minmax(0, 1fr); }
  .sx-bonus-layout { grid-template-columns: minmax(0, 1fr); }
  .sx-content-grid { grid-template-columns: minmax(0, 1fr); }
  .sx-toc { position: static; }
  .sx-footer__top { grid-template-columns: minmax(0, 1fr); }
  .sx-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sx-nav { display: none; }
  .sx-burger { display: inline-flex; }
  .sx-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sx-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .sx-logo__text { font-size: 16px; }
  .sx-header__inner { gap: 12px; }
  .sx-header__cta { padding: 10px 16px; font-size: 13px; min-height: 42px; }
  .sx-lang { display: none; }
  .sx-download__buttons { grid-template-columns: minmax(0, 1fr); }
  .sx-footer__columns { grid-template-columns: minmax(0, 1fr); }
  .sx-footer__bottom { flex-direction: column; }
}
