.work-screen {
  min-height: 100vh;
  padding: clamp(110px, 15vh, 150px) var(--px) 80px;
}

.work-screen .kicker {
  line-height: normal;
}

.work-intro {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: #333;
  max-width: 540px;
}

.work-intro strong {
  font-weight: 700;
}

.h2-work {
  margin-top: 16px;
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -.02em;
  line-height: .92;
  text-transform: uppercase;
}

.h2-work .gold {
  color: var(--accent);
}

.work-rows {
  margin-top: clamp(36px, 6vh, 56px);
  border-bottom: 1px solid var(--ink);
}

.work-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.8vh, 28px) 0;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: padding-left .5s var(--ease), color .3s;
}

@media (hover: hover) and (pointer: fine) {
  .work-row:hover {
    padding-left: 24px;
    color: var(--accent);
  }
}

.work-row .num {
  font-size: 12.5px;
  font-weight: 600;
  font-stretch: 75%;
  line-height: normal;
  color: #767676;
}

.work-row .name {
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.work-row .side {
  grid-column: 2;
  text-align: left;
}

.work-row .side .client {
  display: block;
  font-size: 12px;
  font-weight: 700;
  font-stretch: 75%;
  letter-spacing: .1em;
  line-height: normal;
  text-transform: uppercase;
  color: var(--ink);
}

.work-row .side .service {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  font-stretch: 75%;
  letter-spacing: .1em;
  line-height: normal;
  text-transform: uppercase;
  color: #767676;
}

.work-note {
  margin-top: 24px;
  font-size: 11.5px;
  font-weight: 600;
  font-stretch: 75%;
  letter-spacing: .14em;
  line-height: normal;
  text-transform: uppercase;
  color: #767676;
}

.preview-card {
  display: none;
}

@media (min-width: 720px) {
  .work-row {
    grid-template-columns: 52px 1fr minmax(180px, auto);
  }

  .work-row .side {
    grid-column: auto;
    text-align: right;
  }
}

@media (prefers-reduced-motion: no-preference) and (pointer: fine) {
  .preview-card {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: min(400px, 36vw);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    z-index: 45;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 30px 80px rgba(10, 10, 10, .35);
    background: var(--ink);
  }

  .preview-card .pv-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
  }

  .preview-card .pv-tex {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 26px);
  }

  .preview-card .pv-hero {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
  }

  .preview-card .pv-hero-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    height: 1080px;
    transform-origin: top left;
    --fold: 1080px;
  }

  .preview-card .pv-num {
    position: absolute;
    top: -26px;
    right: 6px;
    font-weight: 900;
    font-stretch: 125%;
    font-size: 140px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .25);
    line-height: 1;
  }

  .preview-card .pv-chip {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    font-stretch: 75%;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 5px 11px;
  }
}

@media (max-width: 719px) {
  .h2-work {
    font-size: clamp(32px, 10.2vw, 44px);
    font-stretch: 100%;
  }
}

.work-row .thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ink);
}

.work-row .thumb-n {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  font-stretch: 75%;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .78);
}

.work-row .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 719px) {
  .work-row {
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: start;
  }
}

@media (hover: none) {
  .work-note {
    display: none;
  }
}

.lab-screen {
  min-height: 100vh;
  padding: clamp(110px, 15vh, 150px) var(--px) 80px;
}

.lab-intro {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: #333;
  max-width: 520px;
}

.exp-hero--cover {
  position: relative;
  overflow: hidden;
}

.exp-hero--cover .exp-head {
  position: relative;
  z-index: 1;
}

.exp-hero--cover .case-hero-tags {
  color: rgba(255, 255, 255, .85);
}

.exp-cover {
  position: absolute;
  inset: 0;
}

.exp-cover picture,
.exp-cover img {
  display: block;
  width: 100%;
  height: 100%;
}

.exp-cover img {
  object-fit: cover;
}

.exp-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .74), rgba(10, 10, 10, .28) 52%, rgba(10, 10, 10, .5));
}

.rag-stage {
  position: relative;
  overflow: hidden;
  width: min(1140px, 100%);
  border: 1px solid rgba(255, 255, 255, .2);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 24px) #0a0a0a;
  padding: clamp(18px, 3vw, 36px);
}

.rag-narrow {
  display: none;
}

.rag-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  fill: #e8b23a;
}

.rag-lblw {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  fill: rgba(255, 255, 255, .62);
}

