:root {
  --qf-ink: #17181a;
  --qf-paper: #f6f6f3;
  --qf-paper-deep: #efefeb;
  --qf-blue: #1e3fe0;
  --qf-blue-soft: #93a6ee;
  --qf-muted: #6c6d70;
  --qf-rule: rgba(23, 24, 26, .14);
}

/* The retired three-step/recommendation/benchmark stack remains in the
   source for a reversible rollout, but no longer participates in layout. */
.qesora-signals-steps-field,
#benchmark {
  display: none !important;
}

.qesora-signal-strip-wrap {
  margin-top: clamp(-46px, -3vw, -20px) !important;
}

.qesora-signal-strip.qesora-feature-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  background: rgba(241, 241, 238, .97) !important;
  border-color: rgba(23, 24, 26, .2) !important;
  border-top: 1px solid var(--qf-ink) !important;
  overflow: hidden !important;
  border-radius: 3px 3px 0 0;
}

.qesora-feature-tab {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: start;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  padding: 22px 22px 21px;
  border: 0;
  border-right: 1px solid rgba(23, 24, 26, .09);
  background: transparent;
  color: var(--qf-ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  isolation: isolate;
  transition: background-color .42s cubic-bezier(.22, 1, .36, 1), color .3s ease;
}

.qesora-feature-tab:last-child {
  border-right: 0;
}

.qesora-feature-tab::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--qf-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.qesora-feature-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(30, 63, 224, .16) 1.1px, transparent 1.25px),
    linear-gradient(100deg, rgba(30, 63, 224, .08), transparent 56%);
  background-size: 8px 8px, 100% 100%;
  transition: opacity .42s ease;
}

.qesora-feature-tab:hover,
.qesora-feature-tab[aria-selected="true"] {
  background: rgba(255, 255, 255, .62);
}

.qesora-feature-tab[aria-selected="true"]::before {
  transform: scaleX(1);
}

.qesora-feature-tab[aria-selected="true"]::after {
  opacity: 1;
}

.qesora-feature-tab:focus-visible {
  outline: 2px solid var(--qf-blue);
  outline-offset: -3px;
}

.qesora-feature-tab__icon {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: block;
  align-self: center;
  opacity: .78;
  transition: opacity .3s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.qesora-feature-tab:hover .qesora-feature-tab__icon,
.qesora-feature-tab[aria-selected="true"] .qesora-feature-tab__icon {
  opacity: 1;
  transform: translateY(-2px);
}

.qesora-feature-tab__title {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.15;
}

.qesora-feature-tab__note {
  display: block;
  max-width: 25ch;
  color: #8a8b8e;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 8.5px;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.qesora-feature-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 clamp(72px, 8vw, 124px);
}

.qesora-feature-stage::before,
.qesora-feature-stage::after {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -80px;
  width: min(24vw, 340px);
  z-index: -2;
  opacity: .62;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(30, 63, 224, .28) 1.15px, transparent 1.3px),
    radial-gradient(ellipse at center, rgba(30, 63, 224, .13), transparent 68%);
  background-size: 8px 8px, 100% 100%;
  -webkit-mask-image: linear-gradient(180deg, #000 0, rgba(0, 0, 0, .76) 28%, rgba(0, 0, 0, .38) 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, rgba(0, 0, 0, .76) 28%, rgba(0, 0, 0, .38) 70%, transparent 100%);
}

.qesora-feature-stage::before {
  left: -7vw;
  transform: rotate(-4deg);
}

.qesora-feature-stage::after {
  right: -7vw;
  transform: rotate(5deg) scaleX(-1);
}

.qesora-feature-stage__field {
  position: absolute;
  inset: -90px 0 auto;
  height: 270px;
  z-index: -1;
  pointer-events: none;
  opacity: .38;
  -webkit-mask-image: linear-gradient(180deg, #000 0 18%, rgba(0, 0, 0, .58) 48%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 18%, rgba(0, 0, 0, .58) 48%, transparent 100%);
}

.qesora-feature-stage__shell {
  width: min(100% - clamp(40px, 8vw, 128px), 1240px);
  margin-inline: auto;
}

.qesora-feature-preview {
  border: 1px solid var(--qf-ink);
  border-top: 0;
  overflow: hidden;
  border-radius: 0 0 3px 3px;
  background: var(--qf-paper);
  box-shadow: 0 20px 60px -54px rgba(8, 16, 62, .7);
}

.qesora-feature-preview__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--qf-rule);
  background: rgba(251, 251, 249, .9);
  color: #8b8c8f;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 8.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-feature-preview__meta strong {
  color: var(--qf-ink);
  font-weight: 500;
}

.qesora-feature-preview__meta span:last-child {
  margin-left: auto;
  color: var(--qf-blue);
}

.qesora-feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.25;
  background: #101115;
}

.qesora-feature-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  filter: saturate(.72) contrast(1.08) brightness(.58) sepia(.08);
  transform: scale(1.015);
}

.qesora-feature-media__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 30, .64), transparent 38%, rgba(9, 12, 30, .28)),
    linear-gradient(180deg, transparent 45%, rgba(5, 8, 22, .74) 100%);
  pointer-events: none;
}

.qesora-feature-media__topline {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-feature-media__topline span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(10, 12, 24, .54);
}

.qesora-feature-media__topline b {
  margin-left: auto;
  color: #b9c6ff;
  font-weight: 400;
}

.qesora-feature-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: rgba(30, 63, 224, .88);
  color: #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(4, 10, 42, .42);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .3s ease;
}

.qesora-feature-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #1737d8;
}

.qesora-feature-play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.qesora-feature-play svg {
  margin-left: 3px;
}

.qesora-feature-play__pause {
  display: block;
  margin-left: 0 !important;
}

.qesora-feature-play__start {
  display: none;
}

.qesora-feature-play[data-paused="true"] .qesora-feature-play__pause {
  display: none;
}

.qesora-feature-play[data-paused="true"] .qesora-feature-play__start {
  display: block;
}

.qesora-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.qesora-feature-overlay__marker {
  position: absolute;
  left: 63%;
  top: 42%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--qf-blue);
  color: #fff;
  font: 500 10px/1 'Geist Mono', ui-monospace, monospace;
  box-shadow: 0 0 0 7px rgba(30, 63, 224, .16);
}

.qesora-feature-overlay__callout {
  position: absolute;
  left: calc(63% + 40px);
  top: calc(42% - 3px);
  max-width: 210px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(8, 10, 23, .72);
  color: #fff;
  font: 10px/1.45 'Geist Mono', ui-monospace, monospace;
}

.qesora-feature-overlay__split {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 18px rgba(30, 63, 224, .7);
}

.qesora-feature-overlay__split::before,
.qesora-feature-overlay__split::after {
  position: absolute;
  top: 18px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(8, 10, 23, .7);
  color: #fff;
  font: 9px/1 'Geist Mono', ui-monospace, monospace;
}

.qesora-feature-overlay__split::before {
  content: "A";
  right: 11px;
}

.qesora-feature-overlay__split::after {
  content: "B";
  left: 11px;
  color: #bdc8ff;
}

.qesora-feature-overlay__percentile {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 24px;
  height: 10px;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 3px;
}

.qesora-feature-overlay__percentile i {
  display: block;
  background: rgba(255, 255, 255, .2);
}

.qesora-feature-overlay__percentile i:nth-child(-n+16) {
  background: rgba(118, 144, 255, .78);
}

.qesora-feature-overlay__percentile i:nth-child(17) {
  height: 24px;
  margin-top: -14px;
  background: #fff;
}

.qesora-feature-overlay__traces {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 18px;
  height: 92px;
  display: grid;
  gap: 9px;
  align-content: end;
}

.qesora-feature-overlay__traces i {
  position: relative;
  display: block;
  height: 1px;
  background: rgba(174, 191, 255, .72);
  transform-origin: left;
}

.qesora-feature-overlay__traces i::after {
  content: "";
  position: absolute;
  left: 13%;
  width: 28%;
  top: -5px;
  height: 9px;
  border-top: 1px solid #fff;
  transform: skewY(-8deg);
}

.qesora-feature-media[data-mode="ab"] .qesora-feature-overlay__marker,
.qesora-feature-media[data-mode="ab"] .qesora-feature-overlay__callout,
.qesora-feature-media[data-mode="ab"] .qesora-feature-overlay__percentile,
.qesora-feature-media[data-mode="ab"] .qesora-feature-overlay__traces,
.qesora-feature-media[data-mode="insights"] .qesora-feature-overlay__split,
.qesora-feature-media[data-mode="insights"] .qesora-feature-overlay__percentile,
.qesora-feature-media[data-mode="insights"] .qesora-feature-overlay__traces,
.qesora-feature-media[data-mode="benchmark"] .qesora-feature-overlay__marker,
.qesora-feature-media[data-mode="benchmark"] .qesora-feature-overlay__callout,
.qesora-feature-media[data-mode="benchmark"] .qesora-feature-overlay__split,
.qesora-feature-media[data-mode="benchmark"] .qesora-feature-overlay__traces,
.qesora-feature-media[data-mode="moments"] .qesora-feature-overlay__split,
.qesora-feature-media[data-mode="moments"] .qesora-feature-overlay__percentile {
  display: none;
}

.qesora-feature-caption {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--qf-rule);
}

.qesora-feature-caption__lead,
.qesora-feature-caption__detail {
  min-width: 0;
  padding: clamp(20px, 2.3vw, 30px);
}

.qesora-feature-caption__lead {
  border-right: 1px solid var(--qf-rule);
}

.qesora-feature-caption__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--qf-blue);
  font: 500 9px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.qesora-feature-caption h2 {
  max-width: 19ch;
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.03;
}

.qesora-feature-caption__detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(240px, 1.05fr);
  align-content: center;
  align-items: center;
  gap: clamp(18px, 2.3vw, 30px);
}

.qesora-feature-caption__detail p {
  max-width: 58ch;
  margin: 0;
  color: var(--qf-muted);
  font-size: 14px;
  line-height: 1.65;
}

.qesora-feature-readout {
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid var(--qf-rule);
}

.qesora-feature-readout span {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding: 6px 0 6px 14px;
  border-bottom: 1px solid rgba(23, 24, 26, .08);
  color: #8b8c8f;
  font: 9px/1.45 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qesora-feature-readout b {
  display: block;
  margin-top: 0;
  color: var(--qf-ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.qesora-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--qf-blue);
  font: 500 9px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.qesora-section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--qf-blue);
}

.qesora-kpi-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 122px) 0;
}

.qesora-kpi-section__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 26% 74%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 26% 74%, #000);
}

