:root {
  --bg: #03050a;
  --panel: rgba(5, 9, 16, 0.86);
  --panel-2: rgba(11, 15, 25, 0.78);
  --line: rgba(216, 225, 245, 0.22);
  --line-strong: rgba(216, 225, 245, 0.34);
  --gold: #ffc72f;
  --gold-2: #d6a22b;
  --blue: #3468ff;
  --cyan: #1de6d3;
  --red: #ff5a63;
  --green: #33e59d;
  --text: #f7f8fc;
  --soft: #c3c9d8;
  --muted: #8892a7;
  --faint: #596176;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: 180ms ease;
  --gym-w: clamp(300px, 20vw, 400px);
}

* {
  box-sizing: border-box;
}

body,
html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(760px 360px at 9% -6%, rgba(52, 104, 255, .2), transparent 60%), radial-gradient(620px 340px at 93% 0, rgba(255, 199, 47, .12), transparent 62%), linear-gradient(180deg, #05070d 0, #03050a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .42;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000, transparent 88%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  color: inherit;
}

button:disabled,
button[aria-disabled=true] {
  cursor: default;
}

.studio-page {
  min-height: calc(100svh - var(--scenario-h) * (1 - var(--scenario-open)) - var(--room-trim));
  width: min(1888px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  --scenario-open: 0;
  transition: --scenario-open .9s cubic-bezier(.22, .61, .36, 1);
}

.studio-page[data-scenario=open] {
  --scenario-open: 1;
}

.studio-shell {
  min-height: calc(100svh - 20px);
  border: 2px solid var(--line-strong);
  border-radius: 34px;
  background: radial-gradient(720px 260px at 50% 10%, rgba(52, 104, 255, .13), transparent 65%), linear-gradient(180deg, rgba(12, 16, 25, .96), rgba(3, 6, 11, .98));
  box-shadow: 0 35px 110px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .035);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.studio-grid {
  display: grid;
  grid-template-columns: 520px minmax(720px, 1fr) var(--gym-w);
  min-height: calc(100svh - 160px);
  background: rgba(3, 6, 11, .56);
}

.column {
  min-width: 0;
  min-height: 0;
}

.chat-panel,
.lab-panel,
.people-panel {
  background: rgba(3, 7, 13, .72);
}

.people-panel {
  display: flex;
  flex-direction: column;
  border-right: 2px solid rgba(216, 225, 245, .3);
}

.chat-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(216, 225, 245, .3);
  overflow: hidden;
}

.gym-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.gym-cover {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  background: radial-gradient(420px 220px at 50% 36%, rgba(52, 104, 255, .12), transparent 70%), rgba(4, 8, 14, .88);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 1;
  visibility: visible;
  transition: opacity 640ms ease, transform 760ms cubic-bezier(.22, .61, .36, 1), visibility 0s linear 0s;
}

.gym-cover__inner {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 260px;
}

.gym-cover__lock {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(255, 199, 47, .4);
  background: rgba(255, 199, 47, .08);
  margin-bottom: 2px;
}

.gym-cover__title {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.gym-cover__sub {
  margin: 0;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.35;
  color: rgba(199, 205, 219, .74);
}

.studio-page[data-scenario=open] .gym-cover {
  opacity: 0;
  visibility: hidden;
  transform: translateX(22px) scale(.99);
  pointer-events: none;
  transition: opacity 560ms ease, transform 760ms cubic-bezier(.22, .61, .36, 1), visibility 0s linear 760ms;
}

@media (prefers-reduced-motion:reduce) {
  .gym-cover {
    transition-duration: 1ms;
  }
}

.people-head {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(8, 13, 22, .82), rgba(3, 6, 11, .68));
}

.section-label {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #f7f8fc;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
}

.chat-status,
.section-label strong {
  display: none;
}

.gym-head {
  min-height: 38px;
  display: grid;
  place-items: start center;
  padding: 14px 16px 0;
  background: linear-gradient(180deg, rgba(8, 13, 22, .82), rgba(3, 6, 11, .68));
}

.replay-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 16px 8px;
  min-width: 0;
}

.replay-bar__label {
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #5fd39a;
  white-space: nowrap;
  opacity: .95;
  flex: 0 0 auto;
}

.replay-bar__controls {
  display: flex;
  gap: 5px;
  flex: 0 0 auto;
}

.replay-btn {
  width: 23px;
  height: 23px;
  border-radius: 6px;
  border: 1px solid rgba(255, 95, 122, .5);
  background: rgba(255, 95, 122, .1);
  color: #ff6f8c;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .15s ease, border-color .15s ease;
}

.replay-btn:hover {
  background: rgba(255, 95, 122, .22);
  border-color: rgba(255, 95, 122, .8);
}

.replay-btn.is-active {
  background: rgba(255, 95, 122, .3);
  border-color: rgba(255, 95, 122, .95);
  color: #ff89a1;
}

.replay-bar__track {
  flex: 1 1 auto;
  height: 3px;
  min-width: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.replay-bar__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffe064, #ffc72f);
  transition: width .35s ease;
}

@keyframes replayPressPulse {
0% { transform: scale(1) }
        28% { transform: scale(1.14) }
        55% { transform: scale(.97) }
        100% { transform: scale(1) }
}

.replay-press {
  animation: replayPressPulse .58s cubic-bezier(.34, 1.56, .64, 1);
  outline: 2px solid rgba(255, 199, 47, .98) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(255, 199, 47, .32), 0 10px 26px rgba(255, 199, 47, .42) !important;
  background-color: rgba(255, 199, 47, .42) !important;
  border-color: rgba(255, 199, 47, .98) !important;
  color: #1a1304 !important;
  border-radius: 8px;
  position: relative;
  z-index: 7;
}

@keyframes replayFocusPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 199, 47, 0), 0 0 0 0 rgba(52, 104, 255, 0) }
        50% { box-shadow: 0 0 0 5px rgba(255, 199, 47, .22), 0 0 34px rgba(255, 199, 47, .32) }
}

.replay-focus {
  outline: 2px solid rgba(255, 199, 47, .92) !important;
  outline-offset: 3px !important;
  border-radius: 12px;
  position: relative;
  z-index: 8;
  animation: replayFocusPulse 1.45s ease-in-out infinite;
}

.narration-pop {
  position: fixed;
  z-index: 1300;
  width: 470px;
  max-width: calc(100vw - 28px);
  padding: 14px 15px 13px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(31, 28, 58, .98), rgba(22, 20, 40, .98));
  border: 1px solid rgba(255, 199, 47, .42);
  box-shadow: 0 18px 50px rgba(8, 6, 24, .6), 0 0 0 1px rgba(255, 255, 255, .04), 0 0 40px rgba(255, 199, 47, .12);
  color: #f1ead8;
  opacity: 0;
  transform: translateY(6px) scale(.98);
  transition: opacity .26s ease, transform .26s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: auto;
}

.narration-pop.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.narration-pop::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: linear-gradient(160deg, rgba(31, 28, 58, .98), rgba(22, 20, 40, .98));
  border: 1px solid rgba(255, 199, 47, .42);
  transform: rotate(45deg);
}

.narration-pop[data-side="left"]::after {
  right: -7px;
  top: calc(50% - 7px);
  border-left: none;
  border-bottom: none;
}

.narration-pop[data-side="right"]::after {
  left: -7px;
  top: calc(50% - 7px);
  border-right: none;
  border-top: none;
}

.narration-pop[data-side="top"]::after {
  bottom: -7px;
  left: calc(50% - 7px);
  border-top: none;
  border-left: none;
}

.narration-pop[data-side="bottom"]::after {
  top: -7px;
  left: calc(50% - 7px);
  border-bottom: none;
  border-right: none;
}

.narration-pop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.narration-pop__kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold, #ffc72f);
}

.narration-pop__tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.narration-mic,
.narration-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  color: #d8d3ee;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  padding: 0;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.narration-mic:hover,
.narration-close:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 199, 47, .5);
  color: #fff;
}

.narration-mic.is-on {
  background: rgba(255, 199, 47, .9);
  border-color: rgba(255, 199, 47, .95);
  color: #1a1304;
}

.narration-mic.is-speaking {
  animation: narrationMicPulse 1.1s ease-in-out infinite;
}

@keyframes narrationMicPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 199, 47, .5) }
        50% { box-shadow: 0 0 0 6px rgba(255, 199, 47, 0) }
}

.narration-pop__body {
  margin: 2px 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(241, 234, 216, .94);
}

.narration-pop__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.narration-pop__count {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(199, 205, 219, .6);
}

.narr-nav {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #eee7d6;
  font-size: 12px;
  font-weight: 650;
  padding: 7px 13px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .12s ease, opacity .16s ease;
}

.narr-nav:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 199, 47, .5);
}

.narr-nav:active {
  transform: scale(.96);
}

.narr-nav:disabled {
  opacity: .34;
  cursor: default;
}

.narr-nav--next {
  background: linear-gradient(135deg, #ffe064, #ffc72f);
  border-color: rgba(255, 199, 47, .9);
  color: #1a1304;
}

.narr-nav--next:hover {
  background: linear-gradient(135deg, #ffe884, #ffce4d);
  border-color: rgba(255, 199, 47, 1);
}

.narration-pop.is-paused {
  border-color: rgba(255, 255, 255, .34);
}

.narration-pop.is-paused .narration-pop__count,
.narration-pop.is-busy .narration-pop__count {
  color: var(--gold, #ffc72f);
}

.dd-scorecard {
  margin-top: 8px;
  border: 1px solid rgba(216, 225, 245, .16);
  border-radius: 12px;
  background: rgba(10, 14, 22, .45);
  padding: 11px 12px;
  min-width: 0;
  max-width: 100%;
}

.dd-sc-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.dd-sc-overall {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--serif, Georgia, serif);
}

.dd-sc-overall b {
  font-size: 30px;
  line-height: 1;
  color: #ffd45e;
  font-weight: 800;
}

.dd-sc-overall small {
  font-size: 11px;
  color: rgba(143, 151, 167, .85);
  font-weight: 700;
}

.dd-sc-title {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  color: rgba(244, 241, 232, .92);
  text-transform: uppercase;
  line-height: 1.25;
}

.dd-sc-title span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(143, 151, 167, .8);
  text-transform: none;
}

.dd-sc-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dd-sc-row {
  display: grid;
  grid-template-columns: 88px 1fr 24px;
  align-items: center;
  gap: 8px;
}

.dd-sc-name {
  font-size: 9.5px;
  font-weight: 800;
  color: rgba(214, 222, 238, .82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dd-sc-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(216, 225, 245, .12);
  overflow: hidden;
}

.dd-sc-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.dd-sc-val {
  font-size: 10px;
  font-weight: 850;
  color: rgba(244, 241, 232, .9);
  text-align: right;
}

.dd-sc-foot {
  margin-top: 9px;
  font-size: 9px;
  color: rgba(143, 151, 167, .7);
  font-weight: 700;
}

@keyframes composerAttention {
0% { box-shadow: 0 0 0 0 rgba(255, 199, 47, 0); background-color: transparent }
        16% { box-shadow: 0 0 0 4px rgba(255, 199, 47, .36), 0 0 28px rgba(255, 199, 47, .55); background-color: rgba(255, 199, 47, .08) }
        55% { box-shadow: 0 0 0 3px rgba(255, 199, 47, .2), 0 0 18px rgba(255, 199, 47, .3) }
        100% { box-shadow: 0 0 0 0 rgba(255, 199, 47, 0); background-color: transparent }
}

.composer-attention {
  animation: composerAttention .72s ease-out 2;
  border-radius: 16px;
}

.project-files-console {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 14px 16px 16px;
  border-top: 2px solid rgba(216, 225, 245, .3);
}

.sequence-console {
  min-width: 0;
}

.project-files-console .console-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 8px;
  gap: 10px;
}

.project-files-console .console-head__text {
  flex: 0 0 auto;
  min-width: 0;
  overflow: visible;
}

.project-files-console .console-eyebrow {
  white-space: nowrap;
}

.upload-pill-wrap {
  position: relative;
}

#uploadPillMenu {
  left: 0;
  right: auto;
}