.rag-sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  fill: rgba(255, 255, 255, .48);
}

.rag-subg {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .14em;
  fill: rgba(232, 178, 58, .88);
}

.rag-tiny {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .12em;
  fill: rgba(232, 178, 58, .85);
}

.rag-foot {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  fill: rgba(255, 255, 255, .45);
}

.rag-mn,
.rag-mng,
.rag-mns {
  font-family: monospace;
  letter-spacing: 0;
}

.rag-mn {
  font-size: 11px;
  fill: rgba(255, 255, 255, .82);
}

.rag-mng {
  font-size: 10.5px;
  fill: rgba(232, 178, 58, .9);
}

.rag-mns {
  font-size: 8.5px;
  fill: rgba(255, 255, 255, .55);
}

.rag-vbar,
.rag-tok,
.rag-gbar {
  transform-box: fill-box;
}

.rag-vbar {
  transform-origin: bottom;
}

.rag-tok,
.rag-gbar {
  transform-origin: left;
}

.lab-rows {
  margin-top: clamp(36px, 6vh, 52px);
  display: flex;
  flex-direction: column;
}

.lab-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vh, 44px) 0;
}

.lab-row + .lab-row {
  border-top: 1px solid var(--ink);
}

.lab-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.lab-tile .grad {
  position: absolute;
  inset: -12%;
}

.lab-tile .grad .grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 24px);
}

.lab-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0a0a0a;
}

.lab-pick {
  display: grid;
  gap: 10px;
  width: min(320px, 82%);
}

.lab-pick-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .44);
}

.lab-pick-box {
  position: relative;
  display: block;
  padding: 10px 40px 11px 14px;
  border: 1px solid #e8b23a;
  background: rgba(232, 178, 58, .12);
}

.lab-pick-box::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 6px;
  margin-top: -2px;
  background: #e8b23a;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.lab-pick-value {
  display: grid;
}

.lab-pick-name {
  grid-area: 1 / 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.lab-pick-stack {
  display: block;
  font-family: inherit;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .64);
}

.lab-tbl {
  display: grid;
  margin-top: 2px;
}

.lab-tbl-face {
  grid-area: 1 / 1;
  display: grid;
  min-width: 0;
}

.lab-tbl-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  padding: 5px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-style: normal;
}

.lab-tbl-head {
  padding: 0 0 4px;
  border-top: 0;
}

.lab-tbl-head .lab-tbl-c {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .44);
}

.lab-tbl-c {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  color: rgba(255, 255, 255, .85);
}

.lab-tbl-c-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lab-face--shot {
  background: #000000;
}

.lab-face--shot picture,
.lab-face--shot img {
  width: 100%;
  height: 100%;
}

.lab-face--shot img {
  object-fit: cover;
}

.lab-face--rag .rag-wide {
  display: block;
  width: 94%;
}

.lab-ump {
  grid-area: 1 / 1;
  display: grid;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.lab-ump-3 {
  opacity: 1;
}

.lab-ump-split {
  grid-template-columns: 1fr 1fr;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes umpf1 {
    0%, 25% { opacity: 1; }
    33%, 92% { opacity: 0; }
    100% { opacity: 1; }
  }

  @keyframes umpf2 {
    0%, 25% { opacity: 0; }
    33%, 58% { opacity: 1; }
    66%, 100% { opacity: 0; }
  }

  @keyframes umpf3 {
    0%, 58% { opacity: 0; }
    66%, 92% { opacity: 1; }
    100% { opacity: 0; }
  }

  .lab-ump-1 {
    animation: umpf1 12s linear infinite;
  }

  .lab-ump-2 {
    animation: umpf2 12s linear infinite;
  }

  .lab-ump-3 {
    animation: umpf3 12s linear infinite;
  }
}

.lab-face-grot {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.lab-face-wide {
  font-family: Verdana, Geneva, 'DejaVu Sans', sans-serif;
}

.lab-face-serif {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.lab-face-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Courier New', monospace;
}

.lab-tile .num {
  position: absolute;
  top: -24px;
  right: 0;
  font-weight: 900;
  font-stretch: 125%;
  font-size: 140px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .22);
  pointer-events: none;
}

.lab-tile .chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  font-stretch: 75%;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 5px 11px;
}

.lab-body .cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-stretch: 75%;
  color: var(--gold-text);
}

.lab-body h2 {
  margin-top: 10px;
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.lab-body p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: #444;
  max-width: 440px;
}