.qesora-kpi-section__inner,
.qesora-neuma-section__inner {
  width: min(100% - clamp(40px, 8vw, 128px), 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.qesora-kpi-section__inner--pipeline {
  display: block;
}

.qesora-kpi-section__intro {
  max-width: 880px;
  margin: 0 auto clamp(42px, 5vw, 72px);
  text-align: center;
}

.qesora-kpi-section__intro h2 {
  margin: 17px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.qesora-kpi-section__intro p {
  max-width: 68ch;
  margin: 18px auto 0;
  color: var(--qf-muted);
  font-size: 14px;
  line-height: 1.65;
}

.qesora-response-pipeline {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 32px minmax(210px, .78fr) 32px minmax(390px, 1.34fr);
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
}

.qesora-response-pipeline article > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #8b8c8f;
  font: 8px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-response-pipeline article > header b {
  color: var(--qf-blue);
  font-weight: 500;
}

.qesora-pipeline-creative__frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  border: 1px solid var(--qf-ink);
  background: #0d1420;
  color: #fff;
}

.qesora-pipeline-creative__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 8, 18, .72), transparent 55%), linear-gradient(180deg, transparent 62%, rgba(2, 6, 15, .5));
  pointer-events: none;
}

.qesora-pipeline-creative__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.qesora-pipeline-creative__frame > span {
  position: absolute;
  top: 18%;
  left: 7%;
  z-index: 2;
  max-width: 10ch;
  font: 500 clamp(13px, 1.35vw, 19px)/1.08 'Geist', sans-serif;
  letter-spacing: -.02em;
}

.qesora-pipeline-creative__frame > small {
  position: absolute;
  left: 7%;
  bottom: 7%;
  z-index: 2;
  color: rgba(255, 255, 255, .7);
  font: 7px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-pipeline-arrow {
  display: grid;
  place-items: center;
  color: var(--qf-ink);
  font: 300 24px/1 'Fraunces', Georgia, serif;
}

.qesora-model-particles {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.qesora-model-particles__head {
  position: absolute;
  inset: 7%;
  z-index: 2;
  background-color: transparent;
  background-image: radial-gradient(circle at 1.35px 1.35px, #1e3fe0 1.25px, transparent 1.38px);
  background-size: 4.4px 4.4px;
  -webkit-mask: url("/product-release-20260918/assets/qesora-hero-static-head-approved.png") center / contain no-repeat;
  mask: url("/product-release-20260918/assets/qesora-hero-static-head-approved.png") center / contain no-repeat;
  filter: contrast(1.1);
}

.qesora-model-particles__field {
  position: absolute;
  inset: -4%;
  z-index: 1;
  opacity: .28;
  -webkit-mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.qesora-model-particles > i {
  position: absolute;
  z-index: 3;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(30, 63, 224, .14);
  border-radius: 50%;
}

.qesora-model-particles > i:nth-of-type(2) { width: 52%; border-style: dashed; }
.qesora-model-particles > i:nth-of-type(3) { width: 34%; }

.qesora-model-particles > small {
  position: absolute;
  left: 50%;
  bottom: 5%;
  z-index: 4;
  color: var(--qf-blue);
  font: 7px/1.3 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.qesora-pipeline-responses {
  min-width: 0;
}

.qesora-pipeline-response {
  display: grid;
  grid-template-columns: 28px minmax(140px, 1fr) minmax(110px, .72fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0 8px 0 6px;
  border: 0;
  border-bottom: 1px solid var(--qf-rule);
  border-left: 2px solid transparent;
  background: transparent;
  color: var(--qf-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color .35s ease, border-color .35s ease;
}

.qesora-pipeline-response:hover,
.qesora-pipeline-response[aria-selected="true"] {
  border-left-color: var(--qf-blue);
  background: linear-gradient(90deg, rgba(30, 63, 224, .07), transparent 78%);
}

.qesora-pipeline-response:focus-visible {
  outline: 1px solid var(--qf-blue);
  outline-offset: -2px;
}

.qesora-pipeline-response > i {
  width: 26px;
  height: 26px;
  display: block;
}

.qesora-pipeline-response > i canvas {
  width: 100%;
  height: 100%;
}

.qesora-pipeline-response svg {
  width: 100%;
  height: 42px;
  overflow: visible;
  cursor: pointer;
}

.qesora-pipeline-response svg path,
.qesora-pipeline-response svg line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.qesora-pipeline-response svg path {
  stroke: var(--qf-blue);
  stroke-width: 1.25;
  transition: stroke-width .3s ease, opacity .3s ease;
}

.qesora-pipeline-response:hover svg path,
.qesora-pipeline-response[aria-selected="true"] svg path {
  stroke-width: 1.85;
}

.qesora-pipeline-response svg line {
  stroke: #f0a23a;
  stroke-width: 1;
  stroke-dasharray: 2 2;
}

.qesora-pipeline-response > span strong,
.qesora-pipeline-response > span small {
  display: block;
}

.qesora-pipeline-response > span strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
}

.qesora-pipeline-response > span small {
  margin-top: 3px;
  color: #8b8c8f;
  font-size: 9px;
  line-height: 1.3;
}

.qesora-kpi-explanation {
  margin-top: clamp(40px, 5vw, 66px);
  border: 1px solid var(--qf-ink);
  background: rgba(248, 248, 245, .9);
  box-shadow: 18px 22px 0 rgba(30, 63, 224, .055);
}

.qesora-kpi-explanation > header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  padding: 8px 13px;
  border-bottom: 1px solid var(--qf-ink);
  color: #8b8c8f;
  font: 8px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-kpi-explanation > header span,
.qesora-kpi-explanation > header i {
  color: var(--qf-blue);
  font-style: normal;
}

.qesora-kpi-explanation > header b {
  font-weight: 400;
}

.qesora-kpi-explanation > header i {
  text-align: right;
}

.qesora-kpi-explanation__grid {
  display: grid;
  grid-template-columns: minmax(210px, .92fr) minmax(240px, 1.08fr) minmax(220px, 1fr) minmax(220px, 1fr);
}

.qesora-kpi-explanation__grid > div {
  min-width: 0;
  padding: clamp(22px, 2.6vw, 34px);
  border-right: 1px solid var(--qf-rule);
}

.qesora-kpi-explanation__grid > div:last-child {
  border-right: 0;
}

.qesora-kpi-explanation__grid small {
  display: block;
  color: #8b8c8f;
  font: 8px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-kpi-explanation__grid small b {
  color: var(--qf-blue);
  font-weight: 500;
}

.qesora-kpi-explanation__title h3 {
  margin: 15px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.qesora-kpi-explanation__title p,
.qesora-kpi-explanation__measure p {
  margin: 13px 0 0;
  color: var(--qf-muted);
  font-size: 12px;
  line-height: 1.55;
}

.qesora-kpi-explanation__finding strong,
.qesora-kpi-explanation__decision strong {
  display: block;
  margin-top: 15px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.18;
}

.qesora-kpi-explanation__decision {
  background: rgba(30, 63, 224, .055);
}

.qesora-kpi-explanation__decision strong {
  color: var(--qf-blue);
}

.qesora-pipeline-footnote {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: clamp(34px, 4vw, 56px);
  padding-block: 12px;
  border-block: 1px solid var(--qf-rule);
  color: #8b8c8f;
  font: 8px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-pipeline-footnote i {
  height: 1px;
  background: var(--qf-rule);
}

.qesora-pipeline-footnote b {
  color: var(--qf-blue);
  font-weight: 500;
}

/* NeuMa signal chain — the model is read as one continuous instrument. */
.qesora-kpi-section__intro {
  max-width: 980px;
  margin-bottom: clamp(52px, 6vw, 86px);
}

.qesora-kpi-section__intro h2 {
  margin-top: 0;
}

.qesora-response-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .92fr) 58px minmax(210px, .76fr) 58px minmax(440px, 1.52fr);
  gap: clamp(10px, 1.35vw, 20px);
  align-items: center;
}

.qesora-pipeline-creative {
  position: relative;
  padding: 10px;
  border: 1px solid var(--qf-ink);
  background: rgba(248, 248, 245, .94);
  box-shadow: 11px 13px 0 rgba(30, 63, 224, .055);
}

.qesora-pipeline-creative__frame {
  aspect-ratio: 16 / 11.4;
  border: 0;
}

.qesora-pipeline-creative__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .3) .7px, transparent .8px);
  background-size: 5px 5px;
  opacity: .22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 52%);
  mask-image: linear-gradient(90deg, #000, transparent 52%);
}

.qesora-pipeline-creative__frame > span {
  z-index: 3;
}

.qesora-pipeline-creative__frame > small {
  z-index: 3;
}

.qesora-pipeline-creative__corner {
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 4;
  width: 23px;
  height: 23px;
  border-right: 1px solid rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .7);
}

.qesora-pipeline-arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 58px;
  color: transparent;
}

.qesora-pipeline-arrow::before,
.qesora-pipeline-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: transparent;
  background-image: radial-gradient(circle at 1.3px 1.3px, var(--qf-blue) 1.05px, transparent 1.18px);
  background-size: 5px 5px;
  image-rendering: pixelated;
}

.qesora-pipeline-arrow::before {
  left: 0;
  right: 12px;
  height: 25px;
  transform: translateY(-50%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20% 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 20% 82%, transparent);
  animation: qesora-neural-flow 2.8s ease-in-out infinite;
}

.qesora-pipeline-arrow::after {
  right: 0;
  width: 27px;
  height: 38px;
  transform: translateY(-50%);
  clip-path: polygon(0 9%, 100% 50%, 0 91%, 31% 50%);
}

@keyframes qesora-neural-flow {
  0%, 100% { opacity: .28; transform: translateY(-50%) translateX(-3px); }
  50% { opacity: .92; transform: translateY(-50%) translateX(4px); }
}

.qesora-pipeline-model {
  position: relative;
  padding: 9px;
  border: 1px solid var(--qf-ink);
  background: rgba(248, 248, 245, .94);
  box-shadow: 9px 11px 0 rgba(30, 63, 224, .045);
}

.qesora-model-particles {
  aspect-ratio: 1;
  border: 1px solid rgba(23, 24, 26, .16);
  background:
    linear-gradient(90deg, transparent 49.75%, rgba(30, 63, 224, .11) 50%, transparent 50.25%),
    linear-gradient(180deg, transparent 49.75%, rgba(30, 63, 224, .11) 50%, transparent 50.25%),
    radial-gradient(circle, rgba(30, 63, 224, .07), transparent 62%),
    #f4f4f1;
}

.qesora-model-particles::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 10%;
  z-index: 5;
  height: 1px;
  background: #f0a23a;
  box-shadow: 0 0 12px rgba(240, 162, 58, .8);
  opacity: .8;
  animation: qesora-neuma-scan 4.6s cubic-bezier(.65, 0, .35, 1) infinite;
}