.upload-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 47, .7);
  background: linear-gradient(180deg, #ffe064, #ffc72f);
  color: #1a1304;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--ease, .2s), background var(--ease, .2s), box-shadow var(--ease, .2s);
}

.upload-pill:hover {
  box-shadow: 0 0 0 3px rgba(255, 199, 47, .18);
}

.upload-pill.is-loaded {
  border-color: rgba(30, 163, 98, .6);
  background: linear-gradient(180deg, #6fe6ad, #33c98a);
  color: #06291b;
}

.upload-pill__caret {
  font-size: 9px;
  opacity: .7;
}

.upload-pill-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 40;
  min-width: 188px;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0c1119;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}

.upload-pill-menu[hidden] {
  display: none;
}

.upload-pill-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 0;
  background: 0 0;
  color: #e7eaf2;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.upload-pill-option:hover {
  background: rgba(255, 255, 255, .06);
}

.upload-pill-status {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  color: #1ea362;
}

#promptInput {
  caret-color: var(--gold, #ffc72f);
}

@keyframes promptCaretBlink {
0%,
        100% {
          caret-color: var(--gold, #ffc72f)
        }

        50% {
          caret-color: transparent
        }
}

#promptInput:focus {
  animation: promptCaretBlink .62s steps(1, end) 5;
}

#promptInput.caret-flash {
  animation: promptCaretBlink .62s steps(1, end) 5;
}

.console-step-group {
  display: flex;
  flex-direction: column;
}

.console-step__chev {
  margin-left: auto;
  font-size: 13px;
  color: var(--faint);
  flex: 0 0 auto;
  transition: transform var(--ease), color var(--ease);
}

.console-step.active .console-step__chev {
  color: var(--gold, #ffc72f);
}

.console-step-group.is-open .console-step__chev {
  transform: rotate(180deg);
  color: var(--gold, #ffc72f);
}

.order-steps-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .55s cubic-bezier(.22, 1, .36, 1);
}

.console-step-group.is-open>.order-steps-wrap {
  grid-template-rows: 1fr;
}

.order-steps-clip {
  overflow: hidden;
  min-height: 0;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 199, 47, .28);
  border-radius: 14px;
  background: rgba(255, 199, 47, .04);
}

.order-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.order-step__no {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 199, 47, .16);
  color: var(--gold, #ffc72f);
  font-size: 11px;
  font-weight: 900;
}

.order-step__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.order-step__body b {
  color: var(--text, #f7f8fc);
  font-size: 12.5px;
}

.order-step__body span {
  color: var(--muted, #9aa3b2);
  font-size: 11.5px;
  line-height: 1.4;
}

.order-step__arts {
  margin: 4px 0 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-step__arts li {
  color: #cdd3df;
  font-size: 11.5px;
}

.order-gate-btn,
.order-run-btn {
  align-self: flex-start;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 47, .5);
  background: rgba(255, 199, 47, .1);
  color: var(--gold, #ffc72f);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--ease, .2s), border-color var(--ease, .2s);
}

.order-run-btn:hover {
  background: rgba(255, 199, 47, .18);
}

.order-gate-btn {
  border-color: rgba(30, 163, 98, .55);
  background: rgba(30, 163, 98, .1);
  color: #5fd39a;
  width: 100%;
  text-align: center;
}

.order-gate-btn:hover {
  background: rgba(30, 163, 98, .18);
}

.order-gate.is-cleared {
  margin-top: 6px;
  color: #5fd39a;
  font-size: 11.5px;
  font-weight: 800;
}

.phase-subhead {
  margin-top: 10px;
  color: rgba(255, 199, 47, .9);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phase-room-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.phase-room-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid rgba(216, 225, 245, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}

.phase-room-item b {
  display: block;
  font-size: 11.5px;
  line-height: 1.1;
  color: var(--text);
}

.phase-room-item span {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  color: rgba(195, 201, 216, .72);
}

.order-run-btn:disabled,
.order-run-btn[aria-disabled="true"] {
  opacity: .42;
  cursor: default;
  filter: grayscale(.25);
}

.people-mode-bar {
  padding: 18px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: linear-gradient(180deg, rgba(7, 11, 18, .86), rgba(3, 7, 13, .72));
}

.people-stakeholder-switch {
  width: 100%;
  min-height: 46px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 47, .25);
  background: rgba(255, 255, 255, .035);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .024), 0 8px 22px rgba(0, 0, 0, .18);
}

.people-mode-button {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: 0 0;
  color: rgba(195, 201, 216, .66);
  font-size: 9.5px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 10px;
  transition: color var(--ease), background var(--ease), box-shadow var(--ease);
}

.people-mode-button:focus-visible,
.people-mode-button:hover {
  color: #fff;
  outline: 0;
}

.people-mode-button.active {
  color: #090a0d;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 24px rgba(255, 199, 47, .2);
}

.people-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 9px;
  padding: 14px 18px 14px 14px;
  scrollbar-gutter: stable;
}

.chat-feed::-webkit-scrollbar,
.people-list::-webkit-scrollbar,
.room-cards::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

.chat-feed {
  scrollbar-width: none;
}

.chat-feed::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.guided-on .chat-feed {
  scrollbar-width: thin;
}

.guided-on .chat-feed::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

.chat-feed::-webkit-scrollbar-track,
.people-list::-webkit-scrollbar-track,
.room-cards::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
}

.chat-feed::-webkit-scrollbar-thumb,
.people-list::-webkit-scrollbar-thumb,
.room-cards::-webkit-scrollbar-thumb {
  background: rgba(255, 199, 47, .45);
  border-radius: 999px;
}

.person-card {
  position: relative;
  text-align: left;
  min-height: 112px;
  padding: 13px 16px 12px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, .105);
  background: linear-gradient(180deg, rgba(255, 255, 255, .048), rgba(0, 0, 0, .17));
  color: var(--text);
  overflow: hidden;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .026);
}

.person-card:focus-visible,
.person-card:hover {
  border-color: rgba(255, 199, 47, .3);
  background: linear-gradient(180deg, rgba(255, 255, 255, .062), rgba(0, 0, 0, .18));
  outline: 0;
}

.person-card.picked {
  border-color: rgba(255, 199, 47, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 199, 47, .22), 0 0 0 1px rgba(255, 199, 47, .08);
}

.person-top {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.person-copy {
  min-width: 0;
}

.person-card.external-card .person-top {
  grid-template-columns: minmax(0, 1fr) 50px;
}

.person-card.external-card .face.person-face {
  order: 2;
}

.person-card.external-card .person-copy {
  order: 1;
}

.person-card.external-card .person-bio,
.person-card.external-card .person-meta {
  margin-left: 0;
  margin-right: 62px;
}

.person-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.04;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-card .role {
  margin: 2px 0 0;
  font-size: 10.5px;
  line-height: 1.18;
  color: #9da6ba;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-bio {
  margin: 7px 0 0 62px;
  font-size: 10.5px;
  line-height: 1.24;
  color: rgba(195, 201, 216, .68);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.person-meta {
  margin: 5px 0 0 62px;
  color: rgba(205, 214, 235, .58);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-meta span:not(:last-child)::after {
  content: " • ";
  opacity: .55;
}

.face {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 42%, rgba(99, 95, 170, .28), transparent 58%), #050609;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .32), inset 0 -16px 28px rgba(61, 53, 139, .34), inset 0 0 18px rgba(0, 0, 0, .42);
}

.face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--face-position, 50% 50%);
  transform: scale(var(--face-scale, 1));
  transform-origin: center;
  filter: saturate(1.02) contrast(1.03);
  display: block;
}

.face.person-face {
  width: 48px;
  height: 48px;
}

.lab-panel {
  display: grid;
  grid-template-rows: 142px minmax(116px, auto) minmax(440px, 1fr);
  gap: 12px;
  padding: 0 18px 12px;
}

.mode-row {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70px 72px;
}

.mode-row .section-label {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.room-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(180deg, rgba(31, 41, 62, .76), rgba(18, 24, 38, .64));
  overflow: hidden;
}

.room-tab {
  height: 70px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .11);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(51, 62, 92, .58), rgba(23, 30, 48, .74));
  color: #aeb6ca;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: filter var(--ease), color var(--ease), background var(--ease);
}

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

.room-tab:hover {
  filter: brightness(1.08);
}

.room-tab span {
  display: block;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .01em;
}

.room-tab small {
  display: block;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: currentColor;
  opacity: .74;
}

.room-tab.active {
  color: #080a0f;
  background: linear-gradient(180deg, #ffe064 0, #ffc72f 52%, #c99624 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38), 0 10px 34px rgba(255, 199, 47, .18);
}

.room-cards {
  min-height: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 0;
  border-radius: 20px;
  padding: 12px 4px 14px;
  background: radial-gradient(380px 150px at 18% 0, rgba(52, 104, 255, .18), transparent 72%), linear-gradient(180deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .012));
}

.room-card {
  flex: 0 0 238px;
  min-height: 84px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 15px 18px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016));
  color: var(--text);
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.room-card:hover {
  border-color: rgba(255, 199, 47, .28);
}

.room-card.active {
  border-color: rgba(255, 199, 47, .76);
  background: linear-gradient(180deg, rgba(255, 199, 47, .1), rgba(255, 255, 255, .025));
  box-shadow: inset 0 0 0 1px rgba(255, 199, 47, .2);
}

