:root {
  --szb-bg: #070b1f;
  --szb-bg-2: #0b1230;
  --szb-bg-3: #131a44;
  --szb-surface: #121a3d;
  --szb-surface-soft: #161f4a;
  --szb-line: #1f2858;
  --szb-line-strong: #2c386a;
  --szb-ink: #e6ebff;
  --szb-ink-soft: #a8b1d8;
  --szb-muted: #7682b0;
  --szb-violet: #7c3aed;
  --szb-violet-soft: #a78bfa;
  --szb-blue: #3b82f6;
  --szb-blue-soft: #60a5fa;
  --szb-cyan: #22d3ee;
  --szb-shadow: 0 32px 70px rgba(2, 6, 23, 0.6);
  --szb-glow-violet: 0 0 30px rgba(124, 58, 237, 0.45);
  --szb-glow-blue: 0 0 24px rgba(59, 130, 246, 0.4);
}

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

body.szb-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 10% -10%, rgba(124, 58, 237, 0.16), transparent 45%),
    radial-gradient(ellipse at 95% 20%, rgba(59, 130, 246, 0.12), transparent 45%),
    var(--szb-bg);
  color: var(--szb-ink);
  font-family: "Outfit", -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; }

/* Star particles scattered through the layout */
.szb-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.szb-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
}
.szb-stars span:nth-child(1)  { top: 6%;  left: 12%; }
.szb-stars span:nth-child(2)  { top: 14%; left: 80%; width: 3px; height: 3px; }
.szb-stars span:nth-child(3)  { top: 22%; left: 45%; }
.szb-stars span:nth-child(4)  { top: 36%; left: 92%; width: 2.5px; height: 2.5px; }
.szb-stars span:nth-child(5)  { top: 48%; left: 8%; }
.szb-stars span:nth-child(6)  { top: 58%; left: 70%; width: 3px; height: 3px; }
.szb-stars span:nth-child(7)  { top: 66%; left: 28%; }
.szb-stars span:nth-child(8)  { top: 74%; left: 88%; }
.szb-stars span:nth-child(9)  { top: 82%; left: 18%; width: 2.5px; height: 2.5px; }
.szb-stars span:nth-child(10) { top: 88%; left: 64%; }
.szb-stars span:nth-child(11) { top: 12%; left: 32%; }
.szb-stars span:nth-child(12) { top: 30%; left: 60%; }
.szb-stars span:nth-child(13) { top: 42%; left: 38%; }
.szb-stars span:nth-child(14) { top: 56%; left: 50%; }
.szb-stars span:nth-child(15) { top: 70%; left: 6%; }
.szb-stars span:nth-child(16) { top: 92%; left: 84%; }

.szb-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.szb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 31, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--szb-line);
}
.szb-header__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.szb-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Sora", "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--szb-ink);
  font-size: 19px;
}
.szb-logo__mark,
.szb-logo__img,
.szb-footer__brand-img,
.szb-footer__brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.szb-logo__img,
.szb-footer__brand-img { object-fit: cover; }
.szb-logo__mark svg,
.szb-footer__brand-mark svg { display: block; }

.szb-logo__text-accent {
  background: linear-gradient(135deg, var(--szb-violet-soft), var(--szb-blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.szb-nav { display: flex; align-items: center; gap: 24px; }
.szb-nav a {
  text-decoration: none;
  color: var(--szb-ink-soft);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.szb-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--szb-violet), var(--szb-blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.szb-nav a:hover { color: var(--szb-violet-soft); }
.szb-nav a:hover::after { transform: scaleX(1); }

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

.szb-btn,
.szb-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.szb-header__cta,
.szb-btn--primary,
.szb-btn--wide {
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  color: #ffffff;
  box-shadow: var(--szb-glow-violet);
}
.szb-header__cta:hover,
.szb-btn--primary:hover,
.szb-btn--wide:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.6);
}

.szb-btn--ghost {
  background: rgba(124, 58, 237, 0.08);
  color: var(--szb-violet-soft);
  border-color: rgba(124, 58, 237, 0.4);
}
.szb-btn--ghost:hover { background: rgba(124, 58, 237, 0.16); border-color: var(--szb-violet); color: #ffffff; }

.szb-btn--wide { width: 100%; margin-top: 22px; }

.szb-burger {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--szb-line-strong);
  border-radius: 12px;
  background: var(--szb-surface);
  color: var(--szb-violet-soft);
  cursor: pointer;
}
.szb-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--szb-violet-soft);
  border-radius: 2px;
}

