/* ============================================================
   MARM · CALCULATOR DIVISION — shared shell
   Inherits ecosystem.css tokens (graphite/bronze/Cormorant/Inter).
   Adds the vocabulary of the quantitative wing: the hall, the
   instruments, the panels of readings. No SaaS, no cards, no grids.
   ============================================================ */

/* ---------- shared reveal (matches Academy/gateway cadence) ---------- */
.qrise {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.qrise.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .qrise { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   THE HALL — central chamber of the division
   ============================================================ */
.hall {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 60% 50% at 50% -8%, rgba(116, 134, 152, .08), transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 120%, rgba(140, 115, 81, .05), transparent 60%),
    var(--graphite);
}
.hall__intro {
  text-align: center;
  padding: clamp(90px, 13vh, 150px) 24px clamp(40px, 6vh, 70px);
}
.hall__kicker {
  font-size: 11px; text-transform: uppercase; letter-spacing: .4em;
  color: var(--bronze-lit); margin-bottom: 20px;
}
.hall__title { font-size: clamp(38px, 6vw, 72px); line-height: 1.04; margin-bottom: 26px; }
.hall__lead {
  max-width: 560px; margin: 0 auto; font-size: 15.5px; color: var(--marble);
}

/* instruments stand along the chamber like monoliths, not cards */
.instruments {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vh, 18px);
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 6vh, 60px) clamp(24px, 5vw, 64px) clamp(60px, 10vh, 110px);
}
/* instruments as glass plates — the ecosystem-centre card language (the wing cards) */
.instrument {
  position: relative;
  display: grid;
  grid-template-columns: clamp(64px, 8vw, 110px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(30px, 4.5vh, 50px) clamp(24px, 3vw, 40px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(178deg, rgba(28, 31, 35, .5), rgba(16, 17, 19, 0) 72%);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  text-decoration: none;
  color: var(--marble);
  transition: border-color .6s var(--ease), background .6s var(--ease), transform .6s var(--ease);
}
.instrument::before {            /* the lintel — a doorway line above each plate */
  content: ""; position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 1px; background: var(--bronze);
  transition: width .6s var(--ease);
}
.instrument--open { cursor: pointer; }
.instrument--open:hover {
  border-color: rgba(140, 115, 81, .5);
  background: linear-gradient(178deg, rgba(34, 38, 44, .62), rgba(16, 17, 19, 0) 72%);
  transform: translateY(-4px);
}
.instrument--open:hover::before { width: 92px; }
.instrument--soon { opacity: .5; }
.instrument__num {
  font-family: var(--font-d);
  font-size: clamp(30px, 3vw, 46px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(140, 115, 81, .55);
  line-height: 1;
}
.instrument--open:hover .instrument__num { -webkit-text-stroke-color: var(--bronze); }
.instrument__body h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.instrument__tag {
  font-family: var(--font-b);
  font-size: 9.5px; text-transform: uppercase; letter-spacing: .22em;
  color: var(--stone-mute);
  border: 1px solid var(--line-soft); padding: 4px 9px;
}
.instrument__body p { font-size: 13.5px; color: var(--stone-mute); max-width: 46ch; }
.instrument__enter {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .26em;
  color: var(--ivory); white-space: nowrap;
  border: 1px solid var(--line); padding: 13px 24px;
  transition: border-color .4s, color .4s;
}
.instrument--open:hover .instrument__enter { border-color: var(--bronze); color: var(--bronze-lit); }
.instrument__glyph { width: 38px; height: 38px; color: var(--bronze); opacity: .8; }

/* ============================================================
   INSTRUMENT PAGE — panel of inputs + plate of readings
   ============================================================ */
.station {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  background:
    radial-gradient(ellipse 70% 40% at 16% 0%, rgba(116, 134, 152, .07), transparent 55%),
    var(--graphite);
}
.station__head {
  padding: clamp(72px, 11vh, 120px) clamp(24px, 5vw, 64px) clamp(28px, 4vh, 46px);
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.station__index {
  font-size: 11px; text-transform: uppercase; letter-spacing: .34em;
  color: var(--bronze-lit); margin-bottom: 18px;
}
.station__index::after {
  content: ""; display: inline-block; width: 48px; height: 1px;
  background: var(--bronze-dim); margin-left: 16px; vertical-align: middle;
}
.station__title { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin-bottom: 22px; }
.station__lead { max-width: 600px; font-size: 15px; color: var(--marble); }

.station__work {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1240px; width: 100%; margin: 0 auto;
  padding: clamp(20px, 3vh, 40px) clamp(24px, 5vw, 64px) clamp(70px, 10vh, 120px);
}
/* grid children must be allowed to shrink below their content's min-width,
   otherwise the dial / long labels force horizontal overflow on narrow screens */
.station__work > * { min-width: 0; }

/* — the panel — */
.panel { border-top: 1px solid var(--line); padding-top: 8px; }
.panel__group { padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.panel__legend {
  font-family: var(--font-d); font-size: 18px; color: var(--ivory);
  letter-spacing: .04em; margin-bottom: 20px;
}
.qfield { display: flex; flex-direction: column; margin-bottom: 18px; }
.qfield:last-child { margin-bottom: 0; }
.qfield > span {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--stone-mute); margin-bottom: 9px;
  display: flex; justify-content: space-between; gap: 10px;
}
.qfield > span em { font-style: normal; color: var(--bronze-lit); }
.qfield input, .qfield select {
  font-family: var(--font-b); font-size: 15px; font-weight: 300;
  color: var(--ivory); background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 9px 2px; outline: none; border-radius: 0;
  transition: border-color .4s;
}
.qfield input:focus, .qfield select:focus { border-bottom-color: var(--bronze); }
.qfield select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238c7351' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 22px;
}
.qfield select option { background: var(--stone-dark); color: var(--ivory); }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* segmented control (direction, aggression) */
.seg { display: flex; gap: 0; border: 1px solid var(--line); }
.seg button {
  flex: 1; font-family: var(--font-b);
  font-size: 10px; text-transform: uppercase; letter-spacing: .16em;
  color: var(--stone-mute); background: transparent; border: none;
  padding: 12px 6px; cursor: pointer; transition: background .4s, color .4s;
  border-right: 1px solid var(--line-soft);
}
.seg button:last-child { border-right: none; }
.seg button.is-on { background: rgba(140, 115, 81, .16); color: var(--ivory); }

/* aggression dial — a true slider: clickable track, draggable knob */
.dial__track { position: relative; height: 1px; background: var(--line); margin: 30px 0 14px; cursor: pointer; touch-action: none; }
.dial__track::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; bottom: -16px; }
.dial__knob { cursor: grab; }
.dial__knob:active { cursor: grabbing; }
.dial__fill { position: absolute; left: 0; top: 0; height: 1px; background: var(--bronze); transition: width .5s var(--ease); }
.dial__knob {
  position: absolute; top: 50%; width: 9px; height: 9px;
  background: var(--bronze); transform: translate(-50%, -50%) rotate(45deg);
  transition: left .5s var(--ease);
}
.dial__marks { display: flex; justify-content: space-between; }
.dial__marks { gap: 6px; }
.dial__marks button {
  font-family: var(--font-b); font-size: 9.5px; text-transform: uppercase;
  letter-spacing: .04em; color: var(--stone-mute); white-space: nowrap;
  background: none; border: none; cursor: pointer; transition: color .4s; padding: 0;
}
.dial__marks button.is-on { color: var(--bronze-lit); }
@media (max-width: 560px) {
  .dial__marks button { font-size: 8.5px; }
}

/* ============================================================
   READINGS — the plate, visual not spreadsheet
   ============================================================ */
.readings { display: flex; flex-direction: column; gap: clamp(24px, 3vh, 40px); }
.verdict {
  display: flex; align-items: center; gap: 18px;
  border: 1px solid var(--line-soft); padding: 22px clamp(20px, 3vw, 34px);
  background: linear-gradient(178deg, rgba(28, 31, 35, .5), rgba(16, 17, 19, 0) 78%);
}
.verdict__mark {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze-lit);
}
.verdict.is-pass .verdict__mark { color: #8fae8a; }
.verdict.is-fail .verdict__mark { color: #b06a52; }
.verdict__text strong {
  font-family: var(--font-d); font-weight: 500; font-size: 22px;
  color: var(--ivory); display: block; margin-bottom: 2px;
}
.verdict__text span { font-size: 12.5px; color: var(--stone-mute); }

/* metric plate — engraved readings on a faint glass surface */
.plate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  background: linear-gradient(178deg, rgba(24, 27, 31, .4), rgba(16, 17, 19, 0) 82%);
}
.metric {
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(22px, 2.6vw, 32px) clamp(18px, 2.2vw, 28px);
}
.metric__label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .22em;
  color: var(--stone-mute); margin-bottom: 16px;
}
.metric__value {
  font-family: var(--font-d); font-weight: 500;
  font-size: clamp(28px, 3.3vw, 44px);
  color: var(--ivory); line-height: 1; letter-spacing: .01em;
  font-variant-numeric: tabular-nums lining-nums;   /* steady width during roll */
}
.metric__value small { font-size: 16px; color: var(--stone-mute); margin-left: 5px; }
/* the instrument's primary readings (marked --accent) carry the weight — like the Свод */
.metric--accent .metric__value { color: var(--bronze-lit); font-size: clamp(34px, 4.3vw, 58px); }
.metric__sub { font-size: 11px; color: var(--stone-mute); margin-top: 12px; }

/* visualization frame */
.viz {
  border: 1px solid var(--line-soft);
  background: linear-gradient(178deg, rgba(24, 27, 31, .5), rgba(16, 17, 19, 0) 80%);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;          /* large values never push the layout sideways */
}
.viz__title {
  font-size: 10px; text-transform: uppercase; letter-spacing: .24em;
  color: var(--bronze-lit); margin-bottom: 22px;
}
.viz svg { width: 100%; height: auto; display: block; overflow: visible; }

/* ---- HTML/CSS bar (Instrument I) — crisp text at any width ---- */
.gbar { padding: 4px 0 30px; }
.gbar + .gbar { border-top: 1px solid var(--line-soft); padding-top: 24px; }
.gbar__head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 12px; }
.gbar__name { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--stone-mute); }
.gbar__val {
  font-family: var(--font-d); font-size: 21px; color: var(--ivory);
  font-variant-numeric: tabular-nums lining-nums;
}
.gbar__val.is-bad { color: #c98a72; }
.gbar__track { position: relative; height: 10px; background: rgba(232, 226, 214, .06); }
.gbar__fill {
  position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--bronze); transition: width .55s var(--ease), background .4s;
}
.gbar__fill.is-warn { background: #c89a5b; }
.gbar__fill.is-bad { background: #b06a52; }
.gbar__mark { position: absolute; top: -4px; bottom: -4px; width: 1px; background: var(--stone-mute); }
.gbar__mark span {
  position: absolute; top: calc(100% + 7px); left: 0; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone-mute); white-space: nowrap;
}
.gbar__mark--end span { transform: translateX(-100%); }
.gbar__mark--start span { transform: translateX(0); }
.gbar__mark--ceiling { background: #b06a52; }
.gbar__mark--ceiling span { color: #b06a52; }

/* ---- price ladder (Instrument II) — absolute price mapping ---- */
.ladder { position: relative; height: 348px; margin-top: 4px; }
.ladder__row {
  position: absolute; left: 0; right: 0; transform: translateY(-50%);
  display: grid; grid-template-columns: minmax(52px, auto) 1fr; align-items: center; gap: 12px;
}
.ladder__bartrack { min-width: 0; }
.distrow__track, .stage__bartrack { min-width: 0; }
.ladder__price {
  font-family: var(--font-d); font-size: 15px; color: var(--marble);
  text-align: right; font-variant-numeric: tabular-nums lining-nums;
}
.ladder__bartrack { position: relative; height: 11px; background: rgba(232, 226, 214, .05); }
.ladder__bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--bronze); transition: width .5s var(--ease), opacity .5s; }
.ladder__wt {
  position: absolute; top: 50%; transform: translateY(-50%); margin-left: 9px;
  font-size: 11px; color: var(--stone-mute); white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
}
.ladder__line { position: absolute; left: 70px; right: 0; height: 0; transition: top .5s var(--ease); }
.ladder__line::before { content: ""; position: absolute; left: 0; right: 0; top: 0; border-top: 1px solid; }
.ladder__line span {
  position: absolute; right: 0; top: -9px; font-size: 11px; padding-left: 8px;
  background: linear-gradient(90deg, transparent, var(--graphite) 30%);
  font-variant-numeric: tabular-nums lining-nums;
}
.ladder__line--avg::before { border-color: var(--ivory); }
.ladder__line--avg span { color: var(--ivory); }
.ladder__line--stop::before { border-color: #b06a52; border-top-style: dashed; }
.ladder__line--stop span { color: #b06a52; }
.ladder__line--exit::before { border-color: #8fae8a; }
.ladder__line--exit span { color: #8fae8a; }
.ladder__bar.is-exit { background: #8fae8a; }

/* wide bars: flip the trailing label inside so it never overflows */
.ladder__wt.is-end, .distrow__val.is-end, .stage__val.is-end {
  left: auto; right: 8px; margin-left: 0; color: var(--ivory);
}

/* ---- volume distribution rows ---- */
.dist { display: flex; flex-direction: column; gap: 12px; }
.distrow { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; }
.distrow__id { font-family: var(--font-d); font-size: 14px; color: var(--stone-mute); }
.distrow__track { position: relative; height: 13px; background: rgba(232, 226, 214, .05); }
.distrow__bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--bronze); transition: width .5s var(--ease), opacity .5s; }
.distrow__val {
  position: absolute; top: 50%; transform: translateY(-50%); margin-left: 9px;
  font-size: 11px; color: var(--stone-mute); white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
}

/* ---- partial-fill stages — realised risk as the basket fills ---- */
.fillnote {
  font-size: 12px; color: var(--stone-mute); margin: 4px 2px 0;
}
.stages { display: flex; flex-direction: column; }
.stage {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center; gap: 16px;
  padding: 13px 2px; border-bottom: 1px solid var(--line-soft);
}
.stage:last-child { border-bottom: none; }
.stage--full .stage__head { color: var(--bronze-lit); }
.stage__head {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--stone-mute);
}
.stage__head b {
  display: block; font-family: var(--font-d); font-size: 17px; letter-spacing: 0;
  color: var(--ivory); text-transform: none; font-variant-numeric: tabular-nums lining-nums;
}
.stage__bartrack { position: relative; height: 11px; background: rgba(232, 226, 214, .05); }
.stage__bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--bronze); transition: width .5s var(--ease); opacity: .85; }
.stage--full .stage__bar { opacity: 1; }
.stage__val {
  position: absolute; top: 50%; transform: translateY(-50%); margin-left: 9px;
  font-size: 11px; color: var(--stone-mute); white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
}

/* ---- collapsible advanced inputs (keeps panels light) ---- */
.advanced { border-top: 1px solid var(--line-soft); margin-top: 4px; padding-top: 18px; }
.advanced > summary {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--stone-mute); cursor: pointer; list-style: none;
}
.advanced > summary::-webkit-details-marker { display: none; }
.advanced > summary::before { content: "+ "; color: var(--bronze-lit); }
.advanced[open] > summary::before { content: "− "; }
.advanced__body { padding-top: 20px; }