.room-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.room-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  min-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arena {
  position: relative;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  background: radial-gradient(440px 260px at 50% 50%, rgba(52, 104, 255, .24), transparent 66%), linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  overflow: hidden;
}

.arena::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 31px 31px;
  opacity: .38;
  pointer-events: none;
}

.arena.running::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(52, 104, 255, .34), inset 0 0 54px rgba(52, 104, 255, .16);
  pointer-events: none;
}

.table {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(49%, 430px);
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(110, 150, 255, .22);
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .075), rgba(255, 255, 255, .014) 60%), linear-gradient(180deg, rgba(52, 104, 255, .19), rgba(255, 255, 255, .025));
  box-shadow: inset 0 0 80px rgba(52, 104, 255, .12), 0 22px 70px rgba(0, 0, 0, .3);
  display: grid;
  place-items: center;
  text-align: center;
}

.duo-and {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.self-avatar-card {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 16px;
}

.face.self-face {
  width: 168px;
  height: 168px;
  border: 2px solid rgba(255, 199, 47, .5);
  box-shadow: 0 0 0 5px rgba(255, 199, 47, .12), 0 0 60px rgba(83, 74, 180, .42), 0 0 92px rgba(255, 199, 47, .16), inset 0 -26px 44px rgba(81, 72, 158, .4);
}

.studio-grid .lab-panel {
  position: relative;
  grid-template-rows: auto auto minmax(280px, 1fr);
}

.lab-panel .mode-row {
  min-height: 0;
  display: block;
  padding: 14px 6px 0;
}

.lab-panel .mode-row .section-label {
  height: auto;
  justify-content: center;
  border-bottom: 0;
}

.lab-panel .room-tabs {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 0;
  background: 0 0;
  overflow: visible;
}

.lab-panel .room-tab {
  height: auto;
  flex: 0 0 auto;
  padding: 7px 15px;
  gap: 0;
  border: 1px solid rgba(216, 225, 245, .2);
  border-radius: 999px;
  background: rgba(15, 20, 33, .66);
  backdrop-filter: blur(4px);
  color: rgba(203, 205, 199, .82);
  box-shadow: none;
}

.lab-panel .room-tab small {
  display: none;
}

.lab-panel .room-tab span {
  font-size: 12px;
  font-weight: 800;
}

.lab-panel .room-tab:hover {
  border-color: rgba(255, 199, 47, .42);
  color: var(--text);
  filter: none;
}

.lab-panel .room-tab.active {
  color: var(--gold);
  border-color: rgba(255, 199, 47, .92);
  background: rgba(255, 199, 47, .12);
  box-shadow: none;
}

.room-cards .room-card.active {
  color: #080a0f;
  border-color: rgba(255, 199, 47, .95);
  background: linear-gradient(180deg, #ffe064 0, #ffc72f 60%, #d6a82b 100%);
  box-shadow: 0 14px 34px rgba(255, 199, 47, .2);
}

.room-cards .room-card.active p {
  color: rgba(8, 10, 15, .74);
}

.room-cards .room-card {
  flex: 0 0 214px;
  min-height: 0;
  padding: 10px 14px;
}

.room-cards .room-card h3 {
  font-size: 14px;
}

.room-cards .room-card p {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.34;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.34em);
}

.room-cards .room-card {
  position: relative;
}

.room-card__more {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--faint);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), color var(--ease), background var(--ease);
}

.room-card__more:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.room-card.expanded .room-card__more {
  transform: rotate(180deg);
  color: var(--gold);
}

.room-cards .room-card.expanded p {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
  min-height: 0;
}

.room-cards {
  align-items: flex-start;
}

.stage-row {
  display: flex;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px 26px 0 0;
  overflow: hidden;
}

.stage-row .arena {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.room-console {
  flex: 0 0 var(--gym-w);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
}

.console-head {
  flex: 0 0 auto;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.console-head__text {
  min-width: 0;
  flex: 1 1 130px;
  overflow: hidden;
}

.studio-tabs {
  display: flex;
  gap: 6px;
  padding: 0 28px;
  position: relative;
  z-index: 6;
  top: -17px;
  margin-bottom: -19px;
}

.studio-tab {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: rgba(20, 26, 38, .96);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.studio-tab:hover {
  color: var(--text);
}

.studio-tab.active {
  color: #080a0f;
  background: linear-gradient(180deg, #ffe064, #ffc72f);
  border-color: rgba(255, 199, 47, .6);
}

.console-eyebrow {
  display: block;
  color: var(--faint);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.console-steps {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-gutter: stable;
}

.console-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border: 1px solid rgba(216, 225, 245, .16);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}

.console-step:hover {
  border-color: rgba(255, 199, 47, .4);
}

.console-step__order {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: var(--faint);
  font-size: 12px;
  font-weight: 950;
}

.console-step__heading {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.console-step__kicker {
  color: var(--faint);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.console-step__name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.console-step.active {
  border-color: rgba(255, 199, 47, .92);
  background: rgba(255, 199, 47, .07);
}

@keyframes orderPromptPulse {
0%, 100% {
          box-shadow: 0 0 0 0 rgba(255, 199, 47, 0);
          border-color: rgba(255, 199, 47, .55)
        }
        50% {
          box-shadow: 0 0 0 4px rgba(255, 199, 47, .13);
          border-color: rgba(255, 199, 47, 1)
        }
}

.console-step-group.active:not(.is-open)>.console-step {
  animation: orderPromptPulse 1.9s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .console-step-group.active:not(.is-open)>.console-step {
    animation: none;
  }
}

.console-step.active .console-step__order {
  background: var(--gold);
  color: #080a0f;
}

.console-step.cleared .console-step__order {
  background: rgba(51, 229, 157, .24);
  color: #6ff0bd;
}

.console-step.locked {
  opacity: .72;
}

.sequence-console {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
}

.sequence-console .console-steps {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.arena .table {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 104px;
}

.arena .self-avatar-card {
  left: 50%;
}

.arena .duo-and {
  left: 50%;
}

.seat {
  position: absolute;
  left: var(--seat-x);
  top: var(--seat-y);
  transform: translate(-50%, -50%) scale(var(--seat-scale, 1));
  transform-origin: center center;
  z-index: 3;
  width: 116px;
  min-height: 90px;
  padding: 4px;
  text-align: center;
  color: var(--text);
  border: 0;
  background: 0 0;
}

.slot-plus {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .38);
  font-size: 26px;
  background: rgba(255, 255, 255, .014);
}

.seat-label {
  display: block;
  font-family: var(--serif);
  line-height: .95;
  color: rgba(241, 234, 216, .86);
}

.seat.open .seat-label {
  font-size: 0;
}

.seat.open .seat-label::after {
  content: "Open seat";
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(199, 205, 219, .5);
}

.seat.drop-target .slot-plus,
.seat.open:hover .slot-plus {
  border-color: rgba(255, 199, 47, .62);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 199, 47, .1);
}

.seat.filled {
  min-height: 126px;
}

.face.seat-face {
  width: 74px;
  height: 74px;
  margin: 0 auto 8px;
  border: 2px solid rgba(255, 199, 47, .22);
  box-shadow: 0 0 0 4px rgba(255, 199, 47, .08), 0 0 38px rgba(83, 74, 180, .36), inset 0 -18px 30px rgba(81, 72, 158, .36);
}

.arena.running .seat.filled .face.seat-face,
.seat.filled.active-person .face.seat-face {
  border-color: rgba(255, 199, 47, .62);
  box-shadow: 0 0 0 4px rgba(255, 199, 47, .18), 0 0 42px rgba(255, 199, 47, .28), 0 0 70px rgba(87, 80, 194, .36), inset 0 -18px 30px rgba(81, 72, 158, .4);
}

.arena[data-layout="single"] .seat.filled {
  min-height: 0;
  width: 168px;
  padding: 0;
}

.arena[data-layout="single"] .seat-name-line,
.arena[data-layout="single"] .seat-role {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.arena[data-layout="single"] .seat-name-line {
  top: calc(100% + 14px);
}

.arena[data-layout="single"] .seat-role {
  top: calc(100% + 42px);
}

.arena[data-layout="single"] .face.seat-face {
  width: 168px;
  height: 168px;
  margin: 0 auto;
  border: 2px solid rgba(255, 199, 47, .5);
  box-shadow: 0 0 0 5px rgba(255, 199, 47, .12), 0 0 60px rgba(83, 74, 180, .42), 0 0 92px rgba(255, 199, 47, .16), inset 0 -26px 44px rgba(81, 72, 158, .4);
}

.arena[data-layout="single"].running .seat.filled .face.seat-face,
.arena[data-layout="single"] .seat.filled.active-person .face.seat-face {
  border-color: rgba(255, 199, 47, .62);
  box-shadow: 0 0 0 5px rgba(255, 199, 47, .2), 0 0 60px rgba(255, 199, 47, .3), 0 0 92px rgba(87, 80, 194, .4), inset 0 -26px 44px rgba(81, 72, 158, .42);
}

.seat-name-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: 100%;
  margin-top: 4px;
}

.seat-name {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f9f6e8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.seat-role {
  margin-top: 4px;
  color: #9aa2b8;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.disposition-dot {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(8, 10, 16, .78);
  border-radius: 50%;
  padding: 0;
  background: var(--dot-color, #b8c0d2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .13), 0 0 16px color-mix(in srgb, var(--dot-color, #b8c0d2) 58%, transparent);
  flex: 0 0 auto;
}

.remove-person {
  position: absolute;
  top: -22px;
  right: -14px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 199, 47, .13), transparent 64%);
  opacity: .78;
  display: grid;
  place-items: center;
  z-index: 4;
}

.remove-person:hover {
  opacity: 1;
  background: radial-gradient(circle at center, rgba(255, 199, 47, .2), transparent 66%);
}

.remove-person span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(8, 10, 16, .64);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .2), 0 8px 18px rgba(0, 0, 0, .32);
}

.control-strip {
  --command-control-height: 56px;
  --people-column-width: 520px;
  position: relative;
  display: grid;
  grid-template-columns: var(--people-column-width) minmax(720px, 1fr) var(--gym-w);
  gap: 0;
  align-items: center;
  min-height: 88px;
  height: 88px;
  padding: 16px 0;
  border-top: 2px solid rgba(216, 225, 245, .3);
  background: linear-gradient(180deg, rgba(10, 13, 22, .94), rgba(5, 8, 14, .96));
}

.people-filter-controls {
  grid-column: 1;
  height: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  align-content: center;
  padding: 0 24px 0 28px;
  border-right: 2px solid rgba(216, 225, 245, .3);
  background: 0 0;
}

.run-setup-controls {
  grid-column: 2/4;
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.12fr) minmax(0, 0.92fr) minmax(240px, 1.5fr) var(--command-control-height);
  gap: 12px;
  align-items: center;
  padding: 0 28px 0 24px;
}

.command-slot {
  position: relative;
  min-width: 0;
  width: 100%;
  height: var(--command-control-height);
  display: grid;
  align-items: stretch;
  justify-items: stretch;
}

.people-filter-controls .command-slot {
  max-width: 180px;
}

.people-filter-controls .command-slot--archetype {
  justify-self: end;
}

.people-filter-controls .command-slot--expertise {
  justify-self: start;
}

.control-strip .run-setup-controls {
  display: grid;
  grid-template-columns: calc((100% - 2 * var(--gym-w)) * 0.72) minmax(0, 1fr) var(--gym-w);
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 0;
}

.control-strip .run-setup-controls>.command-slot {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}

.control-strip .run-setup-controls>.command-slot--metrics {
  justify-self: stretch;
  width: auto;
  min-width: 0;
  overflow: visible;
}

.eval-metrics {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  padding: 0 8px;
  width: 100%;
}

.eval-ring {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eval-ring:nth-child(n/**/+3) {
  transform: translateX(-10px);
}

.eval-ring:nth-child(2),
.eval-ring:nth-child(3),
.eval-ring:nth-child(7) {
  margin-left: var(--eval-nudge, 7px);
}

.eval-ring__dial {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.eval-ring__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.eval-ring__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 4;
}

.eval-ring__value {
  fill: none;
  stroke: var(--blue, #3468ff);
  stroke-width: 4;
  stroke-linecap: round;
}

.eval-ring__pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text);
}

.eval-ring__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 -3px 0 rgba(0, 0, 0, .6), 2px -2px 0 rgba(0, 0, 0, .6), 3px 0 0 rgba(0, 0, 0, .6), 2px 2px 0 rgba(0, 0, 0, .6), 0 3px 0 rgba(0, 0, 0, .6), -2px 2px 0 rgba(0, 0, 0, .6), -3px 0 0 rgba(0, 0, 0, .6), -2px -2px 0 rgba(0, 0, 0, .6), 0 0 6px rgba(0, 0, 0, .9);
  z-index: 30;
  transition: opacity var(--ease);
}

.eval-ring__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%) translateY(5px);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
  background: rgba(9, 13, 22, .97);
  border: 1px solid rgba(216, 225, 245, .22);
  border-radius: 11px;
  padding: 7px 13px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .55);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: opacity var(--ease), transform var(--ease);
}

