/* ============ Wix service page styles ============ */
:root {
  --wx-lime: #d4ff3a;
  --wx-lime-2: #e6ff66;
  --wx-lime-deep: #a8cc1f;
  --wx-lime-glow: rgba(212, 255, 58, 0.35);
  --wx-blue: #0d6efd;
  --wx-blue-2: #3a8dff;
  --wx-blue-deep: #0044f0;
  --wx-blue-glow: rgba(13, 110, 253, 0.32);
  --wx-bg: #08080a;
  --wx-panel: #0e0f14;
  --wx-panel-2: #14151c;
  --wx-line: rgba(255, 255, 255, 0.08);
  --wx-line-2: rgba(255, 255, 255, 0.14);
  --wx-text: #ececef;
  --wx-text-dim: rgba(236, 236, 239, 0.62);
  --wx-text-mute: rgba(236, 236, 239, 0.42);
  --wx-mono: 'JetBrains Mono', ui-monospace, monospace;
  --wx-sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --wx-serif: 'Fraunces', Georgia, serif;
}

.wx-page {
  background: var(--wx-bg);
  color: var(--wx-text);
  font-family: var(--wx-sans);
  overflow-x: hidden;
}
.wx-page * { box-sizing: border-box; }

#fluid-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
/* CSS-only fallback gradient if WebGL never paints */
.wx-page::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(13, 110, 253, 0.12), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(212, 255, 58, 0.08), transparent 60%),
    var(--wx-bg);
}

.wx-page > section,
.wx-page > header,
.wx-page > footer,
.wx-page > .wx-crumb { position: relative; z-index: 1; }
.wx-page > aside.mdrawer { z-index: 50; }

/* Crumb */
.wx-crumb {
  position: fixed; top: 80px; left: var(--gutter);
  z-index: 30;
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-3);
  pointer-events: auto;
}
.wx-crumb a { color: var(--bone-3); text-decoration: none; }
.wx-crumb a:hover { color: var(--lime); }
.wx-crumb .cur { color: var(--bone); }

/* ============ HERO ============ */
.wx-hero {
  position: relative; min-height: 100vh;
  padding: 24px 40px 0; overflow: hidden;
}
.wx-hero__canvas {
  position: absolute;
  inset: 60px 0 0 0;
  width: 100%; height: calc(100% - 60px);
  z-index: 0; pointer-events: none; opacity: 0.9;
}

/* Studio dock */
.wx-dock {
  display: flex; align-items: center; gap: 24px;
  padding: 8px 16px;
  background: var(--wx-panel);
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  margin-top: 16px;
  font-family: var(--wx-mono);
  font-size: 11px;
  color: var(--wx-text-dim);
  position: relative; z-index: 2;
}
.wx-dock__group { display: flex; align-items: center; gap: 6px; }
.wx-dock__icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 4px; cursor: pointer;
  transition: background .2s, color .2s;
}
.wx-dock__icon:hover { background: var(--wx-line); color: var(--wx-text); }
.wx-dock__icon.is-active { background: rgba(13, 110, 253, 0.18); color: var(--wx-blue-2); }
.wx-dock__icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.wx-dock__tab {
  padding: 5px 12px; border-radius: 3px;
  cursor: pointer; letter-spacing: 0.03em;
  transition: all 0.2s;
}
.wx-dock__tab:hover { color: var(--wx-text); }
.wx-dock__tab.is-active {
  background: var(--wx-bg); color: var(--wx-text);
  box-shadow: inset 0 0 0 1px var(--wx-line);
}
.wx-dock__bp { margin-left: auto; }
.wx-dock__bp button {
  width: 28px; height: 24px; background: transparent;
  border: 1px solid transparent; color: var(--wx-text-mute);
  border-radius: 3px; cursor: pointer; font-size: 12px;
}
.wx-dock__bp button:hover { color: var(--wx-text); }
.wx-dock__bp button.is-active {
  border-color: var(--wx-line-2); color: var(--wx-blue-2);
}
.wx-dock__pub {
  padding: 5px 14px;
  background: var(--wx-blue); color: #fff;
  border-radius: 3px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 0 var(--wx-blue-glow);
  animation: wxPubPulse 3.2s ease-in-out infinite;
}
@keyframes wxPubPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--wx-blue-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.wx-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-rows: auto 1fr auto;
  gap: 60px; padding: 60px 0 40px;
  min-height: calc(100vh - 200px);
}
.wx-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wx-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--wx-text-mute);
}
.wx-hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--wx-lime);
  border-radius: 50%;
  animation: wxPulse 2s ease infinite;
}
@keyframes wxPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--wx-lime-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.wx-hero__title {
  font-family: var(--wx-serif);
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
}
.wx-hero__title .line { display: block; overflow: hidden; }
.wx-hero__title .line > span { display: inline-block; }
.wx-hero__title .indent { padding-left: 1.2em; }
.wx-hero__title em { font-style: italic; color: var(--wx-lime); }

