: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:static;
  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 {
  
  margin: 0 auto;
  min-height:78px;
  display: flex;
  align-items: center;
  gap: 24px;
 flex-wrap: wrap; row-gap: 6px; justify-content: space-between; max-width: 1000px; margin-inline: auto; width: 100%;}

.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: 1000;
  background: var(--sx-bg);
  display: none; flex-direction: column; gap: 22px;
  padding: 88px 24px 32px;
  overflow-y: auto;
}
.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) */
/* CMS body compatibility guard */
.sx-landing-body .rich-text,
.sx-body main.container .legal-rich-text {
  contain: layout paint style;
  isolation: isolate;
  position: relative;
  z-index: 0;
  min-width: 0;
}
.sx-landing-body .rich-text {
  color: var(--sx-ink);
  line-height: 1.7;
}
.sx-landing-body .rich-text,
.sx-landing-body .rich-text *,
.sx-landing-body .rich-text *::before,
.sx-landing-body .rich-text *::after,
.sx-body main.container .legal-rich-text,
.sx-body main.container .legal-rich-text *,
.sx-body main.container .legal-rich-text *::before,
.sx-body main.container .legal-rich-text *::after { box-sizing: border-box; }
.sx-landing-body .rich-text :where(img, video, iframe, svg, canvas),
.sx-body main.container .legal-rich-text :where(img, video, iframe, svg, canvas) { max-width: 100%; height: auto; }
.sx-landing-body .rich-text :where(.sx-header, .sx-mobile, .sx-footer),
.sx-body main.container .legal-rich-text :where(.sx-header, .sx-mobile, .sx-footer) { display: none !important; }
.sx-landing-body .rich-text :where(header, footer, nav, [class*="sticky"], [style*="position: sticky"], [style*="position:sticky"], [style*="position: fixed"], [style*="position:fixed"]),
.sx-body main.container .legal-rich-text :where(header, footer, nav, [class*="sticky"], [style*="position: sticky"], [style*="position:sticky"], [style*="position: fixed"], [style*="position:fixed"]) {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: auto !important;
}
.sx-landing-body .rich-text :where(.container),
.sx-body main.container .legal-rich-text :where(.container) {
  width: auto !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* CMS body compatibility – width/overflow normalization */
.sx-landing-body .rich-text,
.sx-body main.container .legal-rich-text {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.sx-landing-body .rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap),
.sx-body main.container .legal-rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.sx-landing-body .rich-text :where(img, figure, picture, .media-image, .media-image__img, .img-wrap),
.sx-body main.container .legal-rich-text :where(img, figure, picture, .media-image, .media-image__img, .img-wrap) {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}
.sx-landing-body .rich-text :where(figure, picture, .media-image, .img-wrap),
.sx-body main.container .legal-rich-text :where(figure, picture, .media-image, .img-wrap) {
  width: 100% !important;
}
.sx-landing-body .rich-text :where(table),
.sx-body main.container .legal-rich-text :where(table) {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .sx-landing-body .rich-text,
  .sx-body main.container .legal-rich-text {
    overflow-x: hidden;
  }
  .sx-landing-body .rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap),
  .sx-body main.container .legal-rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .sx-landing-body .rich-text :where(img, picture, figure, .media-image, .media-image__img),
  .sx-body main.container .legal-rich-text :where(img, picture, figure, .media-image, .media-image__img) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}
.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-logo__text-accent { display: none; }
  .sx-header__inner { gap: 10px; }
  .sx-header__cta { padding: 9px 14px; 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; }
}
@media (max-width: 420px) {
  .sx-logo__text { font-size: 15px; }
  .sx-logo__img, .sx-logo__mark { width: 40px; height: 40px; }
  .sx-logo__mark svg { width: 40px; height: 40px; }
  .sx-header__inner { gap: 8px; }
  .sx-header__cta { padding: 8px 12px; font-size: 12px; min-height: 40px; }
}

