.projection-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr) auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  margin: 1.4rem 0;
}

.projection-card {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.projection-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.projection-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.projection-operator {
  align-self: center;
  font-family: "Fraunces", "Source Serif 4", serif;
  font-size: 2rem;
  color: var(--accent-strong);
}

.matrix-grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.25rem;
}

.matrix-grid td,
.matrix-grid th {
  min-width: 2.7rem;
  padding: 0.5rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  text-align: center;
  background: rgba(13, 107, 99, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
}

.matrix-grid td.matrix-grid__highlight {
  background: rgba(191, 90, 54, 0.16);
  border-color: rgba(191, 90, 54, 0.28);
}

.matrix-grid td.matrix-grid__highlight-alt {
  background: rgba(93, 90, 163, 0.14);
  border-color: rgba(93, 90, 163, 0.26);
}

.matrix-grid td.matrix-grid__output {
  background: rgba(191, 90, 54, 0.08);
}

.projection-output-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.projection-output-button:hover,
.projection-output-button:focus-visible {
  color: var(--accent-strong);
  outline: none;
}

.projection-demo {
  margin: 1.4rem 0 1.55rem;
}

.projection-flow-print-static {
  display: none;
}

.projection-print-static {
  display: none;
}

.projection-demo--preview {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(13, 107, 99, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(13, 107, 99, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 231, 0.94));
  box-shadow: var(--shadow);
}

.projection-notes {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 1.1rem;
}

.projection-preview__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  margin: 1rem 0 1.35rem;
}

.projection-preview__hint,
.projection-notes__hint,
.projection-modal-demo__status,
.projection-modal-demo__detail,
.projection-note {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.projection-preview__hint {
  flex: 1 1 24rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.projection-note {
  display: none;
}

.projection-demo__open,
.projection-modal-demo__select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(13, 107, 99, 0.22);
  border-radius: 999px;
  background: rgba(13, 107, 99, 0.08);
  color: var(--accent-strong);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.projection-demo__open:hover,
.projection-demo__open:focus-visible,
.projection-modal-demo__select:hover,
.projection-modal-demo__select:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 107, 99, 0.34);
  background: rgba(13, 107, 99, 0.14);
  outline: none;
}

.projection-modal-demo {
  display: grid;
  gap: 1rem;
}

.projection-modal-demo__header,
.projection-modal-demo__selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.projection-modal-demo__header {
  justify-content: space-between;
  align-items: start;
}

.projection-modal-demo__eyebrow {
  margin: 0 0 0.15rem;
  color: var(--accent);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projection-modal-demo__title {
  margin: 0;
  font-family: "Fraunces", "Source Serif 4", serif;
  font-size: 1.36rem;
  line-height: 1.15;
}

.projection-modal-demo__status {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.projection-modal-demo__layout {
  display: grid;
  gap: 1rem;
}

.projection-modal-demo__details {
  display: grid;
  gap: 0.9rem;
}

.projection-modal-demo .vector-figure {
  margin: 0;
}

.projection-modal-demo .vector-figure__svg {
  max-width: 32rem;
  margin: 0 auto;
}

.projection-modal-demo__detail {
  display: none;
}

.projection-modal-demo__detail--default,
.projection-modal-demo:not([data-projection-component]) .projection-modal-demo__detail--default,
.projection-modal-demo[data-projection-component="y0"] [data-projection-detail="y0"],
.projection-modal-demo[data-projection-component="y1"] [data-projection-detail="y1"] {
  display: block;
}

.projection-modal-demo__detail strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
}

.projection-notes strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
}