.qesora-model-particles::after {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: 1;
  border: 1px solid rgba(30, 63, 224, .09);
  transform: rotate(45deg) scale(.66);
}

@keyframes qesora-neuma-scan {
  0%, 12% { top: 10%; opacity: 0; }
  20% { opacity: .85; }
  80% { opacity: .85; }
  88%, 100% { top: 88%; opacity: 0; }
}

.qesora-model-particles__head {
  inset: 10%;
  z-index: 3;
  background-image: radial-gradient(circle at 1.2px 1.2px, #1e3fe0 1.05px, transparent 1.2px);
  background-size: 4px 4px;
  filter: contrast(1.16);
}

.qesora-model-particles__field {
  inset: -11%;
  opacity: .38;
}

.qesora-model-particles > i {
  z-index: 4;
  border-color: rgba(30, 63, 224, .2);
  animation: qesora-neuma-orbit 9s linear infinite;
}

.qesora-model-particles > i:nth-of-type(2) {
  animation-direction: reverse;
  animation-duration: 12s;
}

.qesora-model-particles > i:nth-of-type(3) {
  animation-duration: 7s;
}

@keyframes qesora-neuma-orbit {
  to { transform: rotate(360deg); }
}

.qesora-model-particles > b {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  padding: 7px 10px 6px;
  border: 1px solid var(--qf-blue);
  background: rgba(246, 246, 243, .9);
  color: var(--qf-blue);
  font: 500 9px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  box-shadow: 5px 6px 0 rgba(30, 63, 224, .1);
}

.qesora-model-particles > small {
  left: 50%;
  bottom: 7%;
  z-index: 7;
  padding: 4px 6px;
  background: rgba(246, 246, 243, .78);
}

.qesora-pipeline-responses {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-width: 0;
  border: 1px solid var(--qf-ink);
  background: var(--qf-ink);
  box-shadow: 13px 15px 0 rgba(30, 63, 224, .055);
}

.qesora-pipeline-response {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "head head"
    "title title"
    "wave wave"
    "read read";
  gap: 0;
  align-content: start;
  min-height: 198px;
  padding: 16px 17px 0;
  border: 0;
  background: var(--qf-paper);
  color: var(--qf-ink);
  transition: color .34s ease, transform .45s cubic-bezier(.22, 1, .36, 1), background-color .34s ease;
}

.qesora-pipeline-response::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .29) .78px, transparent .9px);
  background-size: 5px 5px;
  transition: opacity .4s ease;
}

.qesora-pipeline-response:hover,
.qesora-pipeline-response[aria-selected="true"] {
  border-left-color: transparent;
  background: var(--qf-paper);
  color: #fff;
  transform: translateY(-3px);
}

.qesora-pipeline-response:hover::before,
.qesora-pipeline-response[aria-selected="true"]::before {
  opacity: 1;
}

.qesora-pipeline-response:focus-visible {
  z-index: 5;
  outline: 2px solid #f0a23a;
  outline-offset: -4px;
}

.qesora-pipeline-response__head {
  grid-area: head;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.qesora-pipeline-response__head > i {
  width: 30px;
  height: 30px;
  display: block;
}

.qesora-pipeline-response__head > i canvas {
  width: 100%;
  height: 100%;
  transition: filter .35s ease;
}

.qesora-pipeline-response:hover .qesora-pipeline-response__head > i canvas,
.qesora-pipeline-response[aria-selected="true"] .qesora-pipeline-response__head > i canvas {
  filter: brightness(0) invert(1);
}

.qesora-pipeline-response__head > b {
  color: var(--qf-blue);
  font: 500 8px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
}

.qesora-pipeline-response:hover .qesora-pipeline-response__head > b,
.qesora-pipeline-response[aria-selected="true"] .qesora-pipeline-response__head > b {
  color: rgba(255, 255, 255, .76);
}

.qesora-pipeline-response__title {
  grid-area: title;
  margin-top: 13px;
}

.qesora-pipeline-response__title strong,
.qesora-pipeline-response__title small {
  display: block;
}

.qesora-pipeline-response__title strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.02;
}

.qesora-pipeline-response__title small {
  margin-top: 5px;
  color: #8b8c8f;
  font-size: 9px;
  line-height: 1.3;
}

.qesora-pipeline-response:hover .qesora-pipeline-response__title small,
.qesora-pipeline-response[aria-selected="true"] .qesora-pipeline-response__title small {
  color: rgba(255, 255, 255, .7);
}

.qesora-pipeline-response > svg {
  grid-area: wave;
  width: 100%;
  height: 43px;
  margin-top: 10px;
}

.qesora-pipeline-response > svg path {
  stroke-width: 1.45;
}

.qesora-pipeline-response:hover > svg path,
.qesora-pipeline-response[aria-selected="true"] > svg path {
  stroke: #fff;
  stroke-width: 1.6;
}

.qesora-pipeline-response__read {
  grid-area: read;
  align-self: end;
  display: grid;
  gap: 4px;
  min-height: 51px;
  margin: 8px -17px 0;
  padding: 10px 17px 11px;
  border-top: 1px solid rgba(23, 24, 26, .12);
  background: rgba(23, 24, 26, .025);
}

.qesora-pipeline-response__read small {
  color: #9a9b9e;
  font: 7px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-pipeline-response__read b {
  color: inherit;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.28;
}

.qesora-pipeline-response:hover .qesora-pipeline-response__read,
.qesora-pipeline-response[aria-selected="true"] .qesora-pipeline-response__read {
  border-top-color: rgba(255, 255, 255, .3);
  background: rgba(7, 17, 75, .12);
}

.qesora-pipeline-response:hover .qesora-pipeline-response__read small,
.qesora-pipeline-response[aria-selected="true"] .qesora-pipeline-response__read small {
  color: rgba(255, 255, 255, .68);
}

.qesora-pipeline-footnote {
  margin-top: clamp(46px, 5vw, 68px);
}

.qesora-kpi-guide {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 88px;
  padding: clamp(82px, 9vw, 140px) 0;
  border-top: 1px solid var(--qf-rule);
  background: rgba(239, 239, 235, .6);
}

.qesora-kpi-guide__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  opacity: .18;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 23% 77%, #000 100%), linear-gradient(180deg, transparent 0, #000 18% 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, #000 0, transparent 23% 77%, #000 100%), linear-gradient(180deg, transparent 0, #000 18% 82%, transparent 100%);
  mask-composite: intersect;
}

.qesora-kpi-guide__inner {
  width: min(100% - clamp(40px, 8vw, 128px), 1240px);
  margin-inline: auto;
}

.qesora-kpi-guide__intro {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(340px, 1.08fr);
  gap: clamp(50px, 8vw, 126px);
  align-items: end;
  margin-bottom: clamp(42px, 5.2vw, 76px);
}

.qesora-kpi-guide__intro h2 {
  max-width: 13ch;
  margin: 18px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 300;
  letter-spacing: -.038em;
  line-height: .99;
}

.qesora-kpi-guide__intro p {
  max-width: 58ch;
  margin: 0;
  color: var(--qf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.qesora-kpi-guide__intro p em {
  color: var(--qf-ink);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.08em;
  font-weight: 400;
}

.qesora-kpi-guide__intro a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--qf-blue);
  font-size: 13px;
  font-weight: 500;
}

.qesora-kpi-guide__intro a span {
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.qesora-kpi-guide__intro a:hover span {
  transform: translateX(4px);
}

.qesora-kpi-guide__shell {
  display: grid;
  grid-template-columns: minmax(230px, .62fr) minmax(0, 1.72fr);
  border: 1px solid var(--qf-ink);
  background: rgba(248, 248, 245, .96);
  box-shadow: 20px 24px 0 rgba(30, 63, 224, .05);
}

.qesora-kpi-guide__rail {
  display: grid;
  grid-template-rows: repeat(4, minmax(108px, 1fr));
  border-right: 1px solid var(--qf-ink);
}

.qesora-kpi-guide__rail button {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px 18px;
  border: 0;
  border-bottom: 1px solid var(--qf-rule);
  background: transparent;
  color: var(--qf-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}

.qesora-kpi-guide__rail button:last-child {
  border-bottom: 0;
}

.qesora-kpi-guide__rail button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .32) .8px, transparent .9px);
  background-size: 5px 5px;
  transition: opacity .35s ease;
}

.qesora-kpi-guide__rail button:hover {
  background: rgba(30, 63, 224, .055);
}

.qesora-kpi-guide__rail button[aria-selected="true"] {
  color: #fff;
}

.qesora-kpi-guide__rail button[aria-selected="true"]::after {
  opacity: 1;
}

.qesora-kpi-guide__rail button:focus-visible {
  outline: 2px solid #f0a23a;
  outline-offset: -3px;
}

.qesora-kpi-guide__rail button > i {
  align-self: start;
  padding-top: 3px;
  color: var(--qf-blue);
  font: normal 8px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .1em;
}

.qesora-kpi-guide__rail button[aria-selected="true"] > i {
  color: rgba(255, 255, 255, .75);
}

.qesora-kpi-guide__rail button span strong,
.qesora-kpi-guide__rail button span small {
  display: block;
}

.qesora-kpi-guide__rail button span strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.08;
}

.qesora-kpi-guide__rail button span small {
  margin-top: 7px;
  color: #8b8c8f;
  font-size: 10px;
  line-height: 1.4;
}

.qesora-kpi-guide__rail button[aria-selected="true"] span small {
  color: rgba(255, 255, 255, .72);
}

.qesora-kpi-guide__rail button > b {
  color: var(--qf-blue);
  font-size: 14px;
  font-weight: 400;
  transform: translate(-3px, 3px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
}

.qesora-kpi-guide__rail button[aria-selected="true"] > b {
  color: #fff;
  transform: translate(0, 0);
  opacity: 1;
}

.qesora-kpi-guide__panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}

.qesora-kpi-guide__panel > header {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--qf-rule);
  color: #8b8c8f;
  font: 8px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-kpi-guide__panel > header span,
.qesora-kpi-guide__panel > header b {
  color: var(--qf-blue);
}

.qesora-kpi-guide__panel > header b {
  font-weight: 500;
}

.qesora-kpi-guide__panel > header i {
  font-style: normal;
  text-align: right;
}