@media (min-width: 961px) {
  .sx-burger { display: none !important; }
  .sx-mobile { display: none !important; }
}
@media (max-width: 960px) {
  .sx-mobile[hidden] { display: none !important; }
  .sx-mobile:not([hidden]) { display: flex; }
  .sx-mobile__cta {
    align-self: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    min-height: 48px;
  }
}

/* Editorial split-screen layout for home */
.sx-editorial { color: var(--sx-ink); }
.sx-btn--outline {
  background: transparent;
  color: var(--sx-gold);
  border: 1px solid var(--sx-gold);
  box-shadow: none;
}
.sx-btn--outline:hover {
  background: rgba(245, 196, 81, 0.08);
  transform: translateY(-1px);
}

.sx-edhero {
  padding: 88px 0 56px;
  border-bottom: 1px solid var(--sx-line);
  position: relative;
  overflow: hidden;
}
.sx-edhero::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, rgba(245, 196, 81, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.sx-edhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.sx-edhero__eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sx-gold);
  margin: 0 0 18px;
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(245, 196, 81, 0.35);
  border-radius: 999px;
}
.sx-edhero__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--sx-ink);
}
.sx-edhero__deck {
  font-size: 18px;
  line-height: 1.55;
  color: var(--sx-ink-soft);
  max-width: 56ch;
  margin: 0 0 30px;
}

.sx-edbyline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
  margin: 0 0 28px;
}
.sx-edbyline__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--sx-line-strong);
  flex-shrink: 0;
}
.sx-edbyline__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sx-gold), var(--sx-rust));
  color: #1a0a0d;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.sx-edbyline__body { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.sx-edbyline__by { color: var(--sx-ink); }
.sx-edbyline__by a { color: var(--sx-gold); text-decoration: none; font-weight: 700; }
.sx-edbyline__by a:hover { text-decoration: underline; }
.sx-edbyline__role {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(217, 119, 87, 0.16);
  color: var(--sx-rust-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sx-edbyline__bio { color: var(--sx-ink-soft); font-size: 13px; }
.sx-edbyline__date { color: var(--sx-muted); font-size: 12px; }

.sx-edhero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.sx-edhero__numeral {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.sx-edhero__num {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(245, 196, 81, 0.18));
}
.sx-edhero__numeral-label {
  position: absolute;
  bottom: 64px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--sx-ink-soft);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.sx-edhero__numeral-vol {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sx-muted);
  margin-top: 8px;
}

.sx-verdict-block { padding: 56px 0 32px; }
.sx-verdict-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: stretch;
  padding: 34px;
  background: linear-gradient(135deg, var(--sx-surface) 0%, var(--sx-bg-3) 100%);
  border: 1px solid var(--sx-line);
  border-radius: 24px;
  box-shadow: var(--sx-shadow);
  position: relative;
  overflow: hidden;
}
.sx-verdict-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sx-gold), var(--sx-rust));
}
.sx-verdict-card__score-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-left: 6px;
}
.sx-verdict-card__eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sx-gold);
}
.sx-verdict-card__score {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 7vw, 86px);
  line-height: 1;
  color: var(--sx-ink);
}
.sx-verdict-card__score small {
  font-size: 0.35em;
  color: var(--sx-muted);
  font-weight: 600;
  margin-left: 4px;
}
.sx-verdict-card__line {
  width: 56px;
  height: 2px;
  background: var(--sx-gold);
  display: block;
  margin: 6px 0;
}
.sx-verdict-card__author {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--sx-ink-soft);
}
.sx-verdict-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.sx-verdict-card__list li {
  padding: 10px 0;
  border-top: 1px solid var(--sx-line);
  font-size: 14px;
  color: var(--sx-ink-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sx-verdict-card__list li strong {
  color: var(--sx-ink);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sx-verdict-card__cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sx-verdict-card__legal {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--sx-muted);
  margin: 0;
}

.sx-trust-strip {
  padding: 40px 0;
  background: var(--sx-surface-soft);
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
}
.sx-trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
}
.sx-trust-strip__item h3 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin: 6px 0 6px;
}
.sx-trust-strip__item p {
  margin: 0;
  font-size: 14px;
  color: var(--sx-ink-soft);
}
.sx-trust-strip__num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sx-gold);
  letter-spacing: 0.04em;
}
.sx-trust-strip__divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sx-line-strong), transparent);
}