.lab-body .tags {
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 600;
  font-stretch: 75%;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #767676;
}

.lab-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 26px;
}

.lab-body .gh.demo {
  color: var(--gold-text);
  border-bottom-color: var(--accent);
}

.lab-body .gh {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}

@media (hover: hover) and (pointer: fine) {
  .lab-body .gh:hover {
    color: var(--gold-text);
    border-color: var(--gold-text);
  }
}

@media (max-width: 780px) {
  .rag-wide {
    display: none;
  }

  .rag-narrow {
    display: block;
    max-width: 440px;
    margin-inline: auto;
  }

  .rag-narrow .rag-lbl,
  .rag-narrow .rag-lblw {
    font-size: 15px;
  }

  .rag-narrow .rag-sub,
  .rag-narrow .rag-subg {
    font-size: 12.5px;
  }

  .rag-narrow .rag-tiny {
    font-size: 11.5px;
  }

  .rag-narrow .rag-mn {
    font-size: 14px;
  }

  .rag-narrow .rag-mng {
    font-size: 13.5px;
  }

  .rag-narrow .rag-mns {
    font-size: 11.5px;
  }

  .rag-narrow .rag-foot {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .rag-lite {
    animation: raglite 14s linear var(--d, 0s) infinite;
  }

  .rag-vbar {
    animation: ragvgrow 14s var(--ease) var(--d, 0s) infinite;
  }

  .rag-ring {
    animation: ragring 14s var(--ease) infinite;
  }

  .rag-near {
    animation: ragnear 14s ease-in-out var(--d, 0s) infinite;
  }

  .rag-chunk {
    animation: ragrise 14s var(--ease) var(--d, 0s) infinite;
  }

  .rag-gbar,
  .rag-tok {
    animation: ragwipe 14s var(--ease) var(--d, 0s) infinite;
  }

  .rag-cite {
    animation: ragcite 14s ease-out infinite;
  }

  .rag-caret {
    animation: ragcaret 1.1s steps(1) infinite;
  }

  .rag-flow {
    animation: ragflow 14s ease-in-out var(--d, 0s) infinite;
  }

  @keyframes raglite {
    0% {
      stroke: rgba(255, 255, 255, .28);
    }

    3%, 11% {
      stroke: #e8b23a;
    }

    17%, 100% {
      stroke: rgba(255, 255, 255, .28);
    }
  }

  @keyframes ragvgrow {
    0%, 15% {
      transform: scaleY(.06);
    }

    24%, 100% {
      transform: scaleY(1);
    }
  }

  @keyframes ragring {
    0%, 30% {
      r: 4;
      opacity: 0;
    }

    33% {
      opacity: .9;
    }

    44% {
      r: 36;
      opacity: .9;
    }

    52%, 100% {
      r: 36;
      opacity: .35;
    }
  }

  @keyframes ragnear {
    0%, 36% {
      opacity: .18;
    }

    42%, 100% {
      opacity: 1;
    }
  }

  @keyframes ragrise {
    0%, 46% {
      opacity: 0;
      transform: translateY(8px);
    }

    54%, 100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes ragwipe {
    0%, 60% {
      transform: scaleX(0);
    }

    70%, 100% {
      transform: scaleX(1);
    }
  }

  @keyframes ragcite {
    0%, 88% {
      opacity: 0;
    }

    94%, 100% {
      opacity: 1;
    }
  }

  @keyframes ragcaret {
    0%, 49% {
      opacity: 1;
    }

    50%, 100% {
      opacity: 0;
    }
  }

  @keyframes ragflow {
    0%, 12% {
      offset-distance: 0%;
      opacity: 0;
    }

    14% {
      opacity: 1;
    }

    22% {
      offset-distance: 100%;
      opacity: 1;
    }

    24%, 100% {
      offset-distance: 100%;
      opacity: 0;
    }
  }
}

.lab-tile-in {
  position: absolute;
  inset: 0;
}

@media (hover: none) {
  .lab-links .gh {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .lab-links {
    gap: 4px 22px;
  }
}

.exp-root {
  display: block;
}

.exp-hero {
  --ex-line: rgba(255, 255, 255, .2);
  --ex-mute: rgba(255, 255, 255, .64);
  --ex-faint: rgba(255, 255, 255, .44);
  --ex-gold: rgba(232, 178, 58, .85);
  --ex-wash: rgba(232, 178, 58, .12);
  --ex-grot: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ex-wide: Verdana, Geneva, 'DejaVu Sans', sans-serif;
  --ex-serif: Georgia, 'Times New Roman', Times, serif;
  --ex-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Courier New', monospace;
  --ex-stage: #0a0a0a;
  --ex-stage-line: rgba(255, 255, 255, .34);
  --ex-stage-line-soft: rgba(255, 255, 255, .2);
  --ex-stage-fill: rgba(255, 255, 255, .05);
  --ex-on-stage: #ffffff;
  --ex-on-stage-mute: rgba(255, 255, 255, .64);
  --ex-on-stage-faint: rgba(255, 255, 255, .44);
  --ex-accent: #e8b23a;
  --ex-accent-soft: rgba(232, 178, 58, .45);
  --ex-accent-wash: rgba(232, 178, 58, .12);
  --ex-on-accent: #0a0a0a;
  --ex-f-ui: 'Archivo', system-ui, sans-serif;
  --ex-f-grot: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ex-f-wide: Verdana, Geneva, 'DejaVu Sans', sans-serif;
  --ex-f-serif: Georgia, 'Times New Roman', Times, serif;
  --ex-f-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Courier New', monospace;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vh, 52px);
  padding: clamp(72px, 9vh, 104px) var(--px) clamp(84px, 10vh, 112px);
}

.exp-head,
.exp-pick,
.exp-roster,
.exp-rig {
  width: min(1320px, 100%);
}

.exp-head {
  gap: 14px;
}

.exp-title {
  max-width: 24ch;
  font-size: clamp(27px, 3.4vw, 46px);
  font-weight: 900;
  font-stretch: 120%;
  letter-spacing: .01em;
  line-height: 1.03;
  text-transform: uppercase;
  color: #ffffff;
}

.exp-pick {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px clamp(18px, 3vw, 36px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ex-line);
}

.exp-pick-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ex-faint);
}

.exp-pick-box {
  position: relative;
  display: block;
  min-width: min(288px, 78vw);
  padding: 10px 40px 11px 14px;
  border: 1px solid #e8b23a;
  background: var(--ex-wash);
}

.exp-pick-box::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 6px;
  margin-top: -2px;
  background: #e8b23a;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.exp-pick-value {
  display: grid;
}