.wx-hero__bottom {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end;
  border-top: 1px solid var(--wx-line);
  padding-top: 28px;
}
.wx-hero__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55; max-width: 56ch;
  color: var(--wx-text-dim);
}
.wx-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }

.wx-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px; border-radius: 999px;
  font-family: var(--wx-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform .25s ease, background .25s, color .25s;
}
.wx-btn--solid { background: var(--wx-lime); color: #0a0a0a; }
.wx-btn--solid:hover { background: var(--wx-lime-2); }
.wx-btn--ghost { background: transparent; color: var(--wx-text); border: 1px solid var(--wx-line-2); }
.wx-btn--ghost:hover { border-color: var(--wx-lime); color: var(--wx-lime); }
.wx-btn .arrow { display: inline-block; transition: transform .25s; }
.wx-btn:hover .arrow { transform: translateX(4px); }

/* Status bar */
.wx-statusbar {
  display: flex; align-items: center;
  margin: 0 0 24px;
  background: var(--wx-panel);
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--wx-mono); font-size: 10.5px;
  color: var(--wx-text-mute);
  gap: 28px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.wx-statusbar__cell { display: flex; align-items: center; gap: 8px; }
.wx-statusbar .lbl { color: var(--wx-text-mute); text-transform: uppercase; letter-spacing: .12em; }
.wx-statusbar .val { color: var(--wx-text); }
.wx-statusbar__crumb { display: inline-flex; align-items: center; gap: 4px; }
.wx-statusbar__crumb .tag { color: var(--wx-blue-2); }
.wx-statusbar__crumb .cls { color: var(--wx-lime); }
.wx-statusbar__crumb .gt { opacity: .4; }
.wx-statusbar .pill {
  padding: 2px 8px; border-radius: 999px;
  background: rgba(13, 110, 253, 0.14);
  color: var(--wx-blue-2);
  font-size: 9.5px;
}
.wx-statusbar__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wx-lime);
  box-shadow: 0 0 0 0 var(--wx-lime-glow);
  animation: wxPulse 2s ease infinite;
}

/* ============ INTRO STATS ============ */
.wx-intro {
  padding: 140px 40px 80px;
  border-top: 1px solid var(--wx-line);
}
.wx-intro__head {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.wx-intro__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--wx-line);
  padding-top: 40px;
}
.wx-stat__num {
  font-family: var(--wx-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--wx-lime);
}
.wx-stat__num sup {
  font-size: 0.5em; color: var(--wx-text);
  font-style: normal; vertical-align: top;
  margin-left: 4px;
}
.wx-stat__label {
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--wx-text-dim); margin-top: 6px;
  font-family: var(--wx-mono);
}
.wx-stat__label[data-zero] { color: var(--wx-text-mute); }