.sx-ed-eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sx-gold);
  margin: 0 0 12px;
}
.sx-ed-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--sx-gold), transparent 70%);
  margin: 18px 0 28px;
}

.sx-ed-grid { padding: 64px 0; }
.sx-ed-grid__head { max-width: 720px; margin: 0 0 30px; }
.sx-ed-grid__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 28px;
}
.sx-ed-grid__lead {
  grid-row: 1 / span 2;
  padding: 28px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  border-radius: 18px;
  position: relative;
}
.sx-ed-grid__lead::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sx-gold), var(--sx-rust));
  border-radius: 18px 18px 0 0;
}
.sx-ed-grid__side {
  padding: 24px;
  background: var(--sx-bg-2);
  border: 1px solid var(--sx-line);
  border-radius: 14px;
}
.sx-ed-grid__lead h3, .sx-ed-grid__side h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  margin: 12px 0 12px;
}
.sx-ed-grid__lead p, .sx-ed-grid__side p {
  margin: 0 0 12px;
  color: var(--sx-ink-soft);
}
.sx-chapter {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--sx-rust-soft);
  letter-spacing: 0.04em;
}
.sx-ed-tags {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sx-ed-tags li {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sx-ink);
  padding: 5px 11px;
  border: 1px solid var(--sx-line-strong);
  border-radius: 999px;
  background: var(--sx-bg-3);
}

.sx-magazine { padding: 56px 0; background: var(--sx-bg-2); border-top: 1px solid var(--sx-line); border-bottom: 1px solid var(--sx-line); }
.sx-magazine__card {
  padding: 40px;
  border: 1px solid var(--sx-line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 196, 81, 0.08), transparent 50%),
    var(--sx-surface);
  position: relative;
}
.sx-magazine__kicker {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sx-gold);
}
.sx-magazine__card h2 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 10px 0 22px;
  max-width: 24ch;
}
.sx-pullquote {
  margin: 0 0 22px;
  padding: 18px 22px 18px 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--sx-ink);
  border-left: 3px solid var(--sx-gold);
  background: rgba(245, 196, 81, 0.06);
}
.sx-pullquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  color: var(--sx-muted);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sx-magazine__body { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 28px; }
.sx-magazine__body p { margin: 0; color: var(--sx-ink-soft); }
.sx-magazine__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sx-magazine__list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px dashed var(--sx-line);
  font-size: 14px;
  color: var(--sx-ink-soft);
}
.sx-magazine__list li:first-child { border-top: none; padding-top: 0; }
.sx-magazine__list li strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sx-gold);
}
.sx-magazine__cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

.sx-ed-section { padding: 56px 0; }
.sx-ed-section--soft { background: var(--sx-bg-2); border-top: 1px solid var(--sx-line); border-bottom: 1px solid var(--sx-line); }
.sx-ed-twocol {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: start;
}
.sx-ed-twocol > div p { margin: 0 0 12px; color: var(--sx-ink-soft); }
.sx-ed-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.sx-ed-checklist--cols {
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 18px;
}
.sx-ed-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--sx-line);
  color: var(--sx-ink-soft);
  font-size: 15px;
}
.sx-ed-checklist__mark {
  color: var(--sx-gold);
  font-size: 14px;
  line-height: 1.4;
}