.exp-pick-name {
  grid-area: 1 / 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.exp-face-grot {
  font-family: var(--ex-grot);
}

.exp-face-wide {
  font-family: var(--ex-wide);
}

.exp-face-serif {
  font-family: var(--ex-serif);
}

.exp-face-mono {
  font-family: var(--ex-mono);
}

.exp-pick-stack {
  display: block;
  font-family: inherit;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ex-gold);
}

.exp-pick-note {
  max-width: 36ch;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ex-mute);
}

.exp-pick-meta {
  max-width: 42ch;
  margin: 8px 0 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--ex-faint);
}

.exp-seq-2,
.exp-seq-3,
.exp-seq-4 {
  opacity: 0;
}

.exp-board {
  display: grid;
  grid-template-columns: repeat(28, 16px);
  gap: 3px;
  max-width: 100%;
  overflow: hidden;
}

.exp-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, .09);
}

.exp-body {
  position: absolute;
  inset: 1px;
  display: block;
  background: #e8b23a;
  opacity: 0;
}

.exp-body.is-rest {
  opacity: 1;
}

.exp-roster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 16px 0 clamp(22px, 3.5vw, 34px);
}

.exp-roster-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ex-on-stage-faint);
}

.exp-roster-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exp-roster-item {
  padding: 4px 8px 5px;
  border: 1px solid var(--ex-stage-line-soft);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--ex-on-stage-mute);
}

.exp-rig {
  display: grid;
}

.exp-rig-face {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: clamp(14px, 2.4vw, 26px);
  min-width: 0;
}

.exp-rig-face-grot {
  font-family: var(--ex-f-grot);
}

.exp-rig-face-wide {
  font-family: var(--ex-f-wide);
}

.exp-rig-face-serif {
  font-family: var(--ex-f-serif);
}

.exp-rig-face-mono {
  font-family: var(--ex-f-mono);
}

.exp-panel {
  min-width: 0;
  border: 1px solid var(--ex-stage-line-soft);
  padding: 14px clamp(12px, 1.8vw, 18px) 16px;
}