/* ============ CAPABILITIES ============ */
.wx-cap {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--wx-line);
}
.wx-cap__head {
  display: grid; grid-template-columns: auto 1.4fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.wx-cap__lede {
  grid-column: 1 / -1;
  max-width: 70ch;
  color: var(--wx-text-dim);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 0;
}
.wx-cap__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--wx-line);
  border: 1px solid var(--wx-line);
}
.wx-cap__card {
  background: var(--wx-bg);
  padding: 28px 24px 28px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.wx-cap__card:hover { background: var(--wx-panel); }
.wx-cap__art {
  width: 100%; aspect-ratio: 400/140;
  border-radius: 4px; overflow: hidden;
  background: #08080a;
  border: 1px solid var(--wx-line);
}
.wx-cap__art svg { width: 100%; height: 100%; display: block; }
.wx-cap__class {
  font-family: var(--wx-mono); font-size: 10px;
  color: var(--wx-blue-2);
  letter-spacing: 0.08em;
}
.wx-cap__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--wx-mono); font-size: 11px;
  color: var(--wx-text-mute);
}
.wx-cap__card h3 {
  font-family: var(--wx-serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1; margin: 4px 0;
  font-weight: 400;
}
.wx-cap__card h3 em { font-style: italic; color: var(--wx-lime); }
.wx-cap__card p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--wx-text-dim);
  margin: 0;
}
.wx-cap__card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--wx-text-dim);
}
.wx-cap__card ul span { color: var(--wx-blue-2); margin-right: 6px; }

/* ============ STAGE (live drag-drop + responsive + Velo) ============ */
.wx-stage {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--wx-line);
}
.wx-stage__head {
  margin-bottom: 50px;
  max-width: 800px;
}
.wx-stage__head h2 { margin: 14px 0; }
.wx-stage__head h2 em { font-style: italic; color: var(--wx-lime); }
.wx-stage__head .lede {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6; color: var(--wx-text-dim);
  max-width: 70ch;
}

.wx-stage__rig {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1px;
  background: var(--wx-line);
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 640px;
}

/* Palette */
.wx-stage__palette {
  background: var(--wx-panel);
  display: flex; flex-direction: column;
  padding: 18px;
  gap: 14px;
}
.wx-stage__palette-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--wx-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--wx-text-mute);
}
.wx-stage__palette-title { color: var(--wx-text); }
.wx-stage__palette-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.wx-tile {
  display: grid;
  grid-template-columns: 14px 28px 1fr;
  gap: 10px; align-items: center;
  padding: 10px 12px;
  background: var(--wx-panel-2);
  border: 1px solid var(--wx-line);
  border-radius: 4px;
  cursor: grab;
  transition: border-color .2s, background .2s, transform .15s;
  user-select: none;
}
.wx-tile:hover { border-color: var(--wx-blue-2); background: rgba(13, 110, 253, 0.08); }
.wx-tile:focus-visible { outline: 2px solid var(--wx-blue-2); outline-offset: 2px; }
.wx-tile.is-dragging { opacity: 0.55; cursor: grabbing; }
.wx-tile__grip {
  font-family: var(--wx-mono); font-size: 10px;
  color: var(--wx-text-mute); letter-spacing: -2px;
}
.wx-tile__icon {
  width: 28px; height: 22px;
  display: grid; place-items: center;
  color: var(--wx-blue-2);
}
.wx-tile__icon svg { width: 28px; height: 22px; }
.wx-tile__lbl {
  font-size: 13px; font-weight: 500;
  color: var(--wx-text); grid-row: 1; grid-column: 3;
}
.wx-tile__sub {
  grid-column: 3; grid-row: 2;
  font-family: var(--wx-mono); font-size: 9.5px;
  color: var(--wx-text-mute);
  letter-spacing: 0.04em;
}
.wx-stage__palette-foot {
  border-top: 1px solid var(--wx-line);
  padding-top: 12px;
  font-family: var(--wx-mono); font-size: 10px;
  color: var(--wx-text-mute);
  letter-spacing: 0.06em;
}

/* Stage main */
.wx-stage__main {
  background: var(--wx-bg);
  display: flex; flex-direction: column;
}
.wx-stage__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--wx-line);
  font-family: var(--wx-mono); font-size: 11px;
}
.wx-stage__bar-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--wx-text-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 10.5px;
}
.wx-stage__bar-label .ic { color: var(--wx-blue-2); font-size: 14px; line-height: 1; }
.wx-stage__bar-meta { display: flex; gap: 12px; align-items: center; }
.wx-stage__pill {
  padding: 4px 10px; border-radius: 999px;
  background: var(--wx-panel);
  border: 1px solid var(--wx-line);
  color: var(--wx-text-dim);
  font-size: 10.5px;
}