.sx-device { padding: 64px 0; }
.sx-device__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}
.sx-device__mock {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sx-device__frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 18;
  border-radius: 38px;
  border: 2px solid var(--sx-line-strong);
  background: linear-gradient(180deg, #110608, #1f0e13);
  padding: 14px 12px;
  position: relative;
  box-shadow: var(--sx-shadow);
}
.sx-device__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 4px;
  background: var(--sx-line-strong);
}
.sx-device__screen {
  margin-top: 22px;
  height: calc(100% - 32px);
  border-radius: 26px;
  background: linear-gradient(160deg, #220e12 0%, #3a1923 100%);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.sx-device__statusbar { display: flex; gap: 4px; justify-content: flex-end; }
.sx-device__statusbar span {
  width: 14px;
  height: 3px;
  background: var(--sx-muted);
  border-radius: 2px;
}
.sx-device__title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--sx-gold);
  margin: 4px 0 6px;
}
.sx-device__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 6, 9, 0.5);
  border: 1px solid var(--sx-line);
  font-size: 12px;
  color: var(--sx-ink-soft);
}
.sx-device__row--accent {
  background: linear-gradient(135deg, rgba(245, 196, 81, 0.18), rgba(217, 119, 87, 0.18));
  border-color: var(--sx-gold);
  color: var(--sx-ink);
}
.sx-device__pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--sx-gold);
  color: #1a0a0d;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.sx-device__pill--alt {
  background: var(--sx-bg-3);
  color: var(--sx-gold);
  border: 1px solid var(--sx-gold);
}
.sx-device__home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--sx-muted);
  border-radius: 4px;
}
.sx-device__body h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin: 6px 0 14px;
}
.sx-device__body p { margin: 0 0 18px; color: var(--sx-ink-soft); }

.sx-paylist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--sx-line);
}
.sx-paylist li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 12px;
  border-bottom: 1px solid var(--sx-line);
}
.sx-paylist__tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--sx-gold);
  color: #1a0a0d;
  text-align: center;
  min-width: 88px;
}
.sx-paylist__tag--alt {
  background: var(--sx-bg-3);
  color: var(--sx-ink);
  border: 1px solid var(--sx-line-strong);
}
.sx-paylist__name {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sx-ink);
}
.sx-paylist__meta {
  font-size: 13px;
  color: var(--sx-muted);
  text-align: right;
}

.sx-ed-faq { display: flex; flex-direction: column; gap: 10px; }
.sx-ed-faq details {
  border-top: 1px solid var(--sx-line);
  padding: 16px 0;
}
.sx-ed-faq details:first-child { border-top: 1px solid var(--sx-line-strong); }
.sx-ed-faq summary {
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--sx-ink);
  padding: 2px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sx-ed-faq summary::after {
  content: "+";
  color: var(--sx-gold);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.sx-ed-faq details[open] summary::after { content: "−"; }
.sx-ed-faq summary::-webkit-details-marker { display: none; }
.sx-ed-faq p {
  margin: 10px 0 0;
  color: var(--sx-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.sx-outro {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(245, 196, 81, 0.08), rgba(217, 119, 87, 0.06));
  border-top: 1px solid var(--sx-line);
}
.sx-outro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 28px;
  align-items: center;
}
.sx-outro__quote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--sx-ink);
}

.sx-edhero--narrow { padding: 72px 0 40px; }
.sx-edhero__grid--narrow { grid-template-columns: minmax(0, 1fr); gap: 28px; max-width: 820px; }
.sx-edhero__grid--narrow .sx-edhero__title { font-size: clamp(30px, 4vw, 48px); }

.sx-app-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin: 18px 0 12px;
}
.sx-app-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--sx-ink);
  border: 1px solid var(--sx-line-strong);
  background: var(--sx-surface);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.sx-app-button:hover {
  transform: translateY(-2px);
  border-color: var(--sx-gold);
  box-shadow: var(--sx-glow-gold);
}
.sx-app-button[data-platform="android"] {
  background: linear-gradient(135deg, var(--sx-surface), rgba(245, 196, 81, 0.08));
}
.sx-app-button[data-platform="ios"] {
  background: linear-gradient(135deg, var(--sx-surface), rgba(217, 119, 87, 0.08));
}
.sx-app-button__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sx-bg-3);
  color: var(--sx-gold);
  border: 1px solid var(--sx-line);
}
.sx-app-button__body { display: flex; flex-direction: column; gap: 2px; }
.sx-app-button__caption {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sx-app-button__label {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--sx-ink);
}
.sx-app-buttons__note { font-size: 12px; color: var(--sx-muted); margin: 8px 0 0; }