.exp-panel-app {
  border-color: var(--ex-stage-line);
  background: var(--ex-stage-fill);
}

.exp-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 2px 14px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ex-stage-line-soft);
}

.exp-panel-label {
  margin: 0;
  font-family: var(--ex-f-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ex-on-stage);
}

.exp-panel-note {
  margin: 0;
  font-family: var(--ex-f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ex-on-stage-faint);
}

.exp-spec-aa {
  margin: 0;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.01em;
}

.exp-spec-set {
  margin: 12px 0 0;
  font-size: clamp(12px, 1.5vw, 15px);
  line-height: 1.55;
  color: var(--ex-on-stage-mute);
  overflow-wrap: anywhere;
}

.exp-spec-line {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--ex-stage-line-soft);
  font-size: clamp(18px, 2.6vw, 26px);
  line-height: 1.15;
  color: var(--ex-accent);
}

.exp-spec-ladder {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--ex-stage-line-soft);
}

.exp-spec-step {
  margin: 0 0 6px;
  line-height: 1.3;
  color: var(--ex-on-stage-mute);
}

.exp-spec-step-l {
  font-size: 19px;
  color: var(--ex-on-stage);
}

.exp-spec-step-m {
  font-size: 14.5px;
}

.exp-spec-step-s {
  margin-bottom: 0;
  font-size: 11.5px;
}

.exp-ui {
  font-size: 13px;
  line-height: 1.4;
}

.exp-ui-row {
  position: relative;
  padding: 11px 0 13px;
  border-bottom: 1px solid var(--ex-stage-line-soft);
}

.exp-ui-row:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.exp-ui-probe {
  position: absolute;
  inset: 3px 0;
  border: 1px solid var(--ex-accent);
  opacity: 0;
  pointer-events: none;
}

.exp-ui-probe-rest {
  opacity: 1;
}

.exp-ui-tag {
  position: absolute;
  right: 0;
  top: -9px;
  max-width: 100%;
  padding: 2px 6px 3px;
  background: var(--ex-stage);
  font-family: var(--ex-f-ui);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ex-accent);
}

.exp-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 7px 9px;
  border: 1px solid var(--ex-stage-line-soft);
  background: rgba(255, 255, 255, .04);
}

.exp-nav-brand {
  font-weight: 700;
  letter-spacing: .01em;
}

.exp-nav-link {
  font-size: 12px;
  color: var(--ex-on-stage-mute);
}

.exp-nav-field {
  flex: 1 1 90px;
  min-width: 80px;
  padding: 4px 8px 5px;
  border: 1px solid var(--ex-stage-line-soft);
  font-size: 12px;
  color: var(--ex-on-stage-faint);
}

.exp-nav-btn {
  padding: 4px 10px 5px;
  border: 1px solid var(--ex-on-stage-mute);
  font-size: 12px;
}

.exp-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.exp-field {
  flex: 1 1 150px;
  min-width: 0;
}

.exp-field-tight {
  flex: 0 1 auto;
}

.exp-field-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-style: normal;
  color: var(--ex-on-stage-mute);
}

.exp-field-box {
  position: relative;
  display: block;
  padding: 5px 9px 6px;
  border: 1px solid var(--ex-stage-line-soft);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ex-on-stage-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exp-field-box-sel {
  color: var(--ex-on-stage);
}

.exp-field-opts {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  font-size: 12.5px;
  font-weight: 400;
}

.exp-rad {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ex-on-stage-faint);
  border-radius: 50%;
}

.exp-rad-on {
  margin-left: 9px;
  border-color: var(--ex-accent);
  background: var(--ex-accent);
}

.exp-tbl {
  display: grid;
  gap: 0;
}

.exp-tbl-row {
  display: grid;
  grid-template-columns: 16px minmax(0, 1.05fr) minmax(0, 1.55fr) minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: start;
  padding: 6px 0 7px;
  border-bottom: 1px solid var(--ex-stage-line-soft);
}

.exp-tbl-row:last-child {
  border-bottom: 0;
}

.exp-tbl-row-head {
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ex-on-stage-faint);
  border-bottom-color: var(--ex-stage-line);
}

.exp-tbl-cell {
  font-size: 12px;
  font-style: normal;
  min-width: 0;
  overflow-wrap: anywhere;
}

.exp-tbl-cell-chk {
  padding-top: 2px;
}

.exp-tbl-cell-act {
  color: var(--ex-accent);
  text-align: right;
}

