:root {
  --bg0: #050713;
  --bg1: #070b1e;
  --bg2: #0a1230;

  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --border2: rgba(0, 210, 255, 0.22);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --subtle: rgba(255, 255, 255, 0.44);

  --brand: #00d2ff;
  --brand2: #7c3aed;
  --brandSoft: rgba(0, 210, 255, 0.16);

  --shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
  --shadow2: 0 14px 40px rgba(0, 0, 0, 0.40);

  --radius: 18px;
  --radiusSm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: radial-gradient(1000px 520px at 16% 10%, rgba(0, 210, 255, 0.22), transparent 60%),
    radial-gradient(860px 520px at 88% 12%, rgba(124, 58, 237, 0.18), transparent 62%),
    radial-gradient(720px 480px at 54% 92%, rgba(0, 210, 255, 0.12), transparent 66%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 46%, var(--bg2));
  padding-top: 96px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 42px);
  opacity: 0.35;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: rgba(255, 255, 255, 0.98);
}

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

.wx-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.wx-main {
  display: block;
}

.wx-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  z-index: 1000;
}

.wx-skip:focus {
  left: 12px;
  top: 12px;
}

.wx-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: rgba(6, 10, 26, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.wx-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.38), rgba(124, 58, 237, 0.28), transparent);
  opacity: 0.85;
}

.wx-nav__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 0;
  color: var(--subtle);
  font-size: 12px;
}

.wx-topnote strong {
  color: rgba(255, 255, 255, 0.86);
}

.wx-toplinks {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wx-toplink {
  color: rgba(255, 255, 255, 0.70);
}

.wx-toplink:hover {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 18px rgba(0, 210, 255, 0.20);
}

.wx-dot {
  opacity: 0.55;
}

.wx-nav__bar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 16px;
}

.wx-brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.wx-brand__logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.38));
}

.wx-nav__menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wx-nav__link {
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.74);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.wx-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.wx-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wx-nav__toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px 10px;
  cursor: pointer;
}

.wx-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.wx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.90);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  user-select: none;
}

.wx-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.wx-btn--block {
  width: 100%;
}

.wx-btn--primary {
  border-color: rgba(0, 210, 255, 0.34);
  background: linear-gradient(180deg, rgba(0, 210, 255, 0.18), rgba(124, 58, 237, 0.12));
  box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.10), 0 18px 50px rgba(0, 210, 255, 0.18);
}

.wx-btn--primary:hover {
  border-color: rgba(0, 210, 255, 0.52);
  box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.16), 0 22px 66px rgba(0, 210, 255, 0.26);
}

.wx-btn--ghost {
  background: transparent;
}

.wx-btn--soft {
  border-color: rgba(0, 210, 255, 0.22);
  background: rgba(0, 210, 255, 0.10);
}

.wx-h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.8px;
}

.wx-h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.4px;
}

.wx-lead {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.wx-muted {
  color: var(--muted);
}

.wx-subtle {
  color: var(--subtle);
}

.wx-text-sm {
  font-size: 14px;
}

.wx-measure {
  max-width: 820px;
}

.wx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--subtle);
}

.wx-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.wx-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.wx-breadcrumb__sep {
  opacity: 0.55;
}

.wx-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(16px);
}

.wx-panel__inner {
  padding: 18px 18px;
}

.wx-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.wx-layout__aside {
  position: sticky;
  top: 104px;
}

.wx-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.wx-pn {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wx-sidelinks {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.wx-sidelink {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.wx-sidelink:hover {
  border-color: rgba(0, 210, 255, 0.24);
  background: rgba(0, 210, 255, 0.08);
}

.wx-sidelink__t {
  color: rgba(255, 255, 255, 0.90);
}

.wx-sidelink__d {
  color: var(--subtle);
  white-space: nowrap;
}

.wx-prose {
  color: rgba(255, 255, 255, 0.88);
}

.wx-prose h2,
.wx-prose h3 {
  margin: 18px 0 10px;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.wx-prose p {
  margin: 10px 0;
}

.wx-prose a {
  color: rgba(214, 247, 255, 0.94);
  text-decoration: underline;
  text-decoration-color: rgba(0, 210, 255, 0.40);
  text-underline-offset: 3px;
}

.wx-prose ul,
.wx-prose ol {
  margin: 10px 0;
  padding-left: 18px;
}

.wx-pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.wx-pagination a,
.wx-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
}

.wx-pagination .current,
.wx-pagination .active {
  border-color: rgba(0, 210, 255, 0.30);
  background: rgba(0, 210, 255, 0.10);
}

.wx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.wx-kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.92), rgba(0, 210, 255, 0.70) 55%, rgba(124, 58, 237, 0.18) 78%);
  box-shadow: 0 0 22px rgba(0, 210, 255, 0.30);
}

.wx-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 210, 255, 0.22);
  background: rgba(0, 210, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 650;
}

.wx-section {
  padding: 64px 0;
}

.wx-section--alt {
  position: relative;
}

.wx-section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 340px at 50% 0%, rgba(0, 210, 255, 0.10), transparent 65%);
  pointer-events: none;
}

.wx-head2 {
  margin-bottom: 18px;
}

.wx-mt-16 {
  margin-top: 16px;
}

.wx-mt-24 {
  margin-top: 24px;
}

.wx-hero2 {
  padding: 30px 0 54px;
}

.wx-hero2__wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.wx-hero2__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wx-hero2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.wx-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wx-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 12px;
  backdrop-filter: blur(12px);
}