.szb-mobile[hidden] { display: none; }
.szb-mobile {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 90px 28px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--szb-bg-2);
  background-image:
    radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.18), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.16), transparent 35%);
}
.szb-mobile a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--szb-line);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--szb-ink);
}
.szb-mobile__cta {
  margin-top: 14px;
  border-bottom: 0 !important;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  color: #ffffff !important;
  text-align: center;
  padding: 16px;
}
.szb-mobile__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--szb-line-strong);
  background: var(--szb-surface);
  color: var(--szb-violet-soft);
  font-size: 26px;
  cursor: pointer;
}

/* Hero — single column, centered with orbit backdrop */
.szb-hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}
.szb-hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 90vw);
  height: min(820px, 90vw);
  transform: translate(-50%, -55%);
  pointer-events: none;
  opacity: 0.65;
}
.szb-hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}
.szb-hero__content { max-width: 880px; width: 100%; }

.szb-eyebrow,
.szb-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.32);
  color: var(--szb-violet-soft);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.szb-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--szb-violet);
  box-shadow: 0 0 10px var(--szb-violet);
}

.szb-hero h1,
.szb-simple-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--szb-ink);
}
.szb-hero h1 { max-width: 880px; }

.szb-hero__lead,
.szb-simple-hero p:not(.szb-eyebrow):not(.szb-byline__bio):not(.szb-byline__by):not(.szb-byline__date) {
  margin: 22px auto 0;
  max-width: 720px;
  color: var(--szb-ink-soft);
  font-size: 17px;
}

.szb-byline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 26px auto 0;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--szb-line-strong);
  background: rgba(11, 18, 48, 0.7);
  backdrop-filter: blur(10px);
  text-align: left;
  max-width: 100%;
}
.szb-byline__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--szb-violet);
  background: var(--szb-bg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.szb-byline__avatar--placeholder { font-weight: 800; color: var(--szb-violet-soft); font-size: 22px; }

.szb-byline__body { display: grid; gap: 2px; font-size: 13.5px; line-height: 1.4; min-width: 0; }
.szb-byline__by { font-weight: 700; color: var(--szb-ink); }
.szb-byline__by a { color: var(--szb-violet-soft); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.18s ease; }
.szb-byline__by a:hover { border-bottom-color: var(--szb-violet-soft); }
.szb-byline__role {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  color: var(--szb-blue-soft);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.szb-byline__bio,
.szb-byline__date { color: var(--szb-muted); font-size: 12.5px; }

.szb-hero__actions { display: inline-flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; justify-content: center; }

/* Product chips strip */
.szb-products {
  list-style: none;
  margin: 36px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.szb-products li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--szb-ink);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.szb-products__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

/* Strip */
.szb-strip {
  padding: 22px 0;
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.12), rgba(59, 130, 246, 0.12)),
    var(--szb-bg-2);
  border-top: 1px solid var(--szb-line);
  border-bottom: 1px solid var(--szb-line);
}
.szb-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.szb-strip__grid > div { display: grid; gap: 4px; }
.szb-strip__label {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--szb-violet-soft);
}
.szb-strip__value {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--szb-ink);
}

/* Sections */
.szb-section { padding: 76px 0; position: relative; z-index: 1; }
.szb-section--soft { background: var(--szb-bg-2); }
.szb-section--dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.16), transparent 40%),
    radial-gradient(circle at 12% 90%, rgba(34, 211, 238, 0.10), transparent 35%),
    #050818;
}