.eval-ring.active .eval-ring__label,
.eval-ring:hover .eval-ring__label {
  opacity: 0;
}

.eval-ring.active .eval-ring__tip,
.eval-ring:hover .eval-ring__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.control-strip .run-setup-controls>.command-slot--tools {
  height: auto;
  align-self: stretch;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: stretch;
  padding: 0 4px 0 10px;
  border-left: 2px solid rgba(216, 225, 245, .3);
  overflow: hidden;
  min-width: 0;
}

.control-strip .run-setup-controls>.composer--footer {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  padding: 0 0 0 22px;
  border-top: 0;
  height: auto;
}

.composer--footer label {
  display: none;
}

.composer--footer .composer-row {
  height: var(--command-control-height, 56px);
}

.tool-rail {
  --tool-button-size: 32px;
  --tool-logo-size: 18px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  align-items: center;
  justify-content: space-between;
}

.tool-rail .tool-checkmark {
  display: none;
}

.studio-shell .control-strip {
  height: auto;
  min-height: var(--control-strip-height);
  padding-top: 12px;
  padding-bottom: 12px;
}

.filter-select-wrap {
  position: relative;
  min-width: 0;
  display: grid;
  align-items: stretch;
}

.command-slot>.filter-select-wrap,
.command-slot>.stakeholder-control,
.filter-select-wrap>.stakeholder-control {
  width: 100%;
  height: var(--command-control-height);
  min-height: var(--command-control-height);
  max-height: var(--command-control-height);
}

.stakeholder-control {
  --control-line: rgba(190, 203, 235, 0.38);
  --control-glow: rgba(190, 203, 235, 0.08);
  position: relative;
  margin: 0;
  border: 1px solid var(--control-line);
  border-radius: 999px;
  padding: 8px 17px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .048), rgba(0, 0, 0, .17));
  color: var(--text);
  display: grid;
  align-content: center;
  justify-items: start;
  text-align: left;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .024), 0 0 18px rgba(0, 0, 0, .18), 0 0 0 2px var(--control-glow);
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
}

.stakeholder-control:focus-visible,
.stakeholder-control:hover {
  border-color: color-mix(in srgb, var(--control-line) 72%, #fff 28%);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .18));
  outline: 0;
}

.filter-select-control--archetype {
  --control-line: rgba(255, 199, 47, 0.8);
  --control-glow: rgba(255, 199, 47, 0.08);
}

.filter-select-control--expertise {
  --control-line: rgba(255, 95, 162, 0.72);
  --control-glow: rgba(255, 95, 162, 0.075);
}

.stakeholder-control.is-connected,
.stakeholder-control.is-loaded {
  background: linear-gradient(180deg, rgba(255, 255, 255, .062), rgba(0, 0, 0, .18));
}

.stakeholder-control__label {
  display: block;
  max-width: 100%;
  color: #dce3f5;
  font-size: 9px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: .29em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stakeholder-control__status {
  display: block;
  margin-top: 5px;
  color: rgba(195, 201, 216, .68);
  font-size: 10.5px;
  line-height: 1.05;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-select-value {
  color: rgba(195, 201, 216, .68);
}

.filter-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 60;
  border: 1px solid rgba(216, 225, 245, .18);
  border-radius: 18px;
  background: rgba(5, 8, 15, .97);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .54), 0 0 0 1px rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
}

.filter-menu[hidden] {
  display: none !important;
}

.filter-menu {
  left: 0;
  right: auto;
  width: min(210px, calc(100vw - 42px));
  max-height: min(284px, calc(100vh - 160px));
  overflow: auto;
  padding: 7px;
}

.filter-menu__option {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 11px;
  background: 0 0;
  color: rgba(216, 225, 245, .72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 850;
  text-align: left;
}

.filter-menu__option.active,
.filter-menu__option:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.filter-menu__option.active::after {
  content: "✓";
  color: var(--gold);
}

.tool-check {
  position: relative;
  width: var(--tool-button-size);
  height: var(--tool-button-size);
  border: 1px solid rgba(216, 225, 245, .18);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .08), transparent 62%), rgba(255, 255, 255, .032);
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .024), 0 8px 18px rgba(0, 0, 0, .28);
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.tool-check:focus-visible,
.tool-check:hover {
  border-color: rgba(255, 199, 47, .5);
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .11), transparent 64%), rgba(255, 255, 255, .055);
  outline: 0;
}

.tool-check[aria-checked=true] {
  border-color: rgba(255, 199, 47, .74);
  background: radial-gradient(circle at 50% 38%, rgba(255, 199, 47, .12), transparent 66%), rgba(255, 199, 47, .06);
  box-shadow: inset 0 0 0 1px rgba(255, 199, 47, .14), 0 8px 18px rgba(0, 0, 0, .28);
}

.tool-logo-shell {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.tool-logo {
  width: var(--tool-logo-size);
  height: var(--tool-logo-size);
  object-fit: contain;
  display: block;
  image-rendering: auto;
  transform: none;
  filter: none;
}

.tool-checkmark {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 1px solid rgba(216, 225, 245, .68);
  background: rgba(3, 6, 11, .96);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 8px;
  line-height: 1;
}

.tool-check[aria-checked=true] .tool-checkmark::before {
  content: "✓";
}

@media (max-width:1680px) {
  .control-strip {
    --people-column-width: 420px;
    grid-template-columns: var(--people-column-width) minmax(620px, 1fr) var(--gym-w);
  }

  .run-setup-controls {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, 0.92fr) minmax(220px, 1.38fr) var(--command-control-height);
  }
}

@media (max-width:1366px) {
  .control-strip {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 14px 28px;
  }

  .people-filter-controls {
    grid-column: 1;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 225, 245, .2);
  }

  .people-filter-controls .command-slot {
    max-width: 220px;
  }

  .run-setup-controls {
    grid-column: 1;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr)) var(--command-control-height);
  }

  .control-strip .run-setup-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
  }

  .control-strip .run-setup-controls>.command-slot--tools {
    border-left: 0;
    padding: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .control-strip .run-setup-controls>.composer--footer {
    padding: 0;
  }
}

@media (max-width:900px) {
  .people-filter-controls,
.run-setup-controls {
    grid-template-columns: 1fr;
  }

  .people-filter-controls .command-slot {
    max-width: none;
    justify-self: stretch;
  }

  .filter-menu {
    left: 0;
    right: auto;
  }
}

