.xp-chamber-control,
.xp-quiet-frequency,
.xp-common-clock,
.xp-vector-foundry {
  position: relative;
  isolation: isolate;
}
.mi-console-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 15px 2% 30px;
}
.mi-console-heading h1 {
  font: 400 clamp(38px, 4.4vw, 65px) / 0.96 var(--sans);
  letter-spacing: -0.045em;
  margin: 17px 0 0;
}
.mi-console-heading h1 br {
  display: none;
}
.mi-console-heading h1 em {
  font-family: var(--serif);
}
.mi-console-heading > p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--xp-muted);
}
.mi-console {
  position: relative;
  margin: 0 2%;
  border: 1px solid #080d0dcc;
  border-radius: 13px;
  background: #353b39;
  box-shadow:
    0 30px 70px #0005,
    inset 0 1px 0 #d9e2d425;
  overflow: hidden;
}
.mi-console-bar {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid #111a17;
  font: 400 8px/1 var(--mono);
  letter-spacing: 0.1em;
  color: #afb9af;
}
.mi-console-bar i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #ee8f52;
  border-radius: 50%;
  margin-right: 8px;
}
.mi-console-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1fr;
  gap: 1px;
  background: #141d18;
}
.mi-console-grid > section {
  background: linear-gradient(140deg, #39403d, #303733);
  padding: 18px;
  min-width: 0;
  min-height: 176px;
  box-shadow: inset 0 1px 0 #d5e3d70b;
}
.mi-console-grid > section > span {
  font: 400 11px/1.4 var(--sans);
  color: #c0c8be;
}
.mi-console-nav {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.mi-console-nav > span {
  font: 400 8px/1.5 var(--mono) !important;
  letter-spacing: 0.08em;
}
.mi-console-nav > b {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.mi-console-nav > div {
  font-size: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.mi-console-nav i {
  width: 4px;
  height: 4px;
  border: 1px solid #9ca89d;
  border-radius: 50%;
}
.mi-console-nav output {
  margin-left: auto;
  font-family: var(--mono);
  color: #e0ab7d;
}
.mi-console-nav small {
  margin-top: auto;
  font: 400 7px/1.9 var(--mono);
  color: #849488;
  letter-spacing: 0.05em;
}
.mi-console-response .mi-plot {
  width: 100%;
  height: 125px;
  color: #e38e56;
  margin-top: 16px;
}
.mi-console-response > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.mi-console-response b {
  font: 400 28px/1 var(--mono);
  color: #e0d9c9;
}
.mi-console-response small {
  font: 400 7px/1.5 var(--mono);
  color: #87988c;
}
.mi-knob-label {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.mi-knob-label > span {
  font: 400 11px/1.4 var(--sans);
  color: #b7c2b8;
  justify-self: start;
}
.mi-knob {
  position: relative;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 230deg,
    #81928650 0deg 1deg,
    transparent 1deg 11deg
  );
  padding: 9px;
  isolation: isolate;
}
.mi-knob::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, #4b5750, #272e29);
  box-shadow:
    0 4px 6px #0005,
    inset 0 1px 0 #8192866b,
    0 0 0 3px #17201a;
}
.mi-knob i {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  transform: rotate(calc(-130deg + var(--value) * 2.6deg));
}
.mi-knob i:before {
  content: "";
  position: absolute;
  left: calc(50% - 1.5px);
  top: 9px;
  width: 3px;
  height: 17px;
  background: #e8bc8d;
  border-radius: 2px;
  box-shadow: 0 0 6px #ebaf5833;
}
.mi-knob-label > input {
  position: absolute;
  inset: 25px auto auto;
  width: 100px;
  height: 93px;
  opacity: 0;
  cursor: ew-resize;
}
.mi-knob-label:focus-within .mi-knob {
  outline: 2px solid #edb778;
  outline-offset: 4px;
}
.mi-knob-label output {
  font: 400 19px/1 var(--mono);
  color: #e2ddcd;
}
.mi-console-dial {
  display: grid;
  align-content: center;
}
.mi-console-switch {
  display: grid;
  justify-items: center;
  gap: 20px;
}
.mi-console-switch > span {
  justify-self: start;
}
.mi-console-switch button {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid #17211c;
  background: linear-gradient(140deg, #4d584f, #2a342c);
  box-shadow:
    0 4px 8px #0003,
    inset 0 1px 0 #82958455;
  display: grid;
  place-content: center;
  gap: 7px;
  color: #efbc88;
  cursor: pointer;
  font: 400 9px/1 var(--mono);
}
.mi-console-switch button i {
  display: block;
  height: 7px;
  width: 7px;
  background: #ee8d4d;
  border-radius: 50%;
  justify-self: center;
  box-shadow: 0 0 12px #ed722f66;
}
.mi-console-switch button[aria-pressed="false"] {
  color: #a2b0a5;
}
.mi-console-switch button[aria-pressed="false"] i {
  background: #69776d;
  box-shadow: none;
}
.mi-console-switch small {
  font: 400 6px/1.6 var(--mono);
  color: #86968a;
}
.mi-console-mode > div {
  display: grid;
  margin-top: 27px;
  gap: 16px;
}
.mi-console-mode button {
  font: 400 12px/1 var(--mono);
  letter-spacing: 0.05em;
  text-align: left;
  color: #849688;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.mi-console-mode button:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 3px;
  background: transparent;
  margin-right: 10px;
  vertical-align: middle;
}
.mi-console-mode button[aria-pressed="true"] {
  color: #e9d7be;
}
.mi-console-mode button[aria-pressed="true"]:before {
  background: #ee8d4d;
}
.mi-console-meter {
  grid-column: span 1;
}
.mi-meter-bars {
  display: flex;
  align-items: end;
  height: 79px;
  gap: 4px;
  margin: 18px 0 16px;
}
.mi-meter-bars i {
  width: 100%;
  height: calc(var(--bar) * 1%);
  min-height: 4px;
  background: linear-gradient(#e9bd8e, #796d4f);
  border-radius: 1px;
}
.mi-console-meter small {
  font: 400 6px/1.6 var(--mono);
  color: #a7b8a7;
}
.mi-console-meter b {
  font-weight: 400;
  color: #e9d5b5;
}
.xp-chamber-control[data-character="1"] .mi-console {
  filter: hue-rotate(-15deg);
}
.xp-chamber-control[data-character="2"] .mi-console {
  filter: hue-rotate(20deg);
}
.xp-chamber-control[data-light="false"] .mi-console {
  filter: brightness(0.78);
}
.mi-sound-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 1% 3% 35px;
}
.mi-sound-heading h1 {
  font: 400 clamp(46px, 5vw, 74px) / 0.97 var(--sans);
  letter-spacing: -0.05em;
  margin: 20px 0 0;
}
.mi-sound-heading h1 em {
  font-family: var(--serif);
}
.mi-sound-heading button {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #ddd8c8;
  color: #26352e;
  border: 1px solid #f2edd5;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 11px;
  cursor: pointer;
}
.mi-sound-heading button[aria-pressed="true"] {
  background: #bda78a;
}
.mi-sound-rack {
  margin: 0 3%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.mi-sound-rack > section {
  background: linear-gradient(145deg, #252e28, #1c241f);
  border: 1px solid #5d6c5438;
  border-radius: 8px;
  box-shadow:
    0 9px 20px #0002,
    inset 0 1px 0 #a8b18d0e;
  min-width: 0;
  padding: 18px;
}
.mi-sound-master {
  grid-column: 1/-1;
  height: 160px;
}
.mi-sound-master > div {
  display: flex;
  justify-content: space-between;
  font: 400 8px/1.5 var(--mono);
  color: #8f9e8e;
}
.mi-sound-master b {
  font-weight: 400;
  color: #c6b99d;
}
.mi-sound-master canvas {
  width: 100%;
  height: 86px;
  display: block;
}
.mi-sound-time {
  margin-top: 5px;
}
.mi-sound-module {
  position: relative;
  min-height: 214px;
  display: grid;
  gap: 15px;
  align-content: start;
}
.mi-sound-module > span {
  font-size: 11px;
  color: #c2cbbd;
}
.mi-sound-module > .mi-knob-label > span {
  font-size: 9px;
  justify-self: center;
  color: #94a38f;
}
.mi-sound-module .mi-knob-label > input {
  top: 22px;
}
.mi-sound-module small {
  font: 400 7px/1.5 var(--mono);
  letter-spacing: 0.06em;
  color: #7d8e7a;
  text-align: center;
}
.mi-sound-space {
  grid-template-columns: 1fr 1fr;
}
.mi-sound-space > span,
.mi-sound-space small {
  grid-column: 1/-1;
}
.mi-delay-diagram {
  position: relative;
  height: 100px;
  align-self: center;
}
.mi-delay-diagram i {
  position: absolute;
  border: 1px solid #879b7640;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
}
.mi-delay-diagram i:nth-child(2) {
  width: 44px;
  height: 44px;
}
.mi-delay-diagram i:nth-child(3) {
  width: 22px;
  height: 22px;
  border-color: #bfb09288;
}
.mi-delay-diagram b {
  position: absolute;
  left: 50%;
  top: 50%;
  font: 400 30px/0 var(--sans);
  color: #c6af8c;
  transform: translateX(-50%);
}
.mi-sound-level-bars {
  height: 85px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.mi-sound-level-bars i {
  flex: 1;
  height: 55%;
  background: #c4b99a;
  opacity: 0.22;
}
.mi-sound-level-bars i:nth-child(3n) {
  height: 75%;
}
.mi-sound-level > label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  font-size: 10px;
  color: #aebba4;
}
.mi-sound-level input {
  width: 100%;
  grid-row: 2;
  grid-column: 1/-1;
  accent-color: #b5aa89;
}
.mi-sound-caption {
  font: 400 11px/1.5 var(--sans);
  text-align: center;
  color: #8a9b8c;
  margin-top: 24px;
}
.mi-clock-copy {
  position: absolute;
  left: 3%;
  top: 24%;
  width: 34%;
}
.mi-clock-copy h1 {
  font: 400 clamp(50px, 5.7vw, 83px) / 1 var(--sans);
  letter-spacing: -0.05em;
  margin: 24px 0;
}
.mi-clock-copy h1 em {
  font-family: var(--serif);
}
.mi-clock-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--xp-muted);
}
.mi-clock-copy button {
  margin-top: 26px;
  display: flex;
  gap: 35px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #6c8781;
  padding: 12px 0;
  color: #3d5b53;
  cursor: pointer;
  font-size: 12px;
}
.mi-clock-copy > span:last-child {
  display: block;
  font-size: 10px;
  color: #809487;
  margin-top: 24px;
  max-width: 260px;
}
.mi-clock-sheet {
  position: absolute;
  left: 42%;
  right: 3%;
  top: 10%;
  bottom: 6%;
  border: 1px solid #dce2d4;
  background: #f8faf2;
  box-shadow:
    0 20px 60px #293c2510,
    0 1px 0 #fff inset;
  padding: 20px;
}
.mi-sheet-top {
  display: flex;
  justify-content: space-between;
  font: 400 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  color: #7c9589;
}
.mi-clock-sheet svg {
  width: 100%;
  height: calc(100% - 55px);
  display: block;
  font-family: var(--mono);
}
.mi-process-node[data-done="true"] > rect {
  stroke: #829c8866;
}
.mi-clock-progress {
  display: flex;
  align-items: center;
  gap: 24px;
  font: 400 8px/1.5 var(--mono);
  color: #7c9589;
}
.mi-clock-progress > div {
  height: 2px;
  background: #dce4d7;
  flex: 1;
}
.mi-clock-progress i {
  display: block;
  height: 100%;
  background: #b28c59;
}
.mi-clock-progress > span {
  min-width: 55px;
  text-align: right;
}
.mi-vector-heading {
  position: absolute;
  left: 3%;
  top: 12%;
  z-index: 1;
  pointer-events: none;
}
.mi-vector-heading h1 {
  font: 400 clamp(54px, 6vw, 86px) / 0.98 var(--sans);
  letter-spacing: -0.055em;
  margin: 26px 0;
}
.mi-vector-heading h1 em {
  font-family: var(--serif);
}
.mi-vector-heading p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--xp-muted);
}
.mi-vector-sheet {
  position: absolute;
  left: 31%;
  right: 0;
  top: 7%;
  bottom: 10%;
  border: 1px solid #7c94901f;
  background: repeating-linear-gradient(
    90deg,
    #718b7614 0 1px,
    transparent 1px 35px
  );
  padding: 20px 24px;
}
.mi-vector-sheet svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  font-family: var(--mono);
}
.mi-vector-index {
  position: absolute;
  top: 21px;
  right: 23px;
  font: 400 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  color: #849892;
}
.mi-vector-seal {
  position: absolute;
  right: 28px;
  bottom: 23px;
  font: 400 18px/1.2 var(--serif);
  padding: 8px;
  border: 1px solid #819a942e;
  color: #728e8a;
}
.mi-vector-bottom {
  position: absolute;
  bottom: 1%;
  left: 3%;
  right: 3%;
  display: grid;
  grid-template-columns: 1fr 230px auto;
  gap: 70px;
  align-items: end;
}
.mi-vector-bottom > span {
  font-size: 11px;
  line-height: 1.6;
  color: var(--xp-muted);
}
@media (max-width: 720px) {
  .mi-console-heading {
    margin: 1% 0 22px;
    display: block;
  }
  .mi-console-heading h1 {
    font-size: 42px;
    line-height: 1;
    margin-top: 16px;
  }
  .mi-console-heading h1 br {
    display: block;
  }
  .mi-console-heading > p {
    font-size: 11px;
    line-height: 1.5;
    margin: 13px 0;
  }
  .mi-console {
    margin: 0;
  }
  .mi-console-bar {
    font-size: 6px;
    padding: 0 10px;
    height: 30px;
  }
  .mi-console-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mi-console-grid > section {
    padding: 12px;
    min-height: 145px;
  }
  .mi-console-nav {
    display: none !important;
  }
  .mi-console-response {
    grid-column: span 2;
  }
  .mi-console-response .mi-plot {
    height: 93px;
    margin-top: 10px;
  }
  .mi-console-response b {
    font-size: 21px;
  }
  .mi-console-response small {
    font-size: 5px;
  }
  .mi-console-grid > section > span {
    font-size: 9px;
  }
  .mi-knob-label > span {
    font-size: 8px;
  }
  .mi-knob {
    width: 64px;
    height: 64px;
  }
  .mi-knob i:before {
    height: 12px;
    top: 7px;
    width: 2px;
    left: calc(50% - 1px);
  }
  .mi-knob-label > input {
    width: 75px;
    height: 70px;
    top: 25px;
  }
  .mi-knob-label output {
    font-size: 16px;
  }
  .mi-console-switch {
    gap: 15px;
  }
  .mi-console-switch button {
    height: 50px;
    width: 50px;
    font-size: 7px;
  }
  .mi-console-switch small {
    font-size: 5px;
  }
  .mi-console-mode > div {
    gap: 15px;
    margin-top: 24px;
  }
  .mi-console-mode button {
    font-size: 7px;
    padding: 0;
  }
  .mi-console-mode button:before {
    width: 5px;
    margin-right: 5px;
  }
  .mi-console-meter {
    grid-column: span 2;
    min-height: 89px !important;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8px;
    align-items: center;
  }
  .mi-meter-bars {
    height: 48px;
    margin: 0;
  }
  .mi-console-meter small {
    grid-column: 1/-1;
    font-size: 6px;
  }
  .mi-sound-heading {
    margin: 2% 0 22px;
    display: block;
  }
  .mi-sound-heading h1 {
    font-size: 49px;
    margin: 17px 0;
  }
  .mi-sound-heading button {
    font-size: 10px;
    padding: 10px 14px;
    gap: 40px;
  }
  .mi-sound-heading .mo-eyebrow {
    font-size: 7px;
  }
  .mi-sound-rack {
    margin: 0;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mi-sound-rack > section {
    padding: 13px;
  }
  .mi-sound-master {
    height: 120px;
  }
  .mi-sound-master canvas {
    height: 57px;
  }
  .mi-sound-master > div {
    font-size: 6px;
  }
  .mi-sound-module {
    min-height: 163px;
    gap: 9px;
  }
  .mi-sound-module > span {
    font-size: 10px;
  }
  .mi-sound-module small {
    font-size: 5px;
  }
  .mi-sound-space {
    gap: 7px;
  }
  .mi-delay-diagram {
    height: 73px;
  }
  .mi-delay-diagram i {
    width: 44px;
    height: 44px;
  }
  .mi-delay-diagram i:nth-child(2) {
    width: 31px;
    height: 31px;
  }
  .mi-delay-diagram i:nth-child(3) {
    width: 17px;
    height: 17px;
  }
  .mi-sound-level-bars {
    height: 56px;
  }
  .mi-sound-caption {
    font-size: 9px;
    margin-top: 14px;
  }
  .mi-sound-module .mi-knob-label > input {
    top: 22px;
  }
  .mi-clock-copy {
    left: 0;
    top: 2%;
    width: 100%;
  }
  .mi-clock-copy h1 {
    font-size: 50px;
    margin: 19px 0;
  }
  .mi-clock-copy p {
    font-size: 12px;
  }
  .mi-clock-copy button {
    margin-top: 13px;
    font-size: 11px;
  }
  .mi-clock-copy > span:last-child {
    margin-top: 12px;
    font-size: 9px;
  }
  .mi-clock-sheet {
    left: 0;
    right: 0;
    top: 44%;
    bottom: 0;
    padding: 13px;
  }
  .mi-sheet-top {
    font-size: 6px;
  }
  .mi-clock-sheet svg {
    height: calc(100% - 36px);
  }
  .mi-clock-progress {
    font-size: 7px;
    gap: 14px;
  }
  .mi-vector-heading {
    left: 0;
    top: 3%;
  }
  .mi-vector-heading h1 {
    font-size: 52px;
    margin: 20px 0;
  }
  .mi-vector-heading p {
    font-size: 12px;
  }
  .mi-vector-sheet {
    left: -10px;
    right: -10px;
    top: 34%;
    bottom: 19%;
    padding: 0;
  }
  .mi-vector-index {
    font-size: 6px;
    top: 15px;
    right: 15px;
  }
  .mi-vector-seal {
    font-size: 13px;
    right: 15px;
    bottom: 14px;
    padding: 6px;
  }
  .mi-vector-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mi-vector-bottom .mo-range {
    max-width: 230px;
  }
  .mi-vector-bottom > span {
    display: none;
  }
}
.mi-console-nav {
  display: none;
}
.mi-console-response {
  grid-column: span 2;
}
.mi-console-heading h1 {
  font-family: var(--mono);
  font-size: clamp(35px, 3.9vw, 55px);
  letter-spacing: -0.06em;
}
.mi-console-heading h1 br:after {
  content: " ";
}
.mi-console-heading h1 em {
  font: inherit;
}
.mi-clock-copy h1 em {
  font: inherit;
}
.mi-vector-heading h1 {
  font-family: var(--serif);
  font-size: clamp(70px, 6.9vw, 103px);
  letter-spacing: -0.035em;
}
@media (max-width: 720px) {
  .mi-console-heading h1 {
    font-size: 34px;
    line-height: 1.1;
  }
  .mi-vector-heading h1 {
    font-size: 62px;
  }
}
@media (max-height: 760px) and (min-width: 721px) {
  .mi-console-heading {
    margin-top: 4px;
    margin-bottom: 18px;
  }
  .mi-console-heading h1 {
    font-size: 39px;
    margin-top: 12px;
  }
  .mi-console-heading > p {
    font-size: 11px;
  }
  .mi-console-grid > section {
    padding: 14px;
    min-height: 156px;
  }
  .mi-console-response .mi-plot {
    height: 100px;
    margin-top: 12px;
  }
  .mi-console-response b {
    font-size: 24px;
  }
  .mi-console-mode > div {
    margin-top: 18px;
    gap: 13px;
  }
  .mi-sound-heading {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .mi-sound-heading h1 {
    font-size: 53px;
    margin-top: 15px;
  }
  .mi-sound-rack > section {
    padding: 14px;
  }
  .mi-sound-master {
    height: 126px;
  }
  .mi-sound-master canvas {
    height: 57px;
  }
  .mi-sound-module {
    min-height: 183px;
    gap: 10px;
  }
  .mi-sound-caption {
    margin-top: 13px;
    font-size: 10px;
  }
  .mi-sound-module .mi-knob {
    width: 70px;
    height: 70px;
  }
  .mi-sound-module .mi-knob-label > input {
    width: 82px;
    height: 80px;
  }
  .mi-sound-level-bars {
    height: 67px;
  }
}