.wx-stage__canvas-wrap {
  position: relative;
  flex: 1;
  padding: 24px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(13, 110, 253, 0.06), transparent 60%),
    var(--wx-bg);
  overflow: hidden;
}
.wx-stage__rulers {
  position: absolute; inset: 24px;
  display: grid; grid-template-columns: repeat(12, 1fr);
  pointer-events: none; opacity: 0.45;
}
.wx-stage__rulers span {
  border-left: 1px dashed rgba(255, 255, 255, 0.05);
}
.wx-stage__rulers span:last-child { border-right: 1px dashed rgba(255, 255, 255, 0.05); }

.wx-stage__canvas {
  position: relative;
  margin: 0 auto;
  background: var(--wx-panel);
  border: 1px solid var(--wx-line);
  border-radius: 4px;
  min-height: 100%;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.wx-stage__canvas.is-drop-target {
  border-color: var(--wx-blue);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px var(--wx-blue),
    inset 0 0 60px rgba(13, 110, 253, 0.12);
}

.wx-stage__empty {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--wx-mono); font-size: 12px;
  color: var(--wx-text-mute);
  pointer-events: none;
  padding: 40px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.wx-stage__empty-mark {
  font-size: 28px; color: var(--wx-blue-2);
  margin-bottom: 8px;
}
.wx-stage__sections {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 10px; padding: 14px;
}

/* Dropped section visuals — silhouettes per type */
.wx-section {
  position: relative;
  background: var(--wx-bg);
  border: 1px solid var(--wx-line);
  border-radius: 4px;
  padding: 18px 20px;
  display: grid;
  gap: 8px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s;
  animation: wxDropIn .4s cubic-bezier(.2, 0, .2, 1.2);
}
@keyframes wxDropIn {
  from { transform: translateY(-8px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.wx-section:hover { background: var(--wx-panel-2); }
.wx-section__handle {
  position: absolute;
  top: 6px; left: 8px;
  font-family: var(--wx-mono); font-size: 11px;
  color: var(--wx-text-mute);
  cursor: grab;
  letter-spacing: -2px;
  user-select: none;
  padding: 2px 4px;
}
.wx-section__handle:active { cursor: grabbing; }
.wx-section__close {
  position: absolute;
  top: 6px; right: 6px;
  background: transparent; border: 0;
  color: var(--wx-text-mute);
  font-size: 14px; line-height: 1;
  cursor: pointer; padding: 4px 6px;
  border-radius: 3px;
  opacity: 0; transition: opacity .2s, color .2s, background .2s;
}
.wx-section:hover .wx-section__close { opacity: 1; }
.wx-section__close:hover { color: #ff6b6b; background: rgba(255, 107, 107, 0.1); }
.wx-section__tag {
  font-family: var(--wx-mono); font-size: 9.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--wx-blue-2);
  padding-left: 22px;
}
.wx-section__body {
  display: grid; gap: 6px;
  padding-top: 4px;
}
.wx-section__bar {
  height: 10px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}
.wx-section__bar.is-lime { background: rgba(212, 255, 58, 0.85); }
.wx-section__bar.is-blue { background: rgba(13, 110, 253, 0.6); }
.wx-section__bar.w70 { width: 70%; }
.wx-section__bar.w50 { width: 50%; }
.wx-section__bar.w30 { width: 30%; }
.wx-section__bar.w20 { width: 20%; }
.wx-section__row {
  display: grid; gap: 8px;
}
.wx-section__row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wx-section__row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.wx-section__chip {
  height: 38px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--wx-line);
}
.wx-section__chip.is-blue {
  background: rgba(13, 110, 253, 0.16);
  border-color: rgba(13, 110, 253, 0.3);
}
.wx-section__chip.is-lime {
  background: rgba(212, 255, 58, 0.18);
  border-color: rgba(212, 255, 58, 0.3);
}
.wx-section__btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--wx-lime);
  border-radius: 999px;
  height: 22px;
  width: 90px;
}


/* Velo strip */
.wx-stage__velo {
  border-top: 1px solid var(--wx-line);
  background: #06070a;
  font-family: var(--wx-mono);
  font-size: 11.5px;
  display: flex; flex-direction: column;
  max-height: 220px;
}
.wx-stage__velo-head {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--wx-line);
  padding: 0 8px;
}
.wx-stage__velo-tab {
  padding: 8px 14px;
  font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--wx-text-mute);
  border-bottom: 1px solid transparent;
}
.wx-stage__velo-tab.is-active {
  color: var(--wx-blue-2);
  border-bottom-color: var(--wx-blue);
}
.wx-stage__velo-body {
  margin: 0; padding: 14px 16px;
  overflow: auto;
  color: var(--wx-text);
  line-height: 1.55;
  white-space: pre;
}
.wx-stage__velo-body .ln { display: block; }
.wx-stage__velo-body .ln.c, .wx-stage__velo-body .c { color: var(--wx-text-mute); font-style: italic; }
.wx-stage__velo-body .k { color: var(--wx-blue-2); }
.wx-stage__velo-body .kw { color: #c39bff; }
.wx-stage__velo-body .s { color: var(--wx-lime); }
.wx-stage__velo-body .n { color: #f5d27a; }
.wx-stage__velo-body .ln.is-new { animation: wxLineIn .35s ease; }
@keyframes wxLineIn {
  from { background: rgba(13, 110, 253, 0.18); }
  to { background: transparent; }
}

/* ============ VS ============ */
.wx-vs {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--wx-line);
}
.wx-vs__head {
  margin-bottom: 40px;
  max-width: 900px;
}
.wx-vs__head h2 {
  font-family: var(--wx-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.wx-vs__head h2 em { font-style: italic; color: var(--wx-lime); }
.wx-vs__lede {
  color: var(--wx-text-dim); font-size: 14.5px; line-height: 1.55;
  max-width: 56ch; margin: 14px 0 0;
}

/* Vs reformatted as battle cards (each trait gets two side-by-side cards) */
.wx-vs__pairs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.wx-vs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  background: var(--wx-bg);
  border: 1px solid var(--wx-line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .25s;
}
.wx-vs-card:hover { border-color: var(--wx-line-2); }
.wx-vs-card__trait {
  grid-column: 1 / -1;
  padding: 12px 18px;
  background: var(--wx-panel);
  border-bottom: 1px solid var(--wx-line);
  font-family: var(--wx-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wx-text);
}
.wx-vs-card__bad,
.wx-vs-card__good {
  padding: 18px 18px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.wx-vs-card__bad {
  background: var(--wx-bg);
  border-right: 1px solid var(--wx-line);
}
.wx-vs-card__good {
  background:
    linear-gradient(170deg, rgba(212, 255, 58, 0.04), transparent 60%),
    var(--wx-bg);
  position: relative;
}
.wx-vs-card__good::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--wx-lime);
}
.wx-vs-card__lbl {
  font-family: var(--wx-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wx-vs-card__bad .wx-vs-card__lbl { color: var(--wx-text-mute); }
.wx-vs-card__good .wx-vs-card__lbl { color: var(--wx-lime); }
.wx-vs-card__bad p,
.wx-vs-card__good p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.wx-vs-card__bad p {
  color: var(--wx-text-mute);
}
.wx-vs-card__good p {
  color: var(--wx-text);
}

/* ============ BREAKPOINT SCRUBBER (replaces Pairs) ============ */
.wx-bp {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--wx-line);
}
.wx-bp__head {
  margin-bottom: 50px;
  max-width: 800px;
}
.wx-bp__head h2 {
  font-family: var(--wx-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0;
}
.wx-bp__head h2 em { font-style: italic; color: var(--wx-lime); }
.wx-bp__head .lede {
  color: var(--wx-text-dim);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  max-width: 70ch;
}

.wx-bp__rig {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1px;
  background: var(--wx-line);
  border: 1px solid var(--wx-line);
  border-radius: 8px;
  overflow: hidden;
  min-height: 580px;
}

.wx-bp__viewport {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(13, 110, 253, 0.06), transparent 60%),
    var(--wx-bg);
  padding: 38px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wx-bp__viewport-label {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--wx-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wx-blue-2);
  background: var(--wx-panel);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--wx-line);
  z-index: 2;
}

/* Sample mock-site that reflows based on data-bp */
.wx-bp__site {
  background: var(--wx-panel);
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  width: 100%; max-width: 100%;
  height: 480px; max-height: 100%;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
  font-family: var(--wx-sans);
  color: var(--wx-text);
  --wx-bp-pad: 22px;
  --wx-bp-scale: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.wx-bp__site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--wx-bp-pad);
  border-bottom: 1px solid var(--wx-line);
  font-size: calc(11px * var(--wx-bp-scale));
}
.wx-bp__site-logo {
  font-family: var(--wx-serif); font-style: italic;
  font-size: calc(16px * var(--wx-bp-scale));
}
.wx-bp__site-links {
  display: flex; gap: 18px;
  color: var(--wx-text-dim);
  font-family: var(--wx-mono);
  letter-spacing: 0.06em;
}
.wx-bp__site[data-bp="mobile"] .wx-bp__site-links { display: none; }
.wx-bp__site-cta {
  padding: 5px 12px;
  background: var(--wx-lime); color: #0a0a0a;
  border-radius: 999px;
  font-family: var(--wx-mono);
  font-size: calc(10px * var(--wx-bp-scale));
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wx-bp__site-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--wx-bp-pad);
  padding: calc(var(--wx-bp-pad) * 1.4) var(--wx-bp-pad);
  border-bottom: 1px solid var(--wx-line);
  align-items: end;
  flex: 1;
}
.wx-bp__site[data-bp="mobile"] .wx-bp__site-hero {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px var(--wx-bp-pad);
}
.wx-bp__site-eyebrow {
  font-family: var(--wx-mono);
  font-size: calc(10px * var(--wx-bp-scale));
  color: var(--wx-blue-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wx-bp__site-title {
  font-family: var(--wx-serif);
  font-style: italic;
  font-weight: 300;
  font-size: calc(36px * var(--wx-bp-scale));
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 6px 0;
}
.wx-bp__site-lede {
  font-size: calc(13px * var(--wx-bp-scale));
  color: var(--wx-text-dim);
  line-height: 1.5;
  margin: 0 0 12px;
}
.wx-bp__site-btn {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--wx-lime);
  color: var(--wx-lime);
  border-radius: 999px;
  font-family: var(--wx-mono);
  font-size: calc(11px * var(--wx-bp-scale));
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wx-bp__site-hero-art {
  height: calc(120px * var(--wx-bp-scale));
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.45) 0%, rgba(212, 255, 58, 0.28) 100%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), transparent 60%),
    #14151c;
}
.wx-bp__site[data-bp="mobile"] .wx-bp__site-hero-art {
  height: 88px;
}

