/* EMWave v1.4.5a — base/global stylesheet.
   Header, status bar and source dock ownership rules were extracted into separate files. */

/* ===== base.css ===== */
:root{
  --panel-bg:var(--color-bg-panel);
  --panel-border:var(--color-border-soft);
  --grid-color:rgba(79,91,110,.18);
  --text-normal:var(--color-text-ui);
  --text-dim:var(--color-text-muted);
  --accent-blue:#8fd4ff;
  --accent-green:var(--color-good);
  --warning-color:var(--color-warn);
  --danger-color:var(--color-bad);
  --shadow-color:rgba(0,0,0,.58);
  --radius:2px;
  --color-bg:#0b0d11;
  --color-bg-panel:#12161d;
  --color-bg-panel-soft:#151a22;
  --color-bg-input:#0d1016;
  --color-border-soft:#2b313b;
  --color-border-strong:var(--control-border);
  --color-text-ui:var(--control-text);
  --color-text-heading:#f0f3f8;
  --color-text-muted:#8993a1;
  --color-text-status:#8f98a6;
  --color-text-status-label:#626c7a;
  --color-text-brand:#9fb7ff;
  --color-text-link:#9fb7ff;
  --color-text-link-hover:#dbe5ff;
  --color-good:#89d185;
  --color-warn:#e6c86e;
  --color-bad:#e06c75;
  --space-1:3px;
  --space-2:6px;
  --space-3:9px;
  --space-4:12px;
  --space-5:16px;
  --font-size-xs:10px;
  --font-size-sm:11px;
  --font-size-md:12px;
  --font-size-lg:13px;
  --transition-fast:140ms ease;
  --control-bg:#171c24;
  --control-bg-hover:#202733;
  --control-bg-active:#0f141b;
  --control-border:#3a424e;
  --control-border-hover:#596273;
  --control-focus:#647086;
  --control-input-bg:#0b0f16;
  --control-input-bg-focus:#111722;
  --control-input-border:#303744;
  --control-text:#d8dee9;
  --control-text-active:#dfffe1;
}
*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ width:100%; height:100%; overflow:hidden; }
body{
  font-family:"Inter","Segoe UI",Arial,sans-serif;
  background:var(--color-bg);
  color:var(--color-text-ui);
}
.instrument-shell{
  height:100vh;
  width:100vw;
  display:grid;
  grid-template-rows:42px 104px minmax(0,1fr) 22px;
  gap:0;
  background:var(--color-bg);
}

/* ===== width-system.css ===== */
/* EMWave v1.4.0w — width ownership layer
   Centralizes major layout widths so cockpit, dock and analysis columns do not
   compete with each other when future labs are added. */