.szb-section h2 {
  margin: 0 0 18px;
  max-width: 780px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--szb-ink);
}
.szb-section p { color: var(--szb-ink-soft); }

.szb-landing-body .rich-text {
  contain: layout paint style;
  isolation: isolate;
  position: relative;
  z-index: 0;
  min-width: 0;
}
.szb-landing-body .rich-text,
.szb-landing-body .rich-text *,
.szb-landing-body .rich-text *::before,
.szb-landing-body .rich-text *::after { box-sizing: border-box; }
.szb-landing-body .rich-text :where(img, video, iframe, svg, canvas) { max-width: 100%; }
.szb-landing-body .rich-text :where(.szb-header, .szb-mobile, .szb-footer) { display: none !important; }
.szb-landing-body .rich-text :where(header, 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;
}

.szb-two-col,
.szb-bonus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.szb-verdict {
  display: grid;
  gap: 8px;
  padding: 30px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.06)),
    var(--szb-surface);
  border: 1px solid rgba(124, 58, 237, 0.42);
  box-shadow: var(--szb-shadow);
  position: relative;
}
.szb-verdict::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}
.szb-score {
  font-family: "Sora", sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--szb-violet-soft), var(--szb-blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.szb-score-label {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--szb-muted);
}
.szb-verdict p { margin: 8px 0 0; font-size: 14.5px; color: var(--szb-ink-soft); }

/* Orbit cards (product grid with chip numbering) */
.szb-orbit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.szb-orbit-card {
  position: relative;
  padding: 28px 22px;
  border-radius: 20px;
  background: var(--szb-surface);
  border: 1px solid var(--szb-line);
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
}
.szb-orbit-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.18);
  top: -60px;
  right: -60px;
  pointer-events: none;
}
.szb-orbit-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.18);
  top: -30px;
  right: -30px;
  pointer-events: none;
}
.szb-orbit-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.16);
  color: var(--szb-violet-soft);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.szb-orbit-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--szb-ink);
}
.szb-orbit-card p { margin: 0; color: var(--szb-ink-soft); font-size: 14px; }

/* Card grid (highlights) */
.szb-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.szb-card {
  position: relative;
  padding: 26px 22px;
  border-radius: 18px;
  background: var(--szb-surface);
  border: 1px solid var(--szb-line);
  display: grid;
  gap: 10px;
  align-content: start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.szb-card:hover { transform: translateY(-3px); border-color: rgba(124, 58, 237, 0.4); }
.szb-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(59, 130, 246, 0.18));
  color: var(--szb-violet-soft);
  font-size: 20px;
}
.szb-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--szb-ink);
}
.szb-card p { margin: 0; color: var(--szb-ink-soft); font-size: 14px; }

.szb-card--feature {
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(59, 130, 246, 0.10)),
    var(--szb-surface);
  border-color: rgba(124, 58, 237, 0.45);
}
.szb-card--feature h3 { color: var(--szb-violet-soft); font-size: 20px; }

.szb-check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.szb-check-list li { position: relative; padding-left: 26px; color: var(--szb-ink-soft); font-size: 14px; }
.szb-check-list li::before {
  content: "✦";
  position: absolute; left: 0; top: -2px;
  color: var(--szb-violet-soft);
  font-weight: 800;
  font-size: 14px;
}

/* Bonus / steps */
.szb-bonus-box {
  padding: 32px;
  border-radius: 22px;
  background: var(--szb-surface);
  border: 1px solid rgba(124, 58, 237, 0.32);
  box-shadow: var(--szb-shadow);
}
.szb-table { display: grid; gap: 0; margin-top: 22px; }
.szb-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--szb-line);
  align-items: center;
}
.szb-table span {
  color: var(--szb-muted);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.szb-table strong { text-align: right; color: var(--szb-ink); }

.szb-steps {
  padding: 28px;
  border-radius: 22px;
  background: var(--szb-bg-3);
  border: 1px solid var(--szb-line-strong);
  border-left: 3px solid var(--szb-violet);
}
.szb-steps h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--szb-ink);
}
.szb-steps ol {
  padding-left: 22px;
  margin: 0;
  color: var(--szb-ink-soft);
}
.szb-steps li + li { margin-top: 12px; }
.szb-steps li::marker { color: var(--szb-violet-soft); font-weight: 700; }

