:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  --blue: #55769d;
  --navy: #263663;
  --red: #d2463b;
  --green: #2f8f52;
  --page: #edf2f7;
  --text: #172033;
  --muted: #637083;
  --border: #d7e0ea;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  color: var(--text);
  background: var(--page);
  font-size: 14px;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
}

button,
.button {
  min-width: 0;
  border: 1px solid #2f73f6;
  border-radius: 7px;
  background: #2f73f6;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

button:disabled {
  opacity: .45;
}

form {
  margin: 0;
}

.error {
  color: #b42338;
  font-weight: 800;
}

.release-login-page,
.release-result-page {
  position: fixed;
  inset: 0;
  padding: 14px;
  background: #17244a;
}

.login-panel {
  width: min(780px, calc(100vw - 28px));
  height: min(452px, calc(100vh - 28px));
  margin: 0 auto;
  padding: 14px 18px 18px;
  background: var(--navy);
  color: #fff;
  display: grid;
  align-content: start;
  gap: 8px;
}

.login-logo {
  width: 132px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.login-panel h1 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
}

.login-panel .error {
  margin: 0;
  color: #ffd2d6;
  text-align: center;
  font-size: 15px;
}

.pin-form {
  display: grid;
  gap: 8px;
}

.pin-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pin-display {
  height: 58px;
  border: 2px solid #f5d365;
  border-radius: 7px;
  background: #fffbc9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .18em;
}

.pin-display[data-empty="1"] {
  color: #7a8494;
  font-size: 25px;
  letter-spacing: 0;
}

.pin-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pin-key,
.pin-submit {
  width: 100%;
  height: 46px;
  border-radius: 7px;
  font-size: 25px;
  font-weight: 900;
}

.pin-key {
  background: #f8fafc;
  color: #172033;
  border-color: #d9e2ec;
}

.pin-key-secondary {
  background: #fff2f2;
  color: #b42338;
  border-color: #efc7cc;
  font-size: 18px;
}

.pin-submit {
  background: var(--red);
  border-color: var(--red);
  font-size: 24px;
}

.pin-key.is-pressed,
.pin-submit.is-pressed {
  background: #dbeafe;
  transform: translateY(1px);
}

.pin-submit.is-pressed {
  background: #b7372f;
}

.release-page {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-rows: 48px minmax(0, 1fr);
  background: var(--page);
}

.release-topbar {
  height: 48px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
}

.brand {
  width: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 68px;
  height: 28px;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}

.release-topbar nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.nav-link {
  min-width: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.btn-red {
  height: 38px;
  padding: 0 12px;
  background: #d94b50;
  border-color: #d94b50;
  font-size: 14px;
}

.btn-home {
  height: 38px;
  padding: 0 12px;
  background: #ffffff;
  border-color: #dbe7f4;
  color: #1e3a5f;
  font-size: 14px;
}

.release-wrap {
  min-height: 0;
  width: 100%;
  padding: 8px 9px 9px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.device-strip {
  min-height: 54px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.device-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.device-main div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.device-main strong,
.device-main span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-main strong {
  font-size: 15px;
}

.device-main span {
  color: var(--muted);
  font-size: 13px;
}

.device-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(47, 143, 82, .12);
  flex: 0 0 13px;
}

.status-warning .device-dot {
  background: #d19017;
}

.status-bad .device-dot {
  background: #d14654;
}

.device-facts {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-pill,
.badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.status-ok {
  background: #e9f8ef;
  color: #27613d;
  border-color: #bfe5cd;
}

.status-warning {
  background: #fff7df;
  color: #805b09;
  border-color: #f2d078;
}

.status-bad {
  background: #fff0f1;
  color: #9b2430;
  border-color: #efc7cc;
}

.release-command-panel {
  min-height: 82px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.panel-title h1 {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.05;
}

.panel-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.assigned-printer {
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assigned-printer strong {
  color: var(--text);
}

.release-command-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.release-big-action {
  width: 132px;
  height: 56px;
  padding: 0 12px;
  font-size: 19px;
}

.ghost-link {
  background: #fff;
  color: #2f73f6;
  border-color: #c9d8ff;
}

.release-job-tabs {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.release-job-tab {
  min-width: 0;
  height: 58px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  color: #415064;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.release-job-tab.is-active {
  background: #163f8f;
  border-color: #163f8f;
  color: #fff;
}

.release-tab-panel {
  display: none;
}

.release-tab-panel.is-active {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
}

.release-jobs-panel {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  align-content: start;
  gap: 9px;
}

.release-list-title {
  height: 28px;
  padding: 0 2px;
  display: flex;
  align-items: center;
}

.release-list-title h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1;
}

.release-job-card {
  min-height: 86px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.release-job-main {
  min-width: 0;
}

.release-job-main h2 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.release-job-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #5d6977;
  font-size: 13px;
  font-weight: 800;
}

.release-job-meta > span:not(.badge) {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  background: #edf2f7;
  white-space: nowrap;
}

.badge {
  min-height: 26px;
  padding: 4px 10px;
  background: #eaf3ff;
  color: #2663d8;
  border-color: #c9ddff;
  font-size: 13px;
}

.release-job-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.release-job-button {
  width: 94px;
  height: 54px;
  font-size: 18px;
}

.release-device-panel {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: start;
  gap: 9px;
}

.release-device-grid {
  min-height: 0;
  display: grid;
  gap: 9px;
}

.release-device-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.release-device-top {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.release-device-top strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.release-device-meta {
  min-width: 0;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 5px 8px;
  align-items: start;
}

.release-device-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.release-device-meta strong {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

button.ghost {
  background: #fff3f3;
  color: #d14654;
  border-color: #efc7cc;
}

.release-empty {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 7px;
  background: #fff;
  color: var(--muted);
  font-size: 23px;
  font-weight: 850;
}

.footer {
  display: none;
}

.release-launcher-wrap {
  min-height: 0;
  width: 100%;
  padding: 15px;
  overflow: hidden;
  display: grid;
}

.launcher-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.launcher-grid > button:not(.launcher-tile) {
  min-width: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  appearance: none;
  display: block;
  padding: 0;
  font: inherit;
  text-align: inherit;
  white-space: normal;
  touch-action: manipulation;
}

.launcher-grid > button:not(.launcher-tile) > .launcher-tile {
  height: 100%;
}

.launcher-tile {
  min-width: 0;
  width: 100%;
  min-height: 346px;
  border: 1px solid #cfdae6;
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  appearance: none;
  font: inherit;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  display: grid;
  grid-template-rows: 92px auto auto;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px 12px;
  cursor: pointer;
  touch-action: manipulation;
}

.launcher-tile:active {
  background: #eaf3ff;
  transform: translateY(1px);
}

.launcher-grid > button:not(.launcher-tile):active > .launcher-tile {
  background: #eaf3ff;
  transform: translateY(1px);
}

.launcher-icon {
  width: 88px;
  height: 88px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #edf2f7;
}

.launcher-icon svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
}

.launcher-print .launcher-icon {
  color: #2f73f6;
  background: #eaf3ff;
}

.launcher-copy .launcher-icon,
.launcher-icon.launcher-copy {
  color: #2f8f52;
  background: #e9f8ef;
}

.launcher-scan .launcher-icon,
.launcher-icon.launcher-scan {
  color: #d19017;
  background: #fff7df;
}

.launcher-scan-glass .launcher-icon {
  color: #0f766e;
  background: #e6fffb;
}

.launcher-tile strong {
  max-width: 100%;
  color: var(--text);
  font-size: 30px;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
}

.launcher-tile span:last-child {
  max-width: 100%;
  color: var(--muted);
  font-size: 17px;
  font-weight: 850;
  text-align: center;
  overflow-wrap: anywhere;
}

.launcher-empty {
  min-height: 330px;
}

.native-launch-wrap {
  min-height: 0;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.native-launch-panel {
  width: min(520px, 100%);
  min-height: 300px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  padding: 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.native-launch-panel h1 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  line-height: 1.05;
}

.native-launch-panel p {
  min-height: 32px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

.native-launch-panel p.native-ok {
  color: #27613d;
}

.native-launch-panel p.native-error {
  color: #9b2430;
}

.native-launch-panel .launcher-icon {
  width: 88px;
  height: 88px;
}

.native-launch-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.native-launch-actions .button {
  height: 54px;
  min-width: 126px;
  padding: 0 18px;
  font-size: 18px;
}

.release-tool-wrap {
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  display: grid;
}

.release-tool-panel {
  min-height: 0;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.copy-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.copy-sdk-panel {
  overflow: hidden;
}

.copy-primary {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.copy-head-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.scan-panel {
  grid-template-rows: auto minmax(0, 1fr) 64px 42px;
}

.tool-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.tool-title h1 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
}

.tool-title p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 850;
  max-width: 68%;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-title p.success {
  color: #27613d;
}

.tool-title p.error {
  color: #9b2430;
}

.copy-counter {
  display: grid;
  grid-template-columns: 66px 96px 66px;
  gap: 8px;
  align-items: center;
}

.stepper-btn {
  width: 100%;
  height: 68px;
  background: #edf2f7;
  border-color: #d7e0ea;
  color: var(--text);
  font-size: 38px;
}

.copy-counter output,
.copy-count-input {
  min-width: 0;
  height: 68px;
  border: 2px solid #d7e0ea;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 38px;
  font-weight: 900;
  text-align: center;
}

.copy-count-input {
  width: 100%;
  appearance: textfield;
  background: #fff;
}

.copy-count-input::-webkit-inner-spin-button,
.copy-count-input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.copy-quick-controls {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.7fr);
  gap: 10px;
  align-items: stretch;
}

.copy-control-group,
.copy-build-toggle {
  min-width: 0;
  border: 1px solid #d7e0ea;
  border-radius: 7px;
  background: #f8fafc;
  padding: 8px;
}

.copy-control-label {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 7px;
}

.copy-choice-row {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.copy-mode-tabs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.copy-color-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copy-choice {
  min-width: 0;
  width: 100%;
  min-height: 58px;
  padding: 7px 8px;
  border: 1px solid #c9d4df;
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  white-space: normal;
}

.copy-choice.is-active {
  background: #2f3b4d;
  border-color: #2f3b4d;
  color: #fff;
}

.copy-build-toggle {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.copy-build-toggle input {
  width: 30px;
  height: 30px;
}

.copy-hidden-fields {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.copy-action-row {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}

.tool-primary {
  width: 100%;
  height: 72px;
  background: var(--red);
  border-color: var(--red);
  font-size: 27px;
}

.tool-secondary {
  width: 100%;
  height: 72px;
  background: #edf2f7;
  border-color: #d7e0ea;
  color: var(--text);
  font-size: 20px;
}

.side-two-action {
  display: none;
  background: #fff7ed;
  border-color: #f59e0b;
  color: #7c2d12;
}

body[data-side-two="1"] .side-two-action {
  display: block;
}

body[data-build-job="0"] #scanSegment,
body[data-build-job="0"] #submitBuildJob {
  display: none;
}

.copy-options-grid {
  min-height: 0;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}

.copy-option,
.copy-check,
.copy-slider {
  min-width: 0;
  border: 1px solid #d7e0ea;
  border-radius: 7px;
  background: #f8fafc;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.copy-option span,
.copy-check span,
.copy-slider span {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-option select {
  min-width: 0;
  width: 100%;
  height: 58px;
  border: 1px solid #c9d4df;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.copy-check {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
}

.copy-check input {
  width: 30px;
  height: 30px;
}

.copy-slider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.copy-slider input {
  width: 100%;
}

.tool-status {
  min-height: 42px;
  border-radius: 7px;
  background: #edf2f7;
  color: #2f3b4d;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-status.success {
  background: #e9f8ef;
  color: #27613d;
}

.tool-status.error {
  background: #fff0f1;
  color: #9b2430;
}

.scan-glass-panel {
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  overflow: hidden;
}

.scan-page-count {
  min-width: 116px;
  height: 68px;
  border: 2px solid #d7e0ea;
  border-radius: 7px;
  display: grid;
  grid-template-columns: auto;
  place-items: center;
  background: #f8fafc;
  color: var(--text);
}

.scan-page-count strong {
  font-size: 28px;
  line-height: 1;
}

.scan-page-count span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.scan-glass-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.scan-glass-step {
  min-height: 112px;
  border: 1px solid #d7e0ea;
  border-radius: 7px;
  background: #f8fafc;
  color: var(--muted);
  display: grid;
  place-items: center;
  padding: 12px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.scan-glass-step.is-active {
  background: #e6fffb;
  border-color: #5eead4;
  color: #0f766e;
}

.scan-glass-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scan-glass-live {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, 1.2fr);
  gap: 10px;
}

.scan-glass-paths,
.scan-glass-file-block {
  min-width: 0;
  border: 1px solid #d7e0ea;
  border-radius: 7px;
  background: #f8fafc;
  padding: 8px 10px;
  display: grid;
  gap: 5px;
}

.scan-glass-paths div,
.scan-glass-file-block {
  min-width: 0;
}

.scan-glass-paths span,
.scan-glass-file-block > span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.scan-glass-paths strong,
.scan-glass-files {
  color: var(--text);
  display: block;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.scan-glass-files {
  max-height: 74px;
  overflow: hidden auto;
}

.scan-glass-files div {
  overflow-wrap: anywhere;
}

.scan-fields {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-field {
  min-width: 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.tool-field span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  text-align: right;
}

.tool-field input {
  min-width: 0;
  width: 100%;
  height: 54px;
  border: 2px solid #d7e0ea;
  border-radius: 7px;
  padding: 0 12px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.release-result-page {
  display: grid;
  place-items: center;
}

.release-result-panel {
  width: min(620px, calc(100vw - 36px));
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  text-align: center;
}

.release-result-panel h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 34px;
}

.release-result-panel p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.release-result-panel .button {
  min-width: 160px;
  height: 64px;
  font-size: 22px;
}

@media (max-width: 700px) {
  .release-topbar nav {
    gap: 10px;
  }

  .device-facts .status-pill:first-child {
    display: none;
  }

  .release-command-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .release-job-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .release-job-tab {
    font-size: 16px;
  }

  .release-device-meta {
    grid-template-columns: 1fr;
  }

  .assigned-printer {
    display: none;
  }

  .release-big-action {
    width: 112px;
  }

  .launcher-grid {
    grid-template-columns: 1fr;
  }

  .launcher-tile {
    min-height: 116px;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: start;
    align-content: center;
  }

  .launcher-icon {
    grid-row: 1 / span 2;
    width: 78px;
    height: 78px;
  }

  .launcher-icon svg {
    width: 52px;
    height: 52px;
  }

  .launcher-tile strong {
    font-size: 29px;
    text-align: left;
  }

  .launcher-tile span:last-child {
    text-align: left;
  }

  .copy-head-row,
  .copy-quick-controls {
    grid-template-columns: 1fr;
  }

  .copy-counter {
    grid-template-columns: 66px minmax(90px, 1fr) 66px;
  }

  .copy-mode-tabs,
  .copy-color-tabs,
  .copy-options-grid,
  .copy-slider-grid,
  .scan-glass-stage,
  .scan-glass-actions,
  .scan-glass-live {
    grid-template-columns: 1fr;
  }

  .scan-fields {
    grid-template-columns: 1fr;
  }
}
