/* Control room styling for the Proving replay.

   Radius rule: panels and controls 6px, tiles and lamps 2px. */

:root {
  --bg: #0d1012;
  --raise: #13181b;
  --sunk: #090b0d;
  --ink: #e4e8e3;
  --muted: #939ca1;
  --faint: #566067;
  --line: #232a2f;
  --line-strong: #323b41;
  --accent: #62d6b0;
  --accent-ink: #062219;
  --signal: #ff7a45;
  --signal-ink: #2a0d02;

  --display: "Big Shoulders Display", "Archivo Narrow", sans-serif;
  --text: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --r-panel: 6px;
  --r-tile: 2px;
  --z-skip: 3;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scrollbar-color: var(--line-strong) var(--bg); }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 16px/1.55 var(--text); caret-color: var(--accent); }
::selection { background: var(--accent); color: var(--accent-ink); }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
button, select, input { font: inherit; color: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 12px; background: var(--raise); padding: 6px 10px; z-index: var(--z-skip); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums slashed-zero; }

/* ---------------------------------------------------------------- masthead */

.mast { padding-top: 36px; padding-bottom: 24px; }
.brand { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; font: 800 22px/1 var(--display); text-transform: uppercase; letter-spacing: 0.04em; }
.brand__mark { display: grid; grid-template-columns: 8px 8px; gap: 2px; }
.brand__mark i { width: 8px; height: 8px; border-radius: 1px; background: var(--accent); }
.brand__mark i:last-child { background: var(--signal); }
h1 { font: 600 clamp(34px, 4.4vw, 56px)/1 var(--display); letter-spacing: -0.005em; margin: 0 0 14px; max-width: 30ch; text-wrap: balance; }
.lede { color: var(--muted); max-width: 64ch; margin: 0; text-wrap: pretty; }

/* ---------------------------------------------------------------- console */

.console {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-panel); overflow: hidden;
}
.field { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px 12px; background: var(--raise); min-width: 0; }
.field__label { font: 500 12px/1 var(--mono); color: var(--muted); letter-spacing: 0.02em; }
.field__note { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.4; min-height: 2.8em; text-wrap: pretty; }

.segmented { display: inline-flex; align-self: flex-start; padding: 3px; gap: 3px; background: var(--sunk); border: 1px solid var(--line); border-radius: var(--r-panel); }
.segmented button {
  border: 0; background: transparent; padding: 7px 16px; min-height: 36px; border-radius: 4px; cursor: pointer;
  font-weight: 500; color: var(--muted); transition: background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}
.segmented button:hover { color: var(--ink); }
.segmented button:active { transform: scale(0.97); }
.segmented button[aria-checked="true"] { background: var(--ink); color: var(--bg); }
.segmented button[aria-busy="true"] { cursor: progress; opacity: 0.7; }

.select { position: relative; }
.select::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 7px; height: 7px; margin-top: -5px; pointer-events: none;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg);
}
select {
  appearance: none; width: 100%; background: var(--sunk); border: 1px solid var(--line); border-radius: var(--r-panel);
  padding: 8px 36px 8px 12px; min-height: 42px; font-family: var(--mono); font-size: 14px; cursor: pointer;
  transition: border-color 160ms ease;
}
select:hover { border-color: var(--line-strong); }
select option { background: var(--raise); color: var(--ink); }

/* ---------------------------------------------------------------- view switcher */

.views { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 12px 0 20px; }
.views button {
  position: relative; text-align: left; padding: 13px 14px; min-height: 50px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-panel); font-weight: 500;
  transition: border-color 160ms ease, background-color 160ms ease, transform 120ms var(--ease-out);
}
.views button:hover { border-color: var(--line-strong); background: var(--raise); }
.views button:active { transform: scale(0.98); }
.views button[aria-pressed="true"] { background: var(--raise); border-color: var(--ink); }
.views button[aria-pressed="true"]::before { content: ""; position: absolute; left: 14px; right: 14px; top: -1px; height: 2px; background: var(--accent); }
.views .views__surprise[aria-pressed="true"]::before { background: var(--signal); }
.views .views__surprise { border-style: dashed; }