.qesora-kpi-guide__lead {
  display: grid;
  grid-template-columns: minmax(230px, .95fr) minmax(250px, 1.05fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  padding: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid var(--qf-rule);
}

.qesora-kpi-guide__lead small,
.qesora-kpi-guide__facts small,
.qesora-kpi-guide__timeline-meta {
  color: #8b8c8f;
  font: 8px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-kpi-guide__lead h3 {
  margin: 12px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -.038em;
  line-height: .96;
}

.qesora-kpi-guide__lead p {
  max-width: 38ch;
  margin: 0;
  color: var(--qf-muted);
  font-size: 14px;
  line-height: 1.62;
}

.qesora-kpi-guide__timeline {
  padding: 22px clamp(24px, 4vw, 52px) 18px;
  border-bottom: 1px solid var(--qf-rule);
  background: linear-gradient(180deg, rgba(30, 63, 224, .026), transparent 72%);
}

.qesora-kpi-guide__timeline-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.qesora-kpi-guide__timeline-meta b {
  color: var(--qf-ink);
  font-weight: 400;
}

.qesora-kpi-guide__timeline-meta i {
  color: var(--qf-blue);
  font-style: normal;
}

.qesora-kpi-guide__timeline svg {
  width: 100%;
  height: 108px;
  margin-top: 9px;
  overflow: visible;
  cursor: ew-resize;
  touch-action: none;
}

.qesora-kpi-guide__timeline svg:focus-visible {
  outline: 1px solid var(--qf-blue);
  outline-offset: 5px;
}

.qesora-kpi-guide__timeline svg path,
.qesora-kpi-guide__timeline svg line,
.qesora-kpi-guide__timeline svg circle {
  vector-effect: non-scaling-stroke;
}

.qesora-kpi-guide__baseline {
  fill: none;
  stroke: rgba(23, 24, 26, .14);
  stroke-width: 1;
}

.qesora-kpi-guide__timeline [data-kpi-guide-wave] {
  fill: none;
  stroke: var(--qf-blue);
  stroke-width: 1.7;
  transition: d .45s cubic-bezier(.22, 1, .36, 1);
}

.qesora-kpi-guide__timeline [data-kpi-guide-cursor] {
  stroke: #f0a23a;
  stroke-width: 1;
  stroke-dasharray: 3 3;
}

.qesora-kpi-guide__timeline [data-kpi-guide-point] {
  fill: #f0a23a;
  stroke: var(--qf-paper);
  stroke-width: 2;
}

.qesora-kpi-guide__axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #9a9b9e;
  font: 7.5px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qesora-kpi-guide__axis span:not(:first-child):not(:last-child) {
  text-align: center;
}

.qesora-kpi-guide__axis span:last-child {
  text-align: right;
}

.qesora-kpi-guide__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qesora-kpi-guide__facts > div {
  min-width: 0;
  min-height: 154px;
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid var(--qf-rule);
  border-bottom: 1px solid var(--qf-rule);
}

.qesora-kpi-guide__facts > div:nth-child(2n) {
  border-right: 0;
}

.qesora-kpi-guide__facts > div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.qesora-kpi-guide__facts p,
.qesora-kpi-guide__facts strong {
  display: block;
  margin: 14px 0 0;
  line-height: 1.5;
}

.qesora-kpi-guide__facts p {
  color: var(--qf-muted);
  font-size: 12px;
}

.qesora-kpi-guide__facts strong {
  max-width: 32ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.18;
}

.qesora-kpi-guide__decision {
  background: rgba(30, 63, 224, .05);
}

.qesora-kpi-guide__decision strong {
  color: var(--qf-blue);
}

/* Response atlas — four synchronized signals, one inspectable moment. */
.qesora-kpi-guide.qesora-response-atlas {
  border-block: 1px solid #05060a;
  background:
    radial-gradient(circle at 50% 44%, rgba(30, 63, 224, .12), transparent 42%),
    linear-gradient(180deg, #0b0d13, #10131c 58%, #090b11);
  color: #f6f6f3;
}

.qesora-response-atlas .qesora-kpi-guide__field {
  opacity: .42;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 18% 82%, #000 100%), linear-gradient(180deg, transparent 0, #000 12% 88%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, transparent 18% 82%, #000 100%), linear-gradient(180deg, transparent 0, #000 12% 88%, transparent 100%);
}

.qesora-response-atlas .qesora-kpi-guide__intro {
  position: relative;
  z-index: 1;
  align-items: end;
}

.qesora-response-atlas .qesora-section-eyebrow {
  color: #8fa5ff;
}

.qesora-response-atlas .qesora-kpi-guide__intro h2 {
  max-width: 12ch;
  color: #f6f6f3;
}

.qesora-response-atlas .qesora-kpi-guide__intro p {
  color: rgba(246, 246, 243, .62);
}

.qesora-response-atlas .qesora-kpi-guide__intro p em {
  color: #fff;
}

.qesora-response-atlas .qesora-kpi-guide__intro a {
  color: #8fa5ff;
}

.qesora-kpi-atlas {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .62fr);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .58);
  background: #090b11;
  box-shadow: 24px 28px 0 rgba(30, 63, 224, .16);
}

.qesora-kpi-atlas__stage {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, .42);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    #10131c;
  background-size: 24px 24px;
}

.qesora-kpi-atlas__stage > header {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 22px;
  min-height: 42px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .42);
  font: 8px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-kpi-atlas__stage > header span {
  color: #fff;
}

.qesora-kpi-atlas__stage > header b {
  color: #8fa5ff;
  font-weight: 500;
}

.qesora-kpi-atlas__stage > header i {
  font-style: normal;
  text-align: right;
}

.qesora-kpi-atlas__tracks {
  min-width: 0;
}

.qesora-kpi-atlas__row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 178px minmax(250px, 1fr) minmax(150px, .62fr);
  align-items: stretch;
  min-height: 116px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: background-color .4s ease;
}

.qesora-kpi-atlas__row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, rgba(30, 63, 224, .2), rgba(30, 63, 224, .055) 56%, transparent);
  transition: opacity .4s ease;
}

.qesora-kpi-atlas__row:hover::before,
.qesora-kpi-atlas__row:has(button[aria-selected="true"])::before {
  opacity: 1;
}

.qesora-kpi-atlas__row > button {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 18px 15px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .13);
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.qesora-kpi-atlas__row > button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .25) .75px, transparent .9px);
  background-size: 5px 5px;
  transition: opacity .35s ease;
}

.qesora-kpi-atlas__row > button[aria-selected="true"]::before {
  opacity: .92;
}

.qesora-kpi-atlas__row > button:focus-visible {
  outline: 2px solid #f0a23a;
  outline-offset: -3px;
}

.qesora-kpi-atlas__row > button > i {
  align-self: start;
  padding-top: 3px;
  color: #8fa5ff;
  font: normal 8px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
}

.qesora-kpi-atlas__row > button[aria-selected="true"] > i {
  color: rgba(255, 255, 255, .7);
}

.qesora-kpi-atlas__row > button span strong,
.qesora-kpi-atlas__row > button span small {
  display: block;
}

.qesora-kpi-atlas__row > button span strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.08;
}

.qesora-kpi-atlas__row > button span small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  line-height: 1.4;
}

.qesora-kpi-atlas__row > button[aria-selected="true"] span small {
  color: rgba(255, 255, 255, .7);
}

.qesora-kpi-atlas__row > svg {
  align-self: center;
  width: calc(100% - 32px);
  height: 76px;
  margin-inline: 16px;
  overflow: visible;
  cursor: ew-resize;
  touch-action: none;
}

.qesora-kpi-atlas__row > svg:focus-visible {
  outline: 1px solid #f0a23a;
  outline-offset: 4px;
}

.qesora-kpi-atlas__row > svg path,
.qesora-kpi-atlas__row > svg line,
.qesora-kpi-atlas__row > svg circle {
  vector-effect: non-scaling-stroke;
}

.qesora-kpi-atlas__baseline {
  fill: none;
  stroke: rgba(255, 255, 255, .12);
  stroke-width: 1;
}

.qesora-kpi-atlas__row [data-atlas-wave] {
  fill: none;
  stroke: #667fdc;
  stroke-width: 1.45;
  transition: stroke .35s ease, stroke-width .35s ease;
}

.qesora-kpi-atlas__row:hover [data-atlas-wave],
.qesora-kpi-atlas__row:has(button[aria-selected="true"]) [data-atlas-wave] {
  stroke: #fff;
  stroke-width: 1.8;
}

.qesora-kpi-atlas__row [data-atlas-cursor] {
  stroke: #f0a23a;
  stroke-width: 1;
  stroke-dasharray: 3 3;
}

.qesora-kpi-atlas__row [data-atlas-point] {
  fill: #f0a23a;
  stroke: #10131c;
  stroke-width: 2;
  opacity: .42;
  transition: opacity .35s ease, r .35s ease;
}

.qesora-kpi-atlas__row:hover [data-atlas-point],
.qesora-kpi-atlas__row:has(button[aria-selected="true"]) [data-atlas-point] {
  opacity: 1;
  r: 4.5px;
}

.qesora-kpi-atlas__read {
  display: grid;
  align-content: center;
  padding: 16px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.45;
  transition: color .35s ease;
}

.qesora-kpi-atlas__row:hover .qesora-kpi-atlas__read,
.qesora-kpi-atlas__row:has(button[aria-selected="true"]) .qesora-kpi-atlas__read {
  color: #fff;
}

.qesora-kpi-atlas__axis {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px 9px 194px;
  color: rgba(255, 255, 255, .3);
  font: 7.5px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qesora-kpi-atlas__axis span:not(:first-child) {
  text-align: center;
}

.qesora-kpi-atlas__axis b {
  min-width: 58px;
  color: #f0a23a;
  font-weight: 500;
  text-align: right;
}

.qesora-response-atlas .qesora-kpi-guide__panel.qesora-kpi-atlas__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  background: #f4f4f0;
  color: var(--qf-ink);
}

.qesora-kpi-atlas__panel::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -18%;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .13;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, #fff .75px, transparent .9px);
  background-size: 5px 5px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.qesora-response-atlas .qesora-kpi-atlas__panel > header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--qf-rule);
  color: #8b8c8f;
  font: 8px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-response-atlas .qesora-kpi-atlas__panel > header span,
.qesora-response-atlas .qesora-kpi-atlas__panel > header b {
  color: var(--qf-blue);
}

.qesora-response-atlas .qesora-kpi-atlas__panel > header b {
  font-weight: 500;
  text-align: right;
}

.qesora-kpi-atlas__lead,
.qesora-kpi-atlas__finding,
.qesora-kpi-atlas__measure,
.qesora-kpi-atlas__decision,
.qesora-kpi-atlas__limit {
  padding: clamp(17px, 1.65vw, 23px);
  border-bottom: 1px solid var(--qf-rule);
}