.composer {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.composer[hidden] {
  display: none !important;
}

.composer label {
  display: none;
}

.composer-row {
  display: grid;
  grid-template-columns: 38px 38px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 6px;
  background: rgba(255, 255, 255, .025);
}

.command-caret {
  position: absolute;
  left: 95px;
  top: 50%;
  width: 3px;
  height: 21px;
  margin-top: -10px;
  border-radius: 2px;
  background: var(--gold, #ffc72f);
  box-shadow: 0 0 7px rgba(255, 199, 47, .6);
  opacity: 0;
  pointer-events: none;
}

.command-caret.is-blinking {
  animation: commandCaretBlink .56s steps(1, end) 5;
}

@keyframes commandCaretBlink {
0%, 100% {
          opacity: 1
        }
        50% {
          opacity: 0
        }
}

@media (prefers-reduced-motion: reduce) {
  .command-caret.is-blinking {
    animation: none;
  }
}

.composer-row::before {
  content: none;
}

.composer textarea {
  resize: none;
  width: 100%;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  line-height: 24px;
  border: 0;
  background: 0 0;
  color: var(--text);
  padding: 8px 4px;
  font-size: 13.5px;
  outline: 0;
  overflow: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.composer textarea::-webkit-scrollbar {
  display: none;
}

.composer-mic,
.composer-send {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.composer-mic {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .045);
  color: var(--soft);
  font-size: 16px;
}

.composer-mic.listening,
.composer-mic:hover {
  color: #090a0d;
  border-color: rgba(255, 199, 47, .72);
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 3px rgba(255, 199, 47, .1);
}

.composer-send {
  border: 1px solid rgba(255, 95, 122, .5);
  background: rgba(255, 95, 122, .1);
  color: #ff6f8c;
  font-size: 20px;
  transition: background .15s ease, border-color .15s ease;
}

.composer-send:hover {
  background: rgba(255, 95, 122, .22);
  border-color: rgba(255, 95, 122, .8);
}

.composer-send.running {
  border-radius: 8px;
  border-color: rgba(255, 90, 122, .65);
  background: linear-gradient(180deg, #ff6f8c, #e23a5e);
  color: #fff;
  font-size: 14px;
}

.chat-feed {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden auto;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: auto;
}

.chat-empty {
  margin: auto;
  color: #6f788e;
  font-size: 12px;
  text-align: center;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  width: 92%;
  max-width: 92%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.chat-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-row.out {
  margin-left: auto;
  flex-direction: row-reverse;
}

.chat-row.no-avatar {
  gap: 0;
}

.chat-row.no-avatar .chat-bubble {
  max-width: 100%;
}

.chat-avatar {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .04);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--face-position, 50% 50%);
  transform: scale(var(--face-scale, 1));
}

.chat-bubble {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 76px;
  border: 1px solid var(--bubble-border, rgba(255, 255, 255, .12));
  border-radius: 16px 16px 16px 6px;
  padding: 12px 14px;
  background: var(--bubble-bg, rgba(50, 63, 100, .44));
  color: var(--bubble-text, #f2f5ff);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.chat-row.out .chat-bubble {
  border-radius: 16px 16px 6px 16px;
}

.chat-bubble::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: -6px;
  border-top: 6px solid transparent;
  border-bottom: 0 solid transparent;
  border-right: 7px solid var(--bubble-bg, rgba(50, 63, 100, .44));
  opacity: .94;
}

.chat-row.out .chat-bubble::after {
  left: auto;
  right: -6px;
  border-right: 0;
  border-left: 7px solid var(--bubble-bg, rgba(50, 63, 100, .44));
}

.chat-name {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.chat-text {
  color: inherit;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line;
}

.tone-8 {
  --bubble-bg: linear-gradient(180deg, rgba(98,90,200,0.86), rgba(66,58,150,0.86));
  --bubble-border: rgba(154,142,255,0.3);
}

@keyframes seat-fade-in {
from { opacity: 0; transform: scale(.82) } to { opacity: 1; transform: none }
}

.arena--seating .seat.filled {
  animation: seat-fade-in .5s ease both;
}

.disposition-popover {
  position: fixed;
  z-index: 1000;
  width: min(470px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  border: 1px solid rgba(255, 199, 47, .3);
  border-radius: 18px;
  padding: 14px;
  background: rgba(6, 9, 16, .94);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .5), 0 0 0 3px rgba(255, 199, 47, .08);
  backdrop-filter: blur(18px);
}

.popover-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.popover-close {
  border: 0;
  background: 0 0;
  color: var(--muted);
  font-size: 18px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.disposition-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.disposition-option {
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  color: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 850;
}

.disposition-option.active {
  color: var(--gold);
  border-color: rgba(255, 199, 47, .64);
  background: rgba(255, 199, 47, .055);
}

.dot-swatch {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--dot-color) 22%, transparent);
}

@media (max-width:900px) {
  .disposition-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.empty-state {
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 18px;
}

.empty-state b {
  display: block;
  color: var(--soft);
  margin-bottom: 6px;
}

.empty-state span {
  font-size: 12px;
}

@media (max-width:1680px) {
  .studio-grid {
    grid-template-columns: 420px minmax(620px, 1fr) var(--gym-w);
  }

  .person-card {
    min-height: 112px;
    padding-bottom: 12px;
  }

  .room-card {
    flex-basis: 210px;
  }

  .lab-panel {
    grid-template-rows: 132px minmax(112px, auto) minmax(420px, 1fr);
  }

  .mode-row {
    min-height: 132px;
    grid-template-rows: 60px 72px;
  }

  .mode-row .section-label {
    height: 60px;
  }

  .section-label {
    font-size: 12px;
  }
}

@media (max-width:1366px) {
  .studio-page {
    padding: 8px 0 24px;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .people-panel {
    border-right: 0;
    border-bottom: 2px solid rgba(216, 225, 245, .3);
    max-height: 430px;
  }

  .chat-panel {
    border-left: 0;
    border-top: 2px solid rgba(216, 225, 245, .3);
    min-height: 460px;
  }

  .people-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@property --scenario-open {
syntax: "<number>";
        inherits: true;
        initial-value: 0
}

:root {
  --control-strip-height: 88px;
  --scenario-h: 168px;
  --room-trim: calc((100svh - 449px) / 4);
}

.studio-shell {
  height: calc(100svh - 20px - var(--scenario-h) * (1 - var(--scenario-open)) - var(--room-trim));
  min-height: calc(760px - var(--scenario-h) * (1 - var(--scenario-open)) - var(--room-trim));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.studio-grid .lab-panel {
  overflow-y: auto;
  overflow-x: hidden;
}

.studio-grid {
  min-height: 0;
  height: 100%;
}

.chat-panel,
.lab-panel,
.people-panel {
  min-height: 0;
  overflow: hidden;
}

.people-list {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.control-strip {
  height: var(--control-strip-height);
  min-height: var(--control-strip-height);
}

.face {
  position: relative;
}

.face::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 -16px 26px rgba(66, 52, 140, .48), inset 0 0 20px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .035);
}

.face img {
  position: relative;
  z-index: 0;
}

@media (max-width:1366px) {
  .studio-shell {
    height: auto;
    max-height: none;
    min-height: 0;
    grid-template-rows: auto auto auto;
  }

  .people-panel {
    max-height: min(430px, 42svh);
    overflow: hidden;
  }

  .control-strip {
    height: auto;
    min-height: 0;
  }

  .chat-panel {
    min-height: 0;
    overflow: visible;
  }

  .gym-body {
    min-height: 0;
    overflow: visible;
  }

  .sequence-console {
    flex: 0 0 auto;
    min-height: 240px;
    overflow: visible;
  }

  .sequence-console .console-steps {
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
  }

  .project-files-console {
    flex: 0 0 auto;
  }

  .project-folder-panel {
    max-height: 380px;
    overflow-y: auto;
  }
}

@media (max-width:900px) {
  .studio-page {
    width: min(100% - 18px, 760px);
  }

  .people-list {
    grid-template-columns: 1fr;
  }

  .person-bio,
.person-meta {
    margin-left: 0;
  }

  .person-card {
    min-height: 108px;
  }

  .room-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-tab {
    height: 58px;
  }

  .lab-panel {
    grid-template-rows: auto auto minmax(420px, 1fr);
  }

  .control-strip {
    padding: 14px;
  }
}

.scenario-chip-row {
  min-width: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 3px;
  scrollbar-gutter: stable;
}

.scenario-chip-row::-webkit-scrollbar {
  height: 6px;
}

.scenario-chip-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .035);
  border-radius: 999px;
}

.scenario-chip-row::-webkit-scrollbar-thumb {
  background: rgba(255, 199, 47, .42);
  border-radius: 999px;
}

.scenario-library {
  padding: 26px clamp(16px, 2.2vw, 28px) 14px;
  border-bottom: 2px solid rgba(216, 225, 245, .3);
  background: rgba(3, 7, 13, .55);
}

.scenario-reveal {
  height: calc(var(--scenario-h) * var(--scenario-open));
  min-height: 0;
  overflow: hidden;
}

.scenario-reveal__clip {
  min-height: 0;
}

.scenario-reveal .scenario-library {
  transform: translateY(28px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.22, .61, .36, 1), opacity 520ms ease;
}

.studio-page[data-scenario=open] .scenario-reveal .scenario-library {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion:reduce) {
  .studio-page {
    transition-duration: 1ms;
  }

  .scenario-reveal .scenario-library {
    transition-duration: 1ms;
    transform: none;
  }
}

.scenario-library__eyebrow {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}

.scenario-library .scenario-chip-row {
  gap: 10px;
  padding: 2px 2px 10px;
  align-items: stretch;
  scroll-snap-type: x proximity;
}

.scenario-library .scenario-chip-row::after {
  content: "";
  flex: 0 0 auto;
  align-self: stretch;
  width: 150px;
  margin-left: 2px;
  border: 1.5px dashed rgba(216, 225, 245, .3);
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .02), transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 82%);
  mask-image: linear-gradient(90deg, #000 0, transparent 82%);
  pointer-events: none;
}

.scenario-card {
  flex: 0 0 auto;
  position: relative;
  width: clamp(208px, 22vw, 264px);
  scroll-snap-align: start;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 16px 14px;
  border-radius: 17px;
  border: 1px solid var(--line);
  background: radial-gradient(420px 180px at 0 0, rgba(52, 104, 255, .06), transparent 70%), linear-gradient(180deg, rgba(13, 18, 28, .78), rgba(6, 9, 15, .78));
  color: var(--text);
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.scenario-card:focus-visible,
.scenario-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  outline: 0;
}

.scenario-card.active {
  border-color: rgba(52, 104, 255, .9);
  box-shadow: 0 0 0 1px rgba(52, 104, 255, .55), 0 16px 40px rgba(52, 104, 255, .14);
}

.scenario-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.scenario-card__name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.05;
}

.scenario-card__tags {
  margin: 0;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
}

.scenario-card__summary {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--soft);
}

@media (max-width:640px) {
  .scenario-library {
    padding-top: 20px;
  }

  .scenario-card {
    width: 70vw;
  }
}

.project-folder-panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(216, 225, 245, .15);
  padding: 13px 0 15px;
  background: linear-gradient(180deg, rgba(5, 8, 15, .76), rgba(3, 7, 13, .88));
  overflow: hidden;
}

.project-folder-panel.is-empty {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
}

.folder-empty-state {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  padding: 20px 16px;
  margin-top: 12px;
  border-top: 1px dashed rgba(216, 225, 245, .18);
}

.folder-empty-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.folder-empty-title {
  margin: 0;
  color: #f7f8fc;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.01em;
}