/* ---- shared-context marker ---- */
.panel__legend .ctxtag {
  font-family: var(--font-b); font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bronze-lit);
  border: 1px solid var(--line-soft); padding: 3px 7px; margin-left: 10px; vertical-align: middle;
}
.ctxhint { font-size: 11.5px; color: var(--stone-mute); margin-top: 4px; }
.metric__value.is-pos { color: #8fae8a; }
.metric__value.is-neg { color: #c98a72; }

/* ---- trade price-axis — entry · stop · target · liquidation ---- */
.axis { position: relative; height: 150px; margin: 8px 0 6px; }
.axis__line { position: absolute; left: 0; right: 0; top: 66px; height: 1px; background: var(--line); }
.axis__zone { position: absolute; top: 60px; height: 13px; }
.axis__zone--risk { background: rgba(176, 106, 82, .22); }
.axis__zone--reward { background: rgba(143, 174, 138, .20); }
.axis__pt { position: absolute; top: 40px; width: 1px; height: 52px; }
.axis__pt span {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; white-space: nowrap; font-variant-numeric: tabular-nums lining-nums;
}
.axis__pt .lab { top: -22px; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.axis__pt .lab.t1 { top: -38px; }
.axis__pt .val { top: 56px; }
.axis__pt .val.t1 { top: 74px; }
.axis__pt--entry { background: var(--ivory); }
.axis__pt--entry span { color: var(--ivory); }
.axis__pt--stop { background: #b06a52; }
.axis__pt--stop span { color: #c98a72; }
.axis__pt--target { background: #8fae8a; }
.axis__pt--target span { color: #8fae8a; }
.axis__pt--liq { background: none; border-left: 1px dashed #8a3f30; }
.axis__pt--liq span { color: #b06a52; }

/* committed-to-ledger confirmation pip */
.ledgerflash {
  font-size: 11px; color: #8fae8a; margin-top: 14px; opacity: 0;
  transition: opacity .4s var(--ease);
}
.ledgerflash.is-on { opacity: 1; }

/* ---- EES gauge — where the average entry sits, best↔worst ---- */
.ees__scale { position: relative; height: 1px; background: var(--line); margin: 40px 0 12px; }
.ees__fill { position: absolute; left: 0; top: 0; height: 1px; background: var(--bronze); transition: width .55s var(--ease); }
.ees__knob {
  position: absolute; top: 50%; width: 9px; height: 9px; background: var(--bronze);
  transform: translate(-50%, -50%) rotate(45deg); transition: left .55s var(--ease);
}
.ees__score {
  position: absolute; top: -26px; transform: translateX(-50%);
  font-family: var(--font-d); font-size: 19px; color: var(--bronze-lit);
  transition: left .55s var(--ease); font-variant-numeric: tabular-nums lining-nums;
}
.ees__ends {
  display: flex; justify-content: space-between;
  font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--stone-mute);
}

/* fan chart legend (Capital Trajectories) */
.fanlegend { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 16px; font-size: 11px; color: var(--stone-mute); }
.fanlegend span { display: flex; align-items: center; gap: 7px; font-variant-numeric: tabular-nums lining-nums; }
.fanlegend .sw { width: 14px; flex: none; }
.fanlegend .sw--p90, .fanlegend .sw--p10 { height: 9px; background: rgba(140, 115, 81, .22); }
.fanlegend .sw--med { height: 2px; background: var(--bronze-lit); }
.fanlegend .sw--ruin { height: 0; border-top: 1px dashed #8a3f30; }

/* positions register (Risk Engine) */
.poslist { display: flex; flex-direction: column; }
.posrow {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.posrow:last-child { border-bottom: none; }
.posrow__main { min-width: 0; }
.posrow__label { font-size: 13.5px; color: var(--marble); }
.posrow__share { font-size: 11px; color: var(--stone-mute); margin-left: 6px; }
.posrow__bar { height: 4px; background: rgba(232, 226, 214, .06); margin-top: 8px; position: relative; }
.posrow__bar i { position: absolute; left: 0; top: 0; height: 100%; background: var(--bronze); transition: width .5s var(--ease); }
.posrow__risk { font-family: var(--font-d); font-size: 18px; color: var(--ivory); font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }
.posrow__del {
  background: none; border: 1px solid var(--line-soft); color: var(--stone-mute);
  width: 28px; height: 28px; cursor: pointer; line-height: 1;
  transition: border-color .3s, color .3s;
}
.posrow__del:hover { border-color: #b06a52; color: #b06a52; }
.posempty { text-align: center; padding: 32px 12px; }
.posempty p { font-size: 13.5px; color: var(--stone-mute); max-width: 40ch; margin: 0 auto 20px; }

/* warnings ledger */
.warns { display: flex; flex-direction: column; gap: 0; }
.warn {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 2px; border-bottom: 1px solid var(--line-soft);
  font-size: 13px; color: var(--marble);
}
.warn::before { content: "▲"; font-size: 9px; color: #b06a52; transform: translateY(-1px); }
.warn--ok { color: var(--stone-mute); }
.warn--ok::before { content: "—"; color: var(--bronze-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .instrument { grid-template-columns: 48px 1fr; }
  .instrument__enter { grid-column: 2; justify-self: start; margin-top: 6px; }
  .station__work { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .plate { grid-template-columns: 1fr; }
  .qrow { grid-template-columns: 1fr; gap: 0; }
}