.szb-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.szb-payment-grid div {
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--szb-surface);
  border: 1px solid var(--szb-line);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--szb-ink);
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 13.5px;
}

.szb-note { margin-top: 22px; color: var(--szb-muted); font-size: 13.5px; }

.szb-faq { display: grid; gap: 12px; margin-top: 22px; }
.szb-faq details {
  border: 1px solid var(--szb-line);
  border-radius: 14px;
  background: var(--szb-surface);
  padding: 18px 22px;
}
.szb-faq summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--szb-ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.szb-faq summary::-webkit-details-marker { display: none; }
.szb-faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-weight: 700; color: var(--szb-violet-soft); font-size: 22px;
}
.szb-faq details[open] summary::after { content: "−"; }
.szb-faq p { margin: 10px 0 0; color: var(--szb-ink-soft); }

.szb-page-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 14px; }
.szb-page-toc li a {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--szb-violet-soft);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.szb-page-toc li a:hover { background: var(--szb-violet); color: #ffffff; border-color: var(--szb-violet); }

.szb-content-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.szb-toc {
  padding: 22px;
  border-radius: 18px;
  background: var(--szb-surface);
  border: 1px solid var(--szb-line);
}
.szb-toc__title {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--szb-violet-soft);
  font-weight: 700;
}
.szb-toc__nav { display: grid; gap: 6px; font-size: 14px; }
.szb-toc__nav a {
  text-decoration: none;
  color: var(--szb-ink-soft);
  padding: 6px 0 6px 12px;
  margin-left: -12px;
  border-left: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.szb-toc__nav a:hover { color: var(--szb-violet-soft); border-left-color: var(--szb-violet); }
.szb-toc__nav .szb-toc__nav-sub { padding-left: 26px; opacity: 0.85; font-size: 13px; }

/* Final CTA */
.szb-cta {
  padding: 72px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.22), transparent 50%),
    var(--szb-bg);
  border-top: 1px solid var(--szb-line);
}
.szb-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--szb-ink);
}
.szb-cta p { color: var(--szb-ink-soft); margin: 12px 0 0; }
.szb-cta .szb-btn { margin-top: 24px; }

/* Simple-page hero */
.szb-simple-page { padding-bottom: 40px; }
.szb-simple-hero {
  position: relative;
  padding: 86px 0 60px;
  overflow: hidden;
}
.szb-simple-hero__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--szb-violet);
  filter: blur(110px);
  opacity: 0.22;
  top: -160px;
  right: -120px;
  pointer-events: none;
}
.szb-simple-hero .szb-byline { margin: 24px 0 0; }
.szb-simple-hero h1 { max-width: 820px; text-align: left; }
.szb-simple-hero p { text-align: left; margin-left: 0; }
.szb-simple-hero .szb-btn { margin-top: 28px; }

/* Footer */
.szb-footer {
  position: relative;
  padding: 60px 0 30px;
  border-top: 1px solid var(--szb-line);
  background: var(--szb-bg-2);
  color: var(--szb-ink-soft);
}
.szb-footer__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.szb-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(22px, 5vw, 60px);
  padding: clamp(22px, 4vw, 32px);
  border-radius: 22px;
  background: var(--szb-surface);
  border: 1px solid var(--szb-line);
  position: relative;
  overflow: hidden;
}
.szb-footer__top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--szb-violet), var(--szb-blue), var(--szb-cyan));
}

.szb-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.1;
  color: var(--szb-ink);
}
.szb-footer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 540px;
  color: var(--szb-ink-soft);
}