.projection-modal-demo__detail p {
  margin: 0.65rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.projection-note p {
  margin: 0.65rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.projection-modal-demo[data-projection-component] .projection-modal-demo__detail--default {
  display: none;
}

.projection-modal-demo[data-projection-component="y0"] [data-projection-select="y0"],
.projection-modal-demo[data-projection-component="y1"] [data-projection-select="y1"] {
  border-color: rgba(13, 107, 99, 0.38);
  background: rgba(13, 107, 99, 0.18);
}

.projection-demo--preview[data-projection-active] [data-projection-item],
.projection-demo--preview[data-projection-active] .projection-output-button {
  opacity: 0.24;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease, border-color 160ms ease;
}

.projection-demo--preview[data-projection-active="y0"] [data-projection-part~="y0"],
.projection-demo--preview[data-projection-active="y1"] [data-projection-part~="y1"] {
  opacity: 1;
}

.projection-demo--preview[data-projection-active="y0"] [data-projection-output="y0"],
.projection-demo--preview[data-projection-active="y1"] [data-projection-output="y1"] {
  opacity: 1;
  color: var(--accent-strong);
  transform: scale(1.06);
}

.projection-demo--preview[data-projection-active="y0"] [data-projection-part~="y0"] {
  border-color: rgba(191, 90, 54, 0.5);
  background: rgba(191, 90, 54, 0.18);
  box-shadow: 0 0 0 3px rgba(191, 90, 54, 0.08);
}

.projection-demo--preview[data-projection-active="y1"] [data-projection-part~="y1"] {
  border-color: rgba(93, 90, 163, 0.48);
  background: rgba(93, 90, 163, 0.18);
  box-shadow: 0 0 0 3px rgba(93, 90, 163, 0.08);
}

.projection-demo--preview[data-projection-active] .projection-notes__hint {
  display: none;
}

.projection-demo--preview[data-projection-active="y0"] [data-projection-detail="y0"],
.projection-demo--preview[data-projection-active="y1"] [data-projection-detail="y1"] {
  display: block;
}

.projection-visual--modal {
  margin-top: 0;
}

.softmax-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.4rem 0;
}

.softmax-print-static {
  display: none;
}

.softmax-card {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.softmax-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.softmax-card__support-label {
  margin-bottom: 0.45rem;
  color: var(--ink-muted);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.softmax-card--primary {
  max-width: 56rem;
}

.softmax-card--curve {
  max-width: 34rem;
  background: rgba(255, 255, 255, 0.72);
}

.softmax-card p {
  margin: 0.85rem 0 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.softmax-curve__svg {
  display: block;
  width: 100%;
  height: auto;
}

.softmax-process,
.softmax-roadmap,
.softmax-roadmap__step,
.softmax-step__eyebrow,
.softmax-step h4,
.softmax-chip,
.softmax-bars__row,
.softmax-bars__label,
.softmax-bars__value,
.softmax-curve__tick,
.softmax-curve__label {
  font-family: "IBM Plex Sans", sans-serif;
}

.softmax-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.softmax-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 0 0.95rem;
  padding: 0;
  list-style: none;
}

.softmax-roadmap__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(13, 107, 99, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.softmax-roadmap__step::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -0.6rem;
  transform: translate(50%, -50%);
  color: rgba(31, 38, 48, 0.38);
  font-size: 1rem;
  font-weight: 700;
}

.softmax-roadmap__step:last-child::after {
  content: none;
}

.softmax-roadmap__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(13, 107, 99, 0.16);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.softmax-roadmap__label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.softmax-step {
  position: relative;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 231, 0.72));
}

.softmax-step--flow::after {
  content: "→";
  position: absolute;
  top: 1.05rem;
  right: -0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.96);
  border: 1px solid rgba(31, 38, 48, 0.12);
  color: rgba(31, 38, 48, 0.55);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 0 0 0.18rem rgba(246, 243, 238, 0.92);
}

.softmax-step--flow:last-child::after {
  content: none;
}