:root{
  --dock-width-normal:420px;
  --dock-width-wide:460px;
  --dock-width-compact:380px;
  --inspector-width:360px;
  --analysis-width:390px;
  --analysis-width-wide:430px;
  --plot-min-width:0px;
  --footer-height:22px;
  --header-height:42px;
  --source-dock-width:var(--dock-width-wide);
}@media (max-width:1500px){

  :root{ --source-dock-width:var(--dock-width-normal); }

}@media (max-width:1280px){

  :root{ --source-dock-width:var(--dock-width-compact); }

}
h1{
  margin-top:1px;
  font-size:15px;
  line-height:1.1;
  font-weight:600;
  color:var(--color-text-heading);
  letter-spacing:.02em;
}
.status-strip{
  justify-self:end;
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--space-3);
}
.readout{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:baseline;
  gap:var(--space-3);
  min-width:0;
  height:26px;
  padding:4px var(--space-3);
  border-left:1px solid var(--color-border-soft);
  background:transparent;
}
.readout span{
  color:var(--color-text-status-label);
  font-size:var(--font-size-xs);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.readout strong{
  min-width:0;
  color:var(--color-text-ui);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:var(--font-size-md);
  font-weight:500;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-align:right;
}

/* ===== controls.css ===== */
.control-deck{
  min-width:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:var(--color-bg-panel);
  border-bottom:1px solid var(--color-border-soft);
}
.channel{
  min-width:0;
  display:grid;
  grid-template-columns:38px minmax(82px,1fr) 62px;
  grid-auto-rows:22px;
  align-items:center;
  gap:4px var(--space-3);
  padding:var(--space-3) var(--space-4);
  border-right:1px solid var(--color-border-soft);
  background:var(--color-bg-panel);
}
.channel:last-child{ border-right:none; }
.channel-title{
  grid-column:1 / -1;
  height:16px;
  line-height:16px;
  margin-bottom:1px;
  font-size:var(--font-size-xs);
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--color-text-heading);
}
label{
  color:var(--color-text-muted);
  font-size:var(--font-size-xs);
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
  user-select:none;
}
output,.channel span{
  color:var(--color-text-ui);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:var(--font-size-xs);
  font-variant-numeric:tabular-nums;
  text-align:right;
  white-space:nowrap;
}
input[type="range"]{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:3px;
  border-radius:0;
  background:var(--control-input-border);
  outline:none;
  cursor:pointer;
}
input[type="range"]:hover{ background:#3a4351; }
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:10px;
  height:14px;
  border-radius:2px;
  background:#b6c2d1;
  border:1px solid #e2e8f0;
  box-shadow:none;
}
input[type="range"]::-moz-range-thumb{
  width:10px;
  height:14px;
  border-radius:2px;
  background:#b6c2d1;
  border:1px solid #e2e8f0;
  box-shadow:none;
}
input[type="range"]::-moz-range-track{
  height:3px;
  background:var(--control-input-border);
  border:none;
}
button{
  grid-column:1 / -1;
  align-self:center;
  height:24px;
  margin-top:2px;
  border:1px solid var(--color-border-strong);
  border-radius:2px;
  background:#1b2028;
  color:var(--color-text-ui);
  font-size:var(--font-size-xs);
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background var(--transition-fast),border-color var(--transition-fast),color var(--transition-fast);
}
button:hover{ background:#242b35; border-color:var(--control-border-hover); color:#fff; }
button:active{ background:#11151b; }
.description-container,.bottom-container,hr{ display:none !important; }
a{ color:var(--color-text-link); }
a:hover{ color:var(--color-text-link-hover); }@media (max-width:1180px){

  .instrument-shell{ grid-template-rows:42px 198px minmax(0,1fr) 22px; }
  .control-deck{ grid-template-columns:repeat(2,1fr); }
  .channel:nth-child(2){ border-right:none; }
  .channel:nth-child(1),.channel:nth-child(2){ border-bottom:1px solid var(--color-border-soft); }

}@media (max-width:820px){

  html,body{ overflow:auto; }
  .instrument-shell{ height:auto; min-height:100vh; grid-template-rows:auto auto 720px 22px; }
  .status-strip{ justify-self:stretch; }
  .channel{ border-right:none; border-bottom:1px solid var(--color-border-soft); }
  .plot-deck{ grid-template-columns:1fr; }
  .plot-card{ border-right:none; border-bottom:1px solid var(--color-border-soft); }

}
button.is-active{
  border-color:var(--color-good);
  color:#e9f7ea;
  background:#1d2a22;
}

/* ===== plots.css ===== */
.plot-deck{
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:#07090d;
}
.plot-card{
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-rows:24px minmax(0,1fr);
  background:var(--color-bg-input);
  border-right:1px solid var(--color-border-soft);
  overflow:hidden;
}
.plot-card:last-child{ border-right:none; }
.plot-label{
  display:flex;
  align-items:center;
  height:24px;
  padding:0 var(--space-4);
  background:var(--color-bg-panel-soft);
  border-bottom:1px solid var(--color-border-soft);
  color:var(--color-text-muted);
  font-size:var(--font-size-xs);
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}
#plot,#plot2D{ width:100%; height:100%; min-height:0; }

/* ===== scope.css ===== */
/* EMWave v1.4.0w — digital scope ownership
   Scope card, graticule, channel chips and scope metrics belong here.
   Existing detailed rules remain preserved in the compiled legacy body. */
.scope-card{ min-width:var(--plot-min-width); }
.scope-frame,#plot2D{ min-width:0; min-height:0; }
.scope-metrics{ min-width:0; }
.scope-chip{ flex:0 0 auto; }

/* ===== field3d.css ===== */
/* EMWave v1.4.0w — 3D field ownership
   Field card, 3D Plotly container, polarization controls and S-vector controls. */
.field-card{ min-width:var(--plot-min-width); }
#plot{ min-width:0; min-height:0; }
.field-controls{ min-width:0; }
.field-label > span:first-child{ min-width:0; overflow:hidden; text-overflow:ellipsis; }

/* ===== analysis.css ===== */
/* EMWave v1.4.0w — analysis plot ownership
   Spectrum, phasor, Lissajous and measurement side readouts. */
.analysis-card,.spectrum-card{ min-width:var(--plot-min-width); }
.analysis-body,.spectrum-body,.analysis-frame,.spectrum-frame{ min-width:0; min-height:0; }
.analysis-controls{ min-width:0; }

/* ===== labs.css ===== */
.scope-card{
  grid-template-rows:28px minmax(0,1fr) 24px;
  background:#090c11;
}
.scope-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-3);
  height:28px;
  padding:0 var(--space-4);
  background:#10151d;
  border-bottom:1px solid var(--color-border-soft);
  color:var(--color-text-muted);
  overflow:hidden;
}
.scope-title{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:var(--font-size-xs);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.scope-channels{
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}
.scope-chip{
  display:inline-flex;
  align-items:center;
  height:16px;
  padding:0 6px;
  border:1px solid #313946;
  background:#151b24;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  line-height:1;
  letter-spacing:.04em;
  color:#b9c1cf;
}
.scope-chip--ch1{ color:#ff8b8b; border-color:rgba(215,95,95,.5); }
.scope-chip--ch2{ color:#e9d96f; border-color:rgba(215,196,95,.5); }
.scope-chip--ch3{ color:#ffb060; border-color:rgba(217,144,70,.5); }
.scope-chip--ch4{ color:#c9a4ff; border-color:rgba(168,117,255,.5); }
.scope-chip--ch5{ color:#83fff1; border-color:rgba(95,215,200,.5); }
.scope-chip--ch6{ color:#c7ff95; border-color:rgba(159,215,107,.5); }
.scope-chip--sum{ color:#8fd4ff; border-color:rgba(80,170,220,.55); }
.scope-frame{
  position:relative;
  min-width:0;
  min-height:0;
  overflow:hidden;
  background:#070a0f;
}
.scope-graticule{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.82;
  background:
    linear-gradient(to right, rgba(79,91,110,.34) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79,91,110,.34) 1px, transparent 1px),
    linear-gradient(to right, rgba(79,91,110,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79,91,110,.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(96,138,170,.08), transparent 55%);
  background-size:10% 100%, 100% 12.5%, 2% 100%, 100% 2.5%, 100% 100%;
}
.scope-frame::before,
.scope-frame::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:1;
  background:rgba(145,160,180,.24);
}
.scope-frame::before{ left:50%; top:0; width:1px; height:100%; }
.scope-frame::after{ left:0; top:50%; width:100%; height:1px; }
.scope-frame #plot2D{
  position:relative;
  z-index:2;
  height:100%;
  background:transparent;
}
.scope-metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  height:24px;
  background:#10151d;
  border-top:1px solid var(--color-border-soft);
  overflow:hidden;
}
.scope-metrics span{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  padding:0 var(--space-3);
  border-right:1px solid var(--color-border-soft);
  font-size:var(--font-size-xs);
  white-space:nowrap;
}
.scope-metrics span:last-child{ border-right:none; }
.scope-metrics b{
  color:var(--color-text-status-label);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.scope-metrics strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:var(--color-text-ui);
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:500;
  font-variant-numeric:tabular-nums;
}@media (max-width:820px){

  .scope-metrics{ grid-template-columns:repeat(2,1fr); height:auto; min-height:44px; }
  .scope-metrics span{ height:22px; }

}
.plot-note{
  color:var(--color-text-muted);
  font-size:11px;
  font-weight:500;
  letter-spacing:.02em;
  margin-left:8px;
}
.instrument-shell{
  grid-template-rows:42px 132px minmax(0,1fr) 22px;
}
.control-deck{
  height:132px;
}
.channel{
  grid-template-columns:38px minmax(90px,1fr) 62px;
  grid-auto-rows:20px;
  padding:7px 12px;
  row-gap:3px;
}
.channel-title{
  height:15px;
  line-height:15px;
  margin-bottom:0;
}
.time-control{
  grid-template-columns:46px minmax(110px,1fr) 64px;
}
.time-stepper{
  grid-column:2 / -1;
  display:grid;
  grid-template-columns:22px minmax(58px,1fr) 22px;
  align-items:center;
  gap:4px;
  min-width:0;
}
.time-button,
.time-presets button{
  grid-column:auto;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--control-border);
  border-radius:1px;
  background:var(--control-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  line-height:1;
  letter-spacing:0;
  text-transform:none;
}
.time-button{
  width:22px;
  height:18px;
  min-height:18px;
  font-size:12px;
  font-weight:700;
}
.time-button:hover,
.time-presets button:hover{
  background:var(--control-bg-hover);
  border-color:var(--control-border-hover);
  color:#fff;
}
.time-button:active,
.time-presets button:active,
.time-presets button.is-active{
  background:var(--control-bg-active);
  border-color:#89d185;
  color:var(--control-text-active);
}
.time-number{
  width:100%;
  height:18px;
  min-width:0;
  padding:0 5px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  text-align:center;
  font-variant-numeric:tabular-nums;
}
.time-number:focus{
  outline:1px solid var(--control-focus);
  border-color:var(--control-focus);
  background:var(--control-input-bg-focus);
}
.time-number::-webkit-inner-spin-button,
.time-number::-webkit-outer-spin-button{
  opacity:.35;
}
.time-presets{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(10,minmax(0,1fr));
  gap:3px;
  min-width:0;
}
.time-presets button{
  height:17px;
  min-height:17px;
  font-size:9px;
  font-weight:600;
}
input[type="range"]{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:18px;
  min-width:0;
  margin:0;
  padding:0;
  background:transparent;
  cursor:ew-resize;
}
input[type="range"]::-webkit-slider-runnable-track{
  height:3px;
  background:var(--control-input-border);
  border:0;
  border-radius:0;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:9px;
  height:14px;
  margin-top:-5.5px;
  border-radius:1px;
  background:#b8c3d1;
  border:1px solid #e3e8ef;
  box-shadow:0 0 0 1px rgba(0,0,0,.55);
}
input[type="range"]::-moz-range-track{
  height:3px;
  background:var(--control-input-border);
  border:0;
  border-radius:0;
}
input[type="range"]::-moz-range-thumb{
  width:9px;
  height:14px;
  border-radius:1px;
  background:#b8c3d1;
  border:1px solid #e3e8ef;
  box-shadow:0 0 0 1px rgba(0,0,0,.55);
}
input[type="range"]:focus-visible{
  outline:1px solid var(--control-focus);
  outline-offset:4px;
}
.run-button,
button#toggleAnimation{
  grid-column:1 / -1;
  height:24px;
  min-height:24px;
  margin-top:1px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  overflow:visible;
  border:1px solid var(--control-border);
  border-radius:1px;
  background:var(--control-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1;
}
.run-button:hover,
button#toggleAnimation:hover{
  background:var(--control-bg-hover);
  border-color:var(--control-border-hover);
}
.run-button.is-active,
button#toggleAnimation.is-active{
  background:#251b1d;
  border-color:#a65d66;
  color:#ffd9dc;
}
.run-icon{
  display:inline-flex;
  width:12px;
  justify-content:center;
  color:#89d185;
}
button#toggleAnimation.is-active .run-icon{
  color:#e06c75;
}
.scope-toolbar{
  height:30px;
  padding:0 10px;
}
.scope-chip{
  height:17px;
  padding:0 7px;
  border-radius:1px;
  background:var(--control-input-bg-focus);
}
.scope-frame{
  border-top:1px solid rgba(255,255,255,.02);
}
.scope-metrics{
  grid-template-columns:repeat(6,1fr);
  height:25px;
}
.scope-metrics span{
  padding:0 8px;
}
.scope-metrics strong{
  color:#b9d7ff;
}
.js-plotly-plot .plotly .cursor-crosshair{
  cursor:crosshair;
}
.plot-label{
  height:24px;
  letter-spacing:.07em;
}
.plot-note{
  color:#626c7a;
}@media (max-width:1180px){

  .instrument-shell{ grid-template-rows:42px 254px minmax(0,1fr) 22px; }
  .control-deck{ height:254px; }

}@media (max-width:820px){

  .instrument-shell{ grid-template-rows:auto auto 760px 22px; }
  .control-deck{ height:auto; }
  .scope-metrics{ grid-template-columns:repeat(2,1fr); height:auto; min-height:66px; }

}
.control-deck{
  grid-template-columns:repeat(5,1fr);
}
.audio-control{
  grid-template-columns:46px minmax(92px,1fr) 58px;
}
.audio-mode-label{
  color:var(--color-text-muted);
  font-size:var(--font-size-xs);
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.audio-source{
  color:var(--color-text-ui);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.audio-status{
  color:var(--color-text-muted);
}
.audio-button,
button#toggleAudio{
  grid-column:1 / -1;
  height:24px;
  min-height:24px;
  margin-top:1px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  overflow:visible;
  border:1px solid var(--control-border);
  border-radius:1px;
  background:var(--control-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1;
}
button#toggleAudio:hover{
  background:var(--control-bg-hover);
  border-color:var(--control-border-hover);
}
button#toggleAudio.is-active{
  background:#18231b;
  border-color:#4e8753;
  color:var(--control-text-active);
}
.audio-icon{
  display:inline-flex;
  width:12px;
  justify-content:center;
  color:#626c7a;
}
button#toggleAudio.is-active .audio-icon{
  color:#89d185;
}@media (max-width:1380px){

  .instrument-shell{ grid-template-rows:42px 254px minmax(0,1fr) 22px; }
  .control-deck{ grid-template-columns:repeat(3,1fr); height:254px; }

}
#plot2D .scatterlayer .trace path {
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
}
#plot2D svg {
  text-rendering: geometricPrecision;
}
.freq-number{
  width:58px;
  height:18px;
  min-width:0;
  padding:0 4px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  text-align:right;
  font-variant-numeric:tabular-nums;
}
.freq-number:focus{
  outline:1px solid var(--control-focus);
  border-color:var(--control-focus);
  background:var(--control-input-bg-focus);
}
.freq-number::-webkit-inner-spin-button,
.freq-number::-webkit-outer-spin-button{
  opacity:.45;
}
.channel:not(.master){
  grid-template-columns:38px minmax(76px,1fr) 50px 58px;
}
.channel:not(.master) .channel-title{ grid-column:1 / -1; }
.channel:not(.master) output{ text-align:right; }@media (max-width:1380px){

  .channel:not(.master){ grid-template-columns:38px minmax(96px,1fr) 54px 58px; }

}
.control-deck{
  grid-template-columns:repeat(6,1fr);
}
.channel-count-control{
  grid-template-columns:46px minmax(88px,1fr) 58px;
}
.channel-count-control select{
  width:100%;
  height:20px;
  min-width:0;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  font-variant-numeric:tabular-nums;
  padding:0 4px;
}
.channel-count-control select:focus{
  outline:1px solid var(--control-focus);
  border-color:var(--control-focus);
  background:var(--control-input-bg-focus);
}
.setup-note-label{
  color:var(--color-text-muted);
  font-size:var(--font-size-xs);
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.setup-note{
  color:var(--color-text-ui);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.channel.is-channel-hidden,
.scope-chip.is-channel-hidden{
  display:none !important;
}@media (max-width:1580px){

  .instrument-shell{ grid-template-rows:42px 254px minmax(0,1fr) 22px; }
  .control-deck{ grid-template-columns:repeat(3,1fr); height:254px; }

}@media (max-width:820px){

  .control-deck{ grid-template-columns:1fr; }

}
body.has-many-channels .instrument-shell{
  grid-template-rows:42px 254px minmax(0,1fr) 22px;
}
body.has-many-channels .control-deck{
  height:254px;
}@media (max-width:1580px){

  body.has-many-channels .instrument-shell{ grid-template-rows:42px 386px minmax(0,1fr) 22px; }
  body.has-many-channels .control-deck{ height:386px; }

}@media (max-width:820px){

  body.has-many-channels .instrument-shell{ grid-template-rows:auto auto 760px 22px; }
  body.has-many-channels .control-deck{ height:auto; }

}
.amp-stepper{
  grid-column:2 / -1;
  display:grid;
  grid-template-columns:22px minmax(58px,1fr) 22px;
  align-items:center;
  gap:4px;
  min-width:0;
}
.amp-stepper .amp-button{
  grid-column:auto;
  width:22px;
  height:18px;
  min-height:18px;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--control-border);
  border-radius:1px;
  background:var(--control-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:12px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
  text-transform:none;
}
.amp-stepper .amp-button:hover{
  background:var(--control-bg-hover);
  border-color:var(--control-border-hover);
  color:#fff;
}
.amp-stepper .amp-button:active{
  background:var(--control-bg-active);
  border-color:#89d185;
  color:var(--control-text-active);
}
.amp-number{
  width:100%;
  height:18px;
  min-width:0;
  padding:0 5px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  text-align:center;
  font-variant-numeric:tabular-nums;
}
.amp-number:focus{
  outline:1px solid var(--control-focus);
  border-color:var(--control-focus);
  background:var(--control-input-bg-focus);
}
.amp-number::-webkit-inner-spin-button,
.amp-number::-webkit-outer-spin-button{
  opacity:.35;
}
.amp-value-shadow{
  display:none;
}
.spectrum-body{
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-rows:minmax(0,1fr) 76px;
  background:#070a0f;
}
.spectrum-frame{
  min-width:0;
  min-height:0;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(to right, rgba(79,91,110,.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79,91,110,.16) 1px, transparent 1px),
    radial-gradient(circle at 50% 12%, rgba(143,212,255,.08), transparent 56%);
  background-size:20% 100%, 100% 20%, 100% 100%;
}
#plotSpectrum{
  width:100%;
  height:100%;
  min-height:0;
  position:relative;
  z-index:1;
}
.spectrum-metrics{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  background:#10151d;
  border-top:1px solid var(--color-border-soft);
  overflow:hidden;
}
.spectrum-metrics span{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  height:25px;
  padding:0 9px;
  border-bottom:1px solid var(--color-border-soft);
  font-size:var(--font-size-xs);
  white-space:nowrap;
}
.spectrum-metrics span:last-child{ border-bottom:none; }
.spectrum-metrics b{
  color:var(--color-text-status-label);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.spectrum-metrics strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:500;
  font-variant-numeric:tabular-nums;
  text-align:right;
}@media (max-width:1580px){

  .plot-deck{ grid-template-columns:1fr 1fr; grid-template-rows:minmax(0,1fr) 34%; }
.spectrum-card{ grid-column:1 / -1; border-top:1px solid var(--color-border-soft); }
  .spectrum-body{ grid-template-rows:minmax(0,1fr) 25px; }
  .spectrum-metrics{ grid-template-columns:repeat(3,1fr); }

}@media (max-width:820px){

  .plot-deck{ grid-template-columns:1fr; grid-template-rows:360px 360px 300px; }
  .spectrum-card{ grid-column:auto; }
  .spectrum-body{ grid-template-rows:minmax(0,1fr) 76px; }
  .spectrum-metrics{ grid-template-columns:1fr; }
  .spectrum-metrics span{ border-right:none; border-bottom:1px solid var(--color-border-soft); }

}
.field-card{
  position:relative;
}
.field-label{
  justify-content:space-between;
  gap:10px;
}
.field-controls{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-width:0;
  flex-shrink:0;
}
.field-controls label{
  font-size:9px;
  color:var(--color-text-status-label);
  letter-spacing:.08em;
}
.field-controls select{
  height:17px;
  min-width:68px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  padding:0 3px;
}
.field-controls select:focus{
  outline:1px solid var(--control-focus);
  border-color:var(--control-focus);
}
.field-toggle{
  grid-column:auto;
  width:auto;
  min-width:44px;
  height:17px;
  min-height:17px;
  margin:0;
  padding:0 6px;
  border-radius:1px;
  font-size:9px;
  line-height:1;
  letter-spacing:.04em;
  font-family:"Roboto Mono","Consolas",monospace;
}
.field-toggle.is-active{
  background:#18231b;
  border-color:#4e8753;
  color:var(--control-text-active);
}
#fieldModeStatus{
  max-width:112px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:500;
  font-variant-numeric:tabular-nums;
  text-transform:none;
  letter-spacing:.02em;
}
#plot .gl-container{
  filter:drop-shadow(0 0 8px rgba(143,212,255,.10));
}@media (max-width:1580px){

  .field-controls{ gap:4px; }
  #fieldModeStatus{ display:none; }

}@media (max-width:820px){

  .field-label{ align-items:flex-start; flex-direction:column; height:auto; min-height:42px; padding:4px 10px; }
  #fieldModeStatus{ display:inline-flex; max-width:160px; }

}
.help-shell{
  min-height:100vh;
  width:100vw;
  display:grid;
  grid-template-rows:42px minmax(0,1fr) 22px;
  background:var(--color-bg);
}
.help-main{
  min-width:0;
  min-height:0;
  overflow:auto;
  background:#07090d;
}
.help-content{
  width:min(1180px, calc(100vw - 32px));
  margin:0 auto;
  padding:22px 0 34px;
}
.help-hero,
.help-panel{
  border:1px solid var(--color-border-soft);
  background:var(--color-bg-panel);
}
.help-hero{
  padding:18px 20px;
  margin-bottom:14px;
}
.help-kicker{
  color:var(--color-text-status-label);
  font-size:var(--font-size-xs);
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:7px;
}
.help-hero h2{
  color:var(--color-text-heading);
  font-size:21px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:.02em;
  margin-bottom:10px;
}
.help-lead{
  max-width:920px;
  color:#c5ccd7;
  font-size:13px;
  line-height:1.62;
}
.help-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.help-panel{
  padding:15px 16px;
  background:linear-gradient(180deg,#12161d,#0f131a);
}
.help-panel--wide{ grid-column:1 / -1; }
.help-panel h3{
  color:var(--color-text-heading);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.help-panel p,
.help-panel li{
  color:#c0c8d4;
  font-size:12px;
  line-height:1.58;
}
.help-panel p + p{ margin-top:9px; }
.help-panel ul,
.help-panel ol{ padding-left:18px; }
.help-panel li + li{ margin-top:6px; }
.help-data-table{
  width:100%;
  border-collapse:collapse;
  font-size:12px;
  color:#c0c8d4;
}
.help-data-table th,
.help-data-table td{
  border-bottom:1px solid var(--color-border-soft);
  padding:8px 7px;
  text-align:left;
  vertical-align:top;
}
.help-data-table th{
  color:var(--color-text-status-label);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
}
.help-data-table td:first-child{
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  white-space:nowrap;
}
.help-note{
  margin-top:12px;
  padding:10px 12px;
  border-left:2px solid #506782;
  background:#0b1018;
  color:#aeb8c7;
  font-size:12px;
  line-height:1.55;
}
.back-link{
  width:auto;
  padding:0 10px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}@media (max-width:820px){

  .help-shell{ grid-template-rows:auto minmax(0,1fr) 22px; }
  .help-grid{ grid-template-columns:1fr; }
  .help-panel--wide{ grid-column:auto; }
  .help-content{ width:calc(100vw - 20px); padding:10px 0 26px; }
  .help-hero{ padding:14px; }
  .help-hero h2{ font-size:18px; }
  .back-link{ padding:0 8px; }

}
html.help-document,
html.help-document body{
  width:100%;
  height:auto;
  min-height:100%;
  overflow-y:auto;
  overflow-x:hidden;
}
html.help-document .help-shell{
  width:100%;
  min-height:100vh;
  height:auto;
  display:flex;
  flex-direction:column;
  overflow:visible;
}
html.help-document .help-main{
  flex:1 0 auto;
  min-height:auto;
  overflow:visible;
}
html.help-document .help-content{
  width:min(1240px, calc(100vw - 32px));
}
html.help-document .help-hero{
  background:linear-gradient(180deg,#151b24,#10151d);
}
html.help-document .help-panel h3{
  border-bottom:1px solid rgba(79,91,110,.34);
  padding-bottom:7px;
}
html.help-document .help-data-table tr:last-child td{
  border-bottom:none;
}
html.help-document .help-note strong{
  color:var(--color-text-heading);
}
.plot-deck{
  grid-template-columns:1.02fr 1.02fr .82fr .86fr;
}
.measurement-card{
  grid-template-rows:24px minmax(0,1fr);
  border-right:none;
}
.measurement-body{
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  background:#070a0f;
  overflow:hidden;
}
.measurement-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-bottom:1px solid var(--color-border-soft);
  background:#10151d;
}
.measurement-grid span{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:7px;
  height:25px;
  padding:0 8px;
  border-right:1px solid var(--color-border-soft);
  border-bottom:1px solid var(--color-border-soft);
  font-size:var(--font-size-xs);
  white-space:nowrap;
}
.measurement-grid span:nth-child(2n){ border-right:none; }
.measurement-grid span:nth-last-child(-n/**/+2){ border-bottom:none; }
.measurement-grid b,
.phase-table th{
  color:var(--color-text-status-label);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.measurement-grid strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:500;
  font-variant-numeric:tabular-nums;
  text-align:right;
}
.phase-table-wrap{
  min-width:0;
  min-height:0;
  overflow:auto;
  background:#090d13;
}
.phase-table{
  width:100%;
  border-collapse:collapse;
  font-size:10px;
  color:#c0c8d4;
}
.phase-table th,
.phase-table td{
  padding:7px 8px;
  border-bottom:1px solid rgba(79,91,110,.42);
  text-align:left;
  white-space:nowrap;
}
.phase-table th{
  position:sticky;
  top:0;
  z-index:1;
  background:#10151d;
  font-size:9px;
}
.phase-table td{
  font-family:"Roboto Mono","Consolas",monospace;
  font-variant-numeric:tabular-nums;
}
.phase-table td:first-child{ color:#b9d7ff; }@media (max-width:1760px){

  .plot-deck{ grid-template-columns:1fr 1fr; grid-template-rows:minmax(0,1fr) 34% 34%; }
  .spectrum-card{ grid-column:1 / 2; border-top:1px solid var(--color-border-soft); border-right:1px solid var(--color-border-soft); }
  .measurement-card{ grid-column:2 / 3; border-top:1px solid var(--color-border-soft); }

}@media (max-width:820px){

  .plot-deck{ grid-template-columns:1fr; grid-template-rows:360px 360px 300px 320px; }
  .spectrum-card,
  .measurement-card{ grid-column:auto; border-right:none; }

}
.plot-deck{
  grid-template-columns:1.05fr 1.05fr .9fr;
}
.spectrum-card{
  grid-template-rows:24px minmax(0,1fr);
  border-right:none;
}
.spectrum-body{
  grid-template-rows:minmax(170px,1fr) 76px minmax(190px,28%);
}
.measurement-card{
  display:none !important;
}
.measurement-body--spectrum{
  border-top:1px solid var(--color-border-soft);
  min-height:0;
}
.measurement-title{
  height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  background:#10151d;
  border-bottom:1px solid var(--color-border-soft);
  color:var(--color-text-muted);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
}
.measurement-title span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:var(--color-text-status-label);
  font-size:9px;
  letter-spacing:.04em;
}
.measurement-body--spectrum .measurement-grid span{
  height:22px;
  padding:0 7px;
}
.measurement-body--spectrum .phase-table th,
.measurement-body--spectrum .phase-table td{
  padding:5px 7px;
}@media (max-width:1580px){

  .plot-deck{ grid-template-columns:1fr 1fr; grid-template-rows:minmax(0,1fr) 40%; }
  .spectrum-card{ grid-column:1 / -1; border-top:1px solid var(--color-border-soft); border-right:none; }
  .spectrum-body{ grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr); grid-template-rows:minmax(0,1fr) 25px; }
  .spectrum-frame{ grid-column:1 / 2; grid-row:1 / 2; }
  .spectrum-metrics{ grid-column:1 / 2; grid-row:2 / 3; grid-template-columns:repeat(3,1fr); }
  .spectrum-metrics span{ border-bottom:none; border-right:1px solid var(--color-border-soft); }
  .spectrum-metrics span:last-child{ border-right:none; }
  .measurement-body--spectrum{ grid-column:2 / 3; grid-row:1 / 3; border-top:none; border-left:1px solid var(--color-border-soft); }

}@media (max-width:820px){

  .plot-deck{ grid-template-columns:1fr; grid-template-rows:360px 360px 520px; }
  .spectrum-card{ grid-column:auto; border-right:none; }
  .spectrum-body{ grid-template-columns:1fr; grid-template-rows:minmax(0,1fr) 76px 260px; }
  .spectrum-frame,
  .spectrum-metrics,
  .measurement-body--spectrum{ grid-column:auto; grid-row:auto; }
  .measurement-body--spectrum{ border-left:none; border-top:1px solid var(--color-border-soft); }
  .measurement-grid{ grid-template-columns:1fr; }
  .measurement-grid span{ border-right:none; }
  .measurement-grid span:nth-last-child(-n/**/+2){ border-bottom:1px solid var(--color-border-soft); }
  .measurement-grid span:last-child{ border-bottom:none; }

}
.analysis-label{
  justify-content:space-between;
  gap:10px;
}
.analysis-controls,
.field-controls{
  display:flex;
  align-items:center;
  gap:7px;
  min-width:0;
  flex-shrink:0;
}
.analysis-controls select,
.field-controls select{
  height:18px;
  min-width:92px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  padding:0 4px;
  text-transform:none;
}
.analysis-controls select:focus,
.field-controls select:focus{
  outline:1px solid var(--control-focus);
  border-color:var(--control-focus);
  background:var(--control-input-bg-focus);
}
.analysis-frame{
  background:
    radial-gradient(circle at 50% 50%, rgba(143,212,255,.08), transparent 54%),
    linear-gradient(to right, rgba(79,91,110,.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79,91,110,.18) 1px, transparent 1px),
    #070a0f;
  background-size:100% 100%, 12.5% 100%, 100% 12.5%, 100% 100%;
}
.analysis-metrics strong{
  color:#b9d7ff;
}
#plotSpectrum .scatterlayer .trace path{
  vector-effect:non-scaling-stroke;
  shape-rendering:geometricPrecision;
}@media (max-width:820px){

  .analysis-label{ align-items:flex-start; flex-direction:column; height:auto; min-height:44px; padding:5px 10px; }
  .analysis-controls{ align-self:stretch; justify-content:space-between; }
  .analysis-controls select{ min-width:140px; }

}
.experiment-library{
  position:fixed;
  inset:0;
  z-index:50;
  display:none;
  align-items:center;
  justify-content:center;
  padding:28px;
}
.experiment-library.is-open{ display:flex; }
.experiment-backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,5,8,.74);
  backdrop-filter:blur(3px);
}
.experiment-panel{
  position:relative;
  width:min(1120px,calc(100vw - 48px));
  max-height:min(780px,calc(100vh - 48px));
  display:grid;
  grid-template-rows:auto auto minmax(0,1fr);
  border:1px solid var(--control-border);
  background:#10151d;
  box-shadow:0 28px 80px rgba(0,0,0,.58);
  overflow:hidden;
}
.experiment-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px 12px;
  border-bottom:1px solid var(--color-border-soft);
  background:#121821;
}
.experiment-kicker{
  margin-bottom:3px;
  color:var(--color-text-status-label);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.experiment-header h2{
  color:var(--color-text-heading);
  font-size:16px;
  font-weight:600;
  letter-spacing:.02em;
}
.experiment-close{
  width:30px;
  height:30px;
  min-height:30px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-border-strong);
  background:var(--control-bg);
  color:var(--color-text-ui);
  font-size:18px;
  line-height:1;
}
.experiment-intro{
  padding:10px 16px;
  border-bottom:1px solid var(--color-border-soft);
  color:var(--color-text-muted);
  font-size:11px;
  line-height:1.45;
  background:#0d1118;
}
.experiment-content{
  min-height:0;
  overflow:auto;
  padding:12px 14px 16px;
  display:grid;
  gap:12px;
}
.experiment-category{
  border:1px solid var(--color-border-soft);
  background:#0c1118;
}
.experiment-category-title{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:8px 10px;
  border-bottom:1px solid var(--color-border-soft);
  background:#151a22;
  color:var(--color-text-heading);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.experiment-category-title span{
  color:var(--color-text-status-label);
  font-size:10px;
  font-weight:500;
  letter-spacing:.04em;
  text-transform:none;
}
.experiment-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  padding:8px;
}
.experiment-entry{
  min-width:0;
  display:grid;
  grid-template-columns:minmax(0,1fr) 66px;
  gap:8px;
  padding:9px;
  border:1px solid #252c36;
  background:var(--control-input-bg-focus);
}
.experiment-entry.is-favorite{ border-color:#6a5a2d; background:#151923; }
.experiment-name{
  color:var(--color-text-heading);
  font-size:12px;
  font-weight:650;
  letter-spacing:.02em;
}
.experiment-description,
.experiment-observe{
  margin-top:4px;
  color:var(--color-text-muted);
  font-size:10.5px;
  line-height:1.38;
}
.experiment-observe strong{
  color:#b9d7ff;
  font-weight:600;
}
.experiment-actions{
  display:grid;
  grid-template-rows:24px 24px;
  gap:5px;
  align-content:start;
}
.experiment-load,
.experiment-favorite{
  height:24px;
  min-height:24px;
  margin:0;
  padding:0 6px;
  border-radius:1px;
  font-size:10px;
  letter-spacing:.06em;
}
.experiment-load{
  border-color:#4c6078;
  background:#152033;
  color:#dcecff;
}
.experiment-favorite{
  border-color:var(--control-border);
  background:var(--control-bg);
  color:#a8b1bf;
}
.experiment-favorite.is-active{
  border-color:#b3933f;
  color:#ffe7a4;
  background:#211d13;
}@media (max-width:960px){

  .experiment-grid{ grid-template-columns:1fr; }
  .experiment-panel{ width:calc(100vw - 24px); max-height:calc(100vh - 24px); }
  .experiment-library{ padding:12px; }

}@media (max-width:820px){


}
body:not(.help-page) .instrument-shell{
  grid-template-rows:52px 112px minmax(0,1fr) 22px;
}@media (max-width:1580px){

  body:not(.help-page) .instrument-shell{
    grid-template-rows:52px 214px minmax(0,1fr) 22px;
  }
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:52px 326px minmax(0,1fr) 22px;
  }

}@media (max-width:1380px){

  body:not(.help-page) .instrument-shell{
    grid-template-rows:52px 214px minmax(0,1fr) 22px;
  }

}@media (max-width:1180px){

  body:not(.help-page) .instrument-shell{
    grid-template-rows:52px 214px minmax(0,1fr) 22px;
  }

}@media (max-width:820px){

  body:not(.help-page) .instrument-shell{
    grid-template-rows:auto auto 760px 22px;
  }

}
.control-deck{
  grid-template-columns:repeat(auto-fit,minmax(205px,1fr));
  height:156px;
}
.instrument-shell,
body.has-many-channels .instrument-shell{
  grid-template-rows:42px 156px minmax(0,1fr) 22px;
}
body.has-many-channels .control-deck{
  height:156px;
}
.channel{
  grid-auto-rows:18px;
  padding:7px 10px;
  row-gap:3px;
}
.time-control{
  grid-template-columns:42px minmax(90px,1fr) 58px;
  align-content:start;
}
.time-stepper,
.speed-stepper{
  grid-column:2 / -1;
  display:grid;
  grid-template-columns:22px minmax(54px,1fr) 22px;
  align-items:center;
  gap:4px;
  min-width:0;
}
.time-presets,
.speed-presets{
  grid-column:1 / -1;
  display:grid;
  gap:3px;
  min-width:0;
}
.time-presets{ grid-template-columns:repeat(5,minmax(0,1fr)); }
.speed-presets{ grid-template-columns:repeat(7,minmax(0,1fr)); }
.time-presets button,
.speed-presets button{
  grid-column:auto;
  height:16px;
  min-height:16px;
  margin:0;
  padding:0 2px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--control-border);
  border-radius:1px;
  background:var(--control-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:8px;
  font-weight:600;
  line-height:1;
  letter-spacing:0;
  text-transform:none;
  overflow:hidden;
  white-space:nowrap;
}
.time-presets button:hover,
.speed-presets button:hover{
  background:var(--control-bg-hover);
  border-color:var(--control-border-hover);
  color:#fff;
}
.time-presets button:active,
.speed-presets button:active,
.time-presets button.is-active,
.speed-presets button.is-active{
  background:var(--control-bg-active);
  border-color:#89d185;
  color:var(--control-text-active);
}
.time-number{
  height:18px;
  font-size:10px;
}
button#toggleAnimation{
  height:22px;
  min-height:22px;
  margin-top:0;
}@media (max-width:1580px){

  .control-deck,
  body.has-many-channels .control-deck{ grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); height:auto; }
  .instrument-shell,
  body.has-many-channels .instrument-shell{ grid-template-rows:42px auto minmax(0,1fr) 22px; }
  .time-presets{ grid-template-columns:repeat(5,minmax(0,1fr)); }

}@media (max-width:820px){

  .instrument-shell,
  body.has-many-channels .instrument-shell{ grid-template-rows:auto auto 760px 22px; }
  .control-deck,
  body.has-many-channels .control-deck{ grid-template-columns:1fr; height:auto; }

}
body:not(.help-page) .control-deck{
  grid-template-columns:repeat(6,minmax(0,1fr));
  grid-auto-rows:156px;
  height:156px;
  overflow:hidden;
}
body:not(.help-page) .instrument-shell{
  grid-template-rows:42px 156px minmax(0,1fr) 22px;
}
body:not(.help-page).has-many-channels .control-deck{
  grid-template-columns:repeat(4,minmax(280px,1fr));
  grid-auto-rows:156px;
  height:312px;
  overflow:hidden;
}
body:not(.help-page).has-many-channels .instrument-shell{
  grid-template-rows:42px 312px minmax(0,1fr) 22px;
}
body:not(.help-page) .channel-title{
  height:15px;
  line-height:15px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
body:not(.help-page) .channel:not(.master){
  grid-template-columns:38px minmax(86px,1fr) 54px 58px;
}
body:not(.help-page) .time-control{
  grid-template-columns:42px minmax(118px,1fr) 60px;
  align-content:start;
}
body:not(.help-page) .time-stepper,
body:not(.help-page) .speed-stepper{
  grid-column:2 / -1;
  display:grid;
  grid-template-columns:24px minmax(72px,1fr) 24px;
  align-items:center;
  gap:5px;
  min-width:0;
}
body:not(.help-page) .time-button{
  width:24px;
  height:17px;
  min-height:17px;
}
body:not(.help-page) .time-number{
  height:17px;
  min-width:0;
  font-size:10px;
}
body:not(.help-page) .time-presets,
body:not(.help-page) .speed-presets{
  grid-column:1 / -1;
  display:grid;
  gap:3px;
  min-width:0;
}
body:not(.help-page) .time-presets button,
body:not(.help-page) .speed-presets button{
  height:15px;
  min-height:15px;
  font-size:8px;
  padding:0 2px;
}
body:not(.help-page) button#toggleAnimation,
body:not(.help-page) button#toggleAudio{
  height:22px;
  min-height:22px;
  margin-top:0;
}
body:not(.help-page) .audio-control{
  grid-template-columns:46px minmax(120px,1fr) 58px;
  align-content:start;
}
body:not(.help-page) .audio-source{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}@media (max-width:1580px){

  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-template-columns:repeat(4,minmax(260px,1fr));
    grid-auto-rows:156px;
    height:312px;
    overflow:hidden;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:42px 312px minmax(0,1fr) 22px;
  }

}@media (max-width:1180px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:42px auto minmax(0,1fr) 22px;
  }

}@media (max-width:820px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:auto auto 760px 22px;
  }

}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell{
  grid-template-rows:42px 28px 312px minmax(0,1fr) 22px;
}
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 28px 156px minmax(0,1fr) 22px;
}
.control-tab{
  grid-column:auto;
  width:auto;
  height:20px;
  min-height:20px;
  margin:0;
  padding:0 12px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:#141922;
  color:#aeb8c8;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  font-weight:600;
  letter-spacing:.05em;
  line-height:1;
  white-space:nowrap;
}
body:not(.help-page) .control-deck,
body:not(.help-page).has-many-channels .control-deck{
  grid-template-columns:repeat(4,minmax(280px,1fr));
  grid-auto-rows:156px;
  height:312px;
  overflow:hidden;
}
body:not(.help-page).control-view-utility .control-deck{
  height:156px;
}
body.control-view-primary [data-control-group="secondary"],
body.control-view-secondary [data-control-group="primary"],
body.control-view-utility [data-control-group="primary"],
body.control-view-utility [data-control-group="secondary"]{
  display:none !important;
}
body:not(.help-page) .channel{
  min-width:0;
  min-height:0;
  overflow:hidden;
  grid-auto-rows:17px;
  padding:7px 10px;
  row-gap:3px;
}
body:not(.help-page) .channel:not(.master){
  grid-template-columns:38px minmax(105px,1fr) 60px 64px;
}
body:not(.help-page) .amp-stepper{ grid-template-columns:24px minmax(80px,1fr) 24px; }
body:not(.help-page) .time-control{
  grid-template-columns:42px minmax(128px,1fr) 60px;
  align-content:start;
}
body:not(.help-page) .time-presets button,
body:not(.help-page) .speed-presets button{
  height:16px;
  min-height:16px;
  font-size:8px;
}
body:not(.help-page) .audio-control{
  grid-template-columns:46px minmax(130px,1fr) 58px;
  align-content:start;
}@media (max-width:1380px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:42px 28px 312px minmax(0,1fr) 22px;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-template-columns:repeat(3,minmax(270px,1fr));
    grid-auto-rows:156px;
    height:312px;
  }
  body:not(.help-page).control-view-all .control-deck,
  body:not(.help-page).control-view-all.has-many-channels .control-deck{
    grid-auto-rows:156px;
    height:468px;
  }
  body:not(.help-page).control-view-all .instrument-shell,
  body:not(.help-page).control-view-all.has-many-channels .instrument-shell{
    grid-template-rows:42px 28px 468px minmax(0,1fr) 22px;
  }
  body:not(.help-page).control-view-utility .control-deck{ height:156px; }
  body:not(.help-page).control-view-utility .instrument-shell{ grid-template-rows:42px 28px 156px minmax(0,1fr) 22px; }

}@media (max-width:1180px){

  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-template-columns:repeat(2,minmax(260px,1fr));
    height:auto;
    overflow:visible;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:42px 28px auto minmax(0,1fr) 22px;
  }

}@media (max-width:820px){

  .control-tabs{ overflow-x:auto; padding:4px 8px; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-template-columns:1fr;
    height:auto;
    overflow:visible;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:auto 32px auto 760px 22px;
  }

}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell{
  grid-template-rows:42px 28px 156px minmax(0,1fr) 22px;
}
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 28px 178px minmax(0,1fr) 22px;
}
.control-tabs{
  min-width:0;
  height:28px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:3px 10px;
  background:#0f131a;
  border-bottom:1px solid var(--color-border-soft);
  overflow:hidden;
}
.control-tab{
  grid-column:auto;
  width:auto;
  height:20px;
  min-height:20px;
  margin:0;
  padding:0 14px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:#141922;
  color:#aeb8c8;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  font-weight:600;
  letter-spacing:.05em;
  line-height:1;
  white-space:nowrap;
}
.control-tab:hover{ background:var(--control-bg-hover); border-color:var(--control-border-hover); color:#fff; }
.control-tab.is-active{ background:#101923; border-color:#8fd4ff; color:#dff2ff; }
body:not(.help-page) .control-deck,
body:not(.help-page).has-many-channels .control-deck,
body:not(.help-page).control-view-primary .control-deck,
body:not(.help-page).control-view-secondary .control-deck{
  grid-template-columns:repeat(4,minmax(260px,1fr));
  grid-auto-rows:156px;
  height:156px;
  min-height:0;
  overflow:hidden;
}
body:not(.help-page).control-view-utility .control-deck{
  grid-template-columns:minmax(260px,.9fr) minmax(430px,1.25fr) minmax(300px,1fr);
  grid-auto-rows:178px;
  height:178px;
  min-height:0;
  overflow:hidden;
}
body.control-view-primary [data-control-group="secondary"],
body.control-view-primary [data-control-group="utility"],
body.control-view-secondary [data-control-group="primary"],
body.control-view-secondary [data-control-group="utility"],
body.control-view-utility [data-control-group="primary"],
body.control-view-utility [data-control-group="secondary"]{
  display:none !important;
}
body:not(.help-page) .channel{
  min-width:0;
  min-height:0;
  overflow:hidden;
  grid-auto-rows:17px;
  padding:7px 10px;
  row-gap:3px;
  border-bottom:none;
}
body:not(.help-page) .channel:not(.master){
  grid-template-columns:38px minmax(96px,1fr) 60px 64px;
}
body:not(.help-page) .channel-count-control{
  grid-template-columns:46px minmax(110px,1fr) 52px;
}
body:not(.help-page) .freq-number{ width:64px; }
body:not(.help-page) .amp-stepper{ grid-template-columns:24px minmax(70px,1fr) 24px; }
body:not(.help-page) .amp-number{ min-width:0; }
body:not(.help-page) .time-control{
  grid-template-columns:44px minmax(190px,1fr) 58px;
  grid-auto-rows:17px;
  align-content:start;
}
body:not(.help-page) .time-control .channel-title,
body:not(.help-page) .audio-control .channel-title{ margin-bottom:1px; }
body:not(.help-page) .time-stepper{ grid-template-columns:24px minmax(120px,1fr) 24px; }
body:not(.help-page) .time-number{ min-width:0; }
body:not(.help-page) .time-presets,
body:not(.help-page) .speed-presets{
  grid-column:1 / -1;
  display:grid;
  gap:3px;
}
body:not(.help-page) .time-presets{ grid-template-columns:repeat(5,minmax(0,1fr)); }
body:not(.help-page) .speed-presets{ grid-template-columns:repeat(7,minmax(0,1fr)); }
body:not(.help-page) .time-presets button,
body:not(.help-page) .speed-presets button{
  height:16px;
  min-height:16px;
  margin:0;
  padding:0 3px;
  font-size:8px;
  letter-spacing:.02em;
}
body:not(.help-page) .time-control .run-button,
body:not(.help-page) .time-control button#toggleAnimation{
  height:22px;
  min-height:22px;
  margin-top:2px;
}
body:not(.help-page) .audio-control{
  grid-template-columns:46px minmax(150px,1fr) 58px;
  align-content:start;
}@media (max-width:1380px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell{
    grid-template-rows:42px 28px 312px minmax(0,1fr) 22px;
  }
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 28px 356px minmax(0,1fr) 22px;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck{
    grid-template-columns:repeat(2,minmax(280px,1fr));
    grid-auto-rows:156px;
    height:312px;
    overflow:hidden;
  }
  body:not(.help-page).control-view-utility .control-deck{
    grid-template-columns:1fr;
    grid-auto-rows:118px 178px 60px;
    height:356px;
    overflow:hidden;
  }

}@media (max-width:820px){

  .control-tabs{ overflow-x:auto; padding:4px 8px; height:32px; }
  .control-tab{ flex:0 0 auto; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    grid-template-columns:1fr;
    grid-auto-rows:auto;
    height:auto;
    overflow:visible;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:auto 32px auto 760px 22px;
  }
  body:not(.help-page) .channel{ min-height:156px; }

}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 96px 112px minmax(0,1fr) 22px;
}
.control-tabs{ display:none !important; }
.global-control-bar{
  min-width:0;
  height:96px;
  display:grid;
  grid-template-columns:minmax(260px,.82fr) minmax(560px,1.75fr) minmax(300px,1fr);
  gap:0;
  background:var(--color-bg-panel);
  border-bottom:1px solid var(--color-border-soft);
  overflow:hidden;
}
.global-control-bar .channel{
  min-width:0;
  min-height:0;
  height:96px;
  padding:7px 12px;
  border-right:1px solid var(--color-border-soft);
  border-bottom:none;
  background:var(--color-bg-panel);
  overflow:hidden;
}
.global-control-bar .channel:last-child{ border-right:none; }
.global-control-bar .channel-title{
  height:14px;
  line-height:14px;
  margin:0;
  font-size:10px;
}
.global-control-bar .channel-count-control{
  grid-template-columns:46px minmax(110px,1fr) 52px;
  grid-auto-rows:17px;
  row-gap:3px;
  align-content:start;
}
.global-control-bar .setup-note,
.global-control-bar .setup-note-label,
.global-control-bar label,
.global-control-bar output{
  font-size:10px;
}
body:not(.help-page) .global-control-bar .time-control{
  display:grid;
  grid-template-columns:42px minmax(135px,1fr) 58px 42px minmax(135px,1fr) 58px 68px;
  grid-auto-rows:18px;
  gap:3px 7px;
  align-content:start;
}
.global-control-bar .time-control .channel-title{ grid-column:1 / -1; }
.global-control-bar .time-control label[for="timeDomainInput"]{ grid-column:1; grid-row:2; }
.global-control-bar .time-control .time-stepper{ grid-column:2; grid-row:2; }
.global-control-bar .time-control #timeDomainValue{ grid-column:3; grid-row:2; }
.global-control-bar .time-control .time-presets{ grid-column:1 / 4; grid-row:3 / span 2; }
.global-control-bar .time-control label[for="animationSpeedInput"]{ grid-column:4; grid-row:2; }
.global-control-bar .time-control .speed-stepper{ grid-column:5; grid-row:2; }
.global-control-bar .time-control #animationSpeedValue{ grid-column:6; grid-row:2; }
.global-control-bar .time-control .speed-presets{ grid-column:4 / 7; grid-row:3 / span 2; }
.global-control-bar .time-control #toggleAnimation{ grid-column:7; grid-row:2 / 5; }
.global-control-bar .time-control .time-stepper,
.global-control-bar .time-control .speed-stepper{
  display:grid;
  grid-template-columns:22px minmax(80px,1fr) 22px;
  height:18px;
  min-height:18px;
  gap:3px;
}
.global-control-bar .time-control .time-button{
  grid-column:auto;
  width:auto;
  height:18px;
  min-height:18px;
  margin:0;
  padding:0;
  font-size:10px;
  line-height:1;
}
.global-control-bar .time-control .time-number{
  width:100%;
  height:18px;
  min-width:0;
  padding:0 4px;
  font-size:10px;
}
.global-control-bar .time-control .time-presets,
.global-control-bar .time-control .speed-presets{
  display:grid;
  gap:3px;
}
.global-control-bar .time-control .time-presets{ grid-template-columns:repeat(5,minmax(0,1fr)); }
.global-control-bar .time-control .speed-presets{ grid-template-columns:repeat(7,minmax(0,1fr)); }
.global-control-bar .time-control .time-presets button,
.global-control-bar .time-control .speed-presets button{
  grid-column:auto;
  width:auto;
  height:17px;
  min-height:17px;
  margin:0;
  padding:0 3px;
  font-size:8px;
  letter-spacing:.01em;
  line-height:1;
}
.global-control-bar .time-control .run-button,
.global-control-bar .time-control button#toggleAnimation{
  width:100%;
  height:57px;
  min-height:57px;
  margin:0;
  padding:0;
  align-self:stretch;
}
body:not(.help-page) .global-control-bar .audio-control{
  display:grid;
  grid-template-columns:46px minmax(130px,1fr) 58px;
  grid-auto-rows:18px;
  gap:3px 7px;
  align-content:start;
}
.global-control-bar .audio-control .channel-title{ grid-column:1 / -1; }
.global-control-bar .audio-control #toggleAudio{
  height:22px;
  min-height:22px;
  margin-top:2px;
}
body:not(.help-page) .control-deck,
body:not(.help-page).has-many-channels .control-deck,
body:not(.help-page).control-view-primary .control-deck,
body:not(.help-page).control-view-secondary .control-deck,
body:not(.help-page).control-view-utility .control-deck{
  grid-template-columns:repeat(6,minmax(190px,1fr));
  grid-auto-rows:112px;
  height:112px;
  min-height:0;
  overflow:hidden;
  border-bottom:1px solid var(--color-border-soft);
}
body:not(.help-page) .control-deck .channel{
  height:112px;
  min-height:0;
  padding:7px 10px;
  grid-auto-rows:18px;
  row-gap:3px;
  overflow:hidden;
  border-right:1px solid var(--color-border-soft);
  border-bottom:none;
}
body:not(.help-page) .control-deck .channel:not(.master){
  grid-template-columns:32px minmax(72px,1fr) 52px 56px;
}
body:not(.help-page) .control-deck .channel-title{
  height:14px;
  line-height:14px;
  margin:0;
}
body:not(.help-page) .control-deck .freq-number{ width:56px; }
body:not(.help-page) .control-deck .amp-stepper{ grid-template-columns:22px minmax(58px,1fr) 22px; }
body:not(.help-page) .control-deck .amp-number{ min-width:0; }
body.control-view-primary [data-control-group],
body.control-view-secondary [data-control-group],
body.control-view-utility [data-control-group]{
  display:grid;
}
body:not(.help-page) .global-control-bar [data-control-group="setup"],
body:not(.help-page) .global-control-bar [data-control-group="utility"]{
  display:grid;
}@media (max-width:1580px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 174px 224px minmax(0,1fr) 22px;
  }
  .global-control-bar{
    height:174px;
    grid-template-columns:minmax(260px,.9fr) minmax(560px,1.7fr);
    grid-auto-rows:87px;
  }
  .global-control-bar .channel{ height:87px; }
  .global-control-bar .audio-control{ grid-column:1 / -1; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    grid-template-columns:repeat(3,minmax(230px,1fr));
    grid-auto-rows:112px;
    height:224px;
  }

}@media (max-width:1100px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:auto auto auto 760px 22px;
  }
  .global-control-bar{
    height:auto;
    grid-template-columns:1fr;
    overflow:visible;
  }
  .global-control-bar .channel{ height:auto; min-height:90px; border-right:none; border-bottom:1px solid var(--color-border-soft); }
  body:not(.help-page) .global-control-bar .time-control{
    grid-template-columns:42px minmax(130px,1fr) 58px;
    grid-auto-rows:18px;
  }
  .global-control-bar .time-control label[for="timeDomainInput"]{ grid-column:1; grid-row:2; }
  .global-control-bar .time-control .time-stepper{ grid-column:2; grid-row:2; }
  .global-control-bar .time-control #timeDomainValue{ grid-column:3; grid-row:2; }
  .global-control-bar .time-control .time-presets{ grid-column:1 / -1; grid-row:auto; }
  .global-control-bar .time-control label[for="animationSpeedInput"]{ grid-column:1; grid-row:auto; }
  .global-control-bar .time-control .speed-stepper{ grid-column:2; grid-row:auto; }
  .global-control-bar .time-control #animationSpeedValue{ grid-column:3; grid-row:auto; }
  .global-control-bar .time-control .speed-presets{ grid-column:1 / -1; grid-row:auto; }
  .global-control-bar .time-control #toggleAnimation{ grid-column:1 / -1; grid-row:auto; height:22px; min-height:22px; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    grid-template-columns:1fr;
    grid-auto-rows:auto;
    height:auto;
    overflow:visible;
  }
  body:not(.help-page) .control-deck .channel{ height:auto; min-height:112px; border-right:none; border-bottom:1px solid var(--color-border-soft); }

}@media (max-width:1280px) and (min-width:921px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 150px 112px minmax(0,1fr) 22px;
  }
  .global-control-bar{
    height:150px;
    display:grid;
    grid-template-columns:minmax(245px,.75fr) minmax(520px,2fr);
    grid-template-rows:75px 75px;
    overflow:hidden;
  }
  .global-control-bar .channel{
    height:75px;
    min-height:0;
    padding:6px 10px;
    overflow:hidden;
    border-bottom:1px solid var(--color-border-soft);
  }
  .global-control-bar .channel-count-control{
    grid-column:1;
    grid-row:1;
    grid-template-columns:44px minmax(90px,1fr) 44px;
    grid-auto-rows:16px;
    row-gap:2px;
  }
  body:not(.help-page) .global-control-bar .time-control{
    grid-column:2;
    grid-row:1 / span 2;
    height:150px;
    grid-template-columns:38px minmax(95px,1fr) 52px 38px minmax(95px,1fr) 52px 58px;
    grid-auto-rows:18px;
    gap:3px 6px;
    align-content:start;
    border-right:none;
  }
  body:not(.help-page) .global-control-bar .audio-control{
    grid-column:1;
    grid-row:2;
    height:75px;
    grid-template-columns:44px minmax(90px,1fr) 48px;
    grid-auto-rows:16px;
    row-gap:2px;
    border-right:1px solid var(--color-border-soft);
  }
  .global-control-bar .time-control .time-stepper,
  .global-control-bar .time-control .speed-stepper{
    grid-template-columns:20px minmax(58px,1fr) 20px;
  }
  .global-control-bar .time-control .time-presets button,
  .global-control-bar .time-control .speed-presets button{
    font-size:8px;
    min-height:16px;
    height:16px;
    padding:0 2px;
  }
  .global-control-bar .time-control .run-button,
  .global-control-bar .time-control button#toggleAnimation{
    height:57px;
    min-height:57px;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(250px,1fr);
    grid-template-columns:none;
    grid-auto-rows:112px;
    height:112px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:thin;
  }
  body:not(.help-page) .control-deck .channel{
    min-width:250px;
    border-bottom:none;
  }

}@media (max-width:920px){

  html,body{ overflow:auto; }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    height:auto;
    min-height:100vh;
    grid-template-rows:auto auto 112px 760px 22px;
  }
  .status-strip{ min-width:0; gap:4px; }
  .readout{ padding:3px 6px; }
  .global-control-bar{
    height:auto;
    display:grid;
    grid-template-columns:1fr;
    grid-auto-rows:auto;
    overflow:visible;
  }
  .global-control-bar .channel{
    height:auto;
    min-height:0;
    padding:6px 10px;
    border-right:none;
    border-bottom:1px solid var(--color-border-soft);
    overflow:visible;
  }
  .global-control-bar .channel-count-control{
    grid-template-columns:44px minmax(120px,1fr) 48px;
    grid-auto-rows:17px;
    row-gap:2px;
  }
  body:not(.help-page) .global-control-bar .time-control{
    display:grid;
    grid-template-columns:42px minmax(90px,1fr) 56px;
    grid-auto-rows:18px;
    gap:3px 6px;
    align-content:start;
  }
  .global-control-bar .time-control .channel-title{ grid-column:1 / -1; grid-row:auto; }
  .global-control-bar .time-control label[for="timeDomainInput"]{ grid-column:1; grid-row:auto; }
  .global-control-bar .time-control .time-stepper{ grid-column:2; grid-row:auto; }
  .global-control-bar .time-control #timeDomainValue{ grid-column:3; grid-row:auto; }
  .global-control-bar .time-control .time-presets{ grid-column:1 / -1; grid-row:auto; grid-template-columns:repeat(5,minmax(0,1fr)); }
  .global-control-bar .time-control label[for="animationSpeedInput"]{ grid-column:1; grid-row:auto; }
  .global-control-bar .time-control .speed-stepper{ grid-column:2; grid-row:auto; }
  .global-control-bar .time-control #animationSpeedValue{ grid-column:3; grid-row:auto; }
  .global-control-bar .time-control .speed-presets{ grid-column:1 / -1; grid-row:auto; grid-template-columns:repeat(7,minmax(0,1fr)); }
  .global-control-bar .time-control #toggleAnimation{ grid-column:1 / -1; grid-row:auto; height:22px; min-height:22px; }
  .global-control-bar .time-control .time-stepper,
  .global-control-bar .time-control .speed-stepper{ grid-template-columns:20px minmax(62px,1fr) 20px; }
  .global-control-bar .time-control .time-presets button,
  .global-control-bar .time-control .speed-presets button{ height:16px; min-height:16px; font-size:8px; padding:0 2px; }
  body:not(.help-page) .global-control-bar .audio-control{
    grid-template-columns:44px minmax(120px,1fr) 48px;
    grid-auto-rows:17px;
    row-gap:2px;
  }
  .global-control-bar .audio-control #toggleAudio{ height:20px; min-height:20px; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(265px,82vw);
    grid-template-columns:none;
    grid-auto-rows:112px;
    height:112px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:thin;
  }
  body:not(.help-page) .control-deck .channel{
    min-width:265px;
    height:112px;
    min-height:0;
    border-right:1px solid var(--color-border-soft);
    border-bottom:none;
    overflow:hidden;
  }

}@media (max-width:620px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:auto auto 112px 900px 22px;
  }
  .global-control-bar .time-control .speed-presets{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .plot-deck{
    grid-template-columns:1fr;
    grid-template-rows:300px 300px 300px;
  }
  .spectrum-body{ grid-template-columns:1fr; grid-template-rows:minmax(0,1fr) 52px 160px; }

}
.experiment-panel{
  grid-template-rows:auto auto auto minmax(0,1fr);
}
.experiment-filterbar{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding:8px 16px;
  border-bottom:1px solid var(--color-border-soft);
  background:#10151d;
}
.experiment-filter{
  grid-column:auto;
  width:auto;
  height:22px;
  min-height:22px;
  margin:0;
  padding:0 10px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:#141922;
  color:#aeb8c8;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:650;
  letter-spacing:.04em;
  line-height:1;
  white-space:nowrap;
}
.experiment-filter:hover{
  background:var(--control-bg-hover);
  border-color:var(--control-border-hover);
  color:#fff;
}
.experiment-filter.is-active{
  border-color:#8fd4ff;
  background:#101923;
  color:#dff2ff;
}
.experiment-entry--guided{
  grid-template-columns:minmax(0,1fr) 66px;
  align-items:start;
}
.experiment-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.experiment-badges{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:3px;
  flex:0 0 auto;
}
.experiment-badges span{
  display:inline-flex;
  align-items:center;
  min-height:15px;
  padding:1px 5px;
  border:1px solid #2f3744;
  background:#0d121a;
  color:#aeb8c8;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:8.5px;
  line-height:1;
  letter-spacing:.03em;
  white-space:nowrap;
}
.experiment-badges span:last-child{
  color:#ffe7a4;
  border-color:#514528;
  background:#171511;
}
.experiment-purpose,
.experiment-expected{
  margin-top:5px;
  color:#aeb8c7;
  font-size:10.5px;
  line-height:1.38;
}
.experiment-purpose strong,
.experiment-expected strong{
  color:#b9d7ff;
  font-weight:600;
}
.experiment-expected ul{
  margin:4px 0 0;
  padding-left:15px;
}
.experiment-expected li + li{
  margin-top:2px;
}
.experiment-empty{
  padding:18px 16px;
  border:1px dashed var(--control-border);
  background:#0c1118;
  color:#aeb8c8;
  font-size:12px;
  line-height:1.5;
}@media (max-width:960px){

  .experiment-filterbar{ padding:8px 12px; overflow-x:auto; flex-wrap:nowrap; }
  .experiment-filter{ flex:0 0 auto; }

}@media (max-width:620px){

  .experiment-entry--guided{ grid-template-columns:1fr; }
  .experiment-actions{ grid-template-columns:1fr 44px; grid-template-rows:24px; }
  .experiment-card-head{ flex-direction:column; gap:5px; }
  .experiment-badges{ flex-direction:row; align-items:flex-start; }

}