.folder-empty-copy {
  margin: 0;
  max-width: 300px;
  color: #6f788e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.project-folder-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
  color: rgba(143, 151, 167, .88);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-folder-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.drive-name {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drive-name b {
  text-transform: none;
  letter-spacing: .01em;
  color: var(--text);
}

.drive-mark {
  width: 19px;
  height: 17px;
  flex: 0 0 auto;
  display: block;
}

.project-folder-count {
  flex: 0 0 auto;
  color: var(--gold);
}

.project-folder-items {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  display: grid;
  gap: 6px;
  align-content: start;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.folder-artifact {
  border: 1px solid rgba(216, 225, 245, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  padding: 8px 9px;
  color: rgba(203, 205, 199, .86);
  display: grid;
  gap: 6px;
}

.folder-artifact.generated {
  border-color: rgba(255, 199, 47, .2);
}

.folder-artifact.reviewed {
  border-color: rgba(29, 230, 211, .34);
}

.folder-artifact.approved,
.folder-artifact.distributed {
  border-color: rgba(51, 229, 157, .42);
}

.artifact-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.artifact-topline strong {
  min-width: 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artifact-status {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.folder-artifact span {
  display: block;
  color: rgba(143, 151, 167, .88);
  font-size: 10px;
  line-height: 1.2;
}

.artifact-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.artifact-action {
  min-height: 26px;
  border: 1px solid rgba(216, 225, 245, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .028);
  color: rgba(203, 205, 199, .76);
  padding: 0 9px;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.artifact-action.active,
.artifact-action:hover {
  color: #07090d;
  border-color: rgba(255, 199, 47, .65);
  background: var(--gold);
}

.workflow-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(10px);
}

.workflow-modal-backdrop.show {
  display: grid;
}

.workflow-modal {
  width: min(760px, 100%);
  max-height: min(84vh, 780px);
  border: 1px solid rgba(216, 225, 245, .26);
  border-radius: 24px;
  background: radial-gradient(500px 220px at 8% 0, rgba(255, 199, 47, .12), transparent 64%), #070b13;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .62);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.workflow-modal-head {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(216, 225, 245, .14);
}

.workflow-modal-head h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.workflow-modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 225, 245, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  color: rgba(203, 205, 199, .8);
  font-size: 20px;
}

.workflow-modal-body {
  overflow: auto;
  padding: 20px 22px 24px;
  color: rgba(203, 205, 199, .88);
  font-size: 13px;
  line-height: 1.45;
}

.workflow-banner {
  border: 1px solid rgba(255, 199, 47, .26);
  border-radius: 16px;
  background: rgba(255, 199, 47, .07);
  color: #fff2c6;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 12.5px;
}

.workflow-banner.evaluator {
  border-color: rgba(255, 138, 61, .3);
  background: rgba(255, 138, 61, .07);
}

.workflow-answer-card {
  border: 1px solid rgba(216, 225, 245, .15);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  padding: 13px 14px;
  margin: 10px 0;
}

.workflow-answer-card .order-label {
  color: rgba(155, 140, 255, .94);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.workflow-answer-card h4 {
  margin: 4px 0 8px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.workflow-kv {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
  margin: 7px 0;
  align-items: baseline;
}

.workflow-kv span {
  color: rgba(143, 151, 167, .9);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.workflow-kv b {
  color: rgba(244, 241, 232, .9);
  font-size: 12.5px;
  font-weight: 850;
}

.workflow-criteria,
.workflow-route-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.workflow-criteria li,
.workflow-route-list li {
  margin: 5px 0;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.score-card {
  border: 1px solid rgba(216, 225, 245, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
  padding: 10px;
}

.score-card .score-title {
  color: rgba(244, 241, 232, .9);
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 7px;
}

.score-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(216, 225, 245, .1);
  overflow: hidden;
}

.score-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.score-card .score-value {
  margin-top: 6px;
  color: rgba(143, 151, 167, .86);
  font-size: 10px;
  font-weight: 850;
}

.overall-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0;
  color: var(--green);
  font-size: 38px;
  font-family: var(--serif);
  line-height: 1;
}

.overall-score small {
  color: rgba(143, 151, 167, .86);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 850;
}

.case-upload-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.modal-action {
  border: 1px solid rgba(255, 199, 47, .45);
  border-radius: 999px;
  background: rgba(255, 199, 47, .08);
  color: #fff2c6;
  min-height: 34px;
  padding: 0 13px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal-action:hover {
  background: var(--gold);
  color: #080a0f;
}

.run-setup-controls {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.16fr) minmax(0, 0.86fr) minmax(0, 0.76fr) minmax(230px, 1.34fr) var(--command-control-height);
  gap: 10px;
}

.studio-shell {
  --control-strip-height: 96px;
}

.lab-panel {
  grid-template-rows: 142px minmax(158px, auto) minmax(116px, auto) minmax(320px, 1fr);
}

@media (max-width:1680px) {
  .run-setup-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, 1.32fr) var(--command-control-height);
  }

  .command-slot--tools {
    grid-column: auto;
  }

  .lab-panel {
    grid-template-rows: 132px minmax(154px, auto) minmax(112px, auto) minmax(300px, 1fr);
  }
}

@media (max-width:1366px) {
  .run-setup-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr)) var(--command-control-height);
  }
}

@media (max-width:900px) {
  .run-setup-controls,
.score-grid,
.workflow-kv {
    grid-template-columns: 1fr;
  }

  .project-folder-panel {
    max-height: none;
  }
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 50%, var(--gold) 51%, var(--gold2));
  box-shadow: 0 14px 34px rgba(52, 104, 255, .25);
}

.mark svg {
  width: 25px;
  height: 25px;
}

.brand {
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.02;
  font-size: 18px;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width:560px) {

  .brand {
    min-width: 0 !important;
  }

  .brand small {
    font-size: 8px !important;
    letter-spacing: .12em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

.mark {
  background: #0b0f18 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45) !important;
  border: 1px solid var(--line);
}

@media (min-width:1367px) and (max-width:1560px),
      (min-width:1367px) and (max-height:980px) {
  .studio-grid {
    grid-template-columns: 352px minmax(0, 1fr) var(--gym-w);
  }

  .control-strip {
    --people-column-width: 352px;
    grid-template-columns: var(--people-column-width) minmax(0, 1fr) 312px;
  }

  .people-mode-bar {
    padding: 14px 14px 12px;
  }

  .people-mode-button {
    font-size: 9px;
    letter-spacing: .02em;
    padding: 0 6px;
  }

  .people-head {
    min-height: 56px;
  }

  .lab-panel {
    grid-template-rows: 104px minmax(118px, auto) minmax(88px, auto) minmax(300px, 1fr);
    gap: 10px;
    padding: 0 14px 10px;
  }

  .mode-row {
    min-height: 104px;
    grid-template-rows: 48px 56px;
  }

  .mode-row .section-label {
    height: 48px;
  }

  .room-tab {
    height: 56px;
  }

  .room-tab span {
    font-size: 13px;
  }

  .room-cards {
    min-height: 88px;
    padding: 12px 14px 14px;
    gap: 12px;
  }

  .room-card {
    flex-basis: 188px;
  }

  .arena {
    min-height: 0;
  }

  :root {
    --control-strip-height: 84px;
  }

  .control-strip {
    height: var(--control-strip-height);
    min-height: var(--control-strip-height);
    padding: 12px 0;
  }

  .run-setup-controls {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.16fr) minmax(0, 0.86fr) minmax(0, 0.76fr) minmax(196px, 1.34fr) var(--command-control-height);
    gap: 8px;
    padding: 0 20px 0 18px;
  }

  .people-filter-controls {
    gap: 12px;
    padding: 0 18px 0 20px;
  }

  .people-filter-controls .command-slot {
    max-width: 150px;
  }

  .people-list {
    min-height: 0;
    overflow-y: auto;
  }

  .chat-feed {
    min-height: 0;
    overflow-y: auto;
  }
}

.project-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  min-width: 0;
}

.project-files-console .console-head,
.project-toolbar {
  position: relative;
  overflow: visible;
  z-index: 60;
}

.project-download-menu,
#projectDownloadMenu {
  z-index: 1000;
}

.workflow-menu-wrap,
.download-pill-wrap,
.upload-pill-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.workflow-pill,
.project-toolbar .upload-pill,
.project-toolbar .project-download-pill {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 28px;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(216, 225, 245, .22);
  background: rgba(255, 255, 255, .035);
  color: rgba(231, 236, 248, .92);
  font-family: var(--sans);
  font-size: 10.8px;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transition: border-color var(--ease, .18s), background var(--ease, .18s), box-shadow var(--ease, .18s), color var(--ease, .18s);
}

.workflow-pill:hover,
.project-toolbar .upload-pill:hover,
.project-toolbar .project-download-pill:hover {
  transform: none;
  border-color: rgba(255, 199, 47, .66);
  box-shadow: 0 0 0 3px rgba(255, 199, 47, .10);
}

.workflow-pill__icon,
.workflow-pill__caret,
.upload-pill__icon,
.upload-pill__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.workflow-pill__icon,
.upload-pill__icon {
  font-size: 12px;
}

.workflow-pill__caret,
.upload-pill__caret {
  font-size: 8px;
  opacity: .72;
}

.workflow-pill--upload,
.project-toolbar .upload-pill:not(.project-download-pill) {
  border-color: rgba(255, 199, 47, .76);
  background: linear-gradient(180deg, #ffe064, #ffc72f);
  color: #1a1304;
  box-shadow: none;
}

.workflow-pill--upload:hover,
.project-toolbar .upload-pill:not(.project-download-pill):hover {
  border-color: rgba(255, 199, 47, .95);
  box-shadow: 0 0 0 3px rgba(255, 199, 47, .14);
}

.workflow-pill--upload.is-loaded,
.project-toolbar .upload-pill.is-loaded {
  border-color: rgba(30, 163, 98, .72);
  background: linear-gradient(180deg, #6fe6ad, #33c98a);
  color: #06291b;
}

.workflow-pill--download,
.project-download-pill {
  border-color: rgba(216, 225, 245, .25);
  background: rgba(255, 255, 255, .04);
  color: rgba(231, 236, 248, .94);
}

.workflow-pill--download.is-loaded,
.project-download-pill.is-loaded {
  border-color: rgba(30, 163, 98, .72);
  background: linear-gradient(180deg, #6fe6ad, #33c98a);
  color: #06291b;
}

.workflow-menu,
.upload-pill-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  z-index: 40;
  min-width: 186px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #0c1119;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}

.workflow-menu[hidden],
.upload-pill-menu[hidden] {
  display: none;
}

.workflow-menu-option,
.upload-pill-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #e7eaf2;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.workflow-menu-option:hover,
.upload-pill-option:hover {
  background: rgba(255, 255, 255, .065);
}

.project-download-option i,
.workflow-menu-option i {
  color: rgba(143, 151, 167, .86);
  font-size: 9.8px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.folder-artifact {
  cursor: default;
}

.folder-artifact.revision {
  border-color: rgba(255, 138, 61, .42);
  background: linear-gradient(180deg, rgba(255, 138, 61, .055), rgba(255, 255, 255, .018));
}

.folder-artifact.distributed .artifact-status {
  color: var(--green);
}

.folder-artifact.revision .artifact-status {
  color: #ffb16c;
}

.folder-artifact.approved .artifact-status {
  color: #69e9ad;
}

.artifact-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.artifact-action {
  white-space: nowrap;
}

.artifact-action[aria-disabled=true] {
  opacity: .52;
  color: rgba(232, 238, 252, .56);
  border-color: rgba(216, 225, 245, .14);
  background: rgba(255, 255, 255, .018);
  pointer-events: auto;
}

.artifact-action--review {
  min-width: 62px;
}

.artifact-action--distribute.active {
  color: #080a0f;
  border-color: rgba(255, 199, 47, .74);
  background: var(--gold);
}

.artifact-distribution-icons {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  padding-left: 6px;
  flex: 0 0 auto;
}

.artifact-distribution-icons i {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid #0b0f18;
  background: #070a11;
  color: #fff2c6;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  margin-left: -7px;
  overflow: hidden;
}

.artifact-distribution-icons i:first-child {
  margin-left: 0;
}

.artifact-distribution-icons img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  display: block;
  opacity: .96;
}

.artifact-modal .workflow-modal {
  width: min(820px, 100%);
}

.artifact-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: start;
}

.artifact-document {
  border: 1px solid rgba(216, 225, 245, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  padding: 16px;
}

.artifact-document h4 {
  margin: 0 0 8px;
  color: #f7f8fc;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.artifact-document p {
  margin: 7px 0;
  color: rgba(203, 205, 199, .88);
  font-size: 12.5px;
  line-height: 1.45;
}

.artifact-document ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.artifact-document li {
  margin: 5px 0;
}

.artifact-review-side {
  display: grid;
  gap: 9px;
}

.artifact-review-note {
  border: 1px solid rgba(255, 199, 47, .2);
  border-radius: 14px;
  background: rgba(255, 199, 47, .06);
  padding: 10px;
  color: #fff2c6;
  font-size: 11.5px;
  line-height: 1.35;
}

.artifact-comment {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 1px solid rgba(216, 225, 245, .18);
  border-radius: 13px;
  background: rgba(0, 0, 0, .18);
  color: #f7f8fc;
  padding: 10px;
  font-size: 12px;
  outline: 0;
}

.artifact-comment:focus {
  border-color: rgba(255, 199, 47, .52);
}

.artifact-modal-actions {
  display: grid;
  gap: 8px;
}

.artifact-modal-actions .modal-action {
  width: 100%;
  min-height: 36px;
}

.modal-action--approve {
  border-color: rgba(51, 229, 157, .52);
  background: rgba(51, 229, 157, .11);
  color: #8ff1c8;
}

.modal-action--revision {
  border-color: rgba(255, 138, 61, .46);
  background: rgba(255, 138, 61, .09);
  color: #ffca99;
}

@media (max-width:900px) {
  .artifact-review-grid {
    grid-template-columns: 1fr;
  }

  .project-toolbar {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width:1366px) {
  .arena {
    min-height: 432px;
  }
}

@media (max-width:900px) {
  .arena {
    min-height: 420px;
  }
}

@keyframes ddpulse {
0%,
        100% {
          opacity: 1
        }

        50% {
          opacity: .4
        }
}

.dd-tools .tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(52, 104, 255, .75);
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s, transform .2s;
}

.dd-tools .tool:hover {
  border-color: var(--dd-blue-br);
  transform: translateY(-2px);
}

.dd-tools .tool .lg {
  width: 19px;
  height: 19px;
  display: block;
}

.dd-tools .tool.tool-x .lg {
  width: 16px;
  height: 16px;
}

.dd-landing .brand {
  font-weight: 400;
  letter-spacing: normal;
}

.dd-landing .brand small {
  display: inline-block;
  margin-top: 5px;
  color: #ffc72f;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

@media (prefers-reduced-motion:reduce) {

  .dd-primary,
.dd-primary::before,
.dd-primary .arrow,
.dd-tools .tool {
    transition: none;
  }
}

#studio {
  margin-top: 5.1rem;
}

.eval-ring:nth-child(7),
.eval-ring:nth-child(8) {
  transform: translateX(-17px);
}

.metric-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(1.6rem, 3.5vw, 3.6rem);
  max-width: 1560px;
  margin: 0 auto;
}

.metric-row {
  --accent: var(--dd-gold);
  display: grid;
  grid-template-columns: clamp(58px, 4.4vw, 88px) 1fr;
  align-items: baseline;
  gap: clamp(.7rem, 1.4vw, 1.2rem);
  padding: clamp(.95rem, 1.7vw, 1.4rem) 0;
  border-bottom: 1px solid var(--dd-line);
  transition: border-color var(--dd-ease);
}

.metric-row:nth-child(3n/**/+2) {
  --accent: var(--dd-blue-br);
}

.metric-row:nth-child(3n) {
  --accent: var(--dd-pink);
}

.metric-row:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--dd-line));
}