.softmax-step__eyebrow {
  margin-bottom: 0.35rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.softmax-step h4 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.softmax-step p {
  margin: 0.7rem 0 0;
}

.softmax-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.softmax-chips--small {
  margin-top: 0.8rem;
}

.softmax-chip {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0.7rem 0.55rem;
  border-radius: 0.95rem;
  border: 1px solid transparent;
}

.softmax-chip__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.softmax-chip__value {
  font-size: 1.1rem;
  font-weight: 700;
}

.softmax-chip--signal {
  background: rgba(191, 90, 54, 0.12);
  border-color: rgba(191, 90, 54, 0.22);
  color: #8f3a1f;
}

.softmax-chip--accent {
  background: rgba(13, 107, 99, 0.12);
  border-color: rgba(13, 107, 99, 0.22);
  color: var(--accent-strong);
}

.softmax-chip--muted {
  background: rgba(93, 90, 163, 0.11);
  border-color: rgba(93, 90, 163, 0.2);
  color: #4f4a89;
}

.softmax-bars {
  margin-top: 0.8rem;
}

.softmax-bars__row {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr) 3rem;
  gap: 0.6rem;
  align-items: center;
}

.softmax-bars__row + .softmax-bars__row {
  margin-top: 0.55rem;
}

.softmax-bars__label,
.softmax-bars__value {
  font-size: 0.92rem;
  font-weight: 700;
}

.softmax-bars__track {
  height: 1rem;
  border-radius: 999px;
  background: rgba(31, 38, 48, 0.08);
  overflow: hidden;
}

.softmax-bars__fill {
  height: 100%;
  border-radius: 999px;
}

.softmax-bars__fill--signal {
  background: linear-gradient(90deg, rgba(191, 90, 54, 0.92), rgba(214, 124, 78, 0.92));
}

.softmax-bars__fill--accent {
  background: linear-gradient(90deg, rgba(13, 107, 99, 0.92), rgba(47, 151, 142, 0.92));
}

.softmax-bars__fill--muted {
  background: linear-gradient(90deg, rgba(93, 90, 163, 0.92), rgba(132, 128, 197, 0.92));
}

.softmax-curve__panel {
  fill: rgba(13, 107, 99, 0.04);
  stroke: rgba(31, 38, 48, 0.14);
  stroke-width: 1.2;
}

.softmax-curve__grid line {
  stroke: rgba(31, 38, 48, 0.1);
  stroke-width: 1;
}

.softmax-curve__axes line {
  stroke: rgba(31, 38, 48, 0.72);
  stroke-width: 2;
}

.softmax-curve__line {
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 4;
  stroke-linecap: round;
}

.softmax-curve__point--signal {
  fill: var(--signal);
}

.softmax-curve__point--accent {
  fill: var(--accent);
}

.softmax-curve__point--muted {
  fill: var(--optional);
}

.softmax-curve__tick {
  fill: var(--ink-muted);
  font-size: 14px;
}

.softmax-curve__label {
  fill: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.softmax-inline-math {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.98rem;
}

.softmax-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.4rem;
}

.softmax-notes > div {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.softmax-notes strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
}