.exp-chk {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--ex-on-stage-faint);
}

.exp-chk-on {
  border-color: var(--ex-accent);
  background: var(--ex-accent);
}

.exp-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-btn {
  padding: 6px 13px 7px;
  border: 1px solid var(--ex-on-stage-mute);
  font-size: 12.5px;
}

.exp-btn-pri {
  border-color: var(--ex-accent);
  background: var(--ex-accent);
  color: var(--ex-on-accent);
  font-weight: 600;
}

.exp-btn-wide {
  border-style: dashed;
  border-color: var(--ex-stage-line);
  color: var(--ex-on-stage-mute);
}

.exp-alert {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 11px 10px;
  border: 1px solid var(--ex-accent-soft);
  background: var(--ex-accent-wash);
}

.exp-alert-dot {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 5px;
  background: var(--ex-accent);
}

.exp-alert-txt {
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 900px) {

  .exp-rig-face {
    grid-template-columns: minmax(0, 1fr);
  }

  .exp-spec-aa {
    font-size: clamp(48px, 14vw, 84px);
  }
}
@media (max-width: 560px) {

  .exp-tbl-row {
    grid-template-columns: 14px minmax(0, 1.1fr) minmax(0, 1.5fr);
  }

  .exp-tbl-cell-tel,
  .exp-tbl-cell-act {
    display: none;
  }

  .exp-ui-tag {
    font-size: 8.5px;
    letter-spacing: .08em;
  }
}

.exp-live {
  margin: clamp(30px, 5vh, 48px) 0 0;
}

.exp-live-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: #0a0a0a;
}

.exp-live-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ec98a;
}

.exp-live-url {
  flex: 1 1 auto;
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, .64);
}

.exp-live-open {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8b23a;
}

.exp-live-open:hover,
.exp-live-open:focus-visible {
  color: #ffffff;
}

.exp-live-frame {
  height: clamp(420px, 74vh, 760px);
  border: 1px solid var(--ink);
  background: #ffffff;
}

.exp-live-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.exp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 5vh, 48px);
}

.exp-link {
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.exp-link:hover,
.exp-link:focus-visible {
  background: var(--ink);
  color: #ffffff;
}

@media (max-width: 719px) {
  .exp-live-bar {
    flex-wrap: wrap;
  }

  .exp-live-url {
    flex: 1 1 100%;
    order: 2;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes exsnk {
    0%, 5.35% { opacity: 1; }
    5.36%, 100% { opacity: 0; }
  }

  .exp-body {
    animation: exsnk 32s steps(1, end) calc(var(--i) * -0.142857s) infinite;
  }

  @keyframes exprobe {
    0% { opacity: 0; }
    2%, 17% { opacity: 1; }
    19%, 100% { opacity: 0; }
  }

  .exp-ui-row:nth-child(1) .exp-ui-probe {
    animation: exprobe 20s linear 0s infinite;
  }

  .exp-ui-row:nth-child(2) .exp-ui-probe {
    animation: exprobe 20s linear 4s infinite;
  }

  .exp-ui-row:nth-child(3) .exp-ui-probe {
    animation: exprobe 20s linear 8s infinite;
  }

  .exp-ui-row:nth-child(4) .exp-ui-probe {
    animation: exprobe 20s linear 12s infinite;
  }

  .exp-ui-row:nth-child(5) .exp-ui-probe {
    animation: exprobe 20s linear 16s infinite;
  }

  @keyframes exseq1 {
    0%, 22% { opacity: 1; }
    25%, 97% { opacity: 0; }
    100% { opacity: 1; }
  }

  @keyframes exseq2 {
    0%, 22% { opacity: 0; }
    25%, 47% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }

  @keyframes exseq3 {
    0%, 47% { opacity: 0; }
    50%, 72% { opacity: 1; }
    75%, 100% { opacity: 0; }
  }

  @keyframes exseq4 {
    0%, 72% { opacity: 0; }
    75%, 97% { opacity: 1; }
    100% { opacity: 0; }
  }

  .exp-seq-1 {
    animation: exseq1 16s steps(1, end) infinite;
  }

  .exp-seq-2 {
    animation: exseq2 16s steps(1, end) infinite;
  }

  .exp-seq-3 {
    animation: exseq3 16s steps(1, end) infinite;
  }

  .exp-seq-4 {
    animation: exseq4 16s steps(1, end) infinite;
  }
}