.wx-metric strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.wx-metric span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--subtle);
}

.wx-hero2__panel {
  align-self: stretch;
}

.wx-dlpanel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.wx-dlpanel__head {
  padding: 18px 18px 0;
}

.wx-dlpanel__title {
  margin-top: 10px;
  font-weight: 750;
  letter-spacing: -0.3px;
  font-size: 18px;
}

.wx-dlpanel__cta {
  padding: 14px 18px 0;
  display: grid;
  gap: 10px;
}

.wx-dlpanel__grid {
  padding: 14px 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wx-dlchip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.wx-dlchip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 255, 0.26);
  background: rgba(0, 210, 255, 0.08);
}

.wx-shot {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.wx-shot--hero img {
  width: 100%;
  height: auto;
}

.wx-cards3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wx-card2 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wx-card2:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 210, 255, 0.26);
  box-shadow: var(--shadow);
}

.wx-card2__k {
  font-weight: 750;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.wx-card2__meta {
  margin-top: 14px;
  font-size: 12px;
  color: var(--subtle);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 12px;
}

.wx-timeline {
  position: relative;
}

.wx-timeline__head {
  margin-bottom: 18px;
}

.wx-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wx-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.wx-step__no {
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: 0 0 24px rgba(0, 210, 255, 0.18);
  min-width: 40px;
}

.wx-step__t {
  font-weight: 750;
  letter-spacing: -0.2px;
}

.wx-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wx-matrix__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wx-matrix__item:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: var(--shadow);
}

.wx-matrix__t {
  font-weight: 750;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.wx-platforms2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wx-platform2 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wx-platform2:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 210, 255, 0.26);
  box-shadow: var(--shadow);
}

.wx-platform2__t {
  font-weight: 800;
  letter-spacing: -0.2px;
}

.wx-platform2__d {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.wx-platform2__cta {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(0, 210, 255, 0.32);
  text-underline-offset: 4px;
  font-weight: 650;
}

.wx-updates2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wx-update2 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wx-update2:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 210, 255, 0.26);
  box-shadow: var(--shadow);
}

.wx-update2__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.wx-update2__t {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.wx-update2__cta {
  margin-top: 14px;
}

.wx-link {
  color: rgba(214, 247, 255, 0.94);
  text-decoration: underline;
  text-decoration-color: rgba(0, 210, 255, 0.40);
  text-underline-offset: 3px;
  font-weight: 650;
}

.wx-faq2 {
  display: grid;
  gap: 12px;
}

.wx-faq2__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.wx-faq2__q {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.92);
}

.wx-faq2__q::-webkit-details-marker {
  display: none;
}

.wx-faq2__q::after {
  content: "+";
  float: right;
  color: rgba(255, 255, 255, 0.62);
}

details[open] .wx-faq2__q::after {
  content: "–";
}

.wx-faq2__a {
  padding: 0 18px 16px;
  color: var(--muted);
}

.wx-faq2__a a {
  color: rgba(214, 247, 255, 0.94);
  text-decoration: underline;
  text-decoration-color: rgba(0, 210, 255, 0.40);
  text-underline-offset: 3px;
}

.wx-footer {
  padding: 40px 0 26px;
}

.wx-cta {
  padding: 12px 0 24px;
}

.wx-cta__card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(900px 320px at 0% 0%, rgba(0, 210, 255, 0.18), transparent 62%),
    radial-gradient(760px 340px at 90% 20%, rgba(124, 58, 237, 0.14), transparent 65%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  backdrop-filter: blur(16px);
}

.wx-cta__main p {
  margin: 10px 0 0;
}

.wx-dlgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wx-dl {
  display: block;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wx-dl:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 255, 0.24);
  background: rgba(0, 210, 255, 0.08);
}

.wx-dl__k {
  font-weight: 800;
  letter-spacing: -0.2px;
}

.wx-dl__v {
  margin-top: 6px;
  font-size: 12px;
  color: var(--subtle);
}

.wx-footer__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wx-footer__title {
  font-weight: 750;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.wx-footer__list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
}

.wx-footer__list a {
  color: rgba(255, 255, 255, 0.74);
}

.wx-footer__list a:hover {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 18px rgba(0, 210, 255, 0.20);
}

.wx-subfooter {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--subtle);
  font-size: 12px;
}

@media (max-width: 980px) {
  body {
    padding-top: 88px;
  }

  .wx-nav__top {
    display: none;
  }

  .wx-nav__toggle {
    display: inline-flex;
  }

  .wx-nav__menu {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(6, 10, 26, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .wx-nav__menu[aria-hidden="true"] {
    display: none;
  }

  .wx-hero2__wrap {
    grid-template-columns: 1fr;
  }

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

  .wx-cards3 {
    grid-template-columns: 1fr;
  }

  .wx-steps {
    grid-template-columns: 1fr;
  }

  .wx-matrix {
    grid-template-columns: 1fr;
  }

  .wx-platforms2 {
    grid-template-columns: 1fr;
  }

  .wx-updates2 {
    grid-template-columns: 1fr;
  }

  .wx-layout {
    grid-template-columns: 1fr;
  }

  .wx-layout__aside {
    position: static;
    top: auto;
  }

  .wx-pn {
    grid-template-columns: 1fr;
  }

  .wx-cta__card {
    grid-template-columns: 1fr;
  }

  .wx-footer__grid {
    grid-template-columns: 1fr;
  }
}