.wx-bp__site-features {
  display: grid;
  gap: 1px;
  background: var(--wx-line);
  grid-template-columns: repeat(4, 1fr);
}
.wx-bp__site[data-bp="tablet"] .wx-bp__site-features {
  grid-template-columns: repeat(2, 1fr);
}
.wx-bp__site[data-bp="mobile"] .wx-bp__site-features {
  grid-template-columns: 1fr;
}
.wx-bp__site-feature {
  background: var(--wx-panel);
  padding: 14px var(--wx-bp-pad);
  display: flex; flex-direction: column; gap: 4px;
}
.wx-bp__site-feature-num {
  font-family: var(--wx-mono);
  font-size: calc(9.5px * var(--wx-bp-scale));
  color: var(--wx-blue-2);
  letter-spacing: 0.1em;
}
.wx-bp__site-feature strong {
  font-family: var(--wx-serif);
  font-style: italic;
  font-weight: 400;
  font-size: calc(15px * var(--wx-bp-scale));
}
.wx-bp__site-feature p {
  margin: 0;
  font-size: calc(11.5px * var(--wx-bp-scale));
  line-height: 1.45;
  color: var(--wx-text-dim);
}
.wx-bp__site[data-bp="mobile"] .wx-bp__site-feature {
  padding: 10px var(--wx-bp-pad);
}
.wx-bp__site[data-bp="mobile"] .wx-bp__site-feature p {
  display: none;
}