/* ---------------------------------------------------------------- shared controls */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 36px; padding: 6px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--r-panel); background: var(--raise); cursor: pointer; font-weight: 500;
  transition: border-color 160ms ease, background-color 160ms ease, transform 120ms var(--ease-out), opacity 160ms ease;
}
.btn:hover { border-color: var(--muted); }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.45; cursor: default; transform: none; border-color: var(--line-strong); }
.btn--primary { background: var(--ink); color: var(--bg); border-color: var(--ink); min-width: 96px; }
.btn--primary:hover { background: #fff; border-color: #fff; }
.btn--quiet { background: transparent; }
.btn svg { width: 12px; height: 12px; fill: currentColor; flex: none; }

.stage { min-height: 520px; margin-bottom: 40px; }
.stage:focus { outline: none; }

/* ---------------------------------------------------------------- run view: transport */

.transport {
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 12px 14px;
  padding: 10px 12px; background: var(--raise); border: 1px solid var(--line); border-radius: var(--r-panel) var(--r-panel) 0 0;
}
.scrub { display: grid; gap: 4px; min-width: 0; }
.scrub input { width: 100%; margin: 0; accent-color: var(--accent); height: 20px; cursor: pointer; }
.scrub__read { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px 12px; font: 12px/1.2 var(--mono); color: var(--muted); }
.scrub__read b { color: var(--ink); font-weight: 500; }
.speed { display: inline-flex; padding: 3px; gap: 2px; background: var(--sunk); border: 1px solid var(--line); border-radius: var(--r-panel); }
.speed button { border: 0; background: transparent; color: var(--muted); font: 500 12.5px/1 var(--mono); padding: 8px 9px; border-radius: 4px; cursor: pointer; transition: color 160ms ease, background-color 160ms ease; }
.speed button:hover { color: var(--ink); }
.speed button[aria-pressed="true"] { background: var(--line-strong); color: var(--ink); }

/* ---------------------------------------------------------------- run view: floor */

.floor {
  display: grid; grid-template-columns: 1fr 1fr minmax(300px, 0.92fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--r-panel) var(--r-panel); overflow: hidden;
}
.bank, .rail { background: var(--bg); padding: 16px; min-width: 0; }
.bank__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.bank__side { font: 500 12px/1 var(--mono); color: var(--muted); }
.bank__name { font: 600 26px/1.05 var(--display); margin: 6px 0 4px; letter-spacing: 0.01em; overflow-wrap: anywhere; }
.bank__note { color: var(--muted); font-size: 13px; line-height: 1.4; margin: 0 0 14px; min-height: 2.8em; }
.bank__pace { font: 12px/1.3 var(--mono); color: var(--muted); white-space: nowrap; }
.bank__pace b { color: var(--ink); font-weight: 500; }

.grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; }
.tile {
  position: relative; aspect-ratio: 1; padding: 0; border: 1px solid var(--line-strong); border-radius: var(--r-tile);
  background: var(--sunk); cursor: pointer; overflow: hidden;
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 120ms var(--ease-out);
}
.tile:active { transform: scale(0.94); }
.tile i { position: absolute; left: 0; right: 0; bottom: 0; height: 100%; background: var(--accent); opacity: 0.22; transform-origin: 0 50%; transform: scaleX(0); }
.tile.is-running { border-color: var(--accent); }
.tile.ok { background: var(--accent); border-color: var(--accent); }
.tile.fail { background: transparent; border-color: var(--muted); }
.tile.gaveup { background: linear-gradient(to top right, transparent calc(50% - 1px), var(--muted) calc(50% - 1px), var(--muted) calc(50% + 1px), transparent calc(50% + 1px)); border-color: var(--muted); }
.tile.hazard { background: var(--signal); border-color: var(--signal); }
.tile.ok i, .tile.fail i, .tile.gaveup i, .tile.hazard i { display: none; }
.tile.adv::after { content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 9px 9px 0; border-color: transparent var(--ink) transparent transparent; opacity: 0.8; }
.tile.ok.adv::after, .tile.hazard.adv::after { border-right-color: var(--bg); }
.tile.missing { cursor: default; border-style: dashed; border-color: var(--line-strong); background: transparent; }
.tile.skeleton { cursor: default; border-color: var(--line); animation: breathe 1.4s ease-in-out infinite alternate; }
@keyframes breathe { from { opacity: 0.35; } to { opacity: 0.8; } }

