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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617);
  color: #e5e7eb;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.sx-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sx-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.96)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
}

.sx-topbar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sx-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sx-logo__glyph {
  padding: 6px 12px;
  border-radius: 999px;
  background: conic-gradient(
    from 160deg,
    #22c55e,
    #0ea5e9,
    #f97316,
    #22c55e
  );
  color: #020617;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.8);
}

.sx-logo__text {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.sx-topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
}

.sx-topnav__link {
  position: relative;
  text-decoration: none;
  color: #9ca3af;
  padding: 6px 0;
}

.sx-topnav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  transition: width 0.16s ease;
}

.sx-topnav__link:hover {
  color: #f9fafb;
}

.sx-topnav__link:hover::after {
  width: 100%;
}

.sx-main {
  flex: 1 0 auto;
}

.sx-hero {
  padding: 46px 0 36px;
}

.sx-hero__layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: flex-start;
}

.sx-hero__copy {
  display: grid;
  gap: 14px;
}

.sx-hero__tag {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.sx-hero__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.35;
}

.sx-hero__lead {
  margin: 0;
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.9;
}

.sx-hero__lead strong {
  color: #f97316;
  font-weight: 600;
}

.sx-hero__actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sx-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease,
    box-shadow 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.sx-pill--primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  box-shadow: 0 14px 34px rgba(56, 189, 248, 0.4);
}

.sx-pill--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.5);
}

.sx-pill--ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.8);
}

.sx-pill--ghost:hover {
  background: rgba(15, 23, 42, 0.96);
}

.sx-hero__scene {
  display: grid;
  gap: 14px;
}

.sx-orbit {
  margin: 0;
  padding: 14px 14px 16px;
  border-radius: 20px;
  background: radial-gradient(circle at top, #1d4ed8 0, #020617 55%);
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
}

.sx-orbit__image {
  border-radius: 14px;
  border: 1px solid rgba(129, 140, 248, 0.9);
}

.sx-orbit__caption {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: #e5e7eb;
  line-height: 1.7;
}

.sx-hero__note {
  padding: 12px 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

.sx-hero__note-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.sx-hero__note-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.86rem;
  color: #cbd5f5;
  display: grid;
  gap: 4px;
}

.sx-section {
  padding: 30px 0 34px;
}

.sx-section--deck {
  border-top: 1px solid rgba(30, 64, 175, 0.8);
  background: radial-gradient(circle at bottom, #020617 0, #020617 55%, #020617);
}

.sx-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.sx-section__head {
  max-width: 740px;
  margin-bottom: 18px;
}

.sx-section__title {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.sx-section__subtitle {
  margin: 0;
  font-size: 0.93rem;
  color: #cbd5f5;
  line-height: 1.8;
}

.sx-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sx-deck__card {
  padding: 12px 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.sx-deck__title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.sx-deck__title a {
  text-decoration: none;
  color: #e5e7eb;
}

.sx-deck__title a:hover {
  color: #38bdf8;
}

.sx-deck__text {
  margin: 0;
  font-size: 0.86rem;
  color: #cbd5f5;
  line-height: 1.8;
}

.sx-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sx-page-main {
  flex: 1 0 auto;
}

.sx-page-hero {
  padding: 40px 0 20px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.8);
  background: #020617;
}

.sx-page-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.sx-page-hero__title {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: #e5e7eb;
}

.sx-page-hero__subtitle {
  margin: 0;
  font-size: 0.93rem;
  color: #cbd5f5;
  line-height: 1.8;
  max-width: 760px;
}

.sx-page-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 20px 40px;
}

.sx-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sx-card-list {
  display: grid;
  gap: 12px;
}

.sx-card {
  padding: 12px 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.sx-card__title {
  margin: 0 0 4px;
  font-size: 0.96rem;
  color: #e5e7eb;
}

.sx-card__title a {
  text-decoration: none;
  color: inherit;
}

.sx-card__title a:hover {
  color: #38bdf8;
}

.sx-card__text {
  margin: 0;
  font-size: 0.86rem;
  color: #cbd5f5;
  line-height: 1.8;
}

.sx-article {
  max-width: 780px;
}

.sx-article__image {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  margin-bottom: 14px;
}

.sx-article__p {
  margin: 0 0 12px;
  font-size: 0.93rem;
  color: #cbd5f5;
  line-height: 1.9;
}

.sx-article__p strong {
  color: #fbbf24;
}

.sx-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
}

.sx-two-col__block {
  font-size: 0.93rem;
  color: #cbd5f5;
  line-height: 1.9;
}

.sx-note {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(59, 130, 246, 0.9);
  font-size: 0.84rem;
  color: #bfdbfe;
}

.sx-footer {
  border-top: 1px solid rgba(30, 64, 175, 0.9);
  background: #020617;
}

.sx-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px 16px;
}

.sx-footer__line {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.sx-footer__line + .sx-footer__line {
  margin-top: 4px;
}

.sx-footer__line--muted {
  color: #6b7280;
}

@media (max-width: 960px) {
  .sx-topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sx-topnav {
    justify-content: center;
  }

  .sx-hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sx-hero__scene {
    order: -1;
  }

  .sx-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sx-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sx-hero {
    padding-top: 38px;
  }

  .sx-hero__layout {
    padding-inline: 16px;
  }

  .sx-section__inner {
    padding-inline: 16px;
  }

  .sx-deck {
    grid-template-columns: minmax(0, 1fr);
  }

  .sx-page-body {
    padding-inline: 16px;
  }

  .sx-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