.qesora-kpi-atlas__lead small,
.qesora-kpi-atlas__finding small,
.qesora-kpi-atlas__measure small,
.qesora-kpi-atlas__decision small,
.qesora-kpi-atlas__limit small {
  display: block;
  color: #8b8c8f;
  font: 7.5px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-kpi-atlas__lead h3 {
  margin: 10px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .96;
}

.qesora-kpi-atlas__lead p,
.qesora-kpi-atlas__measure p,
.qesora-kpi-atlas__limit p {
  margin: 9px 0 0;
  color: var(--qf-muted);
  font-size: 11px;
  line-height: 1.55;
}

.qesora-kpi-atlas__finding strong,
.qesora-kpi-atlas__decision strong {
  display: block;
  margin-top: 9px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.18;
}

.qesora-kpi-atlas__finding {
  background: rgba(23, 24, 26, .035);
}

.qesora-kpi-atlas__decision {
  align-self: stretch;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .24) .75px, transparent .9px);
  background-size: 5px 5px;
  color: #fff;
}

.qesora-kpi-atlas__decision small {
  color: rgba(255, 255, 255, .64);
}

.qesora-kpi-atlas__limit {
  border-bottom: 0;
}

.qesora-kpi-section__copy h2,
.qesora-neuma-section__copy h2 {
  margin: 18px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.03;
}

.qesora-kpi-section__copy h2 em {
  color: var(--qf-blue);
  font-weight: inherit;
}

.qesora-kpi-section__copy p,
.qesora-neuma-section__copy p {
  max-width: 48ch;
  margin: 22px 0 0;
  color: var(--qf-muted);
  font-size: 14px;
  line-height: 1.65;
}

.qesora-kpi-instrument {
  border: 1px solid var(--qf-ink);
  background: rgba(248, 248, 245, .88);
  box-shadow: 20px 24px 0 rgba(30, 63, 224, .06);
}

.qesora-kpi-instrument > header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--qf-rule);
  color: #8b8c8f;
  font: 8.5px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-kpi-instrument > header strong {
  color: var(--qf-ink);
  font-weight: 500;
}

.qesora-kpi-instrument > header b {
  margin-left: auto;
  color: var(--qf-blue);
  font-weight: 500;
}

.qesora-kpi-row {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(150px, .68fr) minmax(180px, 1.32fr) 62px;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--qf-rule);
}

.qesora-kpi-row > i {
  color: var(--qf-blue);
  font: normal 8px/1 'Geist Mono', ui-monospace, monospace;
}

.qesora-kpi-row > span strong,
.qesora-kpi-row > span small {
  display: block;
}

.qesora-kpi-row > span strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.qesora-kpi-row > span small {
  margin-top: 3px;
  color: #8b8c8f;
  font-size: 10px;
}

.qesora-kpi-row svg {
  width: 100%;
  height: 42px;
  overflow: visible;
}

.qesora-kpi-row svg path {
  fill: none;
  stroke: var(--qf-blue);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.qesora-kpi-row > b {
  color: var(--qf-blue);
  font: 500 9px/1 'Geist Mono', ui-monospace, monospace;
  text-align: right;
  text-transform: uppercase;
}

.qesora-kpi-instrument > footer {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #8b8c8f;
  font: 8px/1 'Geist Mono', ui-monospace, monospace;
}

.qesora-kpi-instrument > footer i {
  height: 1px;
  background: rgba(23, 24, 26, .15);
}

.qesora-kpi-instrument > footer b {
  color: var(--qf-blue);
  font-weight: 500;
}

.qesora-neuma-section {
  padding: clamp(70px, 8vw, 118px) 0;
  border-block: 1px solid var(--qf-rule);
  background: rgba(238, 238, 234, .52);
}

.qesora-neuma-section__inner {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
}

.qesora-neuma-section__copy h2 {
  max-width: 15ch;
}

.qesora-neuma-section__copy > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--qf-blue);
  font-size: 13px;
  font-weight: 500;
}

.qesora-neuma-flow {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(170px, 1.12fr) minmax(120px, 1fr);
  align-items: stretch;
  border-block: 1px solid var(--qf-ink);
}

.qesora-neuma-flow > article {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 28px 18px;
}

.qesora-neuma-flow > article i {
  color: var(--qf-blue);
  font: normal 8px/1 'Geist Mono', ui-monospace, monospace;
}