.wx-bp__site-foot {
  display: flex; justify-content: space-between;
  padding: 10px var(--wx-bp-pad);
  border-top: 1px solid var(--wx-line);
  font-family: var(--wx-mono);
  font-size: calc(10px * var(--wx-bp-scale));
  color: var(--wx-text-mute);
  letter-spacing: 0.06em;
}

/* Side panel — readout + slider */
.wx-bp__panel {
  background: var(--wx-panel);
  padding: 22px;
  display: flex; flex-direction: column; gap: 22px;
}
.wx-bp__readout {
  display: flex; flex-direction: column;
  gap: 0;
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  overflow: hidden;
}
.wx-bp__readout-row {
  display: flex; justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--wx-line);
  font-family: var(--wx-mono);
  font-size: 11.5px;
}
.wx-bp__readout-row:last-child { border-bottom: 0; }
.wx-bp__readout-key {
  color: var(--wx-text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}
.wx-bp__readout-val {
  color: var(--wx-text);
  font-feature-settings: 'tnum' 1;
}

.wx-bp__slider-wrap { display: flex; flex-direction: column; gap: 14px; }
.wx-bp__slider {
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right,
    var(--wx-blue) 0%,
    var(--wx-blue) calc(var(--wx-bp-pct, 70%)),
    var(--wx-line) calc(var(--wx-bp-pct, 70%)),
    var(--wx-line) 100%);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
.wx-bp__slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--wx-lime);
  border: 2px solid var(--wx-bg);
  cursor: grab;
  box-shadow: 0 0 0 1px var(--wx-blue);
  transition: transform 0.15s;
}
.wx-bp__slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.wx-bp__slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--wx-lime);
  border: 2px solid var(--wx-bg);
  cursor: grab;
  box-shadow: 0 0 0 1px var(--wx-blue);
}