.vector-figure {
  max-width: 36rem;
  margin: 1.4rem auto;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.vector-figure__svg {
  display: block;
  width: min(100%, 32rem);
  height: auto;
  margin: 0 auto;
}

.vector-figure figcaption {
  margin-top: 0.85rem;
  color: var(--ink-muted);
}

.vector-figure__panel {
  fill: rgba(13, 107, 99, 0.04);
  stroke: rgba(31, 38, 48, 0.14);
  stroke-width: 1.2;
}

.vector-figure__grid line {
  stroke: rgba(31, 38, 48, 0.1);
  stroke-width: 1;
}

.vector-figure__axes line {
  stroke: rgba(31, 38, 48, 0.72);
  stroke-width: 2;
}

.vector-figure__ticks text,
.vector-figure__axis-label,
.vector-figure__label {
  font-family: "IBM Plex Sans", sans-serif;
}

.vector-figure__ticks text {
  fill: var(--ink-muted);
  font-size: 12px;
}

.vector-figure__axis-label {
  fill: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.vector-figure__vector {
  stroke-width: 4;
  stroke-linecap: round;
}

.vector-figure__vector--accent {
  stroke: var(--accent);
}

.vector-figure__vector--signal {
  stroke: var(--signal);
}

.vector-figure__point--accent {
  fill: var(--accent);
}

.vector-figure__point--base {
  fill: var(--accent-strong);
}

.vector-figure__point--signal {
  fill: var(--signal);
}

.vector-figure__label {
  font-size: 14px;
  font-weight: 700;
}

.vector-figure__label--accent {
  fill: var(--accent-strong);
}

.vector-figure__label--signal {
  fill: var(--signal);
}

.vector-figure__component {
  fill: none;
  stroke-linecap: round;
}

.vector-figure__input-label,
.vector-figure__multiplier {
  opacity: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.vector-figure__input-label {
  fill: var(--ink);
}

.vector-figure__multiplier {
  fill: var(--ink);
  paint-order: stroke fill;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.vector-figure__component {
  opacity: 0;
  stroke-width: 4;
}

.vector-figure__component--x {
  stroke: var(--signal);
}

.vector-figure__component--y {
  stroke: var(--signal);
}

.vector-figure__component-label {
  opacity: 0;
  fill: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  paint-order: stroke fill;
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.vector-figure__point--base {
  opacity: 0;
}

.projection-modal-demo:not([data-projection-component]) .vector-figure__component-label,
.projection-modal-demo:not([data-projection-component]) .vector-figure__component,
.projection-modal-demo:not([data-projection-component]) .vector-figure__input-label,
.projection-modal-demo:not([data-projection-component]) .vector-figure__multiplier,
.projection-modal-demo:not([data-projection-component]) .vector-figure__point--base {
  opacity: 0 !important;
}

.projection-modal-demo:not([data-projection-component]) .vector-figure__label--accent,
.projection-modal-demo:not([data-projection-component]) .vector-figure__label--signal,
.projection-modal-demo:not([data-projection-component]) .vector-figure__point--accent,
.projection-modal-demo:not([data-projection-component]) .vector-figure__point--signal,
.projection-modal-demo:not([data-projection-component]) .vector-figure__vector--accent,
.projection-modal-demo:not([data-projection-component]) .vector-figure__vector--signal {
  opacity: 1 !important;
}

.projection-modal-demo[data-projection-component="y0"] .vector-figure__vector--accent,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__point--accent,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__label--accent {
  opacity: 1;
}

.projection-modal-demo[data-projection-component="y1"] .vector-figure__vector--accent,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__point--accent,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__label--accent {
  opacity: 1;
}

.projection-modal-demo[data-projection-component="y0"] .vector-figure__input-label--c0,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__input-label--c1,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__multiplier--y0-c0,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__multiplier--y0-c1,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__component--x,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__component-label--x,
.projection-modal-demo[data-projection-component="y0"] .vector-figure__point--base,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__input-label--c0,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__input-label--c1,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__multiplier--y1-c0,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__multiplier--y1-c1,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__component--y,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__component-label--y,
.projection-modal-demo[data-projection-component="y1"] .vector-figure__point--signal {
  opacity: 1;
}

.projection-demo--preview[data-projection-active="y0"] .vector-figure__input-label--c0,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__input-label--c1,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__multiplier--y0-c0,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__multiplier--y0-c1,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__component--x,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__component-label--x,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__point--base,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__input-label--c0,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__input-label--c1,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__multiplier--y1-c0,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__multiplier--y1-c1,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__component--y,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__component-label--y,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__point--signal {
  opacity: 1;
}

.projection-demo--preview[data-projection-active] .vector-figure__vector--signal,
.projection-demo--preview[data-projection-active] .vector-figure__label--signal {
  opacity: 0;
}

.projection-demo--preview[data-projection-active="y0"] .vector-figure__point--signal {
  opacity: 0;
}

.projection-demo--preview[data-projection-active="y0"] .vector-figure__vector--accent,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__point--accent,
.projection-demo--preview[data-projection-active="y0"] .vector-figure__label--accent,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__vector--accent,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__point--accent,
.projection-demo--preview[data-projection-active="y1"] .vector-figure__label--accent {
  opacity: 1;
}

.projection-modal-demo[data-projection-component] .vector-figure__vector--signal,
.projection-modal-demo[data-projection-component] .vector-figure__label--signal {
  opacity: 0;
}

.projection-modal-demo[data-projection-component="y0"] .vector-figure__point--signal {
  opacity: 0;
}