/* ===== layout.css ===== */
body:not(.help-page) .panel-toggle{
  display:none;
}@media (min-width:1601px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    height:100vh;
    grid-template-rows:42px 96px 112px minmax(0,1fr) 22px;
    overflow:hidden;
  }
  body:not(.help-page) .plot-deck{
    grid-template-columns:1.05fr 1.05fr .9fr;
    grid-template-rows:minmax(0,1fr);
    min-height:0;
  }
  body:not(.help-page) .plot-card{
    min-height:0;
  }

}@media (max-width:1600px) and (min-width:1101px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    height:100vh;
    grid-template-rows:42px 150px 112px minmax(0,1fr) 22px;
    overflow:hidden;
  }
  body:not(.help-page) .plot-deck{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:minmax(0,1fr) 34%;
    min-height:0;
  }
  body:not(.help-page) .scope-card,
  body:not(.help-page) .field-card{
    grid-column:auto;
    grid-row:1;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    grid-column:1 / -1;
    grid-row:2;
    border-top:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .analysis-body,
  body:not(.help-page) .spectrum-body{
    grid-template-columns:minmax(0,1fr) minmax(360px,.7fr);
    grid-template-rows:minmax(0,1fr);
  }
  body:not(.help-page) .analysis-frame,
  body:not(.help-page) .spectrum-frame{
    grid-column:1;
    grid-row:1 / span 2;
  }
  body:not(.help-page) .analysis-metrics,
  body:not(.help-page) .spectrum-metrics,
  body:not(.help-page) .measurement-body--spectrum{
    grid-column:2;
  }

}@media (max-width:1100px){

  html,body{
    height:auto;
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    width:100%;
    height:auto;
    min-height:100vh;
    display:grid;
    grid-template-rows:auto auto auto auto auto;
    overflow:visible;
  }
  body:not(.help-page) .status-strip{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:4px;
  }
  body:not(.help-page) .readout{
    height:24px;
    padding:3px 5px;
    gap:4px;
  }
  body:not(.help-page) .global-control-bar{
    height:auto;
    display:grid;
    grid-template-columns:1fr;
    grid-auto-rows:auto;
    overflow:visible;
  }
  body:not(.help-page) .global-control-bar .channel{
    height:auto;
    min-height:0;
    padding:0;
    border-right:none;
    border-bottom:1px solid var(--color-border-soft);
    overflow:hidden;
  }
  body:not(.help-page) .collapsible-panel > .channel-title{
    min-height:31px;
    height:31px;
    margin:0;
    padding:0 10px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(58,66,78,.55);
    background:#10151d;
  }
  body:not(.help-page) .panel-toggle{
    grid-column:auto;
    width:auto;
    min-width:72px;
    height:21px;
    min-height:21px;
    margin:0;
    padding:0 8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--control-input-border);
    background:#141922;
    color:#b9d7ff;
    font-family:"Roboto Mono","Consolas",monospace;
    font-size:9px;
    line-height:1;
    letter-spacing:.04em;
    text-transform:uppercase;
  }
  body:not(.help-page) .panel-toggle:hover{
    background:var(--control-bg-hover);
    border-color:var(--control-border-hover);
    color:#fff;
  }
  body:not(.help-page) .collapsible-panel.is-collapsed{
    min-height:31px;
    height:31px;
  }
  body:not(.help-page) .collapsible-panel.is-collapsed > :not(.channel-title){
    display:none !important;
  }
  body:not(.help-page) .collapsible-panel:not(.is-collapsed){
    padding-bottom:7px;
  }
  body:not(.help-page) .collapsible-panel:not(.is-collapsed) > :not(.channel-title){
    margin-left:10px;
    margin-right:10px;
  }
  body:not(.help-page) .global-control-bar .channel-count-control{
    grid-template-columns:44px minmax(110px,1fr) 48px;
    grid-auto-rows:18px;
    gap:3px 7px;
    align-content:start;
  }
  body:not(.help-page) .global-control-bar .time-control,
  body:not(.help-page) .global-control-bar .audio-control{
    grid-template-columns:44px minmax(120px,1fr) 52px;
    grid-auto-rows:18px;
    gap:3px 7px;
    align-content:start;
  }
  body:not(.help-page) .global-control-bar .time-control .time-presets{
    grid-template-columns:repeat(5,minmax(0,1fr));
  }
  body:not(.help-page) .global-control-bar .time-control .speed-presets{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  body:not(.help-page) .global-control-bar .time-control #toggleAnimation,
  body:not(.help-page) .global-control-bar .audio-control #toggleAudio{
    grid-column:1 / -1;
    height:22px;
    min-height:22px;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(270px,84vw);
    grid-template-columns:none;
    grid-auto-rows:112px;
    height:112px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:thin;
    border-bottom:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .control-deck .channel{
    min-width:270px;
    height:112px;
    min-height:0;
    padding:7px 10px;
    overflow:hidden;
    border-right:1px solid var(--color-border-soft);
    border-bottom:none;
  }
  body:not(.help-page) .plot-deck{
    height:auto;
    min-height:0;
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
    overflow:visible;
  }
  body:not(.help-page) .plot-card{
    height:clamp(320px,56vh,520px);
    min-height:320px;
    border-right:none;
    border-bottom:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .scope-card{
    grid-template-rows:30px minmax(0,1fr) auto;
  }
  body:not(.help-page) .scope-toolbar{
    overflow-x:auto;
    overflow-y:hidden;
  }
  body:not(.help-page) .scope-channels{
    flex:0 0 auto;
  }
  body:not(.help-page) .scope-metrics{
    grid-template-columns:repeat(3,minmax(0,1fr));
    height:auto;
  }
  body:not(.help-page) .scope-metrics span{
    height:22px;
  }
  body:not(.help-page) .field-label,
  body:not(.help-page) .analysis-label{
    min-height:34px;
    height:auto;
    align-items:flex-start;
    flex-direction:column;
    padding:5px 9px;
    gap:4px;
  }
  body:not(.help-page) .field-controls,
  body:not(.help-page) .analysis-controls{
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    height:clamp(520px,78vh,720px);
  }
  body:not(.help-page) .analysis-body,
  body:not(.help-page) .spectrum-body{
    grid-template-columns:1fr;
    grid-template-rows:minmax(0,1fr) auto auto;
  }
  body:not(.help-page) .analysis-metrics,
  body:not(.help-page) .spectrum-metrics{
    grid-template-columns:1fr;
  }
  body:not(.help-page) .measurement-body--spectrum{
    max-height:220px;
    overflow:auto;
  }

}@media (max-width:620px){

  body:not(.help-page) .readout{
    border-left:none;
    border-top:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .plot-card{
    height:330px;
    min-height:330px;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    height:560px;
  }
  body:not(.help-page) .scope-metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-auto-columns:minmax(260px,88vw);
  }
  body:not(.help-page) .control-deck .channel{
    min-width:260px;
  }

}@media (max-width:1100px){

  body:not(.help-page) .global-control-bar{
    grid-template-columns:repeat(3,minmax(0,1fr));
    background:#0f131a;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel{
    border-right:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .global-control-bar .collapsible-panel:nth-child(3n){
    border-right:none;
  }
  body:not(.help-page) .collapsible-panel > .channel-title{
    min-height:30px;
    height:30px;
    padding:0 7px;
    gap:6px;
  }
  body:not(.help-page) .panel-title-text{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  body:not(.help-page) .panel-toggle{
    min-width:54px;
    height:20px;
    min-height:20px;
    padding:0 6px;
    font-size:8px;
  }
  body:not(.help-page) .collapsible-panel.is-collapsed{
    height:30px;
    min-height:30px;
  }
  body:not(.help-page) .collapsible-panel:not(.is-collapsed){
    grid-column:1 / -1;
  }
  body:not(.help-page) .collapsible-panel:not(.is-collapsed) > :not(.channel-title){
    margin-left:8px;
    margin-right:8px;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-auto-columns:minmax(284px,34vw);
    height:106px;
    grid-auto-rows:106px;
    overscroll-behavior-x:contain;
  }
  body:not(.help-page) .control-deck .channel{
    min-width:284px;
    height:106px;
    padding:6px 9px;
  }
  body:not(.help-page) .channel:not(.master){
    grid-auto-rows:18px;
    row-gap:2px;
  }
  body:not(.help-page) .channel-title{
    height:14px;
    line-height:14px;
  }
  body:not(.help-page) input[type="range"]{
    height:16px;
  }
  body:not(.help-page) .amp-stepper,
  body:not(.help-page) .time-stepper,
  body:not(.help-page) .speed-stepper{
    gap:3px;
  }
  body:not(.help-page) .freq-number,
  body:not(.help-page) .amp-number,
  body:not(.help-page) .time-number{
    height:17px;
  }
  body:not(.help-page) .amp-stepper .amp-button,
  body:not(.help-page) .time-button{
    height:17px;
    min-height:17px;
  }
  body:not(.help-page) .plot-card{
    height:clamp(300px,52vh,470px);
    min-height:300px;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    height:clamp(460px,70vh,640px);
  }

}@media (max-width:760px){

  body:not(.help-page) .global-control-bar .collapsible-panel{
    border-right:none;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-auto-columns:minmax(258px,88vw);
  }
  body:not(.help-page) .control-deck .channel{
    min-width:258px;
  }

}@media (max-width:1100px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }
  body:not(.help-page) .instrument-shell{
    height:auto;
    min-height:100svh;
  }
  body:not(.help-page) .status-strip{
    min-width:0;
    gap:5px;
  }
  body:not(.help-page) .readout{
    min-width:0;
    padding-left:5px;
    padding-right:5px;
  }
  body:not(.help-page) .global-control-bar{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  body:not(.help-page) .global-control-bar > .channel,
  body:not(.help-page) .collapsible-panel{
    min-width:0;
    max-width:100%;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    width:100%;
    max-width:100%;
    min-width:0;
    grid-auto-columns:minmax(270px, calc(100vw - 28px));
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-gutter:stable;
    overscroll-behavior-x:contain;
    -webkit-overflow-scrolling:touch;
  }
  body:not(.help-page) .control-deck .channel{
    width:auto;
    max-width:none;
    min-width:270px;
  }
  body:not(.help-page) .scope-toolbar,
  body:not(.help-page) .field-controls,
  body:not(.help-page) .analysis-controls{
    max-width:100%;
    min-width:0;
  }

}@media (max-width:760px){

  body:not(.help-page) .status-strip{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  body:not(.help-page) .readout span{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  body:not(.help-page) .readout strong{
    font-size:10px;
  }
  body:not(.help-page) .global-control-bar{
    grid-template-columns:1fr;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-auto-columns:minmax(254px, calc(100vw - 24px));
  }
  body:not(.help-page) .control-deck .channel{
    min-width:254px;
  }

}@media (max-width:420px){

  body:not(.help-page) .status-strip{
    grid-template-columns:1fr;
  }
  body:not(.help-page) .readout{
    height:21px;
    grid-template-columns:46px minmax(0,1fr);
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-auto-columns:minmax(238px, calc(100vw - 20px));
  }
  body:not(.help-page) .control-deck .channel{
    min-width:238px;
  }

}@media (max-width:820px){


}@media (max-width:1100px){


}
.geometry-fingerprint-panel{
  display:none;
  min-width:0;
  border-bottom:1px solid var(--color-border-soft);
  background:#0b1018;
}
.geometry-fingerprint-panel.is-visible{
  display:block;
}
.geometry-fingerprint-title{
  height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  border-bottom:1px solid rgba(79,91,110,.42);
  background:#10151d;
  color:var(--color-text-muted);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
}
.geometry-fingerprint-title strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#fff6be;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:none;
}
.geometry-fingerprint-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-bottom:1px solid rgba(79,91,110,.42);
}
.geometry-fingerprint-grid span{
  min-width:0;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  padding:0 7px;
  border-right:1px solid rgba(79,91,110,.42);
  border-bottom:1px solid rgba(79,91,110,.42);
  font-size:10px;
  white-space:nowrap;
}
.geometry-fingerprint-grid span:nth-child(2n){ border-right:none; }
.geometry-fingerprint-grid span:nth-last-child(-n/**/+2){ border-bottom:none; }
.geometry-fingerprint-grid b{
  color:var(--color-text-status-label);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.geometry-fingerprint-grid strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:500;
  font-variant-numeric:tabular-nums;
  text-align:right;
}
.geometry-fingerprint-signature{
  padding:6px 8px;
  color:#aeb8c7;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  line-height:1.35;
  border-left:2px solid #506782;
  background:#090d13;
  word-break:break-word;
}@media (max-width:1100px){

  body:not(.help-page) .measurement-body--spectrum{
    max-height:280px;
  }

}
.analysis-card.analysis-mode-spectrum .geometry-fingerprint-panel,
.analysis-card.analysis-mode-spectrum .phase-table-wrap{
  display:none !important;
}
.analysis-card.analysis-mode-spectrum .measurement-body--spectrum{
  grid-template-rows:auto auto;
}
.analysis-card.analysis-mode-phasor .geometry-fingerprint-panel,
.analysis-card.analysis-mode-phasor .measurement-grid{
  display:none !important;
}
.analysis-card.analysis-mode-phasor .measurement-title span::before{
  content:"phase relations only";
}
.analysis-card.analysis-mode-phasor .measurement-title span{
  font-size:0;
}
.analysis-card.analysis-mode-phasor .measurement-title span::before{
  font-size:9px;
}
.analysis-card.analysis-mode-lissajous .measurement-grid,
.analysis-card.analysis-mode-lissajous .phase-table-wrap,
.analysis-card.analysis-mode-landscape .measurement-grid,
.analysis-card.analysis-mode-landscape .phase-table-wrap{
  display:none !important;
}
.analysis-card.analysis-mode-lissajous .measurement-body--spectrum,
.analysis-card.analysis-mode-landscape .measurement-body--spectrum{
  grid-template-rows:auto auto;
}
.analysis-card.analysis-mode-fingerprint .spectrum-frame,
.analysis-card.analysis-mode-fingerprint .spectrum-metrics{
  display:none !important;
}
.analysis-card.analysis-mode-fingerprint .spectrum-body{
  grid-template-rows:minmax(0,1fr);
}
.analysis-card.analysis-mode-fingerprint .measurement-body--spectrum{
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  border-top:none;
  min-height:0;
}
.analysis-card.analysis-mode-fingerprint .measurement-grid,
.analysis-card.analysis-mode-fingerprint .phase-table-wrap{
  display:none !important;
}
.analysis-card.analysis-mode-fingerprint .geometry-fingerprint-panel.is-visible{
  display:grid;
  grid-template-rows:auto auto minmax(0,1fr);
  align-self:stretch;
  min-height:0;
  border-bottom:none;
}
.analysis-card.analysis-mode-fingerprint .geometry-fingerprint-title{
  height:28px;
  padding:0 10px;
}
.analysis-card.analysis-mode-fingerprint .geometry-fingerprint-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.analysis-card.analysis-mode-fingerprint .geometry-fingerprint-grid span{
  height:28px;
  padding:0 10px;
  font-size:11px;
}
.analysis-card.analysis-mode-fingerprint .geometry-fingerprint-signature{
  min-height:0;
  padding:10px;
  font-size:10px;
  line-height:1.55;
}
.analysis-card.analysis-mode-phasor .phase-table th,
.analysis-card.analysis-mode-phasor .phase-table td{
  padding:4px 7px;
  height:18px;
}@media (max-width:1580px){

  .analysis-card.analysis-mode-fingerprint .spectrum-body{
    grid-template-columns:1fr;
    grid-template-rows:minmax(0,1fr);
  }
  .analysis-card.analysis-mode-fingerprint .measurement-body--spectrum{
    grid-column:auto;
    grid-row:auto;
    border-left:none;
  }

}
body:not(.help-page) .analysis-label{
  min-width:0;
  overflow:hidden;
}
body:not(.help-page) #analysisPanelTitle{
  min-width:0;
  flex:1 1 auto;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
body:not(.help-page) #analysisPanelNote{
  max-width:150px;
  display:inline-block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  vertical-align:bottom;
}
body:not(.help-page) .analysis-controls{
  flex:0 0 auto;
  gap:5px;
  min-width:max-content;
}
body:not(.help-page) .analysis-controls label{
  font-size:8px;
  letter-spacing:.06em;
}
body:not(.help-page) .analysis-controls select{
  min-width:82px;
  width:92px;
  max-width:92px;
  font-size:9px;
  padding:0 2px;
}
body:not(.help-page) .analysis-card.analysis-mode-landscape #analysisPanelTitle,
body:not(.help-page) .analysis-card.analysis-mode-constellation #analysisPanelTitle{
  max-width:170px;
}
body:not(.help-page) .analysis-card.analysis-mode-landscape #analysisPanelNote,
body:not(.help-page) .analysis-card.analysis-mode-constellation #analysisPanelNote{
  display:none;
}
body:not(.help-page) .analysis-card.analysis-mode-landscape .landscape-metric-label{
  font-size:0;
}
body:not(.help-page) .analysis-card.analysis-mode-landscape .landscape-metric-label::after{
  content:"M";
  font-size:8px;
  letter-spacing:.06em;
}@media (max-width:1380px){

  body:not(.help-page) #analysisPanelNote{ display:none; }
  body:not(.help-page) .analysis-card.analysis-mode-landscape #analysisPanelTitle,
  body:not(.help-page) .analysis-card.analysis-mode-constellation #analysisPanelTitle{ max-width:130px; }
  body:not(.help-page) .analysis-controls select{ min-width:78px; width:86px; max-width:86px; }

}
.discovery-actions{
  display:inline-flex;
  align-items:center;
  gap:5px;
  flex-shrink:0;
}
.discovery-load,
.discovery-save{
  grid-column:auto;
  width:auto;
  height:18px;
  min-height:18px;
  margin:0;
  padding:0 7px;
  border-color:#4e8753;
  background:#18231b;
  color:var(--control-text-active);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:8px;
  letter-spacing:.06em;
}
.discovery-load{
  border-color:#506782;
  background:#121b27;
  color:#dff2ff;
}
.discovery-load:hover{ background:#1b2a3a; border-color:#8fd4ff; color:#ffffff; }
.discovery-save:hover{ background:#203027; border-color:#89d185; color:#ffffff; }
.analysis-mode-discovery .measurement-title{ color:#89d185; }
.analysis-mode-discovery .geometry-fingerprint-panel{ display:block; }
.discovery-history-panel{
  border-top:1px solid var(--color-border-soft);
  background:#090d13;
  min-height:0;
  overflow:hidden;
}
.discovery-history-title{
  height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  background:#10151d;
  border-bottom:1px solid var(--color-border-soft);
  color:var(--color-text-muted);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.discovery-history-title strong{
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:600;
}
.discovery-history-list{
  max-height:154px;
  overflow:auto;
  padding:6px;
  display:grid;
  gap:6px;
}
.discovery-history-empty{
  padding:8px;
  color:var(--color-text-muted);
  font-size:10px;
  line-height:1.35;
}
.discovery-history-entry{
  border:1px solid #252c36;
  background:#0d131c;
  padding:6px;
}
.discovery-history-entry.is-active{
  border-color:#89d185;
  background:#0e1714;
}
.discovery-history-meta,
.discovery-history-line{
  min-width:0;
  display:flex;
  justify-content:space-between;
  gap:8px;
  color:#aeb8c8;
  font-size:10px;
  line-height:1.35;
}
.discovery-history-meta strong{
  color:#fff6be;
  font-family:"Roboto Mono","Consolas",monospace;
}
.discovery-history-meta span,
.discovery-history-line{
  color:var(--color-text-muted);
}
.discovery-history-actions{
  margin-top:5px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:4px;
}
.discovery-history-actions button,
.discovery-actions button{
  grid-column:auto;
  height:18px;
  min-height:18px;
  margin:0;
  padding:0 4px;
  font-size:8px;
  letter-spacing:.03em;
}
.analysis-mode-atlas .phase-table-wrap,
.analysis-mode-discovery .phase-table-wrap{
  display:none;
}
.analysis-mode-atlas .measurement-body--spectrum,
.analysis-mode-discovery .measurement-body--spectrum{
  grid-template-rows:auto auto auto minmax(0,1fr);
}@media (max-width:1580px){

  .discovery-history-list{ max-height:118px; }

}
.atlas-region-intelligence-panel{
  border-top:1px solid var(--color-border-soft);
  background:#080d14;
  display:grid;
  grid-template-rows:auto auto minmax(0,1fr);
  min-height:0;
}
.atlas-region-intelligence-panel[hidden]{ display:none !important; }
.atlas-region-title{
  height:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  background:#10151d;
  border-bottom:1px solid var(--color-border-soft);
  color:var(--color-text-muted);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.atlas-region-title strong{
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:600;
  letter-spacing:.04em;
}
.atlas-region-summary{
  padding:8px;
  border-bottom:1px solid rgba(79,91,110,.34);
  color:#aeb8c7;
  font-size:10px;
  line-height:1.38;
}
.atlas-family-table{
  min-height:0;
  overflow:auto;
}
.atlas-family-row{
  display:grid;
  grid-template-columns:minmax(88px,1.1fr) 44px minmax(94px,1.2fr) minmax(120px,1.7fr);
  gap:6px;
  padding:6px 8px;
  border-bottom:1px solid rgba(79,91,110,.30);
  align-items:center;
  font-size:9.5px;
}
.atlas-family-row strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:600;
}
.atlas-family-row span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#c0c8d4;
}
.atlas-family-row em{
  color:#8993a1;
  font-style:normal;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.atlas-family-row--head{
  position:sticky;
  top:0;
  z-index:1;
  background:var(--control-input-bg-focus);
  color:var(--color-text-status-label);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:8.5px;
}
.atlas-family-row--head span{ color:var(--color-text-status-label); }
.atlas-confidence-high{ color:#89d185; }
.atlas-confidence-mid{ color:#e6c86e; }
.atlas-confidence-low{ color:#e06c75; }@media (max-width:820px){

  .atlas-family-row{ grid-template-columns:1fr 38px 1fr; }
  .atlas-family-row em{ grid-column:1 / -1; }

}
.atlas-genealogy-panel{
  border-color:rgba(137,209,133,.24);
}
.atlas-genealogy-list{
  display:grid;
  gap:5px;
  margin-top:7px;
}
.atlas-genealogy-node{
  grid-column:auto;
  width:100%;
  height:auto;
  min-height:34px;
  margin:0;
  padding:6px 8px;
  display:grid;
  grid-template-columns:1fr;
  gap:2px;
  text-align:left;
  border:1px solid rgba(137,209,133,.26);
  background:#0b1210;
  color:var(--control-text);
  letter-spacing:0;
  text-transform:none;
}
.atlas-genealogy-node strong{
  color:var(--control-text-active);
  font-size:10px;
  font-family:"Roboto Mono","Consolas",monospace;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.atlas-genealogy-node span,
.atlas-genealogy-node em{
  color:#8f98a6;
  font-size:9px;
  font-style:normal;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.atlas-genealogy-node:hover{
  border-color:#89d185;
  background:#101a16;
}
.atlas-genealogy-unusual{
  margin-top:2px;
  padding:5px 7px;
  border-left:2px solid #e6c86e;
  background:#15130b;
  color:#e6c86e;
  font-size:9px;
  font-family:"Roboto Mono","Consolas",monospace;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
body:not(.help-page) .instrument-shell,
body:not(.help-page) .plot-deck,
body:not(.help-page) .plot-card,
body:not(.help-page) .spectrum-body,
body:not(.help-page) .analysis-body,
body:not(.help-page) .measurement-body--spectrum,
body:not(.help-page) .atlas-region-intelligence-panel,
body:not(.help-page) .atlas-genealogy-panel{
  min-width:0;
}
body:not(.help-page) .analysis-controls{
  flex-wrap:nowrap;
  min-width:0;
}
body:not(.help-page) #analysisMode{
  min-width:82px;
  max-width:128px;
}
body:not(.help-page) .atlas-performance-label{
  margin-left:4px;
}
body:not(.help-page) .atlas-performance-select{
  min-width:82px;
  max-width:110px;
}
body:not(.help-page) #analysisPanelTitle,
body:not(.help-page) #analysisPanelNote{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}@media (max-width:1500px) and (min-width:1001px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    height:100vh;
    grid-template-rows:42px 96px 112px minmax(0,1fr) 22px;
    overflow:hidden;
  }
  body:not(.help-page) .plot-deck{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    grid-template-rows:minmax(310px,1fr) minmax(260px,0.72fr);
    min-height:0;
    overflow:hidden;
  }
  body:not(.help-page) .scope-card{
    grid-column:1 / 2;
    grid-row:1 / 2;
    height:auto;
    min-height:0;
  }
  body:not(.help-page) .field-card{
    grid-column:2 / 3;
    grid-row:1 / 2;
    height:auto;
    min-height:0;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    grid-column:1 / -1;
    grid-row:2 / 3;
    height:auto;
    min-height:0;
    border-top:1px solid var(--color-border-soft);
    border-right:none;
  }
  body:not(.help-page) .analysis-body,
  body:not(.help-page) .spectrum-body{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(360px,0.75fr);
    grid-template-rows:minmax(0,1fr) auto;
    min-height:0;
  }
  body:not(.help-page) .analysis-frame,
  body:not(.help-page) .spectrum-frame{
    grid-column:1 / 2;
    grid-row:1 / 2;
    min-height:0;
  }
  body:not(.help-page) .analysis-metrics,
  body:not(.help-page) .spectrum-metrics{
    grid-column:1 / 2;
    grid-row:2 / 3;
    grid-template-columns:repeat(3,minmax(0,1fr));
    min-height:25px;
  }
  body:not(.help-page) .measurement-body--spectrum{
    grid-column:2 / 3;
    grid-row:1 / 3;
    border-left:1px solid var(--color-border-soft);
    border-top:none;
    min-height:0;
    overflow:hidden;
  }
  body:not(.help-page) .analysis-mode-atlas .measurement-body--spectrum,
  body:not(.help-page) .analysis-mode-discovery .measurement-body--spectrum{
    overflow:auto;
  }
  body:not(.help-page) .discovery-history-list{
    max-height:132px;
  }

}@media (max-width:1000px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
    overflow-y:auto;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    width:100%;
    max-width:100%;
    height:auto;
    min-height:100svh;
    grid-template-rows:auto auto auto auto 22px;
    overflow:visible;
  }
  body:not(.help-page) .control-deck,
  body:not(.help-page).has-many-channels .control-deck,
  body:not(.help-page).control-view-primary .control-deck,
  body:not(.help-page).control-view-secondary .control-deck,
  body:not(.help-page).control-view-utility .control-deck{
    width:100%;
    max-width:100%;
    grid-auto-flow:column;
    grid-template-columns:none;
    grid-auto-columns:minmax(270px, calc(100vw - 24px));
    grid-auto-rows:112px;
    height:112px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:thin;
  }
  body:not(.help-page) .control-deck .channel{
    min-width:270px;
    height:112px;
  }
  body:not(.help-page) .plot-deck{
    width:100%;
    max-width:100%;
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
    overflow:visible;
  }
  body:not(.help-page) .plot-card{
    width:100%;
    max-width:100%;
    height:420px;
    min-height:420px;
    overflow:hidden;
    border-right:none;
    border-bottom:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .scope-card{
    grid-template-rows:30px minmax(0,1fr) auto;
  }
  body:not(.help-page) .field-card{
    height:430px;
    min-height:430px;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    height:760px;
    min-height:760px;
  }
  body:not(.help-page) .analysis-body,
  body:not(.help-page) .spectrum-body{
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:minmax(320px,1fr) auto minmax(260px,0.62fr);
    min-height:0;
  }
  body:not(.help-page) .analysis-frame,
  body:not(.help-page) .spectrum-frame,
  body:not(.help-page) .analysis-metrics,
  body:not(.help-page) .spectrum-metrics,
  body:not(.help-page) .measurement-body--spectrum{
    grid-column:auto;
    grid-row:auto;
  }
  body:not(.help-page) .analysis-metrics,
  body:not(.help-page) .spectrum-metrics{
    grid-template-columns:1fr;
  }
  body:not(.help-page) .measurement-body--spectrum{
    min-height:0;
    max-height:none;
    overflow:auto;
    border-left:none;
    border-top:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .analysis-label,
  body:not(.help-page) .field-label{
    min-height:34px;
    height:auto;
  }
  body:not(.help-page) .analysis-controls{
    width:100%;
    overflow-x:auto;
    padding-bottom:1px;
  }
  body:not(.help-page) .atlas-family-row{
    grid-template-columns:minmax(90px,1fr) 40px minmax(80px,0.7fr);
  }
  body:not(.help-page) .atlas-family-row em{
    grid-column:1 / -1;
  }

}@media (max-width:620px){

  body:not(.help-page) .status-strip{
    grid-template-columns:1fr;
  }
  body:not(.help-page) .plot-card{
    height:360px;
    min-height:360px;
  }
  body:not(.help-page) .field-card{
    height:380px;
    min-height:380px;
  }
  body:not(.help-page) .analysis-card,
  body:not(.help-page) .spectrum-card{
    height:720px;
    min-height:720px;
  }

}
.atlas-inspector-tabs{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:3px;
  height:25px;
  padding:3px 5px;
  background:#0f131a;
  border-bottom:1px solid var(--color-border-soft);
  min-width:0;
}
.atlas-inspector-tabs[hidden]{ display:none !important; }
.atlas-inspector-tab{
  grid-column:auto;
  height:18px;
  min-height:18px;
  margin:0;
  padding:0 4px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:#141922;
  color:#aeb8c8;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:8px;
  font-weight:650;
  letter-spacing:.03em;
  line-height:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.atlas-inspector-tab:hover{ background:var(--control-bg-hover); border-color:var(--control-border-hover); color:#fff; }
.atlas-inspector-tab.is-active{ background:#101923; border-color:#8fd4ff; color:#dff2ff; }
.atlas-stats-panel{
  min-height:0;
  overflow:hidden;
  background:#080d14;
  border-top:1px solid var(--color-border-soft);
}
.atlas-stats-panel[hidden]{ display:none !important; }
.atlas-stats-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  min-height:0;
  overflow:hidden;
}
.atlas-stats-grid span{
  min-width:0;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  border-right:1px solid rgba(79,91,110,.34);
  border-bottom:1px solid rgba(79,91,110,.34);
  font-size:9px;
}
.atlas-stats-grid span:nth-child(2n){ border-right:none; }
.atlas-stats-grid b{
  color:var(--color-text-status-label);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.atlas-stats-grid strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:600;
  text-align:right;
}
body:not(.help-page) .analysis-mode-atlas .spectrum-body,
body:not(.help-page) .analysis-mode-atlas .analysis-body{
  display:grid;
  grid-template-columns:1fr;
  grid-template-rows:minmax(0,1fr) 24px 148px;
  min-height:0;
  overflow:hidden;
}
body:not(.help-page) .analysis-mode-atlas .analysis-frame,
body:not(.help-page) .analysis-mode-atlas .spectrum-frame{
  grid-column:1 / 2;
  grid-row:1 / 2;
  min-height:0;
}
body:not(.help-page) .analysis-mode-atlas .analysis-metrics,
body:not(.help-page) .analysis-mode-atlas .spectrum-metrics{
  grid-column:1 / 2;
  grid-row:2 / 3;
  grid-template-columns:repeat(3,minmax(0,1fr));
  min-height:24px;
  height:24px;
}
body:not(.help-page) .analysis-mode-atlas .analysis-metrics span,
body:not(.help-page) .analysis-mode-atlas .spectrum-metrics span{
  height:24px;
  border-bottom:none;
  border-right:1px solid var(--color-border-soft);
}
body:not(.help-page) .analysis-mode-atlas .analysis-metrics span:last-child,
body:not(.help-page) .analysis-mode-atlas .spectrum-metrics span:last-child{ border-right:none; }
body:not(.help-page) .analysis-mode-atlas .measurement-body--spectrum{
  grid-column:1 / 2;
  grid-row:3 / 4;
  display:grid;
  grid-template-rows:25px minmax(0,1fr);
  border-left:none;
  border-top:1px solid var(--color-border-soft);
  min-height:0;
  overflow:hidden;
}
body:not(.help-page) .analysis-mode-atlas .measurement-title,
body:not(.help-page) .analysis-mode-atlas .phase-table-wrap,
body:not(.help-page) .analysis-mode-atlas .measurement-grid,
body:not(.help-page) .analysis-mode-atlas .geometry-fingerprint-panel,
body:not(.help-page) .analysis-mode-atlas .discovery-history-panel,
body:not(.help-page) .analysis-mode-atlas .atlas-region-intelligence-panel,
body:not(.help-page) .analysis-mode-atlas .atlas-genealogy-panel,
body:not(.help-page) .analysis-mode-atlas .atlas-stats-panel{
  min-height:0;
  overflow:hidden;
}
body:not(.help-page) .analysis-mode-atlas .measurement-title{ display:none !important; }
body:not(.help-page) .analysis-mode-atlas .measurement-grid,
body:not(.help-page) .analysis-mode-atlas .geometry-fingerprint-panel,
body:not(.help-page) .analysis-mode-atlas .discovery-history-panel,
body:not(.help-page) .analysis-mode-atlas .atlas-region-intelligence-panel,
body:not(.help-page) .analysis-mode-atlas .atlas-genealogy-panel,
body:not(.help-page) .analysis-mode-atlas .atlas-stats-panel{
  grid-row:2 / 3;
  border-top:none;
}
body:not(.help-page) .analysis-mode-atlas .measurement-grid,
body:not(.help-page) .analysis-mode-atlas .geometry-fingerprint-grid,
body:not(.help-page) .analysis-mode-atlas .atlas-stats-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
body:not(.help-page) .analysis-mode-atlas .measurement-grid span,
body:not(.help-page) .analysis-mode-atlas .geometry-fingerprint-grid span,
body:not(.help-page) .analysis-mode-atlas .atlas-stats-grid span{
  height:24px;
}
body:not(.help-page) .analysis-mode-atlas:not(.atlas-tab-summary) .measurement-grid{ display:none !important; }
body:not(.help-page) .analysis-mode-atlas.atlas-tab-summary .measurement-grid{ display:grid; }
body:not(.help-page) .analysis-mode-atlas .geometry-fingerprint-signature,
body:not(.help-page) .analysis-mode-atlas .atlas-region-summary{
  max-height:38px;
  overflow:hidden;
}
body:not(.help-page) .analysis-mode-atlas .atlas-family-table,
body:not(.help-page) .analysis-mode-atlas .atlas-genealogy-list,
body:not(.help-page) .analysis-mode-atlas .discovery-history-list{
  max-height:92px;
  overflow:hidden;
}
body:not(.help-page) .analysis-mode-atlas .atlas-family-row{
  grid-template-columns:minmax(90px,1fr) 42px minmax(90px,1fr) minmax(130px,1.4fr);
  padding:5px 8px;
}@media (min-width:1501px){

  body:not(.help-page) .analysis-mode-atlas .spectrum-body,
  body:not(.help-page) .analysis-mode-atlas .analysis-body{
    grid-template-rows:minmax(0,1fr) 24px 156px;
  }
  body:not(.help-page) .analysis-mode-atlas .measurement-body--spectrum{
    grid-template-rows:25px minmax(0,1fr);
  }

}@media (max-width:1500px) and (min-width:1001px){

  body:not(.help-page) .analysis-mode-atlas.analysis-card,
  body:not(.help-page) .analysis-mode-atlas.spectrum-card{
    grid-column:1 / -1;
    grid-row:2 / 3;
  }
  body:not(.help-page) .analysis-mode-atlas .spectrum-body,
  body:not(.help-page) .analysis-mode-atlas .analysis-body{
    grid-template-columns:1fr;
    grid-template-rows:minmax(0,1fr) 24px 132px;
  }
  body:not(.help-page) .analysis-mode-atlas .measurement-body--spectrum{
    border-left:none;
    border-top:1px solid var(--color-border-soft);
  }

}@media (max-width:820px){

  body:not(.help-page) .analysis-mode-atlas .spectrum-body,
  body:not(.help-page) .analysis-mode-atlas .analysis-body{
    grid-template-rows:minmax(0,1fr) 76px 220px;
  }
  body:not(.help-page) .analysis-mode-atlas .measurement-grid,
  body:not(.help-page) .analysis-mode-atlas .geometry-fingerprint-grid,
  body:not(.help-page) .analysis-mode-atlas .atlas-stats-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .atlas-inspector-tabs{ grid-template-columns:repeat(3,minmax(0,1fr)); height:auto; }

}
.atlas-inspector-tabs{
  grid-template-columns:repeat(7,minmax(0,1fr));
}
.atlas-observatory-panel{
  min-height:0;
  overflow:hidden;
  background:#080d14;
  border-top:1px solid var(--color-border-soft);
}
.atlas-observatory-panel[hidden]{ display:none !important; }
.atlas-observatory-grid{
  min-height:0;
  height:100%;
  display:grid;
  grid-template-columns:1.35fr 1fr 1.25fr;
  grid-auto-rows:minmax(0,1fr);
  gap:0;
  overflow:hidden;
}
.atlas-observatory-section{
  min-width:0;
  min-height:0;
  overflow:hidden;
  padding:6px 8px;
  border-right:1px solid rgba(79,91,110,.34);
  border-bottom:1px solid rgba(79,91,110,.34);
  background:#090d13;
  color:#aeb8c7;
  font-size:9px;
  line-height:1.35;
}
.atlas-observatory-section > b{
  display:block;
  margin-bottom:4px;
  color:var(--color-text-status-label);
  font-size:8px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.atlas-observatory-section > span{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#c0c8d4;
  font-family:"Roboto Mono","Consolas",monospace;
}
.atlas-observatory-section--rankings{
  grid-row:span 2;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:4px;
  padding:5px;
}
.atlas-observatory-card{
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  grid-template-rows:13px 14px;
  gap:1px 6px;
  padding:3px 5px;
  border:1px solid rgba(79,91,110,.34);
  background:#0d131b;
  overflow:hidden;
}
.atlas-observatory-card b{
  grid-column:1 / -1;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:var(--color-text-status-label);
  font-size:8px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.atlas-observatory-card strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:600;
}
.atlas-observatory-card span{
  color:#89d185;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  text-align:right;
}
.atlas-outlier-row{
  display:grid;
  grid-template-columns:minmax(70px,.8fr) minmax(100px,1.2fr) 34px;
  gap:6px;
  min-width:0;
  height:17px;
  align-items:center;
  border-bottom:1px solid rgba(79,91,110,.22);
}
.atlas-outlier-row:last-child{ border-bottom:none; }
.atlas-outlier-row strong,
.atlas-outlier-row span,
.atlas-outlier-row em{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:8.5px;
  font-style:normal;
}
.atlas-outlier-row strong{ color:#ffd58a; }
.atlas-outlier-row span{ color:#c0c8d4; }
.atlas-outlier-row em{ color:#e06c75; text-align:right; }
body:not(.help-page) .analysis-mode-atlas .atlas-observatory-panel{
  grid-row:2 / 3;
  border-top:none;
  min-height:0;
  overflow:hidden;
}
body:not(.help-page) .analysis-mode-atlas:not(.atlas-tab-observatory) .atlas-observatory-panel{ display:none !important; }
body:not(.help-page) .analysis-mode-atlas.atlas-tab-observatory .atlas-observatory-panel{ display:block; }@media (max-width:1500px){

  .atlas-observatory-grid{ grid-template-columns:1fr 1fr; }
  .atlas-observatory-section--rankings{ grid-column:1 / -1; grid-row:auto; grid-template-columns:repeat(4,minmax(0,1fr)); }

}@media (max-width:820px){

  .atlas-inspector-tabs{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .atlas-observatory-grid{ grid-template-columns:1fr; }
  .atlas-observatory-section--rankings{ grid-template-columns:repeat(2,minmax(0,1fr)); }

}
body:not(.help-page).analysis-large-dock-active,
body:not(.help-page).analysis-large-dock-active html{
  overflow-y:auto;
  overflow-x:hidden;
}
body:not(.help-page).analysis-large-dock-active .instrument-shell{
  height:auto;
  min-height:100vh;
  grid-template-rows:42px 28px 156px auto 22px;
  overflow:visible;
}
body:not(.help-page).analysis-large-dock-active .plot-deck{
  min-height:calc(100vh - 248px);
  height:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  grid-template-rows:minmax(520px, calc(100vh - 248px)) minmax(560px, 70vh);
  overflow:visible;
  background:#07090d;
}
body:not(.help-page).analysis-large-dock-active .scope-card{
  grid-column:1 / 2;
  grid-row:1 / 2;
  min-height:520px;
}
body:not(.help-page).analysis-large-dock-active .field-card{
  grid-column:2 / 3;
  grid-row:1 / 2;
  min-height:520px;
  border-right:none;
}
body:not(.help-page).analysis-large-dock-active .analysis-card{
  grid-column:1 / -1;
  grid-row:2 / 3;
  min-height:560px;
  border-top:1px solid var(--color-border-soft);
  border-right:none;
}
body:not(.help-page).analysis-large-dock-active .analysis-label{
  height:28px;
  min-height:28px;
  padding:0 12px;
}
body:not(.help-page).analysis-large-dock-active .analysis-body,
body:not(.help-page).analysis-large-dock-active .spectrum-body{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px, .42fr);
  grid-template-rows:minmax(0,1fr) 28px;
  min-height:0;
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .analysis-frame,
body:not(.help-page).analysis-large-dock-active .spectrum-frame{
  grid-column:1 / 2;
  grid-row:1 / 2;
  min-height:0;
}
body:not(.help-page).analysis-large-dock-active .analysis-metrics,
body:not(.help-page).analysis-large-dock-active .spectrum-metrics{
  grid-column:1 / 2;
  grid-row:2 / 3;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  height:28px;
  min-height:28px;
}
body:not(.help-page).analysis-large-dock-active .analysis-metrics span,
body:not(.help-page).analysis-large-dock-active .spectrum-metrics span{
  height:28px;
  border-bottom:none;
  border-right:1px solid var(--color-border-soft);
}
body:not(.help-page).analysis-large-dock-active .analysis-metrics span:last-child,
body:not(.help-page).analysis-large-dock-active .spectrum-metrics span:last-child{ border-right:none; }
body:not(.help-page).analysis-large-dock-active .measurement-body--spectrum{
  grid-column:2 / 3;
  grid-row:1 / 3;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  min-height:0;
  overflow:hidden;
  border-top:none;
  border-left:1px solid var(--color-border-soft);
}
body:not(.help-page).analysis-large-dock-active .geometry-fingerprint-panel,
body:not(.help-page).analysis-large-dock-active .discovery-history-panel,
body:not(.help-page).analysis-large-dock-active .atlas-region-intelligence-panel,
body:not(.help-page).analysis-large-dock-active .atlas-genealogy-panel,
body:not(.help-page).analysis-large-dock-active .atlas-stats-panel,
body:not(.help-page).analysis-large-dock-active .atlas-observatory-panel{
  min-height:0;
  max-height:none;
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .discovery-history-list,
body:not(.help-page).analysis-large-dock-active .atlas-region-grid,
body:not(.help-page).analysis-large-dock-active .atlas-genealogy-list,
body:not(.help-page).analysis-large-dock-active .atlas-observatory-grid{
  max-height:none;
}
body:not(.help-page).analysis-view-landscape .measurement-grid,
body:not(.help-page).analysis-view-landscape .phase-table-wrap,
body:not(.help-page).analysis-view-constellation .measurement-grid,
body:not(.help-page).analysis-view-constellation .phase-table-wrap,
body:not(.help-page).analysis-view-discovery .phase-table-wrap,
body:not(.help-page).analysis-view-atlas .phase-table-wrap{
  display:none !important;
}
body:not(.help-page).analysis-large-dock-active .measurement-title{
  min-height:26px;
  height:26px;
}
body:not(.help-page).analysis-view-atlas .measurement-title{ display:none !important; }
body:not(.help-page).analysis-large-dock-active .atlas-inspector-tabs{
  min-height:28px;
  height:28px;
}
body:not(.help-page).analysis-large-dock-active .atlas-inspector-tab{
  height:20px;
  min-height:20px;
}@media (max-width:1180px){

  body:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-template-columns:1fr;
    grid-template-rows:460px 460px 620px;
  }
  body:not(.help-page).analysis-large-dock-active .scope-card,
  body:not(.help-page).analysis-large-dock-active .field-card,
  body:not(.help-page).analysis-large-dock-active .analysis-card{
    grid-column:1 / -1;
  }
  body:not(.help-page).analysis-large-dock-active .scope-card{ grid-row:1 / 2; }
  body:not(.help-page).analysis-large-dock-active .field-card{ grid-row:2 / 3; }
  body:not(.help-page).analysis-large-dock-active .analysis-card{ grid-row:3 / 4; }

}@media (max-width:820px){

  body:not(.help-page).analysis-large-dock-active .instrument-shell{
    grid-template-rows:auto 32px auto auto 22px;
  }
  body:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-template-rows:360px 360px 680px;
  }
  body:not(.help-page).analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-large-dock-active .spectrum-body{
    grid-template-columns:1fr;
    grid-template-rows:minmax(0,1fr) 76px 300px;
  }
  body:not(.help-page).analysis-large-dock-active .measurement-body--spectrum{
    grid-column:1 / 2;
    grid-row:3 / 4;
    border-left:none;
    border-top:1px solid var(--color-border-soft);
  }

}
body:not(.help-page).analysis-large-dock-active .instrument-shell,
body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
  height:auto;
  min-height:100vh;
  grid-template-rows:42px 96px 112px auto 22px;
  overflow:visible;
}
body:not(.help-page).analysis-large-dock-active .global-control-bar{
  height:96px;
  min-height:96px;
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .control-deck,
body:not(.help-page).analysis-large-dock-active.has-many-channels .control-deck,
body:not(.help-page).analysis-large-dock-active.control-view-primary .control-deck,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .control-deck,
body:not(.help-page).analysis-large-dock-active.control-view-utility .control-deck{
  height:112px;
  min-height:112px;
  grid-auto-rows:112px;
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .plot-deck{
  min-height:calc(100vh - 272px);
  grid-template-rows:minmax(520px, calc(100vh - 272px)) minmax(560px, 70vh);
}@media (max-width:1100px){

  body:not(.help-page).analysis-large-dock-active .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
    grid-template-rows:auto auto auto auto 22px;
  }
  body:not(.help-page).analysis-large-dock-active .global-control-bar,
  body:not(.help-page).analysis-large-dock-active .control-deck,
  body:not(.help-page).analysis-large-dock-active.has-many-channels .control-deck,
  body:not(.help-page).analysis-large-dock-active.control-view-primary .control-deck,
  body:not(.help-page).analysis-large-dock-active.control-view-secondary .control-deck,
  body:not(.help-page).analysis-large-dock-active.control-view-utility .control-deck{
    height:auto;
    min-height:0;
    overflow:visible;
  }

}@media (max-width:1180px){


}@media (max-width:1100px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).analysis-large-dock-active .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    height:auto;
    min-height:100vh;
    grid-template-rows:auto auto 106px auto 22px;
    overflow:visible;
  }
  body:not(.help-page) h1{
    font-size:13px;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  body:not(.help-page) .status-strip{ gap:4px; }
  body:not(.help-page) .readout{
    height:24px;
    grid-template-columns:auto minmax(0,1fr);
    gap:4px;
    padding:3px 5px;
  }
  body:not(.help-page) .readout span{ font-size:8px; }
  body:not(.help-page) .readout strong{ font-size:10px; }
  body:not(.help-page) .global-control-bar,
  body:not(.help-page).analysis-large-dock-active .global-control-bar{
    height:auto;
    min-height:0;
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    overflow:visible;
    background:#0f131a;
    border-bottom:1px solid var(--color-border-soft);
  }
  body:not(.help-page) .global-control-bar .collapsible-panel{
    flex:1 1 33.333%;
    min-width:0;
    height:auto;
    min-height:0;
    padding:0;
    border-right:1px solid var(--color-border-soft);
    border-bottom:1px solid var(--color-border-soft);
    overflow:hidden;
    background:#10151d;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel:nth-child(3){ border-right:none; }
  body:not(.help-page) .global-control-bar .collapsible-panel > .channel-title{
    min-height:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:6px;
    padding:0 8px;
    margin:0;
    background:#121821;
    border-bottom:1px solid rgba(79,91,110,.45);
  }
  body:not(.help-page) .global-control-bar .panel-title-text{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  body:not(.help-page) .global-control-bar .panel-toggle{
    grid-column:auto;
    width:48px;
    height:18px;
    min-height:18px;
    margin:0;
    padding:0 5px;
    font-size:8px;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel.is-collapsed{
    flex:1 1 33.333%;
    height:28px;
    min-height:28px;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel.is-collapsed > :not(.channel-title){
    display:none !important;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel:not(.is-collapsed){
    flex:1 1 100%;
    padding:6px 10px 8px;
    overflow:visible;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel:not(.is-collapsed) > .channel-title{
    margin:-6px -10px 6px;
  }
  body:not(.help-page) .global-control-bar .channel-count-control:not(.is-collapsed){
    display:grid;
    grid-template-columns:46px minmax(140px,1fr) 52px;
    grid-auto-rows:18px;
    row-gap:3px;
  }
  body:not(.help-page) .global-control-bar .audio-control:not(.is-collapsed){
    display:grid;
    grid-template-columns:46px minmax(160px,1fr) 58px;
    grid-auto-rows:18px;
    row-gap:3px;
  }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed){
    display:grid;
    grid-template-columns:42px minmax(120px,1fr) 58px 42px minmax(120px,1fr) 58px 64px;
    grid-auto-rows:18px;
    gap:3px 6px;
  }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .channel-title{ grid-column:1 / -1; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) label[for="timeDomainInput"]{ grid-column:1; grid-row:2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .time-stepper{ grid-column:2; grid-row:2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) #timeDomainValue{ grid-column:3; grid-row:2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .time-presets{ grid-column:1 / 4; grid-row:3 / span 2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) label[for="animationSpeedInput"]{ grid-column:4; grid-row:2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .speed-stepper{ grid-column:5; grid-row:2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) #animationSpeedValue{ grid-column:6; grid-row:2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .speed-presets{ grid-column:4 / 7; grid-row:3 / span 2; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) #toggleAnimation{ grid-column:7; grid-row:2 / 5; height:57px; min-height:57px; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).analysis-large-dock-active .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(272px,38vw);
    grid-template-columns:none;
    grid-auto-rows:106px;
    height:106px;
    min-height:106px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:thin;
  }
  body:not(.help-page) .control-deck .channel{
    height:106px;
    min-height:106px;
    min-width:272px;
    padding:6px 9px;
    border-right:1px solid var(--color-border-soft);
    border-bottom:none;
    overflow:hidden;
  }

}@media (max-width:760px){

  body:not(.help-page) .global-control-bar .collapsible-panel,
  body:not(.help-page) .global-control-bar .collapsible-panel.is-collapsed{
    flex:1 1 100%;
  }
  body:not(.help-page) .global-control-bar .collapsible-panel:nth-child(n){ border-right:none; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed){
    grid-template-columns:42px minmax(90px,1fr) 56px;
  }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .time-presets,
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .speed-presets,
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) #toggleAnimation{
    grid-column:1 / -1;
    grid-row:auto;
  }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) label[for="animationSpeedInput"]{ grid-column:1; grid-row:auto; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) .speed-stepper{ grid-column:2; grid-row:auto; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) #animationSpeedValue{ grid-column:3; grid-row:auto; }
  body:not(.help-page) .global-control-bar .time-control:not(.is-collapsed) #toggleAnimation{ height:22px; min-height:22px; }
  body:not(.help-page) .control-deck,
  body:not(.help-page).analysis-large-dock-active .control-deck,
  body:not(.help-page).has-many-channels .control-deck{
    grid-auto-columns:minmax(265px,86vw);
  }

}
.discovery-comparison-controls{
  position:absolute;
  top:6px;
  right:8px;
  z-index:5;
  display:flex;
  align-items:center;
  gap:6px;
  padding:5px 6px;
  border:1px solid rgba(79,91,110,.72);
  background:rgba(13,17,24,.86);
  box-shadow:0 10px 30px rgba(0,0,0,.24);
}
.discovery-comparison-controls label{
  color:var(--color-text-status-label);
  font-size:9px;
  letter-spacing:.08em;
}
.discovery-comparison-controls select{
  max-width:150px;
  height:20px;
  border:1px solid var(--control-input-border);
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
}
.discovery-comparison-controls button{
  grid-column:auto;
  width:auto;
  height:20px;
  min-height:20px;
  margin:0;
  padding:0 8px;
  font-size:9px;
}
body:not(.analysis-view-compare) #discoveryComparisonControls{ display:none !important; }@media (max-width:820px){

  .discovery-comparison-controls{ left:8px; right:8px; overflow:hidden; }
  .discovery-comparison-controls select{ min-width:0; max-width:none; flex:1 1 auto; }

}
.discovery-replay-controls{
  position:absolute;
  top:6px;
  right:8px;
  z-index:6;
  display:flex;
  align-items:center;
  gap:6px;
  max-width:calc(100% - 16px);
  padding:5px 6px;
  border:1px solid rgba(79,91,110,.72);
  background:rgba(13,17,24,.88);
  box-shadow:0 10px 30px rgba(0,0,0,.24);
}
.discovery-replay-controls label{
  color:var(--color-text-status-label);
  font-size:9px;
  letter-spacing:.08em;
}
.discovery-replay-controls select{
  max-width:135px;
  height:20px;
  border:1px solid var(--control-input-border);
  background:var(--control-input-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
}
.discovery-replay-controls button{
  grid-column:auto;
  width:auto;
  height:20px;
  min-height:20px;
  margin:0;
  padding:0 7px;
  font-size:9px;
}
.discovery-replay-controls input[type="range"]{
  width:110px;
  height:18px;
}
.discovery-replay-controls output{
  width:34px;
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  text-align:right;
}
body:not(.analysis-view-replay) #discoveryReplayControls{ display:none !important; }@media (max-width:980px){

  .discovery-replay-controls{ left:8px; right:8px; overflow:hidden; flex-wrap:wrap; }
  .discovery-replay-controls select{ min-width:0; max-width:none; flex:1 1 110px; }
  .discovery-replay-controls input[type="range"]{ flex:1 1 120px; }

}
.analysis-layout-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:18px;
  min-width:54px;
  padding:0 6px;
  border:1px solid var(--control-input-border);
  border-radius:1px;
  background:#10151d;
  color:#aeb8c8;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:700;
  letter-spacing:.07em;
  line-height:1;
  text-transform:uppercase;
  white-space:nowrap;
}
.analysis-layout-badge--simple{
  border-color:#3f5f4d;
  color:#c9f2d0;
  background:#101b15;
}
.analysis-layout-badge--map{
  border-color:#4c6078;
  color:#dcecff;
  background:#101923;
}
.analysis-layout-badge--heavy{
  border-color:#7c5d32;
  color:#ffe1a3;
  background:#211912;
}@media (max-width:1380px){

  .analysis-layout-badge{ min-width:46px; padding:0 4px; font-size:8px; }

}@media (max-width:820px){

  .analysis-layout-badge{ min-width:68px; }

}
body:not(.help-page).analysis-view-heatmap .phase-table-wrap{
  display:none !important;
}
body:not(.help-page).analysis-mode-heatmap .measurement-title{
  color:#ffe1a3;
}
body:not(.help-page).analysis-mode-heatmap .analysis-frame,
body:not(.help-page).analysis-mode-heatmap .spectrum-frame{
  min-height:0;
}
body:not(.help-page).analysis-mode-heatmap .measurement-body--spectrum{
  min-height:0;
}
body:not(.help-page) .global-control-bar{
  grid-template-columns:minmax(220px,.72fr) minmax(230px,.74fr) minmax(560px,1.75fr) minmax(300px,1fr);
}@media (max-width:1500px){

  body:not(.help-page) .global-control-bar{
    grid-template-columns:minmax(230px,1fr) minmax(230px,1fr);
    grid-auto-rows:96px;
    height:192px;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:42px 192px 112px minmax(0,1fr) 22px;
  }

}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 132px 112px minmax(0,1fr) 22px;
}
body:not(.help-page) .global-control-bar{
  height:132px;
  grid-template-columns:minmax(300px,.9fr) minmax(230px,.7fr) minmax(560px,1.7fr) minmax(300px,1fr);
  grid-auto-rows:132px;
  overflow:hidden;
}
body:not(.help-page) .global-control-bar .channel{
  height:132px;
  padding:8px 12px;
  overflow:hidden;
}@media (max-width:1500px){

  body:not(.help-page) .global-control-bar{
    grid-template-columns:minmax(300px,1fr) minmax(300px,1fr);
    grid-auto-rows:132px;
    height:264px;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 264px 112px minmax(0,1fr) 22px;
  }
  body:not(.help-page) .global-control-bar .time-control,
  body:not(.help-page) .global-control-bar .audio-control{
    border-top:1px solid var(--color-border-soft);
  }

}@media (max-width:820px){

  body:not(.help-page) .global-control-bar{
    grid-template-columns:1fr;
    height:auto;
    grid-auto-rows:auto;
    overflow:visible;
  }
  body:not(.help-page) .global-control-bar .channel{
    height:auto;
    min-height:132px;
  }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:auto auto auto 760px 22px;
  }

}
body:not(.help-page) .global-control-bar,
body:not(.help-page) .global-control-bar .channel{
  height:148px;
}
body:not(.help-page) .global-control-bar{
  grid-auto-rows:148px;
}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 148px 112px minmax(0,1fr) 22px;
}@media (max-width:1500px){

  body:not(.help-page) .global-control-bar{ grid-auto-rows:148px; height:296px; }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 296px 112px minmax(0,1fr) 22px;
  }

}
body:not(.help-page) .global-control-bar,
body:not(.help-page) .global-control-bar .channel{
  height:168px;
}
body:not(.help-page) .global-control-bar{
  grid-auto-rows:168px;
}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 168px 112px minmax(0,1fr) 22px;
}@media (max-width:1500px){

  body:not(.help-page) .global-control-bar{ grid-auto-rows:168px; height:336px; }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 336px 112px minmax(0,1fr) 22px;
  }

}@media (max-width:820px){


}
body:not(.help-page) .global-control-bar,
body:not(.help-page) .global-control-bar .channel{
  height:188px;
}
body:not(.help-page) .global-control-bar{
  grid-auto-rows:188px;
}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 188px 112px minmax(0,1fr) 22px;
}@media (max-width:1500px){

  body:not(.help-page) .global-control-bar{ grid-auto-rows:188px; height:376px; }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 376px 112px minmax(0,1fr) 22px;
  }

}
body:not(.help-page) .global-control-bar,
body:not(.help-page) .global-control-bar .channel{
  height:216px;
}
body:not(.help-page) .global-control-bar{
  grid-auto-rows:216px;
}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 216px 112px minmax(0,1fr) 22px;
}
.file-transport{
  display:none;
  grid-template-columns:repeat(4,minmax(0,.58fr)) minmax(74px,1.4fr);
  gap:4px;
  min-width:0;
}
.file-transport-button{
  grid-column:auto;
  height:22px;
  min-height:22px;
  margin:0;
  padding:0 4px;
  border:1px solid var(--control-border);
  border-radius:1px;
  background:var(--control-bg);
  color:var(--control-text);
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:8px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  line-height:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.file-transport-button:hover{ background:var(--control-bg-hover); border-color:var(--control-border-hover); color:#fff; }
.file-transport-button.is-active{ border-color:#8fd4ff; color:#dff2ff; background:#101923; }
.file-transport-button:disabled{ opacity:.38; cursor:not-allowed; }
.file-transport-time{
  height:22px;
  line-height:22px;
  padding:0 5px;
  border:1px solid var(--control-input-border);
  background:var(--control-input-bg);
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}@media (max-width:1500px){

  body:not(.help-page) .global-control-bar{ grid-auto-rows:216px; height:432px; }
  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-rows:42px 432px 112px minmax(0,1fr) 22px;
  }

}@media (max-width:820px){

  body:not(.help-page) .global-control-bar,
  body:not(.help-page) .global-control-bar .channel{ height:auto; }
  .file-transport{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .file-transport-time{ grid-column:1 / -1; }

}
#togglePlotFocus{ min-width:58px; }
body.plot-focus:not(.help-page) .instrument-shell,
body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px 0 0 minmax(0,1fr) 22px;
}
body.plot-focus:not(.help-page) .plot-deck{
  min-height:0;
}
body:not(.help-page)::after{
  content:"EDIT SOURCE restores controls · FOCUS gives plots the full observatory";
  position:fixed;
  right:10px;
  bottom:25px;
  z-index:20;
  pointer-events:none;
  padding:4px 7px;
  border:1px solid rgba(79,91,110,.55);
  background:rgba(11,15,22,.82);
  color:#8993a1;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  letter-spacing:.04em;
  opacity:0;
  transform:translateY(6px);
  transition:opacity 160ms ease, transform 160ms ease;
}
body.plot-focus:not(.help-page)::after{
  opacity:.95;
  transform:translateY(0);
}@media (max-width:1180px){

  #togglePlotFocus{ min-width:52px; }

}@media (max-width:760px){

  body:not(.help-page) .status-strip{ grid-column:1 / -1; }

}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  position:relative;
  grid-template-rows:42px minmax(0,1fr) 22px;
  grid-template-columns:1fr;
  overflow:hidden;
}
body:not(.help-page) .global-control-bar,
body:not(.help-page) .control-deck{
  position:absolute;
  left:0;
  z-index:12;
  width:340px;
  min-width:0;
  margin:0;
  border-right:1px solid var(--color-border-soft);
  background:#0d1118;
  overflow-x:hidden;
  overflow-y:auto;
  scrollbar-width:thin;
  scrollbar-color:var(--control-border) #0d1118;
}
body:not(.help-page) .global-control-bar{
  top:42px;
  height:338px;
  display:block;
  padding:0;
  border-bottom:1px solid var(--color-border-soft);
}
body:not(.help-page) .control-deck{
  top:380px;
  bottom:22px;
  height:auto;
  display:block;
}
body:not(.help-page) .global-control-bar::before,
body:not(.help-page) .control-deck::before{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  height:22px;
  padding:0 10px;
  border-bottom:1px solid var(--color-border-soft);
  background:#10151d;
  color:#8fd4ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
body:not(.help-page) .global-control-bar::before{ content:"Source Dock · Signal / Time / Audio"; }
body:not(.help-page) .control-deck::before{ content:"Channel Dock · Generator Channels"; }
body:not(.help-page) .global-control-bar > .channel,
body:not(.help-page) .control-deck > .channel{
  width:100%;
  min-width:0;
  height:auto;
  min-height:0;
  overflow:visible;
  border-right:none;
  border-bottom:1px solid var(--color-border-soft);
  background:var(--control-input-bg-focus);
}
body:not(.help-page) .global-control-bar > .time-control{
  min-height:174px;
}
body:not(.help-page) .global-control-bar > .audio-control,
body:not(.help-page) .global-control-bar > .channel-count-control{
  min-height:92px;
}
body:not(.help-page) .control-deck > .channel:not(.master){
  min-height:108px;
}
body:not(.help-page) .file-transport{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
body:not(.help-page) .file-transport-time{
  grid-column:1 / -1;
}
body:not(.help-page) .plot-deck{
  grid-row:2 / 3;
  margin-left:340px;
  width:calc(100vw - 340px);
  height:100%;
  min-height:0;
}
body:not(.help-page) #toggleCockpitEdit{
  color:#dff2ff;
  border-color:#8fd4ff;
  background:#101923;
}
body.plot-focus:not(.help-page) .instrument-shell,
body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).control-view-utility .instrument-shell{
  grid-template-rows:42px minmax(0,1fr) 22px;
}
body.plot-focus:not(.help-page) .global-control-bar,
body.plot-focus:not(.help-page) .control-deck{
  display:none !important;
}
body.plot-focus:not(.help-page) #toggleCockpitEdit{
  border-color:var(--control-border);
  color:#aeb8c8;
  background:#141922;
}
body.plot-focus:not(.help-page) #togglePlotFocus{
  color:var(--control-text-active);
  border-color:#89d185;
  background:#132116;
}@media (max-width:1280px){

  body:not(.help-page) .global-control-bar,
  body:not(.help-page) .control-deck{ width:300px; }

}@media (max-width:820px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell{
    grid-template-rows:auto auto auto minmax(0,760px) 22px;
    overflow:auto;
  }
  body:not(.help-page) .global-control-bar,
  body:not(.help-page) .control-deck{
    position:relative;
    top:auto;
    bottom:auto;
    left:auto;
    width:100%;
    height:auto;
    max-height:none;
    overflow:visible;
  }

}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  grid-template-rows:42px minmax(0,1fr) 22px;
  overflow:hidden;
}
body:not(.help-page) .global-control-bar,
body:not(.help-page) .control-deck,
body:not(.help-page).has-many-channels .control-deck,
body:not(.help-page).control-view-primary .control-deck,
body:not(.help-page).control-view-secondary .control-deck,
body:not(.help-page).control-view-utility .control-deck{
  position:static;
  display:block;
  width:100%;
  min-width:0;
  height:auto;
  min-height:0;
  max-height:none;
  margin:0;
  padding:0;
  overflow:visible;
  border-right:none;
  border-bottom:none;
  background:#0d1118;
}
body:not(.help-page) .global-control-bar::before,
body:not(.help-page) .control-deck::before{
  position:sticky;
  top:24px;
  z-index:35;
  display:flex;
  align-items:center;
  height:22px;
  padding:0 10px;
  border-top:1px solid rgba(79,91,110,.26);
  border-bottom:1px solid var(--color-border-soft);
  background:#10151d;
  color:#8fd4ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:9px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
body:not(.help-page) .global-control-bar::before{ content:"Signal / Transport / Time / Audio"; }
body:not(.help-page) .control-deck::before{ content:"Generator Channels CH1–CH6"; }
body:not(.help-page) .plot-deck{
  grid-column:2 / 3;
  grid-row:2 / 3;
  margin-left:0;
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
}
body.plot-focus:not(.help-page) .instrument-shell,
body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).control-view-utility .instrument-shell{
  grid-template-columns:0 minmax(0,1fr);
  grid-template-rows:42px minmax(0,1fr) 22px;
}
body.plot-focus:not(.help-page) .plot-deck{
  grid-column:1 / -1;
  margin-left:0;
  width:100vw;
}@media (max-width:1280px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-columns:320px minmax(0,1fr);
  }

}@media (max-width:820px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell{
    grid-template-columns:1fr;
    grid-template-rows:auto auto minmax(0,760px) 22px;
    overflow:auto;
  }
  body:not(.help-page) .plot-deck{
    grid-column:1;
    grid-row:3;
    width:100%;
  }

}
body:not(.help-page) .plot-deck{
  z-index:1;
}
body:not(.help-page).analysis-large-dock-active,
html body:not(.help-page).analysis-large-dock-active{
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .instrument-shell,
body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
  height:100vh;
  min-height:0;
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  grid-template-rows:42px minmax(0,1fr) 22px;
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .plot-deck{
  grid-column:2 / 3;
  grid-row:2 / 3;
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
  margin:0;
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(420px,1.18fr);
  grid-template-rows:minmax(0,1fr) minmax(250px,40%);
  overflow:hidden;
  background:#07090d;
}
body:not(.help-page).analysis-large-dock-active .scope-card{
  grid-column:1 / 2;
  grid-row:1 / 2;
  min-height:0;
  height:auto;
}
body:not(.help-page).analysis-large-dock-active .field-card{
  grid-column:2 / 3;
  grid-row:1 / 2;
  min-height:0;
  height:auto;
  border-right:none;
}
body:not(.help-page).analysis-large-dock-active .analysis-card{
  grid-column:1 / -1;
  grid-row:2 / 3;
  min-height:0;
  height:auto;
  border-top:1px solid var(--color-border-soft);
  border-right:none;
}
body:not(.help-page).analysis-large-dock-active .global-control-bar,
body:not(.help-page).analysis-large-dock-active .control-deck,
body:not(.help-page).analysis-large-dock-active.has-many-channels .control-deck,
body:not(.help-page).analysis-large-dock-active.control-view-primary .control-deck,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .control-deck,
body:not(.help-page).analysis-large-dock-active.control-view-utility .control-deck{
  height:auto;
  min-height:0;
  max-height:none;
  overflow:visible;
  display:block;
  grid-auto-rows:auto;
}
body:not(.help-page).analysis-large-dock-active .analysis-body,
body:not(.help-page).analysis-large-dock-active .spectrum-body{
  min-height:0;
  height:100%;
  overflow:hidden;
}
body:not(.help-page).analysis-large-dock-active .analysis-frame,
body:not(.help-page).analysis-large-dock-active .spectrum-frame{
  min-height:0;
}
body.plot-focus:not(.help-page).analysis-large-dock-active .instrument-shell{
  grid-template-columns:0 minmax(0,1fr);
}
body.plot-focus:not(.help-page).analysis-large-dock-active .plot-deck{
  grid-column:1 / -1;
  width:100vw;
}@media (max-width:1280px){

  body:not(.help-page).analysis-large-dock-active .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
    grid-template-columns:320px minmax(0,1fr);
  }
  body:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-template-columns:minmax(260px,.72fr) minmax(360px,1.28fr);
  }

}@media (max-width:820px){

  body:not(.help-page).analysis-large-dock-active .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
  body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
    grid-template-columns:1fr;
    grid-template-rows:auto auto minmax(0,760px) 22px;
    overflow:auto;
    height:auto;
  }
  body:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-column:1;
    grid-row:3;
    grid-template-columns:1fr;
    grid-template-rows:260px 300px 420px;
  }
  body:not(.help-page).analysis-large-dock-active .scope-card,
  body:not(.help-page).analysis-large-dock-active .field-card,
  body:not(.help-page).analysis-large-dock-active .analysis-card{
    grid-column:1;
  }
  body:not(.help-page).analysis-large-dock-active .scope-card{ grid-row:1; }
  body:not(.help-page).analysis-large-dock-active .field-card{ grid-row:2; }
  body:not(.help-page).analysis-large-dock-active .analysis-card{ grid-row:3; }

}
body:not(.help-page) .header-run-button{
  border-color:#4d6078;
  background:#111a26;
  color:#dff2ff;
}
body:not(.help-page) .header-run-button .run-icon{ color:#89d185; }
body:not(.help-page) .header-run-button.is-active,
body:not(.help-page) #toggleAnimation.header-run-button.is-active{
  border-color:#a65d66;
  background:#251b1d;
  color:#ffd9dc;
}
body:not(.help-page) .header-run-button.is-active .run-icon{ color:#e06c75; }@media (max-width:1180px){


}@media (max-width:1500px){

  :root{ --source-dock-width:420px; }

}@media (max-width:1180px){

  :root{ --source-dock-width:360px; }

}
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .plot-deck{
  grid-template-columns:minmax(560px,1.45fr) minmax(460px,.92fr) minmax(320px,.68fr);
  grid-template-rows:minmax(0,1fr);
}
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .scope-card{
  grid-column:1 / 2;
  grid-row:1 / 2;
}
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .field-card{
  grid-column:2 / 3;
  grid-row:1 / 2;
  min-width:0;
}
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .analysis-card,
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .spectrum-card,
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .measurement-card{
  grid-column:3 / 4;
  grid-row:1 / 2;
  min-width:0;
}
body.plot-focus:not(.help-page).analysis-large-dock-active .plot-deck{
  grid-template-columns:minmax(620px,1.38fr) minmax(520px,.95fr);
  grid-template-rows:minmax(0,.48fr) minmax(300px,.52fr);
}
body.plot-focus:not(.help-page).analysis-large-dock-active .scope-card{
  grid-column:1 / 2;
  grid-row:1 / 2;
}
body.plot-focus:not(.help-page).analysis-large-dock-active .field-card{
  grid-column:2 / 3;
  grid-row:1 / 2;
}
body.plot-focus:not(.help-page).analysis-large-dock-active .analysis-card{
  grid-column:1 / -1;
  grid-row:2 / 3;
}
body.plot-focus:not(.help-page) .field-label,
body.plot-focus:not(.help-page) .analysis-label{
  min-width:0;
  overflow:hidden;
}
body.plot-focus:not(.help-page) .field-controls,
body.plot-focus:not(.help-page) .analysis-controls{
  flex:0 1 auto;
  min-width:0;
}@media (max-width:1380px){

  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .plot-deck{
    grid-template-columns:minmax(0,1.2fr) minmax(0,.9fr);
    grid-template-rows:minmax(0,1fr) minmax(240px,.38fr);
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .scope-card{ grid-column:1 / 2; grid-row:1 / 2; }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .field-card{ grid-column:2 / 3; grid-row:1 / 2; }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .analysis-card,
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .spectrum-card{ grid-column:1 / -1; grid-row:2 / 3; }

}
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .analysis-body,
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .spectrum-body{
  grid-template-columns:minmax(480px,.92fr) minmax(520px,.70fr);
}
body.plot-focus:not(.help-page).analysis-view-atlas.analysis-large-dock-active .analysis-body,
body.plot-focus:not(.help-page).analysis-view-atlas.analysis-large-dock-active .spectrum-body{
  grid-template-columns:minmax(560px,.88fr) minmax(600px,.74fr);
}
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .measurement-body--spectrum{
  overflow:auto;
  min-width:520px;
}
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .analysis-frame,
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .spectrum-frame{
  max-width:100%;
  overflow:hidden;
}
body:not(.help-page).analysis-view-atlas .atlas-inspector-tabs,
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .atlas-inspector-tabs{
  display:grid;
  grid-template-columns:repeat(4,minmax(86px,1fr));
  gap:4px;
  height:auto;
  min-height:48px;
  max-height:none;
  padding:4px;
  align-items:stretch;
  overflow:visible;
}
body:not(.help-page).analysis-view-atlas .atlas-inspector-tab,
body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .atlas-inspector-tab{
  height:22px;
  min-height:22px;
  min-width:0;
  padding:0 6px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
body:not(.help-page).analysis-view-atlas .atlas-observatory-grid,
body:not(.help-page).analysis-view-atlas .atlas-stats-grid,
body:not(.help-page).analysis-view-atlas .geometry-fingerprint-grid{
  min-width:0;
}
body:not(.help-page).analysis-view-atlas .atlas-observatory-section,
body:not(.help-page).analysis-view-atlas .atlas-observatory-card,
body:not(.help-page).analysis-view-atlas .atlas-family-row,
body:not(.help-page).analysis-view-atlas .atlas-genealogy-node{
  min-width:0;
  overflow-wrap:anywhere;
}
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum *{
  box-sizing:border-box;
}@media (max-width:1500px){

  body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .spectrum-body,
  body.plot-focus:not(.help-page).analysis-view-atlas.analysis-large-dock-active .analysis-body,
  body.plot-focus:not(.help-page).analysis-view-atlas.analysis-large-dock-active .spectrum-body{
    grid-template-columns:minmax(420px,.82fr) minmax(460px,.74fr);
  }
  body:not(.help-page).analysis-view-atlas .atlas-inspector-tabs,
  body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .atlas-inspector-tabs{
    grid-template-columns:repeat(3,minmax(82px,1fr));
    min-height:74px;
  }

}@media (max-width:1180px){

  body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .spectrum-body{
    grid-template-columns:1fr;
    grid-template-rows:minmax(360px,1fr) minmax(420px,.9fr) 28px;
    overflow:auto;
  }
  body:not(.help-page).analysis-view-atlas.analysis-large-dock-active .measurement-body--spectrum{
    grid-column:1 / -1;
    grid-row:2 / 3;
    min-width:0;
    border-left:none;
    border-top:1px solid var(--color-border-soft);
  }

}
body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .analysis-body,
body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .spectrum-body,
body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .analysis-body,
body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .spectrum-body{
  grid-template-columns:minmax(500px,.90fr) minmax(500px,.72fr);
}
body.plot-focus:not(.help-page).analysis-view-discovery.analysis-large-dock-active .analysis-body,
body.plot-focus:not(.help-page).analysis-view-discovery.analysis-large-dock-active .spectrum-body,
body.plot-focus:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .analysis-body,
body.plot-focus:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .spectrum-body{
  grid-template-columns:minmax(560px,.88fr) minmax(600px,.76fr);
}
body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .measurement-body--spectrum,
body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .measurement-body--spectrum{
  min-width:500px;
  overflow:auto;
}
body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .analysis-frame,
body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .spectrum-frame,
body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .analysis-frame,
body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .spectrum-frame{
  max-width:100%;
  overflow:hidden;
}
body:not(.help-page).analysis-view-discovery .measurement-title,
body:not(.help-page).analysis-view-heatmap .measurement-title{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:6px;
  min-width:0;
  height:auto;
  min-height:26px;
}
body:not(.help-page).analysis-view-discovery .measurement-title > span:first-child,
body:not(.help-page).analysis-view-heatmap .measurement-title > span:first-child{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
body:not(.help-page).analysis-view-discovery .discovery-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(96px,1fr));
  gap:4px;
  min-width:200px;
  justify-self:end;
}
body:not(.help-page).analysis-view-discovery .discovery-actions button{
  width:100%;
  min-width:0;
  height:22px;
  min-height:22px;
  padding:0 6px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
body:not(.help-page).analysis-view-discovery .discovery-history-actions{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
body:not(.help-page).analysis-view-discovery .discovery-history-actions button{
  height:22px;
  min-height:22px;
  font-size:8px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
body:not(.help-page).analysis-view-discovery .geometry-fingerprint-grid,
body:not(.help-page).analysis-view-discovery .discovery-history-panel,
body:not(.help-page).analysis-view-heatmap .geometry-fingerprint-grid,
body:not(.help-page).analysis-view-heatmap .discovery-history-panel,
body:not(.help-page).analysis-view-heatmap .atlas-region-grid,
body:not(.help-page).analysis-view-heatmap .atlas-observatory-grid{
  min-width:0;
}
body:not(.help-page).analysis-view-discovery .discovery-history-entry,
body:not(.help-page).analysis-view-discovery .discovery-history-line,
body:not(.help-page).analysis-view-heatmap .discovery-history-entry,
body:not(.help-page).analysis-view-heatmap .atlas-family-row,
body:not(.help-page).analysis-view-heatmap .atlas-observatory-card{
  min-width:0;
  overflow-wrap:anywhere;
}
body:not(.help-page).analysis-view-discovery .measurement-body--spectrum *,
body:not(.help-page).analysis-view-heatmap .measurement-body--spectrum *{
  box-sizing:border-box;
}@media (max-width:1500px){

  body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .spectrum-body,
  body.plot-focus:not(.help-page).analysis-view-discovery.analysis-large-dock-active .analysis-body,
  body.plot-focus:not(.help-page).analysis-view-discovery.analysis-large-dock-active .spectrum-body,
  body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .spectrum-body,
  body.plot-focus:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .analysis-body,
  body.plot-focus:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .spectrum-body{
    grid-template-columns:minmax(420px,.82fr) minmax(460px,.76fr);
  }
  body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .measurement-body--spectrum,
  body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .measurement-body--spectrum{
    min-width:460px;
  }

}@media (max-width:1180px){

  body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .spectrum-body,
  body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .analysis-body,
  body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .spectrum-body{
    grid-template-columns:1fr;
    grid-template-rows:minmax(360px,1fr) minmax(420px,.9fr) 28px;
    overflow:auto;
  }
  body:not(.help-page).analysis-view-discovery.analysis-large-dock-active .measurement-body--spectrum,
  body:not(.help-page).analysis-view-heatmap.analysis-large-dock-active .measurement-body--spectrum{
    grid-column:1 / -1;
    grid-row:2 / 3;
    min-width:0;
    border-left:none;
    border-top:1px solid var(--color-border-soft);
  }

}
.geometry-similarity-panel{
  margin-top:7px;
  border-top:1px solid rgba(79,91,110,.42);
  background:rgba(7,10,15,.28);
}
.geometry-similarity-title{
  height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  color:var(--color-text-muted);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(79,91,110,.34);
}
.geometry-similarity-title strong{
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:.04em;
}
.geometry-similarity-list{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  min-height:44px;
}
.geometry-similarity-row{
  min-width:0;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 8px;
  border-bottom:1px solid rgba(79,91,110,.28);
  font-size:10px;
}
.geometry-similarity-row span{
  min-width:0;
  display:flex;
  align-items:baseline;
  gap:7px;
}
.geometry-similarity-row strong,
.geometry-similarity-row b{
  color:#b9d7ff;
  font-family:"Roboto Mono","Consolas",monospace;
  font-weight:650;
  white-space:nowrap;
}
.geometry-similarity-row em{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#aeb8c7;
  font-style:normal;
}
.geometry-similarity-lineage{
  padding:6px 8px 7px;
  color:#8f98a6;
  font-size:10px;
  line-height:1.35;
  border-top:1px solid rgba(79,91,110,.28);
}
body:not(.help-page).analysis-large-dock-active .geometry-similarity-row{ height:22px; }
body:not(.help-page).analysis-large-dock-active .geometry-similarity-lineage{ font-size:9.5px; }@media (max-width:820px){

  .geometry-similarity-row{ height:auto; min-height:24px; }
  .geometry-similarity-lineage{ font-size:9.5px; }

}
.geometry-similarity-list{ max-height:96px; overflow:hidden; }
.geometry-similarity-row em{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.em-diagnostics-value{ overflow:hidden; text-overflow:ellipsis; }
body.analysis-large-dock-active .geometry-similarity-panel{ contain:layout paint; }
#plot,
#plot2D,
#plotSpectrum,
.js-plotly-plot,
.plotly,
.plot-container {
  touch-action: none;
}@media (max-width:1500px){


}@media (max-width:1180px){


}
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell,
body:not(.help-page).analysis-large-dock-active .instrument-shell,
body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
  grid-template-rows:48px minmax(0,1fr) 22px;
}@media (max-width:1180px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell,
  body:not(.help-page).analysis-large-dock-active .instrument-shell{
    grid-template-rows:auto minmax(0,1fr) 22px;
  }

}
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum{
  grid-template-rows:auto minmax(0,1fr);
}
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory{
  grid-template-rows:auto minmax(0,1fr);
}
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .measurement-grid,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .geometry-fingerprint-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .discovery-history-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .atlas-region-intelligence-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .atlas-genealogy-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .atlas-stats-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-observatory .phase-table-wrap{
  display:none !important;
}
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-fingerprint .atlas-observatory-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-region .atlas-observatory-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-genealogy .atlas-observatory-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-history .atlas-observatory-panel,
body:not(.help-page).analysis-view-atlas .measurement-body--spectrum.atlas-panel-stats .atlas-observatory-panel{
  display:none !important;
}
body:not(.help-page).analysis-view-atlas .atlas-observatory-panel{
  min-height:0;
  height:100%;
}
body:not(.help-page).analysis-view-atlas .atlas-observatory-grid{
  height:100%;
  align-content:stretch;
}
body.plot-focus:not(.help-page) .instrument-shell,
body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).control-view-utility .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
  grid-template-rows:48px minmax(0,1fr) 22px;
}
body.plot-focus:not(.help-page) .plot-deck{
  grid-row:2 / 3;
}
body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .plot-deck{
  grid-template-columns:minmax(540px,1.34fr) minmax(430px,.88fr) minmax(380px,.78fr);
}
body.plot-focus:not(.help-page) .plot-label,
body.plot-focus:not(.help-page) .scope-toolbar{
  padding-left:8px;
  padding-right:8px;
}
body.plot-focus:not(.help-page) .plot-note,
body.plot-focus:not(.help-page) #analysisPanelNote{
  display:none !important;
}
body.plot-focus:not(.help-page) #analysisPanelTitle{
  flex:1 1 72px;
  min-width:0;
  max-width:none;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
body.plot-focus:not(.help-page) .analysis-controls,
body.plot-focus:not(.help-page) .field-controls{
  gap:4px;
  flex:0 0 auto;
}
body.plot-focus:not(.help-page) .analysis-controls label{
  display:none !important;
}
body.plot-focus:not(.help-page) #analysisMode{
  min-width:78px;
  max-width:92px;
  height:18px;
}
body.plot-focus:not(.help-page) .analysis-layout-badge{
  min-width:48px;
  padding:0 4px;
  font-size:8px;
  letter-spacing:.04em;
  flex:0 0 auto;
}
body.plot-focus:not(.help-page) .scope-title{
  flex:1 1 auto;
  min-width:0;
}
body.plot-focus:not(.help-page) .scope-channels{
  gap:4px;
}
body.plot-focus:not(.help-page) .scope-chip{
  padding:0 5px;
}@media (max-width:1500px){

  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .plot-deck{
    grid-template-columns:minmax(0,1.2fr) minmax(0,.9fr);
    grid-template-rows:minmax(0,1fr) minmax(240px,.38fr);
  }

}@media (min-width:1381px) and (max-width:1500px){

  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .plot-deck{
    grid-template-columns:minmax(0,1.2fr) minmax(0,.9fr);
    grid-template-rows:minmax(0,1fr) minmax(240px,.38fr);
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .scope-card{
    grid-column:1 / 2;
    grid-row:1 / 2;
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .field-card{
    grid-column:2 / 3;
    grid-row:1 / 2;
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .analysis-card,
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .spectrum-card{
    grid-column:1 / -1;
    grid-row:2 / 3;
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .spectrum-body{
    grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
    grid-template-rows:minmax(0,1fr) 25px;
  }

}
body.plot-focus:not(.help-page) .plot-card{
  border-color:rgba(143,212,255,.16);
  box-shadow:inset 0 0 0 1px rgba(143,212,255,.045);
}
body.plot-focus:not(.help-page) .plot-card + .plot-card{
  box-shadow:inset 1px 0 0 rgba(143,212,255,.08), inset 0 0 0 1px rgba(143,212,255,.04);
}
body.plot-focus:not(.help-page) .scope-title,
body.plot-focus:not(.help-page) .plot-label,
body.plot-focus:not(.help-page) .measurement-title{
  height:22px;
  min-height:22px;
  padding-left:8px;
  padding-right:8px;
  font-size:clamp(8px,.62vw,10px);
  letter-spacing:.055em;
}
body.plot-focus:not(.help-page) .plot-note,
body.plot-focus:not(.help-page) #fieldModeStatus{
  display:none !important;
}
body.plot-focus:not(.help-page) .scope-toolbar,
body.plot-focus:not(.help-page) .plot-label{
  background:linear-gradient(180deg,#111822,#0c1118);
}
body.plot-focus:not(.help-page) .field-controls label,
body.plot-focus:not(.help-page) .analysis-controls label{
  font-size:8px;
  letter-spacing:.04em;
}
body.plot-focus:not(.help-page) .field-controls select,
body.plot-focus:not(.help-page) .analysis-controls select{
  min-width:70px;
  max-width:90px;
  height:17px;
  font-size:9px;
}
body.plot-focus:not(.help-page) .field-toggle{
  min-width:38px;
  height:17px;
  min-height:17px;
  padding:0 4px;
}
body.plot-focus:not(.help-page).analysis-view-spectrum:not(.analysis-large-dock-active) .plot-deck{
  grid-template-columns:minmax(430px,1.08fr) minmax(390px,.96fr) minmax(440px,1.12fr);
}
body.plot-focus:not(.help-page).analysis-view-phasor:not(.analysis-large-dock-active) .plot-deck{
  grid-template-columns:minmax(450px,1.12fr) minmax(430px,1.04fr) minmax(380px,.9fr);
}
body.plot-focus:not(.help-page).analysis-view-lissajous:not(.analysis-large-dock-active) .plot-deck,
body.plot-focus:not(.help-page).polarization-orbital:not(.analysis-large-dock-active) .plot-deck{
  grid-template-columns:minmax(430px,1.02fr) minmax(500px,1.22fr) minmax(330px,.76fr);
}@media (min-width:1381px) and (max-width:1540px){

  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .plot-deck{
    grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);
    grid-template-rows:minmax(0,.58fr) minmax(240px,.42fr);
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .scope-card{
    grid-column:1 / 2;
    grid-row:1 / 2;
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .field-card{
    grid-column:2 / 3;
    grid-row:1 / 2;
  }
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .analysis-card,
  body.plot-focus:not(.help-page):not(.analysis-large-dock-active) .spectrum-card{
    grid-column:1 / -1;
    grid-row:2 / 3;
  }
  body.plot-focus:not(.help-page) .analysis-body,
  body.plot-focus:not(.help-page) .spectrum-body{
    grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
    grid-template-rows:minmax(0,1fr) 24px;
  }
  body.plot-focus:not(.help-page) .analysis-frame,
  body.plot-focus:not(.help-page) .spectrum-frame{ grid-column:1 / 2; grid-row:1 / 2; }
  body.plot-focus:not(.help-page) .analysis-metrics,
  body.plot-focus:not(.help-page) .spectrum-metrics{ grid-column:1 / 2; grid-row:2 / 3; }
  body.plot-focus:not(.help-page) .measurement-body--spectrum{ grid-column:2 / 3; grid-row:1 / 3; }

}@media (max-width:1540px){

  body.plot-focus:not(.help-page) .readout{
    padding-left:6px;
    padding-right:6px;
  }

}
body.plot-focus:not(.help-page) .scope-metrics{
  height:24px;
  background:#0d131b;
}
body.plot-focus:not(.help-page) .scope-metrics span,
body.plot-focus:not(.help-page) .spectrum-metrics span,
body.plot-focus:not(.help-page) .measurement-grid span{
  background:linear-gradient(180deg,rgba(18,24,33,.9),rgba(10,14,20,.94));
}
body.plot-focus:not(.help-page) .scope-metrics b,
body.plot-focus:not(.help-page) .spectrum-metrics b,
body.plot-focus:not(.help-page) .measurement-grid b{
  font-size:8px;
  letter-spacing:.05em;
}
body.plot-focus:not(.help-page) .scope-metrics strong,
body.plot-focus:not(.help-page) .spectrum-metrics strong,
body.plot-focus:not(.help-page) .measurement-grid strong{
  font-size:9px;
}
body.plot-focus:not(.help-page) .plot-deck{
  background:
    linear-gradient(to right,rgba(79,91,110,.06) 1px,transparent 1px),
    linear-gradient(to bottom,rgba(79,91,110,.05) 1px,transparent 1px),
    #05080c;
  background-size:64px 64px,64px 64px,100% 100%;
}@media (max-width:1700px){

  body.plot-focus:not(.help-page) .instrument-shell,
  body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
  body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
  body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
  body.plot-focus:not(.help-page).control-view-utility .instrument-shell,
  body.plot-focus:not(.help-page).analysis-large-dock-active .instrument-shell,
  body.plot-focus:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
  body.plot-focus:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
  body.plot-focus:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
  body.plot-focus:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
    width:100vw;
    max-width:100vw;
    height:100svh;
    min-height:0;
    overflow:hidden;
    grid-template-columns:0 minmax(0,1fr);
    grid-template-rows:48px minmax(0,1fr) 20px;
  }
  body.plot-focus:not(.help-page) .plot-deck,
  body.plot-focus:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-column:1 / -1;
    grid-row:2 / 3;
    width:100%;
    max-width:100%;
    min-width:0;
    height:100%;
    min-height:0;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    grid-template-rows:minmax(0,.58fr) minmax(250px,.42fr);
    overflow:hidden;
  }
  body.plot-focus:not(.help-page) .scope-card,
  body.plot-focus:not(.help-page).analysis-large-dock-active .scope-card{
    grid-column:1 / 2;
    grid-row:1 / 2;
    width:100%;
    height:auto;
    min-height:0;
  }
  body.plot-focus:not(.help-page) .field-card,
  body.plot-focus:not(.help-page).analysis-large-dock-active .field-card{
    grid-column:2 / 3;
    grid-row:1 / 2;
    width:100%;
    height:auto;
    min-height:0;
  }
  body.plot-focus:not(.help-page) .analysis-card,
  body.plot-focus:not(.help-page) .spectrum-card,
  body.plot-focus:not(.help-page).analysis-large-dock-active .analysis-card,
  body.plot-focus:not(.help-page).analysis-large-dock-active .spectrum-card{
    grid-column:1 / -1;
    grid-row:2 / 3;
    width:100%;
    height:auto;
    min-height:0;
    border-top:1px solid var(--color-border-soft);
    border-right:none;
  }
  body.plot-focus:not(.help-page) .analysis-body,
  body.plot-focus:not(.help-page) .spectrum-body{
    display:grid;
    grid-template-columns:minmax(0,1.28fr) minmax(300px,.72fr);
    grid-template-rows:minmax(0,1fr) 24px;
    min-height:0;
    height:100%;
    overflow:hidden;
  }
  body.plot-focus:not(.help-page) .analysis-frame,
  body.plot-focus:not(.help-page) .spectrum-frame{
    grid-column:1 / 2;
    grid-row:1 / 2;
    min-height:0;
  }
  body.plot-focus:not(.help-page) .analysis-metrics,
  body.plot-focus:not(.help-page) .spectrum-metrics{
    grid-column:1 / 2;
    grid-row:2 / 3;
    min-height:24px;
    height:24px;
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  body.plot-focus:not(.help-page) .measurement-body--spectrum{
    grid-column:2 / 3;
    grid-row:1 / 3;
    min-height:0;
    overflow:hidden;
    border-left:1px solid var(--color-border-soft);
    border-top:none;
  }

}@media (max-width:1500px){

  body.plot-focus:not(.help-page) .plot-deck,
  body.plot-focus:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-template-rows:minmax(0,.55fr) minmax(270px,.45fr);
  }
  body.plot-focus:not(.help-page) .analysis-body,
  body.plot-focus:not(.help-page) .spectrum-body{
    grid-template-columns:minmax(0,1.16fr) minmax(280px,.84fr);
  }

}@media (max-width:1300px){

  body.plot-focus:not(.help-page) .plot-deck,
  body.plot-focus:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    grid-template-rows:minmax(0,.50fr) minmax(280px,.50fr);
  }
  body.plot-focus:not(.help-page) .analysis-body,
  body.plot-focus:not(.help-page) .spectrum-body{
    grid-template-columns:minmax(0,1.1fr) minmax(250px,.9fr);
  }
  body.plot-focus:not(.help-page) .scope-title,
  body.plot-focus:not(.help-page) .plot-label{
    font-size:8px;
  }

}@media (max-width:1100px){

  body.plot-focus:not(.help-page) .instrument-shell,
  body.plot-focus:not(.help-page).analysis-large-dock-active .instrument-shell{
    grid-template-rows:62px minmax(0,1fr) 20px;
  }
  body.plot-focus:not(.help-page) .readout{
    height:22px;
    min-height:22px;
    max-height:22px;
  }
  body.plot-focus:not(.help-page) .plot-deck,
  body.plot-focus:not(.help-page).analysis-large-dock-active .plot-deck{
    grid-template-rows:minmax(0,.48fr) minmax(250px,.52fr);
  }
  body.plot-focus:not(.help-page) .analysis-body,
  body.plot-focus:not(.help-page) .spectrum-body{
    grid-template-columns:minmax(0,1fr) minmax(220px,.82fr);
  }

}@media (max-width:1500px){


}@media (max-width:1320px){


}@media (max-width:1180px){


}@media (max-width:980px){


}@media (max-width:820px){


}@media (max-width:1500px){


}@media (max-width:1180px){


}@media (max-width:1280px){


}@media (max-width:1280px){


}

body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell,
body:not(.help-page).analysis-large-dock-active .instrument-shell,
body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{
  grid-template-columns:var(--source-dock-width) minmax(0,1fr);
}
body.plot-focus:not(.help-page) .instrument-shell,
body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).control-view-utility .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active .instrument-shell{
  grid-template-columns:0 minmax(0,1fr);
}@media (max-width:1500px){
 :root{ --source-dock-width:440px; } 
}@media (max-width:1280px){
 :root{ --source-dock-width:420px; } 
}@media (max-width:820px){


}@media (max-width:1280px){


}@media (max-width:1100px){


}

/* v1.4.0v source dock width + grid occupancy hotfix */
:root{ --source-dock-width:460px; }
body:not(.help-page) .instrument-shell,
body:not(.help-page).has-many-channels .instrument-shell,
body:not(.help-page).control-view-primary .instrument-shell,
body:not(.help-page).control-view-secondary .instrument-shell,
body:not(.help-page).control-view-utility .instrument-shell,
body:not(.help-page).analysis-large-dock-active .instrument-shell,
body:not(.help-page).analysis-large-dock-active.has-many-channels .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-primary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-secondary .instrument-shell,
body:not(.help-page).analysis-large-dock-active.control-view-utility .instrument-shell{ grid-template-columns:var(--source-dock-width) minmax(0,1fr) !important; }
body:not(.help-page) .plot-deck{ grid-column:2 / 3 !important; grid-row:2 / 3 !important; width:100% !important; min-width:0 !important; margin-left:0 !important; position:relative; z-index:1 !important; }
body.plot-focus:not(.help-page) .plot-deck{ grid-column:1 / -1 !important; width:100vw !important; }@media (max-width:1500px){
 :root{ --source-dock-width:420px; } 
}@media (max-width:1280px){
 :root{ --source-dock-width:380px; } 
}@media (max-width:1100px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell,
  body:not(.help-page).analysis-large-dock-active .instrument-shell{ grid-template-columns:1fr !important; grid-template-rows:auto auto minmax(0,760px) 22px !important; }
  body:not(.help-page) .plot-deck{ grid-column:1 !important; grid-row:3 !important; }

}

/* ===== responsive.css ===== */
/* EMWave v1.4.0w — responsive ownership
   Breakpoint tokens are documentation + single-source reference for future edits.
   CSS custom media is not supported in all target browsers, so numeric media
   queries remain explicit in the component files for now. */
:root{
  --bp-1800:1800px;
  --bp-1600:1600px;
  --bp-1400:1400px;
  --bp-1200:1200px;
  --bp-1000:1000px;
}
body:not(.help-page) .plot-deck{
  grid-column:2 / 3 !important;
  grid-row:2 / 3 !important;
  width:100% !important;
  min-width:0 !important;
  margin-left:0 !important;
  position:relative;
  z-index:1 !important;
}
body.plot-focus:not(.help-page) .instrument-shell,
body.plot-focus:not(.help-page).has-many-channels .instrument-shell,
body.plot-focus:not(.help-page).control-view-primary .instrument-shell,
body.plot-focus:not(.help-page).control-view-secondary .instrument-shell,
body.plot-focus:not(.help-page).control-view-utility .instrument-shell,
body.plot-focus:not(.help-page).analysis-large-dock-active .instrument-shell{
  grid-template-columns:0 minmax(0,1fr) !important;
}
body.plot-focus:not(.help-page) .plot-deck{
  grid-column:1 / -1 !important;
  width:100vw !important;
}
.js-plotly-plot .plotly .cursor-crosshair{ cursor:crosshair; }@media (max-width:1100px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell,
  body:not(.help-page).analysis-large-dock-active .instrument-shell{
    grid-template-columns:1fr !important;
    grid-template-rows:auto auto minmax(0,760px) var(--footer-height) !important;
  }
  body:not(.help-page) .plot-deck{
    grid-column:1 !important;
    grid-row:3 !important;
  }

}@media (max-width:1500px){


}@media (max-width:1180px){

  body:not(.help-page) .instrument-shell,
  body:not(.help-page).has-many-channels .instrument-shell,
  body:not(.help-page).control-view-primary .instrument-shell,
  body:not(.help-page).control-view-secondary .instrument-shell,
  body:not(.help-page).control-view-utility .instrument-shell,
  body:not(.help-page).analysis-large-dock-active .instrument-shell{
    grid-template-rows:auto auto minmax(0,760px) 22px !important;
  }

}
body:not(.help-page) .header-run-button.is-active,
body:not(.help-page) .header-run-button[aria-pressed="true"]{
  border-color:rgba(137,209,133,.85);
  box-shadow:0 0 0 1px rgba(137,209,133,.22), 0 0 14px rgba(137,209,133,.12);
}
.dev-tools-toggle{
  cursor:pointer;
  opacity:.42;
  transition:opacity 140ms ease,color 140ms ease;
}
.dev-tools-toggle:hover,
.dev-tools-toggle:has(input:checked){
  opacity:.82;
}
.dev-tools-toggle input{
  width:10px;
  height:10px;
  margin:0 4px 0 0;
  accent-color:#8fd4ff;
  vertical-align:-1px;
}
.dev-tools-toggle::after{
  content:"|";
  margin:0 var(--space-4);
  color:#3e4350;
}@media (max-width:1500px){


}@media (max-width:1180px){


}
#devToolsHeaderToggle:not(:checked){
  opacity:.72;
}