.metric-row__num {
  font-family: var(--dd-sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-align: right;
  white-space: nowrap;
  color: var(--accent);
}

.metric-row__desc {
  font-family: var(--dd-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--dd-text);
}

@media (max-width: 1024px) {
  .metric-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .metric-table {
    grid-template-columns: 1fr;
  }
}

.folder-artifact .artifact-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}

.folder-artifact .artifact-distribution-icons {
  display: inline-flex;
  flex-direction: row;
  margin-left: auto;
  flex: 0 0 auto;
  align-items: center;
}

.folder-artifact .artifact-action {
  align-self: center;
}

.phase-steps {
  gap: 7px;
}

.phase-premise {
  margin: 0 0 8px;
  color: #cdd3df;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.38;
}

.phase-premise b {
  display: inline;
  margin: 0 7px 0 0;
  color: rgba(255, 199, 47, .92);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.phase-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.phase-step-head b {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.12;
}

.phase-step-note {
  display: block;
  margin-top: 4px;
}

.phase-inline-approve,
.phase-gate-btn,
.phase-room-play,
.artifact-action,
.modal-action,
.order-run-btn,
.order-gate-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 28px;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(216, 225, 245, .22);
  background: rgba(255, 255, 255, .035);
  color: rgba(231, 236, 248, .88);
  font-family: var(--sans);
  font-size: 10.6px;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: background var(--ease, .18s), border-color var(--ease, .18s), box-shadow var(--ease, .18s), color var(--ease, .18s);
}

.phase-inline-approve:hover:not(:disabled):not([aria-disabled="true"]),
.phase-gate-btn:hover:not(:disabled):not([aria-disabled="true"]),
.phase-room-play:hover:not(:disabled):not([aria-disabled="true"]),
.artifact-action:hover:not(:disabled):not([aria-disabled="true"]),
.modal-action:hover:not(:disabled):not([aria-disabled="true"]),
.order-run-btn:hover:not(:disabled):not([aria-disabled="true"]),
.order-gate-btn:hover:not(:disabled):not([aria-disabled="true"]) {
  transform: none;
  border-color: rgba(255, 199, 47, .62);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 3px rgba(255, 199, 47, .10);
}

.phase-inline-approve {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: 28px;
  min-height: 28px;
  padding: 0 12px;
  border-color: rgba(255, 199, 47, .62);
  background: rgba(255, 199, 47, .09);
  color: var(--gold, #ffc72f);
}

.phase-inline-approve:hover:not(:disabled):not([aria-disabled="true"]) {
  background: rgba(255, 199, 47, .16);
}

.phase-inline-approve:disabled,
.phase-inline-approve[aria-disabled="true"],
.order-run-btn:disabled,
.order-run-btn[aria-disabled="true"],
.artifact-action[aria-disabled="true"] {
  opacity: .46;
  cursor: default;
  filter: grayscale(.25);
  transform: none;
}

.phase-gate-btn:disabled,
.phase-gate-btn[aria-disabled="true"] {
  opacity: .44;
  cursor: default;
  filter: grayscale(.25);
  transform: none;
}

.phase-subhead {
  margin-top: 8px;
}

.phase-room-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.phase-room-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 29px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
}