.counts { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 4px 18px; margin-top: 14px; }
.counts span { display: grid; gap: 2px; font: 11.5px/1.2 var(--mono); color: var(--muted); }
.counts b { font: 500 20px/1 var(--mono); color: var(--ink); font-variant-numeric: tabular-nums; }
.counts .c-hazard b { color: var(--signal); }
.counts .c-ok b { color: var(--accent); }

.legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 14px 2px 0; font-size: 13px; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend .tile { width: 13px; height: 13px; aspect-ratio: auto; cursor: default; display: inline-block; flex: none; }
.legend .tile.adv::after { border-width: 0 6px 6px 0; }

/* ---------------------------------------------------------------- verdict rail */

.rail { display: grid; align-content: start; gap: 18px; position: relative; }
.rail__title { font: 500 12px/1 var(--mono); color: var(--muted); margin: 0; }
.rail__claim { margin: 6px 0 0; font-size: 14.5px; line-height: 1.45; text-wrap: pretty; }
.rail__wait { color: var(--muted); font-size: 13.5px; margin: 0; }

.nl { position: relative; height: 92px; margin: 4px 8px 0; }
.nl__axis { position: absolute; left: 0; right: 0; top: 40px; height: 1px; background: var(--line-strong); }
.nl__tick { position: absolute; top: 36px; width: 1px; height: 9px; background: var(--faint); }
.nl__tick span { position: absolute; top: 14px; left: 0; transform: translateX(-50%); font: 11px/1 var(--mono); color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.nl__ref { position: absolute; top: 8px; height: 33px; width: 0; border-left: 1px dashed var(--faint); }
.nl__ref span { position: absolute; top: -2px; left: 5px; font: 10.5px/1 var(--mono); color: var(--muted); white-space: nowrap; }
.nl__ref.is-min { border-left-color: var(--muted); }
.nl__ref.flip span { left: auto; right: 5px; }
.nl__ref.is-zero span { top: 14px; }
.nl__iv { position: absolute; top: 33px; height: 15px; }
.nl__iv::before, .nl__iv::after { content: ""; position: absolute; top: 0; width: 2px; height: 15px; background: currentColor; }
.nl__iv::before { left: -1px; }
.nl__iv::after { right: -1px; }
.nl__bar { position: absolute; left: 0; right: 0; top: 6px; height: 3px; background: currentColor; }
.nl__est { position: absolute; top: 3px; width: 9px; height: 9px; margin-left: -4.5px; background: var(--bg); border: 2px solid currentColor; border-radius: 50%; }
.nl__iv.confirmed { color: var(--accent); }
.nl__iv.refuted, .nl__iv.underpowered { color: var(--ink); }
/* A zero-width interval is still a result, so it gets its own mark instead of vanishing. */
.nl__iv.is-point { width: 0; top: 22px; height: 26px; }
.nl__iv.is-point::before { left: -1px; height: 26px; }
.nl__iv.is-point::after { display: none; }
.nl__iv.is-point .nl__bar { display: none; }
.nl__iv.is-point .nl__est { top: 12.5px; width: 11px; height: 11px; margin-left: -5.5px; border-radius: 1px; transform: rotate(45deg); background: currentColor; }
.nl__note { font: 12px/1.4 var(--mono); color: var(--muted); margin: 0; }
.nl__note b { color: var(--ink); font-weight: 500; }
.hyp__verdict { font: 600 15px/1.3 var(--text); margin: 0; }
.hyp__verdict .confirmed { color: var(--accent); }

.gates { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.gates li { display: grid; grid-template-columns: 12px 1fr auto; gap: 10px; align-items: center; font-size: 13.5px; }
.gates .g-name { overflow-wrap: anywhere; }
.gates .g-word { font: 500 11.5px/1 var(--mono); color: var(--muted); }
.lamp { position: relative; width: 12px; height: 12px; border-radius: var(--r-tile); background: var(--sunk); border: 1px solid var(--line-strong); }
.lamp i { position: absolute; inset: -1px; border-radius: var(--r-tile); background: var(--lit, var(--accent)); }
.lamp.hold { --lit: var(--signal); }
.gates li.hold .g-word { color: var(--signal); }
.gates li.pass .g-word { color: var(--accent); }

.stamp-slot { min-height: 104px; display: grid; place-items: center start; }
.stamp {
  display: inline-block; padding: 8px 18px 6px; border: 3px solid currentColor; border-radius: var(--r-panel);
  font: 800 64px/0.9 var(--display); text-transform: uppercase; letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 2px var(--bg), inset 0 0 0 4px currentColor; transform: rotate(-5deg);
}
.stamp.ship { color: var(--accent); }
.stamp.hold { color: var(--signal); }
.stamp.more { color: var(--ink); font-size: 40px; }
.stamp-line { margin: 10px 0 0; color: var(--muted); font-size: 13.5px; }

.pair { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.pair th, .pair td { text-align: right; padding: 5px 0 5px 10px; }
.pair th:first-child, .pair td:first-child { text-align: left; padding-left: 0; }
.pair thead th { font: 500 11.5px/1.3 var(--mono); color: var(--muted); border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.pair td { font-variant-numeric: tabular-nums; }
.pair td + td { font-family: var(--mono); }

/* ---------------------------------------------------------------- report view */

.report { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-panel); overflow: hidden; }
.report > section { background: var(--bg); padding: 20px; }
.report__top { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; }
.report__top .stamp { font-size: 56px; }
.report__line { font-size: 18px; line-height: 1.4; margin: 0; max-width: 56ch; text-wrap: pretty; }
.report__line small { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }
.report h2 { font: 600 22px/1.1 var(--display); letter-spacing: 0.01em; margin: 0 0 10px; }
.report p { margin: 0 0 10px; max-width: 70ch; font-size: 14.5px; }
.report .split { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); padding: 0; }
.report .split > div { background: var(--bg); padding: 20px; min-width: 0; }
.report .nl { margin: 10px 8px 6px; }
.table-scroll { overflow-x: auto; }
.numbers { width: 100%; border-collapse: collapse; font-size: 14px; }
.numbers th, .numbers td { padding: 7px 0 7px 14px; text-align: right; border-bottom: 1px solid var(--line); }
.numbers th:first-child, .numbers td:first-child { text-align: left; padding-left: 0; }
.numbers thead th { font: 500 12px/1.3 var(--mono); color: var(--muted); }
.numbers td + td { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.numbers tr:last-child td { border-bottom: 0; }
.tokens { display: grid; gap: 7px; margin-top: 14px; font-size: 13px; }
.tokens div { display: grid; grid-template-columns: 130px 1fr 56px; gap: 10px; align-items: center; }
.tokens i { height: 8px; background: var(--accent); transform-origin: 0 50%; border-radius: 1px; }
.tokens span:last-child { font-family: var(--mono); text-align: right; font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- regression and attacks */

.readouts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); padding: 0; }
.readouts div { background: var(--bg); padding: 16px 20px; }
.readouts b { display: block; font: 500 32px/1 var(--mono); font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.readouts span { color: var(--muted); font-size: 13px; }
.readouts .bad b { color: var(--signal); }
code { font: 13px/1.5 var(--mono); background: var(--sunk); border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px; overflow-wrap: anywhere; }

.attacks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.attack {
  display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: start; text-align: left; width: 100%; cursor: pointer;
  background: var(--raise); border: 1px solid var(--line); border-radius: var(--r-panel); padding: 14px 16px;
  transition: border-color 160ms ease, transform 120ms var(--ease-out);
}
.attack:hover { border-color: var(--line-strong); }
.attack:active { transform: scale(0.99); }
.attack strong { font: 600 19px/1.1 var(--display); letter-spacing: 0.01em; }
.attack q { display: block; margin-top: 6px; color: var(--muted); font-size: 13.5px; quotes: "\201C" "\201D"; overflow-wrap: anywhere; }
.attack__state { display: inline-flex; align-items: center; gap: 7px; font: 500 12px/1 var(--mono); white-space: nowrap; }
.attack__state.bad { color: var(--signal); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip { font: 11.5px/1 var(--mono); border: 1px solid var(--line-strong); border-radius: 3px; padding: 5px 7px; color: var(--muted); }
.chip.bad { border-color: var(--signal); color: var(--signal); }
.summary { background: var(--raise); border: 1px solid var(--line); border-radius: var(--r-panel); padding: 16px 18px; margin: 0; font-size: 15px; max-width: none; }

.empty { color: var(--muted); padding: 48px 18px; text-align: center; }
.empty .btn { margin-top: 14px; }

/* ---------------------------------------------------------------- transcript sheet */

.drawer {
  position: fixed; inset: 0 0 0 auto; margin: 0; width: min(560px, 100vw); height: 100dvh; max-height: none; max-width: none;
  border: 0; border-left: 1px solid var(--line-strong); padding: 0; background: var(--raise); color: var(--ink); overscroll-behavior: contain;
  transform: translateX(0); transition: transform 320ms var(--ease-drawer), overlay 320ms allow-discrete, display 320ms allow-discrete;
}
.drawer:not([open]) { transform: translateX(100%); }
@starting-style { .drawer[open] { transform: translateX(100%); } }
.drawer::backdrop { background: rgb(5 7 8 / 0.6); transition: opacity 320ms ease, overlay 320ms allow-discrete, display 320ms allow-discrete; opacity: 1; }
.drawer:not([open])::backdrop { opacity: 0; }
@starting-style { .drawer[open]::backdrop { opacity: 0; } }
.drawer__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--raise); }
.drawer__head h2 { margin: 0; font: 500 14px/1.3 var(--mono); overflow-wrap: anywhere; }
.drawer__meta { margin: 12px 16px 0; color: var(--muted); font-size: 14px; }
.transcript { list-style: none; margin: 0; padding: 14px 16px 24px; display: grid; gap: 8px; }
.transcript li { padding: 9px 11px; border-radius: var(--r-panel); font-size: 14.5px; max-width: 88%; unicode-bidi: plaintext; overflow-wrap: anywhere; }
.transcript .c { background: var(--bg); border: 1px solid var(--line); }
.transcript .a { background: color-mix(in srgb, var(--accent) 11%, var(--raise)); justify-self: end; }
.transcript .who { display: block; font: 500 11px/1.4 var(--mono); color: var(--muted); margin-bottom: 2px; }

.foot { color: var(--muted); font-size: 14px; padding-bottom: 48px; }
.foot p { max-width: 80ch; margin: 0; }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .floor { grid-template-columns: 1fr 1fr; }
  .rail { grid-column: 1 / -1; grid-template-columns: 1.3fr 1fr; column-gap: 28px; }
  .rail > .rail__wide { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .console { grid-template-columns: 1fr; }
  .views { grid-template-columns: 1fr 1fr; }
  .report .split { grid-template-columns: 1fr; }
  .attacks { grid-template-columns: 1fr; }
  .readouts { grid-template-columns: 1fr 1fr; }
  .report__top { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 640px) {
  .mast { padding-top: 28px; }
  .floor { grid-template-columns: 1fr; }
  .rail { grid-template-columns: 1fr; }
  .transport { grid-template-columns: auto auto 1fr; }
  .transport .scrub { grid-column: 1 / -1; grid-row: 2; }
  .grid { gap: 4px; }
  .field__note, .bank__note { min-height: 0; }
  .stamp { font-size: 52px; }
  .tokens div { grid-template-columns: 104px 1fr 48px; }
}

@media (hover: none) {
  .views button:hover, .btn:hover, .attack:hover { border-color: var(--line); background: transparent; }
  .btn:hover { background: var(--raise); border-color: var(--line-strong); }
  .btn--primary:hover { background: var(--ink); border-color: var(--ink); }
  .views button[aria-pressed="true"]:hover { background: var(--raise); border-color: var(--ink); }
  .attack:hover { background: var(--raise); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-property: color, background-color, border-color, opacity !important; animation: none !important; }
  .drawer, .drawer:not([open]) { transform: none; }
  .drawer:not([open]) { opacity: 0; }
  .tile:active, .btn:active, .views button:active, .attack:active, .segmented button:active { transform: none; }
}