.sx-simple-page { padding: 60px 0 24px; }
.sx-simple-hero {
  padding: 60px 0 32px;
  border-bottom: 1px solid var(--sx-line);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 196, 81, 0.1), transparent 55%),
    var(--sx-bg);
}
.sx-simple-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
  max-width: 22ch;
}
.sx-simple-hero p { color: var(--sx-ink-soft); font-size: 17px; max-width: 60ch; }

@media (max-width: 960px) {
  .sx-edhero { padding: 56px 0 36px; }
  .sx-edhero__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .sx-edhero__numeral { order: -1; }
  .sx-edhero__num { max-width: 220px; }
  .sx-edhero__numeral-label { position: static; margin-top: 8px; }
  .sx-verdict-card { grid-template-columns: minmax(0, 1fr); padding: 24px; gap: 22px; }
  .sx-trust-strip__inner { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .sx-trust-strip__divider { display: none; }
  .sx-ed-grid__grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; }
  .sx-ed-grid__lead { grid-row: auto; }
  .sx-magazine__body { grid-template-columns: minmax(0, 1fr); }
  .sx-ed-twocol { grid-template-columns: minmax(0, 1fr); }
  .sx-ed-checklist--cols { grid-template-columns: minmax(0, 1fr); }
  .sx-device__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .sx-device__mock { order: 1; }
  .sx-device__body { order: 0; }
  .sx-paylist li { grid-template-columns: 80px minmax(0, 1fr); }
  .sx-paylist__meta { grid-column: 1 / -1; text-align: left; padding-left: 2px; }
  .sx-outro__inner { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .sx-magazine__card { padding: 24px; }
  .sx-verdict-card__list { grid-template-columns: minmax(0, 1fr); }
  .sx-edhero__cta .sx-btn { flex: 1 1 100%; }
  .sx-app-buttons { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 767px) {
  .sx-edhero__numeral { display: none; }
}
@media (min-width: 375px) and (max-width: 437px) {
  .sx-edhero { padding: 34px 0 24px; }
  .sx-edhero__grid { gap: 12px; }
  .sx-edhero__num {
    width: 100%;
    max-width: 128px;
    height: auto;
  }
  .sx-edhero__numeral-label {
    margin-top: 0;
    line-height: 1.1;
    font-size: 12px;
  }
  .sx-edhero__numeral-vol {
    margin-top: 1px;
    line-height: 1.1;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}

/* Utility pages rendered via templates/casino_reviews/legal.html */
body.sx-body main.container {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}
.sx-body main.container .rich-text {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(50, 24, 32, 0.98), rgba(42, 19, 26, 0.98));
  border: 1px solid var(--sx-line);
  box-shadow: var(--sx-shadow);
  color: var(--sx-ink);
}
.sx-body main.container .rich-text > :first-child { margin-top: 0; }
.sx-body main.container .rich-text > :last-child { margin-bottom: 0; }
.sx-body main.container .rich-text h1,
.sx-body main.container .rich-text h2 { color: var(--sx-ink); }
.sx-body main.container .rich-text h3 { color: var(--sx-gold); }
.sx-body main.container .rich-text p,
.sx-body main.container .rich-text li,
.sx-body main.container .rich-text td,
.sx-body main.container .rich-text th { color: var(--sx-ink-soft); }
.sx-body main.container .rich-text a { color: var(--sx-gold); text-decoration: underline; }
.sx-body main.container .rich-text ul,
.sx-body main.container .rich-text ol { padding-left: 20px; }
.sx-body main.container .rich-text blockquote {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--sx-rust);
  background: rgba(26, 10, 13, 0.56);
  border-radius: 14px;
}
.sx-body main.container .rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.sx-body main.container .rich-text th,
.sx-body main.container .rich-text td {
  padding: 12px 14px;
  border: 1px solid var(--sx-line);
}
.sx-body main.container .rich-text th { background: rgba(43, 18, 24, 0.92); }
.sx-body main.container .page-faq {
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 22px;
  background: rgba(42, 19, 26, 0.92);
  border: 1px solid var(--sx-line);
}
.sx-body main.container .page-faq__title,
.sx-body main.container .page-faq__q { color: var(--sx-ink); }
.sx-body main.container .page-faq__a { color: var(--sx-ink-soft); }
.sx-body main.container .contact-form {
  margin-top: 24px;
  padding: 24px 28px 28px;
  border-radius: 22px;
  background: rgba(42, 19, 26, 0.96);
  border: 1px solid var(--sx-line);
}
.sx-body main.container .contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.sx-body main.container .contact-form__label {
  color: var(--sx-ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.sx-body main.container .contact-form__req { color: var(--sx-rust-soft); }
.sx-body main.container .contact-form__input,
.sx-body main.container .contact-form__textarea {
  width: 100%;
  border: 1px solid var(--sx-line-strong);
  border-radius: 14px;
  background: rgba(26, 10, 13, 0.88);
  color: var(--sx-ink);
  padding: 14px 16px;
  font: inherit;
}
.sx-body main.container .contact-form__textarea { min-height: 160px; resize: vertical; }
.sx-body main.container .contact-form__input:focus,
.sx-body main.container .contact-form__textarea:focus {
  outline: none;
  border-color: var(--sx-gold);
  box-shadow: 0 0 0 3px rgba(245, 196, 81, 0.16);
}
.sx-body main.container .contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sx-gold) 0%, var(--sx-rust) 100%);
  color: #1a0a0d;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--sx-glow-gold);
}
.sx-body main.container .contact-form__btn:hover { transform: translateY(-1px); }
.sx-body main.container .contact-form__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.sx-body main.container .contact-form__status { margin: 14px 0 0; }
.sx-body main.container .contact-form__status.is-success { color: var(--sx-gold-soft); }
.sx-body main.container .contact-form__status.is-error { color: #fecaca; }
@media (max-width: 560px) {
  body.sx-body main.container { padding: 28px 0 56px; }
  .sx-body main.container .rich-text,
  .sx-body main.container .page-faq,
  .sx-body main.container .contact-form { padding: 20px; border-radius: 18px; }
  .sx-body main.container .contact-form__btn { width: 100%; }
}
/* Horizontal overflow guard — viewport-level mobile stability */
html,
body.sx-body {
  max-width: 100%;
  overflow-x: hidden;
}
body.sx-body {
  position: relative;
}
.sx-landing-body,
.sx-landing-body .rich-text,
.sx-body main.container,
.sx-body main.container .legal-rich-text {
  max-width: 100%;
  overflow-x: hidden;
}
.sx-landing-body .rich-text > *,
.sx-body main.container .legal-rich-text > * {
  max-width: 100%;
  box-sizing: border-box;
}
.sx-landing-body .rich-text :where(pre, code, table, iframe, video, canvas, svg),
.sx-body main.container .legal-rich-text :where(pre, code, table, iframe, video, canvas, svg) {
  max-width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  body.sx-body {
    width: 100%;
    overflow-x: hidden;
  }
  .sx-landing-body .rich-text,
  .sx-body main.container .legal-rich-text {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .sx-landing-body .rich-text :where([style*="width"], [style*="min-width"], [style*="max-width"]),
  .sx-body main.container .legal-rich-text :where([style*="width"], [style*="min-width"], [style*="max-width"]) {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}
/* CMS body mobile adaptation — prevent in-content clipping */
.sx-landing-body .rich-text,
.sx-body main.container .legal-rich-text {
  overflow-wrap: anywhere;
  word-break: normal;
}
.sx-landing-body .rich-text :where(h1, h2, h3, h4, p, li, blockquote),
.sx-body main.container .legal-rich-text :where(h1, h2, h3, h4, p, li, blockquote) {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  box-sizing: border-box;
}
.sx-landing-body .rich-text :where(.info-table, table),
.sx-body main.container .legal-rich-text :where(.info-table, table) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  table-layout: auto;
}
@media (max-width: 767px) {
  .sx-landing-body .rich-text :where(h1, h2) {
    font-size: clamp(24px, 8vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  .sx-landing-body .rich-text :where(h3, h4) {
    font-size: clamp(19px, 6vw, 26px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  .sx-landing-body .rich-text :where(p, li) {
    font-size: clamp(15px, 4.4vw, 18px) !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
  .sx-landing-body .rich-text :where(.info-table, table),
  .sx-body main.container .legal-rich-text :where(.info-table, table) {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .sx-landing-body .rich-text :where(.info-table th, .info-table td, table th, table td),
  .sx-body main.container .legal-rich-text :where(.info-table th, .info-table td, table th, table td) {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    min-width: 0 !important;
  }
  .sx-landing-body .rich-text :where(figure, .media-image, .img-wrap, picture) {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
  }
  .sx-landing-body .rich-text :where(img, .media-image__img) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/* CMS body mobile table width fix — viewport-safe info-table */
@media (max-width: 767px) {
  .sx-landing-body .rich-text :where(.info-table, table),
  .sx-body main.container .legal-rich-text :where(.info-table, table) {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

/* Writer page — theme-specific (sixbet). Replaces global .writer-profile-* layout. */
.sx-writer-page { max-width: 100%; overflow-x: hidden; }
.sx-writer-hero { padding: 56px 0 18px; }
.sx-writer-hero__eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 215, 95, 0.10);
  color: var(--sx-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid var(--sx-line);
}
.sx-writer-hero__title {
  margin: 12px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--sx-ink);
  line-height: 1.12;
}
.sx-writer-hero__lead { margin: 10px 0 0; color: var(--sx-ink-soft); max-width: 64ch; }
.sx-writer-section { padding: 18px 0 64px; }
.sx-writer-card {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border-radius: 22px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line);
  box-shadow: var(--sx-shadow);
}
.sx-writer-card__media {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sx-surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sx-writer-card__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.sx-writer-card__placeholder {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--sx-gold);
}
.sx-writer-card__content { min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.sx-writer-card__type {
  display: inline-flex;
  width: max-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--sx-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid var(--sx-line);
}
.sx-writer-card__bio {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--sx-ink-soft);
  overflow-wrap: anywhere;
  word-break: normal;
}
.sx-writer-card__details { margin: 4px 0 0; display: grid; gap: 6px; }
.sx-writer-card__details dt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--sx-muted);
}
.sx-writer-card__details dd { margin: 2px 0 0; color: var(--sx-ink); }
.sx-writer-card__details a { color: var(--sx-gold); overflow-wrap: anywhere; word-break: normal; }
.sx-writer-empty {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 18px;
  background: var(--sx-surface);
  border: 1px dashed var(--sx-line-strong);
  color: var(--sx-ink-soft);
  text-align: center;
}
@media (max-width: 768px) {
  .sx-writer-hero,
  .sx-writer-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sx-writer-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    max-width: 100%;
    overflow: hidden;
  }
  .sx-writer-card__media { width: 160px; height: 160px; margin: 0 auto; }
  .sx-writer-card__placeholder { font-size: 44px; }
  .sx-writer-card__type { align-self: flex-start; }
  .sx-writer-empty { margin-left: 16px; margin-right: 16px; }
}