.qesora-neuma-flow > article strong {
  margin-top: 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.qesora-neuma-flow > article span {
  margin-top: 8px;
  color: var(--qf-muted);
  font-size: 11px;
  line-height: 1.5;
}

.qesora-neuma-core {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  place-content: center;
  justify-items: center;
  border-inline: 1px solid var(--qf-ink);
  background: #101115;
  color: #fff;
}

.qesora-neuma-core > span {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .72;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.qesora-neuma-core small,
.qesora-neuma-core b {
  font: 8px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-neuma-core small { color: #b9c6ff; }
.qesora-neuma-core > strong {
  margin: 12px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 46px;
  font-weight: 300;
}
.qesora-neuma-core b { color: rgba(255, 255, 255, .62); font-weight: 400; }

.qesora-conversion-section {
  position: relative;
  padding: clamp(64px, 8vw, 118px) 0;
  border-block: 1px solid rgba(23, 24, 26, .11);
  background: rgba(238, 238, 234, .55);
}

.qesora-conversion-section__inner {
  width: min(100% - clamp(40px, 8vw, 128px), 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: start;
}

.qesora-conversion-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--qf-blue);
  font: 500 9px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.qesora-conversion-section__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--qf-blue);
}

.qesora-conversion-section h2 {
  max-width: 14ch;
  margin: 18px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.03;
}

.qesora-conversion-section p {
  max-width: 50ch;
  margin: 20px 0 0;
  color: var(--qf-muted);
  font-size: 14px;
  line-height: 1.65;
}

.qesora-conversion-section__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid rgba(8, 20, 85, .36);
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.qesora-conversion-section__cta canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  image-rendering: pixelated;
}

.qesora-conversion-section__promise {
  display: block;
  margin-top: 14px;
  color: #8b8c8f;
  font: 8.5px/1.5 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qesora-report-outcomes {
  border-top: 1px solid var(--qf-ink);
}

.qesora-report-outcomes li {
  display: grid;
  grid-template-columns: 44px minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--qf-rule);
  list-style: none;
}

.qesora-report-outcomes i {
  color: var(--qf-blue);
  font: normal 9px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .1em;
}

.qesora-report-outcomes strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.qesora-report-outcomes span {
  color: var(--qf-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .qesora-signal-strip.qesora-feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .qesora-feature-tab:nth-child(2) {
    border-right: 0;
  }

  .qesora-feature-tab:nth-child(-n+2) {
    border-bottom: 1px solid rgba(23, 24, 26, .09);
  }

  .qesora-feature-caption,
  .qesora-conversion-section__inner,
  .qesora-kpi-section__inner,
  .qesora-neuma-section__inner {
    grid-template-columns: 1fr;
  }

  .qesora-feature-caption__lead {
    border-right: 0;
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-feature-media {
    aspect-ratio: 16 / 10;
  }

  .qesora-report-outcomes li {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .qesora-report-outcomes span {
    grid-column: 2;
  }

  .qesora-response-pipeline {
    grid-template-columns: minmax(220px, 1fr) 62px minmax(190px, .82fr);
    grid-template-rows: auto 50px auto;
    gap: 24px 18px;
  }

  .qesora-pipeline-creative {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 340px);
    justify-self: center;
  }

  .qesora-pipeline-arrow--input {
    grid-column: 2;
    grid-row: 1;
  }

  .qesora-pipeline-model {
    grid-column: 3;
    grid-row: 1;
    width: min(100%, 275px);
    justify-self: center;
  }

  .qesora-pipeline-arrow--output {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 58px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .qesora-pipeline-responses {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .qesora-pipeline-response {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "head head"
      "title title"
      "wave wave"
      "read read";
  }

  .qesora-kpi-explanation__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qesora-kpi-explanation__grid > div:nth-child(2) {
    border-right: 0;
  }

  .qesora-kpi-explanation__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-kpi-guide__intro {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .qesora-kpi-guide__intro h2 {
    max-width: 16ch;
  }

  .qesora-kpi-guide__shell {
    grid-template-columns: minmax(190px, .52fr) minmax(0, 1.48fr);
  }

  .qesora-kpi-guide__rail button {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    padding: 18px 14px;
  }

  .qesora-kpi-guide__rail button > b {
    display: none;
  }

  .qesora-kpi-guide__lead {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .qesora-kpi-guide__facts {
    grid-template-columns: 1fr;
  }

  .qesora-kpi-guide__facts > div,
  .qesora-kpi-guide__facts > div:nth-child(2n),
  .qesora-kpi-guide__facts > div:nth-last-child(-n+2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-kpi-guide__facts > div:last-child {
    border-bottom: 0;
  }

  .qesora-kpi-atlas {
    grid-template-columns: 1fr;
  }

  .qesora-kpi-atlas__stage {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .42);
  }

  .qesora-response-atlas .qesora-kpi-guide__panel.qesora-kpi-atlas__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto;
  }

  .qesora-response-atlas .qesora-kpi-atlas__panel > header {
    grid-column: 1 / -1;
  }

  .qesora-kpi-atlas__lead,
  .qesora-kpi-atlas__measure,
  .qesora-kpi-atlas__decision {
    border-right: 1px solid var(--qf-rule);
  }

  .qesora-kpi-atlas__limit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .qesora-signal-strip.qesora-feature-tabs {
    width: calc(100% - 20px) !important;
  }

  .qesora-feature-tab {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 9px;
    padding: 17px 13px 16px;
  }

  .qesora-feature-tab__icon {
    width: 28px;
    height: 28px;
  }

  .qesora-feature-tab__title {
    font-size: 14px;
  }

  .qesora-feature-tab__note {
    display: none;
  }

  .qesora-feature-stage__shell,
  .qesora-conversion-section__inner,
  .qesora-kpi-section__inner,
  .qesora-neuma-section__inner,
  .qesora-kpi-guide__inner {
    width: calc(100% - 20px);
  }

  .qesora-feature-preview__meta {
    gap: 8px;
    padding-inline: 10px;
    font-size: 7.5px;
  }

  .qesora-feature-media {
    aspect-ratio: 4 / 3;
  }

  .qesora-feature-media__topline {
    top: 10px;
    left: 10px;
    right: 10px;
    font-size: 7.5px;
  }

  .qesora-feature-overlay__callout {
    left: 12%;
    right: 12%;
    top: auto;
    bottom: 62px;
    max-width: none;
    font-size: 8.5px;
  }

  .qesora-feature-overlay__marker {
    left: 10%;
    top: auto;
    bottom: 66px;
  }

  .qesora-feature-caption__lead,
  .qesora-feature-caption__detail {
    padding: 22px 19px;
  }

  .qesora-feature-caption__detail {
    grid-template-columns: 1fr;
  }

  .qesora-feature-readout {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--qf-rule);
    border-left: 0;
  }

  .qesora-feature-readout span {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 10px 0;
    border-bottom: 1px solid rgba(23, 24, 26, .08);
  }

  .qesora-kpi-section,
  .qesora-neuma-section {
    padding-block: 66px;
  }

  .qesora-kpi-section__copy h2,
  .qesora-neuma-section__copy h2 {
    font-size: 38px;
  }

  .qesora-kpi-section__intro {
    margin-bottom: 38px;
  }

  .qesora-kpi-section__intro h2 {
    font-size: 40px;
  }

  .qesora-response-pipeline {
    grid-template-columns: 1fr;
    grid-template-rows: auto 52px auto 52px auto;
    gap: 22px;
  }

  .qesora-pipeline-creative {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 330px);
  }

  .qesora-pipeline-arrow--input {
    grid-column: 1;
    grid-row: 2;
    width: 58px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .qesora-pipeline-model {
    grid-column: 1;
    grid-row: 3;
    width: min(72vw, 260px);
  }

  .qesora-pipeline-arrow--output {
    grid-column: 1;
    grid-row: 4;
  }

  .qesora-pipeline-responses {
    grid-column: 1;
    grid-row: 5;
  }

  .qesora-model-particles {
    width: 100%;
    margin-inline: auto;
  }

  .qesora-pipeline-response {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "head head"
      "title title"
      "wave wave"
      "read read";
    min-height: 204px;
    padding-inline: 14px;
  }

  .qesora-pipeline-response__read {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .qesora-pipeline-footnote {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .qesora-pipeline-footnote i {
    display: none;
  }

  .qesora-kpi-explanation > header {
    grid-template-columns: auto 1fr;
  }

  .qesora-kpi-explanation > header i {
    grid-column: 1 / -1;
    text-align: left;
  }

  .qesora-kpi-explanation__grid {
    grid-template-columns: 1fr;
  }

  .qesora-kpi-explanation__grid > div,
  .qesora-kpi-explanation__grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-kpi-explanation__grid > div:last-child {
    border-bottom: 0;
  }

  .qesora-kpi-instrument > header span {
    display: none;
  }

  .qesora-kpi-row {
    grid-template-columns: 24px minmax(0, 1fr) 56px;
    gap: 10px;
    padding: 12px 10px;
  }

  .qesora-kpi-row > i { grid-column: 1; grid-row: 1; }
  .qesora-kpi-row > span { grid-column: 2; grid-row: 1; }
  .qesora-kpi-row > b { grid-column: 3; grid-row: 1; }
  .qesora-kpi-row > svg {
    grid-column: 2 / 4;
    grid-row: 2;
    height: 30px;
  }

  .qesora-neuma-flow {
    grid-template-columns: 1fr;
  }

  .qesora-neuma-core {
    min-height: 210px;
    border-inline: 0;
    border-block: 1px solid var(--qf-ink);
  }

  .qesora-kpi-guide {
    padding-block: 70px;
  }

  .qesora-kpi-guide__intro h2 {
    font-size: 40px;
  }

  .qesora-kpi-guide__shell {
    grid-template-columns: 1fr;
    box-shadow: 9px 12px 0 rgba(30, 63, 224, .05);
  }

  .qesora-kpi-guide__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(96px, auto));
    border-right: 0;
    border-bottom: 1px solid var(--qf-ink);
  }

  .qesora-kpi-guide__rail button {
    border-right: 1px solid var(--qf-rule);
  }

  .qesora-kpi-guide__rail button:nth-child(2n) {
    border-right: 0;
  }

  .qesora-kpi-guide__rail button:nth-child(-n+2) {
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-kpi-guide__rail button:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .qesora-kpi-guide__rail button span strong {
    font-size: 17px;
  }

  .qesora-kpi-guide__panel > header {
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
  }

  .qesora-kpi-guide__panel > header i {
    grid-column: 1 / -1;
    text-align: left;
  }

  .qesora-kpi-guide__lead,
  .qesora-kpi-guide__timeline {
    padding-inline: 20px;
  }

  .qesora-kpi-guide__lead h3 {
    font-size: 40px;
  }

  .qesora-kpi-guide__timeline svg {
    height: 88px;
  }

  .qesora-kpi-guide__axis span:not(:first-child):not(:last-child) {
    display: none;
  }

  .qesora-kpi-guide__axis {
    grid-template-columns: 1fr 1fr;
  }

  .qesora-kpi-guide__facts > div {
    padding: 22px 20px;
  }

  .qesora-response-atlas .qesora-kpi-guide__intro h2 {
    font-size: 40px;
  }

  .qesora-kpi-atlas {
    box-shadow: 10px 13px 0 rgba(30, 63, 224, .16);
  }

  .qesora-kpi-atlas__stage > header {
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
  }

  .qesora-kpi-atlas__stage > header i {
    grid-column: 1 / -1;
    text-align: left;
  }

  .qesora-kpi-atlas__row {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 132px;
  }

  .qesora-kpi-atlas__row > button {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    padding: 14px 10px;
  }

  .qesora-kpi-atlas__row > button span strong {
    font-size: 15px;
  }

  .qesora-kpi-atlas__row > button span small {
    display: none;
  }

  .qesora-kpi-atlas__row > svg {
    width: calc(100% - 20px);
    height: 72px;
    margin-inline: 10px;
  }

  .qesora-kpi-atlas__read {
    grid-column: 1 / -1;
    min-height: 36px;
    padding: 9px 12px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
    font-size: 9px;
  }

  .qesora-kpi-atlas__axis {
    grid-template-columns: 1fr 1fr auto;
    padding-left: 12px;
  }

  .qesora-kpi-atlas__axis span:nth-child(2),
  .qesora-kpi-atlas__axis span:nth-child(3) {
    display: none;
  }

  .qesora-response-atlas .qesora-kpi-guide__panel.qesora-kpi-atlas__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .qesora-response-atlas .qesora-kpi-atlas__panel > header,
  .qesora-kpi-atlas__limit {
    grid-column: 1;
  }

  .qesora-kpi-atlas__lead,
  .qesora-kpi-atlas__measure,
  .qesora-kpi-atlas__decision {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qesora-feature-tab,
  .qesora-feature-tab::before,
  .qesora-feature-tab::after,
  .qesora-feature-tab__icon,
  .qesora-feature-play,
  .qesora-pipeline-response {
    transition: none !important;
  }

  .qesora-pipeline-arrow::before,
  .qesora-model-particles::before,
  .qesora-model-particles > i {
    animation: none !important;
  }
}

/* 2026-08-22 refinement: compact NeuMa pipeline and four-column response field. */
.qesora-response-pipeline {
  grid-template-columns: minmax(230px, .9fr) 46px minmax(250px, 1fr) 46px minmax(360px, 1.28fr);
  gap: clamp(10px, 1.2vw, 18px);
}

.qesora-pipeline-model {
  padding: 9px;
}

.qesora-model-particles {
  aspect-ratio: 16 / 11.4;
  background:
    linear-gradient(90deg, transparent 49.75%, rgba(30, 63, 224, .07) 50%, transparent 50.25%),
    linear-gradient(180deg, transparent 49.75%, rgba(30, 63, 224, .07) 50%, transparent 50.25%),
    #f6f6f3;
}

.qesora-model-particles__head {
  inset: 0;
  z-index: 3;
  background: url("/product-release-20260918/assets/neuma-profile-v2/qesora-neuma-profile-exact-v2.png") center / cover no-repeat;
  -webkit-mask: none;
  mask: none;
  filter: none;
  mix-blend-mode: multiply;
}

.qesora-model-particles__field {
  inset: -8%;
  z-index: 2;
  opacity: .18;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 24% 74%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 24% 74%, #000);
}

.qesora-model-particles::before {
  left: 4%;
  right: 4%;
  top: 7%;
  z-index: 6;
  height: 16px;
  background: linear-gradient(180deg, transparent, rgba(129, 190, 255, .12) 30%, rgba(105, 178, 255, .9) 48%, rgba(170, 215, 255, .2) 62%, transparent);
  box-shadow: 0 0 18px rgba(105, 178, 255, .42);
  opacity: .85;
  mix-blend-mode: multiply;
  animation: qesora-neuma-scan 4.6s cubic-bezier(.65, 0, .35, 1) infinite;
}

.qesora-model-particles::after {
  inset: 7px;
  z-index: 5;
  border: 1px solid rgba(30, 63, 224, .16);
  transform: none;
  pointer-events: none;
}

@keyframes qesora-neuma-scan {
  0%, 10% { top: 4%; opacity: 0; }
  18% { opacity: .88; }
  82% { opacity: .88; }
  90%, 100% { top: 90%; opacity: 0; }
}

.qesora-model-particles > b {
  left: 11px;
  top: auto;
  bottom: 10px;
  padding: 6px 9px 5px;
  border-color: rgba(30, 63, 224, .55);
  background: rgba(246, 246, 243, .86);
  font-size: 8px;
  transform: none;
  box-shadow: 4px 5px 0 rgba(30, 63, 224, .08);
}

.qesora-pipeline-responses {
  grid-template-columns: 1fr;
}

.qesora-pipeline-response {
  grid-template-columns: 48px 116px minmax(0, 1fr);
  grid-template-areas: "head title wave";
  align-items: center;
  min-height: 55px;
  padding: 8px 12px;
  transform: none;
}

.qesora-pipeline-response:hover,
.qesora-pipeline-response[aria-selected="true"] {
  transform: translateX(3px);
}

.qesora-pipeline-response__head {
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.qesora-pipeline-response__head > i {
  width: 21px;
  height: 21px;
}

.qesora-pipeline-response__title {
  margin-top: 0;
}

.qesora-pipeline-response__title strong {
  font-size: 15px;
  line-height: 1.05;
}

.qesora-pipeline-response__title small,
.qesora-pipeline-response__read {
  display: none !important;
}

.qesora-pipeline-response > svg {
  height: 34px;
  margin-top: 0;
}

.qesora-pipeline-response svg line {
  stroke: #79b5f4;
}

.qesora-kpi-guide.qesora-kpi-spectrum-section {
  border-block: 1px solid var(--qf-rule);
  background: var(--qf-paper);
  color: var(--qf-ink);
}

.qesora-kpi-spectrum-section .qesora-kpi-guide__field {
  opacity: .2;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 25% 75%, #000 100%), linear-gradient(180deg, transparent 0, #000 14% 86%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, transparent 25% 75%, #000 100%), linear-gradient(180deg, transparent 0, #000 14% 86%, transparent 100%);
}

.qesora-kpi-spectrum__dither {
  position: absolute;
  z-index: -1;
  width: min(28vw, 410px);
  height: 58%;
  opacity: .22;
  pointer-events: none;
}

.qesora-kpi-spectrum__dither--left {
  left: -7%;
  bottom: -5%;
  -webkit-mask-image: radial-gradient(ellipse at 18% 62%, #000 0 24%, rgba(0, 0, 0, .56) 48%, transparent 78%);
  mask-image: radial-gradient(ellipse at 18% 62%, #000 0 24%, rgba(0, 0, 0, .56) 48%, transparent 78%);
}

.qesora-kpi-spectrum__dither--right {
  right: -6%;
  top: 4%;
  -webkit-mask-image: radial-gradient(ellipse at 82% 34%, #000 0 23%, rgba(0, 0, 0, .5) 47%, transparent 76%);
  mask-image: radial-gradient(ellipse at 82% 34%, #000 0 23%, rgba(0, 0, 0, .5) 47%, transparent 76%);
}

.qesora-kpi-spectrum {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--qf-ink);
  background: var(--qf-ink);
  box-shadow: 18px 22px 0 rgba(30, 63, 224, .055);
}

.qesora-kpi-spectrum__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  background: rgba(248, 248, 245, .97);
}

.qesora-kpi-spectrum__card::after {
  content: "";
  position: absolute;
  right: -22%;
  top: -7%;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  opacity: .12;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, #fff .7px, transparent .85px);
  background-size: 5px 5px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.qesora-kpi-spectrum__card > button {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-height: 102px;
  padding: 20px 18px;
  border: 0;
  border-bottom: 1px solid var(--qf-rule);
  background: transparent;
  color: var(--qf-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.qesora-kpi-spectrum__card > button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .28) .74px, transparent .9px);
  background-size: 5px 5px;
  transition: opacity .38s ease;
}

.qesora-kpi-spectrum__card > button:hover::before,
.qesora-kpi-spectrum__card > button[aria-selected="true"]::before {
  opacity: 1;
}

.qesora-kpi-spectrum__card > button:hover,
.qesora-kpi-spectrum__card > button[aria-selected="true"] {
  color: #fff;
}

.qesora-kpi-spectrum__card > button:focus-visible {
  outline: 2px solid #79b5f4;
  outline-offset: -4px;
}

.qesora-kpi-spectrum__card > button > i {
  padding-top: 4px;
  color: var(--qf-blue);
  font: normal 8px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
}

.qesora-kpi-spectrum__card > button:hover > i,
.qesora-kpi-spectrum__card > button[aria-selected="true"] > i {
  color: rgba(255, 255, 255, .7);
}

.qesora-kpi-spectrum__card > button strong,
.qesora-kpi-spectrum__card > button small {
  display: block;
}

.qesora-kpi-spectrum__card > button strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.02;
}

.qesora-kpi-spectrum__card > button small {
  margin-top: 7px;
  color: #8b8c8f;
  font-size: 9.5px;
  line-height: 1.4;
}

.qesora-kpi-spectrum__card > button:hover small,
.qesora-kpi-spectrum__card > button[aria-selected="true"] small {
  color: rgba(255, 255, 255, .72);
}

.qesora-kpi-spectrum__timeline {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 18px 16px 12px;
  border-bottom: 1px solid var(--qf-rule);
  background:
    linear-gradient(90deg, rgba(30, 63, 224, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 63, 224, .035) 1px, transparent 1px),
    rgba(30, 63, 224, .018);
  background-size: 18px 18px;
}

.qesora-kpi-spectrum__timeline svg {
  display: block;
  width: 100%;
  height: 80px;
  overflow: visible;
}

.qesora-kpi-spectrum__timeline svg path,
.qesora-kpi-spectrum__timeline svg line,
.qesora-kpi-spectrum__timeline svg circle {
  vector-effect: non-scaling-stroke;
}

.qesora-kpi-spectrum__timeline svg > path:not(.qesora-kpi-spectrum__baseline) {
  fill: none;
  stroke: var(--qf-blue);
  stroke-width: 1.55;
}

.qesora-kpi-spectrum__baseline {
  fill: none;
  stroke: rgba(23, 24, 26, .14);
  stroke-width: 1;
}

.qesora-kpi-spectrum__sweep {
  color: #79b5f4;
  transform-box: fill-box;
  transform-origin: center;
  animation: qesora-spectrum-scan 5.8s cubic-bezier(.55, 0, .45, 1) infinite alternate;
}

.qesora-kpi-spectrum__card:nth-child(2) .qesora-kpi-spectrum__sweep { animation-delay: -.8s; }
.qesora-kpi-spectrum__card:nth-child(3) .qesora-kpi-spectrum__sweep { animation-delay: -1.6s; }
.qesora-kpi-spectrum__card:nth-child(4) .qesora-kpi-spectrum__sweep { animation-delay: -2.4s; }

.qesora-kpi-spectrum__sweep line {
  stroke: currentColor;
  stroke-width: 1;
  stroke-dasharray: 3 3;
}

.qesora-kpi-spectrum__sweep circle {
  fill: currentColor;
  stroke: var(--qf-paper);
  stroke-width: 2;
}

@keyframes qesora-spectrum-scan {
  from { transform: translateX(14px); }
  to { transform: translateX(212px); }
}

.qesora-kpi-spectrum__timeline > span,
.qesora-kpi-spectrum__copy > small,
.qesora-kpi-spectrum__interpretation small {
  color: #8b8c8f;
  font: 7.5px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qesora-kpi-spectrum__timeline > span {
  display: block;
  margin-top: 7px;
}

.qesora-kpi-spectrum__copy {
  min-height: 154px;
  padding: 22px 18px;
  border-bottom: 1px solid var(--qf-rule);
}

.qesora-kpi-spectrum__copy p {
  margin: 13px 0 0;
  color: var(--qf-muted);
  font-size: 12px;
  line-height: 1.58;
}

.qesora-kpi-spectrum__interpretation {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 183px;
  padding: 22px 18px 24px;
}

.qesora-kpi-spectrum__interpretation strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.17;
}

.qesora-kpi-spectrum__interpretation span {
  align-self: end;
  color: #8b8c8f;
  font-size: 9.5px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .qesora-response-pipeline {
    grid-template-columns: minmax(220px, 1fr) 52px minmax(220px, 1fr);
    grid-template-rows: auto 48px auto;
    gap: 22px 16px;
  }

  .qesora-pipeline-creative { grid-column: 1; grid-row: 1; }
  .qesora-pipeline-arrow--input { grid-column: 2; grid-row: 1; }
  .qesora-pipeline-model { grid-column: 3; grid-row: 1; width: min(100%, 340px); }
  .qesora-pipeline-arrow--output { grid-column: 1 / -1; grid-row: 2; }
  .qesora-pipeline-responses { grid-column: 1 / -1; grid-row: 3; }

  .qesora-pipeline-response {
    grid-template-columns: 48px 128px minmax(0, 1fr);
    grid-template-areas: "head title wave";
    min-height: 55px;
    padding: 8px 12px;
  }

  .qesora-kpi-spectrum {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .qesora-response-pipeline {
    grid-template-columns: 1fr;
    grid-template-rows: auto 48px auto 48px auto;
    gap: 20px;
  }

  .qesora-pipeline-creative { grid-column: 1; grid-row: 1; }
  .qesora-pipeline-arrow--input { grid-column: 1; grid-row: 2; }
  .qesora-pipeline-model { grid-column: 1; grid-row: 3; width: min(100%, 330px); }
  .qesora-pipeline-arrow--output { grid-column: 1; grid-row: 4; }
  .qesora-pipeline-responses { grid-column: 1; grid-row: 5; }

  .qesora-pipeline-response {
    grid-template-columns: 42px 104px minmax(0, 1fr);
    grid-template-areas: "head title wave";
    min-height: 52px;
    padding: 7px 9px;
  }

  .qesora-pipeline-response__title strong {
    font-size: 13px;
  }

  .qesora-kpi-spectrum {
    grid-template-columns: 1fr;
    box-shadow: 10px 13px 0 rgba(30, 63, 224, .055);
  }

  .qesora-kpi-spectrum__card > button,
  .qesora-kpi-spectrum__copy,
  .qesora-kpi-spectrum__interpretation {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qesora-kpi-spectrum__sweep,
  .qesora-model-particles::before {
    animation: none !important;
  }
}

/* NeuMa particle core: a model field in the signal chain, never a card. */
.qesora-pipeline-creative {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.qesora-pipeline-creative__frame {
  border: 0;
}

.qesora-pipeline-model {
  position: relative;
  overflow: visible;
  align-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.qesora-neuma-particle-core {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 10.8;
  overflow: visible;
}

.qesora-neuma-particle-core__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.04);
}

.qesora-neuma-particle-core__halo {
  position: absolute;
  inset: -15% -12%;
  z-index: 0;
  opacity: .2;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(30, 63, 224, .18), transparent 53%),
    radial-gradient(circle at 1.3px 1.3px, rgba(30, 63, 224, .55) 1px, transparent 1.15px);
  background-size: auto, 6px 6px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 31%, rgba(0, 0, 0, .52) 51%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 0 31%, rgba(0, 0, 0, .52) 51%, transparent 72%);
  animation: qesora-neuma-halo-breathe 7.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes qesora-neuma-halo-breathe {
  0%, 100% { opacity: .13; transform: scale(.96); }
  50% { opacity: .24; transform: scale(1.025); }
}

@media (max-width: 620px) {
  .qesora-neuma-particle-core {
    width: min(100%, 320px);
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qesora-neuma-particle-core__halo {
    animation: none !important;
  }
}

/* 2026-08-22 — one continuous response ledger, not a second page. */
.qesora-pipeline-arrow {
  height: 34px;
}

.qesora-pipeline-arrow::before {
  left: 2px;
  right: 10px;
  height: 9px;
  opacity: .74;
  background:
    radial-gradient(circle at 2px 50%, var(--qf-blue) 0 1.5px, transparent 1.8px),
    repeating-linear-gradient(90deg, rgba(30, 63, 224, .78) 0 2px, transparent 2px 5px) center / 100% 1px no-repeat;
  background-color: transparent;
  background-size: auto, 100% 1px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .16), #000 22% 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .16), #000 22% 100%);
  transform: translateY(-50%);
  animation: none;
}

.qesora-pipeline-arrow::after {
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--qf-blue);
  border-right: 1px solid var(--qf-blue);
  background: none;
  clip-path: none;
  transform: translateY(-50%) rotate(45deg);
}

.qesora-kpi-guide.qesora-kpi-spectrum-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin-top: clamp(62px, 7.5vw, 104px);
  padding: clamp(30px, 3.8vw, 50px) 0 0;
  border: 0;
  background: transparent;
  color: var(--qf-ink);
}

.qesora-kpi-guide.qesora-kpi-spectrum-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 24, 26, .28) 8% 92%, transparent);
}

.qesora-kpi-spectrum-section .qesora-kpi-guide__inner {
  width: 100%;
  margin: 0;
}

.qesora-kpi-spectrum-section .qesora-kpi-guide__intro {
  grid-template-columns: minmax(300px, .86fr) minmax(340px, 1.14fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  margin-bottom: 24px;
}

.qesora-kpi-spectrum-section .qesora-kpi-guide__intro h2 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(31px, 3.6vw, 46px);
  letter-spacing: -.035em;
  line-height: 1;
}

.qesora-kpi-spectrum-section .qesora-kpi-guide__intro p {
  max-width: 55ch;
  font-size: 12.5px;
  line-height: 1.58;
}

.qesora-kpi-spectrum-section .qesora-section-eyebrow {
  font-size: 8px;
  letter-spacing: .17em;
}

.qesora-kpi-spectrum {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--qf-ink);
  background: rgba(248, 248, 245, .88);
  box-shadow: none;
}

.qesora-kpi-spectrum__card {
  grid-template-rows: auto auto;
  overflow: hidden;
  border-right: 1px solid var(--qf-rule);
  background: rgba(248, 248, 245, .78);
}

.qesora-kpi-spectrum__card:last-child {
  border-right: 0;
}

.qesora-kpi-spectrum__card::after {
  display: none;
}

.qesora-kpi-spectrum__card > button {
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 8px;
  min-height: 72px;
  padding: 13px 14px 12px;
  transition: color 150ms cubic-bezier(.2, 0, 0, 1);
}

.qesora-kpi-spectrum__card > button::before {
  transition: opacity 150ms cubic-bezier(.2, 0, 0, 1);
}

.qesora-kpi-spectrum__card > button strong {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1;
}

.qesora-kpi-spectrum__card > button small {
  margin-top: 5px;
  font-size: 8.5px;
}

.qesora-kpi-spectrum__timeline {
  min-height: 92px;
  padding: 9px 13px 10px;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(30, 63, 224, .03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 63, 224, .03) 1px, transparent 1px);
  background-size: 16px 16px;
}

.qesora-kpi-spectrum__timeline svg {
  height: 54px;
}

.qesora-kpi-spectrum__timeline > span {
  margin-top: 5px;
  font-size: 6.8px;
  letter-spacing: .1em;
}

.qesora-kpi-spectrum__card[data-active="true"] .qesora-kpi-spectrum__timeline {
  background-color: rgba(30, 63, 224, .035);
}

.qesora-kpi-spectrum__card[data-active="true"] .qesora-kpi-spectrum__timeline svg > path:not(.qesora-kpi-spectrum__baseline) {
  stroke-width: 1.8;
}

.qesora-response-focus.qesora-kpi-guide__panel {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(230px, 1.06fr) minmax(220px, 1fr) minmax(220px, .96fr);
  grid-template-rows: 36px auto 42px;
  min-width: 0;
  border: 1px solid var(--qf-ink);
  border-top: 0;
  background: rgba(248, 248, 245, .95);
}

.qesora-response-focus.qesora-kpi-guide__panel > header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  min-height: 36px;
  padding: 9px 13px;
}

.qesora-response-focus__lead,
.qesora-response-focus__measure,
.qesora-response-focus__finding,
.qesora-response-focus__decision {
  min-width: 0;
  min-height: 132px;
  padding: 17px 16px 19px;
  border-right: 1px solid var(--qf-rule);
}

.qesora-response-focus__decision {
  border-right: 0;
  background-color: var(--qf-blue);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .23) .7px, transparent .85px);
  background-size: 5px 5px;
  color: #fff;
}