.szb-footer__cta-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(59, 130, 246, 0.18));
  border: 1px solid rgba(124, 58, 237, 0.4);
}
.szb-footer__cta-meta {
  color: var(--szb-violet-soft);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.szb-footer__cta-card strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  max-width: 280px;
}
.szb-footer__cta-card a {
  width: fit-content;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  color: #ffffff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  box-shadow: var(--szb-glow-violet);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.szb-footer__cta-card a:hover { transform: translateY(-1px); }

.szb-footer__columns {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: clamp(16px, 3vw, 30px);
}
.szb-footer__group {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--szb-line-strong);
}
.szb-footer__group h2 {
  margin: 0 0 8px;
  color: var(--szb-violet-soft);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.szb-footer__group a {
  color: var(--szb-ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.18s ease, transform 0.18s ease;
}
.szb-footer__group a:hover { color: var(--szb-violet-soft); transform: translateX(3px); }

.szb-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--szb-line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.szb-footer__bottom p {
  margin: 0;
  font-size: 12.5px;
  color: var(--szb-muted);
}
.szb-footer__copy { text-align: right; }

/* 404 */
.szb-error-page {
  min-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.szb-error-orbit { display: flex; }
.szb-error-orbit svg { display: block; filter: drop-shadow(0 12px 28px rgba(124, 58, 237, 0.4)); }
.szb-error-card { text-align: center; max-width: 580px; }
.szb-error-tag {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--szb-violet-soft);
}
.szb-error-code {
  font-family: "Sora", sans-serif;
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--szb-violet-soft), var(--szb-blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.szb-error-card h1 {
  margin: 8px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--szb-ink);
}
.szb-error-card p { margin: 0 0 26px; color: var(--szb-ink-soft); font-size: 16px; }
.szb-error-actions { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

@media (max-width: 1000px) {
  .szb-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .szb-header__inner { padding: 0 4px; gap: 12px; }
  .szb-nav { display: none; }
  .szb-header__cta { padding: 10px 14px; min-height: 42px; font-size: 12.5px; }
  .szb-burger { display: inline-flex; align-items: center; justify-content: center; margin-left: 0; }
  .szb-hero { padding: 60px 0 50px; }
  .szb-two-col,
  .szb-bonus-layout { grid-template-columns: 1fr; gap: 28px; }
  .szb-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .szb-orbit-grid,
  .szb-card-grid,
  .szb-payment-grid { grid-template-columns: 1fr 1fr; }
  .szb-footer__top { grid-template-columns: 1fr; }
  .szb-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .szb-footer__bottom { flex-direction: column; align-items: flex-start; }
  .szb-footer__copy { text-align: left; }
}

@media (max-width: 560px) {
  .szb-hero h1,
  .szb-simple-hero h1 { font-size: 34px; }
  .szb-strip__grid,
  .szb-orbit-grid,
  .szb-card-grid,
  .szb-payment-grid { grid-template-columns: 1fr; }
  .szb-bonus-box,
  .szb-steps,
  .szb-verdict,
  .szb-card,
  .szb-orbit-card { border-radius: 16px; }
  .szb-table div { display: grid; gap: 4px; }
  .szb-table strong { text-align: left; }
  .szb-footer { padding-top: 42px; }
  .szb-footer__top { border-radius: 16px; }
  .szb-footer__columns { grid-template-columns: 1fr; gap: 18px; }
  .szb-footer__group { padding-left: 16px; }
  .szb-byline { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .szb-error-code { font-size: 72px; }
  .szb-error-card h1 { font-size: 26px; }
  .szb-btn,
  .szb-header__cta { width: 100%; }
  .szb-header__cta-group { width: auto; }
  .szb-hero__actions .szb-btn { width: auto; flex: 1 1 auto; }
  .szb-products { gap: 8px; }
  .szb-products li { padding: 8px 14px; font-size: 12px; }
}

/* Legal / utility pages */
.szb-body main.container {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 32px) clamp(56px, 8vw, 96px);
  color: var(--szb-ink);
  position: relative;
  z-index: 1;
}
.szb-body main.container > .rich-text {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  color: var(--szb-ink);
  font-size: 16px;
  line-height: 1.7;
}
.szb-body main.container > .rich-text h1,
.szb-body main.container > .rich-text h2,
.szb-body main.container > .rich-text h3,
.szb-body main.container > .rich-text h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--szb-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.szb-body main.container > .rich-text h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 18px; }
.szb-body main.container > .rich-text h2 { font-size: clamp(22px, 3vw, 28px); margin: 32px 0 14px; }
.szb-body main.container > .rich-text h3 { font-size: 20px; margin: 24px 0 10px; }
.szb-body main.container > .rich-text p { color: var(--szb-ink-soft); margin: 0 0 16px; }
.szb-body main.container > .rich-text a { color: var(--szb-violet-soft); text-decoration: underline; }
.szb-body main.container > .rich-text a:hover { color: var(--szb-blue-soft); }
.szb-body main.container > .rich-text ul,
.szb-body main.container > .rich-text ol {
  color: var(--szb-ink-soft);
  padding-left: 22px;
  margin: 0 0 18px;
}
.szb-body main.container > .rich-text li { margin: 6px 0; }

.szb-page-faq {
  width: min(100%, 880px);
  margin: 40px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.szb-page-faq__title {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--szb-ink);
}
.szb-page-faq__q { margin: 22px 0 8px; font-size: 18px; font-weight: 700; color: var(--szb-ink); }
.szb-page-faq__a { margin: 0; color: var(--szb-ink-soft); }

/* Contact form */
.szb-body .contact-form {
  width: 100%;
  max-width: 560px;
  margin: 28px auto 0;
  padding: clamp(20px, 4vw, 32px);
  background: var(--szb-surface);
  border: 1px solid var(--szb-line);
  border-radius: 18px;
  box-shadow: var(--szb-shadow);
}
.szb-body .contact-form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.szb-body .contact-form__label { font-family: "Sora", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--szb-violet-soft); }
.szb-body .contact-form__req { color: var(--szb-blue-soft); margin-left: 2px; }
.szb-body .contact-form__input,
.szb-body .contact-form__textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--szb-line-strong);
  background: var(--szb-bg-3);
  color: var(--szb-ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.szb-body .contact-form__textarea { min-height: 160px; resize: vertical; }
.szb-body .contact-form__input:focus,
.szb-body .contact-form__textarea:focus { border-color: var(--szb-violet); }
.szb-body .contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--szb-glow-violet);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.szb-body .contact-form__btn:hover { transform: translateY(-1px); }
.szb-body .contact-form__btn:disabled { cursor: not-allowed; opacity: 0.6; transform: none; box-shadow: none; }
.szb-body .contact-form__status {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}
.szb-body .contact-form__status.is-success {
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: var(--szb-violet-soft);
}
.szb-body .contact-form__status.is-error {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.4);
  color: #ff8888;
}
@media (max-width: 560px) {
  .szb-body .contact-form { border-radius: 14px; }
  .szb-body .contact-form__btn { width: 100%; }
}

/* App download block */
.szb-download__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.szb-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--szb-violet), var(--szb-blue));
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--szb-glow-violet);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}
.szb-store-btn:nth-child(2) {
  background: linear-gradient(135deg, var(--szb-bg-3), var(--szb-surface));
  border-color: rgba(124, 58, 237, 0.45);
  color: #ffffff;
  box-shadow: var(--szb-glow-blue);
}
.szb-store-btn:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(124, 58, 237, 0.55); }
.szb-store-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.szb-store-btn__body { display: grid; gap: 2px; min-width: 0; }
.szb-store-btn__caption {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.szb-store-btn__label {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.szb-download__note { margin-top: 16px; color: var(--szb-muted); font-size: 13px; }

@media (max-width: 560px) {
  .szb-download__buttons { grid-template-columns: 1fr; }
  .szb-store-btn { padding: 14px 18px; }
}