.wx-bp__ticks {
  position: relative;
  height: 22px;
  font-family: var(--wx-mono);
  font-size: 9px;
  color: var(--wx-text-mute);
  letter-spacing: 0.06em;
}
.wx-bp__tick {
  position: absolute;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.wx-bp__tick-line {
  width: 1px; height: 4px;
  background: var(--wx-line-2);
}

.wx-bp__presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.wx-bp__preset {
  padding: 7px 8px;
  background: var(--wx-bg);
  border: 1px solid var(--wx-line);
  border-radius: 999px;
  color: var(--wx-text-mute);
  font-family: var(--wx-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.wx-bp__preset:hover { color: var(--wx-text); border-color: var(--wx-line-2); }
.wx-bp__preset.is-active {
  background: rgba(13, 110, 253, 0.18);
  color: var(--wx-blue-2);
  border-color: var(--wx-blue);
}

/* ============ PROCESS ============ */
.wx-process {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--wx-line);
}
.wx-process__head { margin-bottom: 50px; }
.wx-process__head h2 {
  font-family: var(--wx-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.wx-process__head h2 em { font-style: italic; color: var(--wx-lime); }
.wx-process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--wx-line);
  border: 1px solid var(--wx-line);
  border-radius: 6px; overflow: hidden;
}
.wx-process__steps li {
  background: var(--wx-bg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s;
}
.wx-process__steps li:hover { background: var(--wx-panel); }
.wx-process__week {
  font-family: var(--wx-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wx-blue-2);
}
.wx-process__steps h4 {
  font-family: var(--wx-serif);
  font-size: 22px; line-height: 1.15;
  font-weight: 400; margin: 0;
}
.wx-process__steps p {
  font-size: 13px; line-height: 1.55;
  color: var(--wx-text-dim); margin: 0;
}

/* ============ CTA OUTRO ============ */
.wx-cta {
  position: relative;
  padding: 120px 40px 100px;
  text-align: center;
  border-top: 1px solid var(--wx-line);
  overflow: hidden;
}
.wx-cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.6;
}
.wx-cta__rotor {
  position: relative; z-index: 1;
  width: clamp(280px, 40vw, 460px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.wx-cta__rotor svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: wxRotor 24s linear infinite;
}
@keyframes wxRotor {
  to { transform: rotate(360deg); }
}
.wx-cta__rotor .rotor-text {
  font-family: var(--wx-mono); font-size: 16px;
  letter-spacing: 0.18em; text-transform: uppercase;
  fill: var(--wx-text-dim);
}
.wx-cta__btn {
  position: relative; z-index: 2;
  display: inline-grid; place-items: center;
  width: clamp(120px, 16vw, 180px); aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--wx-lime); color: #0a0a0a;
  font-family: var(--wx-mono); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s, background .25s;
  box-shadow: 0 0 0 0 var(--wx-lime-glow);
}
.wx-cta__btn:hover {
  background: var(--wx-lime-2);
  box-shadow: 0 0 40px var(--wx-lime-glow);
}
.wx-cta__lines {
  position: relative; z-index: 1;
  margin-top: 24px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  font-family: var(--wx-mono); font-size: 11px;
  color: var(--wx-text-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .wx-cta__rotor svg { animation: none; }
  .wx-section { animation: none; }
  .wx-stage__velo-body .ln.is-new { animation: none; }
  .wx-hero__eyebrow .dot,
  .wx-statusbar__pulse,
  .wx-dock__pub { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .wx-stage__rig { grid-template-columns: 1fr; min-height: 0; }
  .wx-stage__palette {
    flex-direction: column;
    border-bottom: 1px solid var(--wx-line);
  }
  .wx-stage__palette-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .wx-stage__palette-list::-webkit-scrollbar { height: 6px; }
  .wx-stage__palette-list::-webkit-scrollbar-thumb { background: var(--wx-line-2); border-radius: 3px; }
  .wx-tile {
    flex: 0 0 auto;
    min-width: 180px;
    grid-template-columns: 14px 28px 1fr;
  }
  .wx-stage__palette-foot { display: none; }
  .wx-cap__grid { grid-template-columns: repeat(2, 1fr); }
  .wx-process__steps { grid-template-columns: repeat(2, 1fr); }
  .wx-intro__grid { grid-template-columns: repeat(2, 1fr); }
  .wx-vs__pairs { grid-template-columns: 1fr; }
  .wx-bp__rig { grid-template-columns: 1fr; min-height: 0; }
  .wx-bp__viewport { padding: 38px 20px 24px; }
  .wx-bp__site { height: 380px; }
  .wx-bp__panel { padding: 18px; }
}
@media (max-width: 720px) {
  .wx-hero { padding: 16px 20px 0; }
  .wx-intro, .wx-cap, .wx-stage, .wx-vs, .wx-bp, .wx-process { padding-left: 20px; padding-right: 20px; }
  .wx-cta { padding: 80px 20px 60px; }
  .wx-dock { display: none; }
  .wx-statusbar { gap: 16px; font-size: 9.5px; }
  .wx-hero__bottom { grid-template-columns: 1fr; gap: 24px; }
  .wx-hero__actions { justify-content: flex-start; }
  .wx-cap__grid { grid-template-columns: 1fr; }
  .wx-process__steps { grid-template-columns: 1fr; }
  .wx-intro__grid { grid-template-columns: 1fr 1fr; }
  .wx-vs-card { grid-template-columns: 1fr; }
  .wx-vs-card__bad { border-right: 0; border-bottom: 1px solid var(--wx-line); }
  .wx-bp__site { height: 320px; }
  .wx-bp__site-features { grid-template-columns: 1fr !important; }
  .wx-bp__site-foot { font-size: 9px; }
  .wx-stage__head h2 { font-size: clamp(36px, 9vw, 60px); }
  .wx-stage__canvas-wrap { padding: 14px; }
  .wx-stage__rulers { inset: 14px; }
  .wx-stage__sections { padding: 8px; }
  .wx-stage__velo { font-size: 10.5px; max-height: 180px; }
  .wx-stage__velo-body { padding: 10px 12px; }
  .wx-tile { min-width: 160px; padding: 8px 10px; }
  .wx-tile__lbl { font-size: 12px; }
  .wx-tile__sub { font-size: 9px; }
  .wx-section { padding: 14px 14px 14px 22px; }
  .wx-section__row.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .wx-stage__bar { padding: 8px 12px; }
  .wx-stage__bar-label { font-size: 9.5px; }
}