.phase-room-item b {
  flex: 0 0 auto;
  color: var(--text, #f7f8fc);
  font-size: 12px;
  line-height: 1.1;
}

.phase-room-item span {
  min-width: 0;
  color: rgba(195, 201, 216, .72);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phase-room-play {
  flex: 0 0 auto;
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
  padding: 0 0 0 1px;
  border-color: rgba(255, 199, 47, .68);
  background: rgba(255, 199, 47, .14);
  color: var(--gold, #ffc72f);
  font-size: 10px;
}

.phase-room-play.is-run {
  padding-left: 0;
  color: #052315;
  border-color: rgba(51, 229, 157, .8);
  background: linear-gradient(180deg, #6fe6ad, #33c98a);
}

.phase-gate-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 10px;
}

.phase-gate-btn {
  flex: 0 0 auto;
  width: auto;
  height: 29px;
  min-height: 29px;
  padding: 0 12px;
  font-size: 10.8px;
  letter-spacing: 0;
}

.phase-gate-btn--score,
.order-gate-btn,
.modal-action--approve {
  border-color: rgba(125, 224, 168, .65);
  background: rgba(30, 163, 98, .12);
  color: #7ff0c4;
}

.phase-gate-btn--score:hover:not(:disabled):not([aria-disabled="true"]),
.order-gate-btn:hover:not(:disabled):not([aria-disabled="true"]),
.modal-action--approve:hover:not(:disabled):not([aria-disabled="true"]) {
  border-color: rgba(125, 224, 168, .86);
  background: rgba(30, 163, 98, .18);
  color: #a2ffd4;
  box-shadow: 0 0 0 3px rgba(51, 229, 157, .11), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.phase-gate-btn--skip,
.artifact-action,
.project-download-pill {
  border-color: rgba(216, 225, 245, .24);
  background: rgba(255, 255, 255, .04);
  color: rgba(231, 236, 248, .86);
}

.artifact-action.active {
  border-color: rgba(255, 199, 47, .62);
  background: rgba(255, 199, 47, .10);
  color: var(--gold, #ffc72f);
}

.artifact-action--distribute.active {
  color: #080a0f;
  border-color: rgba(255, 199, 47, .74);
  background: var(--gold, #ffc72f);
}

.modal-action--revision {
  border-color: rgba(255, 138, 61, .48);
  background: rgba(255, 138, 61, .09);
  color: #ffca99;
}

.artifact-action {
  min-height: 28px;
  height: 28px;
  padding: 0 10px;
  font-size: 9.2px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.modal-action {
  min-height: 32px;
  height: 32px;
  padding: 0 14px;
  font-size: 10.3px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.artifact-modal-actions .modal-action {
  width: 100%;
  min-height: 34px;
  height: 34px;
}

.replay-bar {
  gap: 9px;
}

.replay-btn {
  width: 29px;
  height: 29px;
  border-radius: 10px;
  border: 1px solid rgba(255, 95, 122, .52);
  background: rgba(255, 95, 122, .10);
  color: #ff7f9a;
  font-size: 11px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: background var(--ease, .18s), border-color var(--ease, .18s), box-shadow var(--ease, .18s), transform var(--ease, .18s);
}

.replay-btn:hover,
.replay-btn.is-active {
  transform: translateY(-1px);
  background: rgba(255, 95, 122, .18);
  border-color: rgba(255, 95, 122, .78);
  box-shadow: 0 0 0 3px rgba(255, 95, 122, .12), inset 0 1px 0 rgba(255, 255, 255, .10);
}

.folder-artifact.generated .artifact-status,
.folder-artifact.reviewed .artifact-status {
  color: var(--gold, #ffc72f);
}

@keyframes ddDirectBubblePop {
0% { transform: translateY(8px) scale(.965); }
        58% { transform: translateY(-2px) scale(1.012); }
        100% { transform: translateY(0) scale(1); }
}

.chat-row.dd-direct.visible .chat-bubble {
  animation: ddDirectBubblePop 360ms cubic-bezier(.2, 1.35, .42, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .chat-row.dd-direct.visible .chat-bubble {
    animation: none;
  }
}

.gym-cover {
  z-index: 1200;
}

.project-toolbar,
.project-files-console .console-head {
  z-index: 20;
}

.studio-page[data-scenario="closed"] .project-toolbar,
.studio-page[data-scenario="closed"] .project-files-console .console-head {
  z-index: 1;
}

.project-download-menu {
  min-width: 216px;
}

.phase-gate-btn:disabled,
.phase-gate-btn[aria-disabled="true"],
.phase-room-play:disabled,
.phase-room-play[aria-disabled="true"],
.phase-inline-approve:disabled,
.phase-inline-approve[aria-disabled="true"],
#promptSend:disabled,
#promptSend[aria-disabled="true"] {
  opacity: .42;
  cursor: not-allowed;
  filter: grayscale(.28);
}

.console-subeyebrow {
  display: block;
  margin-top: 4px;
  color: rgba(195, 201, 216, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.phase-steps {
  gap: 8px;
  padding: 11px;
  background: rgba(255, 255, 255, .026);
  border-color: rgba(255, 199, 47, .2);
}

.phase-premise {
  margin-bottom: 1px;
  padding: 8px 9px;
  border-radius: 11px;
  background: rgba(52, 104, 255, .055);
  border-color: rgba(52, 104, 255, .16);
  color: rgba(214, 222, 238, .82);
}

.phase-premise b {
  color: rgba(255, 199, 47, .88);
}

.phase-step-head b,
.order-step__body > b,
.order-step__body .phase-step-head b {
  font-size: 12.2px;
  letter-spacing: .01em;
}

.phase-step-note,
.order-step__body > span,
.phase-room-item span {
  color: rgba(195, 201, 216, .72);
}

.phase-subhead {
  color: rgba(255, 199, 47, .78);
  letter-spacing: .1em;
}

.phase-room-item {
  background: rgba(255, 255, 255, .028);
  border-color: rgba(216, 225, 245, .1);
}

.phase-inline-approve,
.phase-gate-btn,
.phase-room-play,
.artifact-action {
  letter-spacing: .02em;
}

.phase-gate-actions {
  gap: 7px;
}

.phase-gate-btn--score {
  flex: 1 1 auto;
}

.phase-gate-btn--skip {
  flex: 0 0 auto;
  opacity: .72;
}

.project-toolbar {
  gap: 7px;
}

.workflow-pill,
.project-toolbar .upload-pill,
.project-toolbar .project-download-pill {
  min-height: 28px;
  padding: 5px 10px;
  font-size: 10px;
}

.folder-artifact {
  padding: 10px 11px;
  background: rgba(255, 255, 255, .028);
}

.artifact-topline strong {
  font-size: 12px;
}

.artifact-status {
  font-size: 9px;
  opacity: .86;
}

.artifact-actions {
  gap: 5px;
}

.artifact-action {
  min-height: 24px;
  padding: 4px 8px;
  font-size: 9.5px;
}

.dd-tab.is-active {
  color: var(--dd-ink);
  border-color: rgba(156,152,255,.48);
  background: radial-gradient(circle at 28% 10%, rgba(156,152,255,.18), transparent 11rem),
        rgba(156,152,255,.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.055);
}

.dd-panel.is-active {
  display: grid;
}

.dd-step.is-active {
  color: var(--dd-ink);
  border-color: rgba(156,152,255,.58);
  background: linear-gradient(180deg, rgba(156,152,255,.11), rgba(156,152,255,.055)),
        rgba(255,255,255,.04);
  box-shadow: inset 3px 0 0 rgba(156,152,255,.82);
}

.flow-dot.v {
  fill: var(--dd-violet);
  filter: drop-shadow(0 0 5px rgba(156,152,255,.55));
}

.dd-tab.is-active {
  color: #080a0f;
  border-color: rgba(255, 199, 47, .72);
  background: linear-gradient(180deg, #ffe064 0%, #ffc72f 52%, #c99624 100%);
  box-shadow: 0 12px 30px rgba(255, 199, 47, .17), inset 0 1px 0 rgba(255,255,255,.42);
}

.dd-tab.is-active span, .dd-tab.is-active strong {
  color: #080a0f;
}

.dd-step.is-active {
  border-color: rgba(255, 199, 47, .58);
  background: rgba(255, 199, 47, .095);
}

#studio, #how-double-works .dd-shell, .dd-approach__grid, .dd-security__showcase, .sec-cardgrid, .outcome-stories {
  width: var(--bt-page-rail) !important;
  max-width: var(--bt-page-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.dd-approach, .dd-announce, #studio, #how-double-works.dd-section, .dd-security, .dd-outcomes {
  width: var(--bt-page-rail) !important;
  max-width: var(--bt-page-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#studio .studio-page, #how-double-works .dd-shell, .dd-approach__grid, .dd-security__showcase, .sec-cardgrid, .outcome-stories {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#how-double-works .dd-tab.is-active strong, #how-double-works .dd-tab.is-active span {
  color: #080a0f !important;
}

#how-double-works .dd-panel.is-active {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

:root {--bt-rail: min(1888px, calc(100vw - 32px));--bt-content-wide: min(1888px, 100%);--bt-content-medium: min(1888px, 100%);--bt-header: min(930px, 100%);--bt-section-gap: clamp(5.8rem, 8.5vw, 8.6rem);--bt-content-gap: clamp(1.75rem, 3vw, 2.45rem);--bt-label-gap: .86rem;--bt-title-gap: clamp(1rem, 1.55vw, 1.25rem);--bt-divider: linear-gradient(90deg, transparent 0%, rgba(216, 225, 245, .10) 18%, rgba(255, 199, 47, .38) 50%, rgba(216, 225, 245, .10) 82%, transparent 100%);}

@media (max-width: 900px) {
:root {--bt-section-gap: clamp(4.4rem, 10vw, 6.3rem);--bt-content-gap: clamp(1.35rem, 4.4vw, 2rem);}
}

@media (max-width: 680px) {
:root {--bt-rail: calc(100vw - 24px);--bt-section-gap: clamp(3.8rem, 12vw, 5rem);--bt-content-gap: clamp(1.25rem, 6vw, 1.75rem);}
}

:root {--bt-page-rail: min(1888px, calc(100vw - 32px));--bt-header-width: min(980px, 100%);--bt-section-space: clamp(5.4rem, 8vw, 7.6rem);--bt-line-to-label: clamp(2.25rem, 3.8vw, 3.35rem);--bt-header-to-content: clamp(1.8rem, 3vw, 2.35rem);--bt-label-to-title: .88rem;--bt-title-to-body: clamp(1rem, 1.45vw, 1.2rem);--bt-component-gap: clamp(1rem, 1.65vw, 1.35rem);--bt-section-line: linear-gradient(90deg, transparent 0%, rgba(216, 225, 245, .18) 18%, rgba(255, 199, 47, .62) 50%, rgba(216, 225, 245, .18) 82%, transparent 100%);}

@media (max-width: 1080px) {
:root {--bt-page-rail: min(1888px, calc(100vw - 32px));--bt-section-space: clamp(4.6rem, 8.5vw, 6.2rem);}
}

@media (max-width: 680px) {
:root {--bt-page-rail: calc(100vw - 24px);--bt-section-space: clamp(3.6rem, 12vw, 4.9rem);--bt-line-to-label: clamp(1.85rem, 7vw, 2.45rem);}
}

:root {--bt-page-rail: min(1888px, calc(100vw - 32px));--bt-header-width: min(980px, 100%);}

@media (max-width: 680px) {
:root {--bt-page-rail: calc(100vw - 24px);}
}

:root {--bt-label-font: var(--dd-sans, "Instrument Sans", "DM Sans", system-ui, -apple-system, sans-serif);--bt-head-font: "Sora", "Instrument Sans", "DM Sans", system-ui, -apple-system, sans-serif;--bt-body-font: var(--dd-sans, "Instrument Sans", "DM Sans", system-ui, -apple-system, sans-serif);--bt-accent-font: var(--dd-display, "DM Serif Display", Georgia, serif);--bt-label-size: .76rem;--bt-section-head-size: clamp(1.72rem, 2.75vw, 2.85rem);--bt-feature-head-size: clamp(1.34rem, 1.92vw, 1.92rem);--bt-card-head-size: clamp(1.02rem, 1.5vw, 1.18rem);--bt-body-size: clamp(.95rem, 1.18vw, 1.08rem);--bt-card-body-size: clamp(.9rem, 1.02vw, .98rem);--bt-muted-copy: rgba(244, 241, 232, .70);--bt-blue-accent: #6f8fff;--bt-gold-accent: var(--dd-gold, #ffc72f);--bt-rose-accent: #ff5fa2;}

@media (max-width: 680px) {
:root {--bt-section-head-size: clamp(1.62rem, 7.1vw, 2.3rem);--bt-feature-head-size: clamp(1.24rem, 5.8vw, 1.72rem);}
}

:root {--bt-head-font: var(--dd-display, "DM Serif Display", Georgia, serif);--bt-head-size: clamp(2.18rem, 4.8vw, 3.8rem);--bt-head-line: .92;--bt-card-title-white: #f7f8fc;--bt-separator-glow: radial-gradient(620px 220px at 50% 0%, rgba(255, 199, 47, .055), transparent 72%), radial-gradient(760px 280px at 50% 0%, rgba(52, 104, 255, .075), transparent 74%);}

:root {--bt-page-rail: min(1888px, calc(100vw - 32px));--bt-section-space: clamp(6.4rem, 9.4vw, 9.2rem);--bt-header-to-content: clamp(2rem, 3.1vw, 2.8rem);--bt-section-head-size: clamp(2.22rem, 4.85vw, 3.8rem);}

@media (max-width: 720px) {
:root {--bt-page-rail: calc(100vw - 24px);--bt-section-space: clamp(4.4rem, 12vw, 6rem);}
}