.qesora-response-focus small {
  display: block;
  color: #8b8c8f;
  font: 7.2px/1.35 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qesora-response-focus__decision small {
  color: rgba(255, 255, 255, .62);
}

.qesora-response-focus__lead h3 {
  margin: 9px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 300;
  letter-spacing: -.032em;
  line-height: .98;
}

.qesora-response-focus p {
  margin: 9px 0 0;
  color: var(--qf-muted);
  font-size: 10.5px;
  line-height: 1.5;
}

.qesora-response-focus__finding strong,
.qesora-response-focus__decision strong {
  display: block;
  margin-top: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.17;
}

.qesora-response-focus__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 9px 13px;
  border-top: 1px solid var(--qf-rule);
}

.qesora-response-focus__footer > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.qesora-response-focus__footer p {
  overflow: hidden;
  margin: 0;
  color: #77797d;
  font-size: 8.5px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qesora-response-focus__footer a {
  flex: none;
  color: var(--qf-ink);
  font: 500 8px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .qesora-kpi-spectrum-section .qesora-kpi-guide__intro {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .qesora-kpi-spectrum {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qesora-kpi-spectrum__card:nth-child(2) {
    border-right: 0;
  }

  .qesora-kpi-spectrum__card:nth-child(-n+2) {
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-response-focus.qesora-kpi-guide__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 36px auto auto 42px;
  }

  .qesora-response-focus__measure {
    border-right: 0;
  }

  .qesora-response-focus__lead,
  .qesora-response-focus__measure {
    border-bottom: 1px solid var(--qf-rule);
  }
}

@media (max-width: 620px) {
  .qesora-kpi-guide.qesora-kpi-spectrum-section {
    margin-top: 58px;
    padding-top: 28px;
  }

  .qesora-kpi-spectrum-section .qesora-kpi-guide__intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .qesora-kpi-spectrum-section .qesora-kpi-guide__intro h2 {
    max-width: 12ch;
    font-size: 34px;
  }

  .qesora-kpi-spectrum {
    grid-template-columns: repeat(4, minmax(238px, 76vw));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .qesora-kpi-spectrum__card,
  .qesora-kpi-spectrum__card:nth-child(2),
  .qesora-kpi-spectrum__card:nth-child(-n+2) {
    border-right: 1px solid var(--qf-rule);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .qesora-kpi-spectrum__card:last-child {
    border-right: 0;
  }

  .qesora-response-focus.qesora-kpi-guide__panel {
    grid-template-columns: 1fr;
    grid-template-rows: 36px auto auto auto auto auto;
  }

  .qesora-response-focus__lead,
  .qesora-response-focus__measure,
  .qesora-response-focus__finding,
  .qesora-response-focus__decision {
    min-height: 0;
    padding: 15px 14px 17px;
    border-right: 0;
    border-bottom: 1px solid var(--qf-rule);
  }

  .qesora-response-focus__footer {
    align-items: flex-start;
    padding: 11px 13px;
  }

  .qesora-response-focus__footer > div {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qesora-kpi-spectrum__card > button,
  .qesora-kpi-spectrum__card > button::before {
    transition: none;
  }
}

/* 2026-08-22 — asymmetrical hand-off into model validation. */
.qesora-kpi-section {
  padding-bottom: clamp(44px, 4.6vw, 68px);
}

.qesora-kpi-section__inner {
  position: relative;
  z-index: 1;
}

.qesora-kpi-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(118px, 16vw, 230px);
  height: clamp(170px, 18vw, 250px);
  background: linear-gradient(90deg, var(--qf-paper) 0 38%, rgba(246, 246, 243, .94) 58%, rgba(246, 246, 243, .54) 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .22) 24%, #000 58% 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .22) 24%, #000 58% 100%);
  pointer-events: none;
}

.qesora-kpi-section__field {
  opacity: .19;
  -webkit-mask-image:
    radial-gradient(ellipse 42% 64% at 0% 36%, #000 0 31%, rgba(0, 0, 0, .72) 49%, rgba(0, 0, 0, .18) 68%, transparent 82%),
    radial-gradient(ellipse 38% 86% at 100% 67%, #000 0 35%, rgba(0, 0, 0, .78) 55%, rgba(0, 0, 0, .24) 73%, transparent 91%);
  mask-image:
    radial-gradient(ellipse 42% 64% at 0% 36%, #000 0 31%, rgba(0, 0, 0, .72) 49%, rgba(0, 0, 0, .18) 68%, transparent 82%),
    radial-gradient(ellipse 38% 86% at 100% 67%, #000 0 35%, rgba(0, 0, 0, .78) 55%, rgba(0, 0, 0, .24) 73%, transparent 91%);
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

#validated.qesora-validated-section {
  isolation: isolate;
  padding-top: clamp(56px, 5.2vw, 78px) !important;
}

#validated.qesora-validated-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(calc(100% - clamp(40px, 8vw, 128px)), 1240px);
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 24, 26, .23), rgba(23, 24, 26, .1) 58%, transparent 92%);
  transform: translateX(-50%);
  pointer-events: none;
}

#validated.qesora-validated-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: clamp(110px, 15vw, 215px);
  height: clamp(160px, 17vw, 235px);
  background: linear-gradient(90deg, var(--qf-paper) 0 40%, rgba(246, 246, 243, .92) 61%, rgba(246, 246, 243, .48) 79%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0 46%, rgba(0, 0, 0, .5) 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 46%, rgba(0, 0, 0, .5) 70%, transparent 100%);
  pointer-events: none;
}

#validated .qesora-validation-pattern--bridge {
  top: -118px;
  right: -22px;
  left: auto;
  width: clamp(210px, 25vw, 350px);
  height: 390px;
  opacity: .18;
  -webkit-mask-image: radial-gradient(ellipse 88% 96% at 100% 10%, #000 0 24%, rgba(0, 0, 0, .68) 45%, rgba(0, 0, 0, .18) 66%, transparent 84%);
  mask-image: radial-gradient(ellipse 88% 96% at 100% 10%, #000 0 24%, rgba(0, 0, 0, .68) 45%, rgba(0, 0, 0, .18) 66%, transparent 84%);
}

#validated .qesora-validation-pattern--rail {
  top: 34%;
  left: -10px;
  width: clamp(70px, 8vw, 108px);
  height: 58%;
  opacity: .075;
}

#validated .qesora-validation-fragment--upper-right {
  top: -2% !important;
  right: -11% !important;
  width: min(24%, 300px) !important;
  height: 34% !important;
  opacity: .22 !important;
}

#validated .qesora-validation-fragment--left-mesh {
  top: 27% !important;
  left: -18% !important;
  width: 25% !important;
  height: 64% !important;
  opacity: .24 !important;
}

#validated .qesora-validation-fragment--lower-right {
  right: 0 !important;
  width: min(18%, 190px) !important;
  height: 38% !important;
  opacity: .22 !important;
}

@media (max-width: 620px) {
  .qesora-kpi-section {
    padding-bottom: 42px;
  }

  #validated.qesora-validated-section {
    padding-top: 52px !important;
  }

  #validated .qesora-validation-pattern--bridge {
    top: -70px;
    right: -64px;
    width: 220px;
    height: 280px;
    opacity: .14;
  }

  #validated .qesora-validation-pattern--rail,
  #validated .qesora-validation-fragment--left-mesh {
    opacity: .05 !important;
  }

  .qesora-kpi-section::after,
  #validated.qesora-validated-section::after {
    width: 62px;
  }
}
