:root {
  --bg: #edf3ff;
  --bg-deep: #d9e7ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.97);
  --text: #182235;
  --muted: #647089;
  --border: rgba(24, 34, 53, 0.1);
  --accent: #356dff;
  --accent-strong: #163d9e;
  --good: #129264;
  --bad: #d34c4c;
  --neutral: #7a8498;
  --shadow: 0 24px 60px rgba(25, 54, 117, 0.14);
}

body.dark {
  --bg: #08101e;
  --bg-deep: #020612;
  --panel: rgba(13, 20, 35, 0.9);
  --panel-strong: rgba(18, 27, 47, 0.96);
  --text: #edf3ff;
  --muted: #93a0ba;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #79a5ff;
  --accent-strong: #bed3ff;
  --shadow: 0 26px 68px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78, 129, 255, 0.2), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(76, 222, 198, 0.14), transparent 18%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
}

.page-bg {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.page-bg-a {
  top: 80px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(64, 134, 255, 0.18);
}

.page-bg-b {
  right: -80px;
  bottom: 30px;
  width: 320px;
  height: 320px;
  background: rgba(67, 213, 192, 0.14);
}

.page-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 12, 22, 0.2);
  backdrop-filter: blur(4px);
}

.page-loading-overlay.active {
  display: flex;
}

.page-loading-box {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 20px 24px;
  min-width: 180px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.page-loading-spinner {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 3px solid rgba(127, 148, 196, 0.22);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

.page-loading-text {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.theme-button,
.nav-link {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

body.dark .theme-button,
body.dark .nav-link {
  color: #09111f;
}

.theme-button.secondary {
  background: var(--panel-strong);
  color: var(--text);
}

.theme-button[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.shell {
  width: min(1080px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.shell-wide {
  width: min(1400px, calc(100vw - 24px));
}

.hero-card,
.panel,
.summary-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  margin-bottom: 18px;
}

.hero-card.compact {
  padding: 22px 24px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: -0.04em;
}

.hero-copy,
.panel-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.summary-card {
  padding: 20px;
}

.summary-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.summary-card strong {
  display: block;
  font-size: 30px;
}

.summary-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.panel {
  padding: 24px;
  margin-bottom: 18px;
}

.panel-head {
  margin-bottom: 16px;
}

.menu-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel-strong);
  text-decoration: none;
  color: inherit;
}

.menu-card-disabled {
  opacity: 0.72;
  pointer-events: none;
}

.menu-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #4cd2c0);
  color: #fff;
  font-weight: 800;
}

.menu-card strong,
.menu-card small {
  display: block;
}

.menu-card small {
  margin-top: 6px;
  color: var(--muted);
}

.table-wrap {
  overflow: auto;
}

.funding-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.funding-table th,
.funding-table td {
  border-bottom: 1px solid var(--border);
  padding: 14px 12px;
  text-align: center;
  vertical-align: top;
}

.funding-table th:first-child,
.funding-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: var(--panel-strong);
}

.cell-rate {
  display: block;
  font-weight: 700;
}

.cell-meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.pair-stack {
  display: grid;
  gap: 10px;
  min-width: 186px;
}

.pair-pill {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pair-pill::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(127, 148, 196, 0.5);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.92);
}

.pair-pill em {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.52);
}

.pair-pill strong {
  padding-right: 32px;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.72);
}

.pair-pill span {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.95);
}

.pair-pill.exchange-woox {
  border-color: rgba(216, 56, 56, 0.18);
}

.pair-pill.exchange-woox::after {
  background: #e14b4b;
}

.pair-pill.exchange-phemex {
  border-color: rgba(33, 143, 84, 0.18);
}

.pair-pill.exchange-phemex::after {
  background: #27b36c;
}

.pair-pill.exchange-bingx {
  border-color: rgba(46, 93, 189, 0.18);
}

.pair-pill.exchange-bingx::after {
  background: #3b6ee8;
}

.pair-pill.exchange-gate {
  border-color: rgba(189, 146, 20, 0.18);
}

.pair-pill.exchange-gate::after {
  background: #f2b31d;
}

.pair-pill.exchange-aster {
  border-color: rgba(20, 152, 170, 0.18);
}

.pair-pill.exchange-aster::after {
  background: #20bfd4;
}

.positive {
  color: var(--good);
}

.negative {
  color: var(--bad);
}

.neutral {
  color: var(--neutral);
}

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

.filter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel-strong);
}

.search-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.search-input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel-strong);
  color: var(--text);
  font: inherit;
}

.result-list {
  display: grid;
  gap: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(127, 148, 196, 0.1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

button.tag {
  border: 0;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}

button.tag:hover {
  transform: translateY(-1px);
  background: rgba(127, 148, 196, 0.18);
  color: var(--text);
}

.tag-alert {
  background: rgba(211, 76, 76, 0.12);
  color: var(--bad);
}

.result-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel-strong);
}

.result-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.result-card h3 {
  margin: 0;
  font-size: 22px;
}

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

.cumulative-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.cumulative-summary-main {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel-strong);
}

.cumulative-summary-main strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.05;
}

.cumulative-summary-main small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.chart-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 4px 0;
}

.chart-card {
  padding: 8px 10px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel-strong);
}

.chart-card-thin {
  padding: 8px 10px 10px;
}

.chart-card canvas {
  display: block;
  width: 100% !important;
}

.chart-card-flat {
  box-shadow: none;
}

#cumulative-history-card {
  grid-column: 1 / -1;
}

#cumulative-raw-card {
  grid-column: 1 / -1;
}

#cumulative-raw-card {
  max-height: 172px;
  overflow: hidden;
}

#cumulative-raw-chart {
  height: 128px !important;
  max-height: 128px;
}

#cumulative-line-card {
  max-height: 196px;
  overflow: hidden;
}

#cumulative-line-chart {
  height: 148px !important;
  max-height: 148px;
}

#cumulative-bar-card {
  max-height: 196px;
  overflow: hidden;
}

#cumulative-bar-chart {
  height: 148px !important;
  max-height: 148px;
}

.chart-card .panel-head {
  margin-bottom: 2px;
}

.chart-card .panel-head h2 {
  font-size: 13px;
  line-height: 1.1;
}

.panel-head-tight {
  margin-bottom: 6px;
}

.panel-head-tight p {
  margin: 0;
  font-size: 12px;
}

.cumulative-history-table {
  min-width: 960px;
}

.cumulative-history-table th:first-child,
.cumulative-history-table td:first-child {
  min-width: 150px;
}

.cumulative-history-table th,
.cumulative-history-table td {
  padding: 7px 9px;
  font-size: 12px;
  line-height: 1.15;
}

.cumulative-history-table th {
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cumulative-history-table td {
  white-space: nowrap;
}

.shell-narrow {
  width: min(1440px, calc(100vw - 24px));
}

.cumulative-intro {
  padding: 2px 0 0;
  text-align: center;
}

.cumulative-form-card {
  width: min(100%, 1280px);
  margin: 0 auto 4px;
  padding: 2px 0 0;
}

.cumulative-label {
  display: block;
  margin: 8px auto 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.cumulative-input {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  background: rgba(22, 26, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f7fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cumulative-input::placeholder {
  color: rgba(226, 232, 240, 0.68);
}

.cumulative-input:focus {
  outline: none;
  border-color: rgba(121, 165, 255, 0.7);
  box-shadow:
    0 0 0 3px rgba(121, 165, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cumulative-options {
  display: grid;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 6px;
}

.cumulative-actions {
  justify-content: center;
}

body.dark .cumulative-actions .theme-button {
  color: #09111f;
}

.exchange-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.exchange-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.92);
}

.exchange-card.exchange-woox {
  border-color: rgba(216, 56, 56, 0.16);
}

.exchange-card.exchange-woox::after {
  background: #e14b4b;
}

.exchange-card.exchange-phemex {
  border-color: rgba(33, 143, 84, 0.16);
}

.exchange-card.exchange-phemex::after {
  background: #27b36c;
}

.exchange-card.exchange-bingx {
  border-color: rgba(46, 93, 189, 0.16);
}

.exchange-card.exchange-bingx::after {
  background: #3b6ee8;
}

.exchange-card.exchange-gate {
  border-color: rgba(189, 146, 20, 0.16);
}

.exchange-card.exchange-gate::after {
  background: #f2b31d;
}

.mini-stat {
  padding: 12px;
  border-radius: 14px;
  background: rgba(127, 148, 196, 0.08);
}

.mini-stat strong,
.mini-stat small {
  display: block;
}

.mini-stat small {
  margin-top: 6px;
  color: var(--muted);
}

.ranking-table {
  min-width: 1180px;
}

.ranking-table th,
.ranking-table td {
  padding: 11px 10px;
  font-size: 13px;
}

.ranking-table th:first-child,
.ranking-table td:first-child {
  min-width: 52px;
  text-align: center;
}

.rank-side {
  display: grid;
  gap: 2px;
  justify-items: start;
  min-width: 136px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
}

.rank-side strong {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.72);
}

.rank-side span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
  color: rgba(15, 23, 42, 0.95);
}

.rank-side-long {
  border-color: rgba(18, 146, 100, 0.16);
}

.rank-side-short {
  border-color: rgba(211, 76, 76, 0.16);
}

.delist-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.input-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.toolbar-spread {
  justify-content: space-between;
  margin-top: 16px;
}

.status-text {
  min-height: 24px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.dark .status-text {
  background: rgba(255, 255, 255, 0.08);
}

.settings-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.positions-board-head,
.positions-board-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.85fr) minmax(88px, 0.5fr) minmax(170px, 1.15fr) minmax(170px, 1.15fr) minmax(96px, 0.56fr) minmax(96px, 0.56fr) minmax(100px, 0.65fr) 60px;
  gap: 10px;
  align-items: center;
}

.positions-filter-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 12px;
  margin: 10px 0 12px;
}

.positions-board-head {
  margin-bottom: 6px;
  padding: 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.positions-board-row {
  padding: 8px 2px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(130, 149, 188, 0.16);
  background: transparent;
  box-shadow: none;
}

.positions-symbol-cell {
  display: grid;
  gap: 2px;
}

.positions-symbol-cell strong {
  font-size: 15px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.positions-symbol-cell small,
.positions-notional-cell,
.positions-count-cell {
  color: var(--muted);
  font-weight: 700;
}

.positions-spread-cell {
  padding-top: 2px;
  font-size: 16px;
  line-height: 1;
}

.positions-side-cell {
  min-width: 0;
}

.positions-side-summary {
  display: grid;
  gap: 2px;
  padding: 0;
  border: 0;
  background: transparent;
}

.positions-side-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.exchange-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(130, 149, 188, 0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: rgba(247, 249, 255, 0.52);
}

.exchange-chip-woox {
  border-color: rgba(226, 77, 92, 0.24);
  background: rgba(226, 77, 92, 0.08);
  color: #b63145;
}

.exchange-chip-phemex {
  border-color: rgba(26, 166, 115, 0.24);
  background: rgba(26, 166, 115, 0.09);
  color: #15855e;
}

.exchange-chip-bingx {
  border-color: rgba(52, 106, 231, 0.2);
  background: rgba(52, 106, 231, 0.08);
  color: #2f5fce;
}

.exchange-chip-gate {
  border-color: rgba(220, 166, 24, 0.28);
  background: rgba(220, 166, 24, 0.1);
  color: #9b730e;
}

.positions-side-summary strong {
  font-size: 13px;
  line-height: 1;
}

.positions-side-summary small,
.positions-rate-cell,
.positions-side-empty {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.2;
  font-size: 11px;
}

.positions-side-empty {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  font-size: 12px;
}

.positions-rate-cell {
  font-size: 14px;
}

.positions-errors {
  margin-top: 2px;
  margin-bottom: 6px;
}

.positions-errors .tag {
  padding: 6px 10px;
  font-size: 11px;
}

.position-column-title {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 800;
}

.position-stack-grid {
  grid-template-columns: 1fr;
}

.mini-link {
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.positions-notional-cell,
.positions-count-cell {
  display: grid;
  gap: 4px;
}

.positions-compound-cell small {
  font-size: 12px;
}

.positions-notional-cell strong,
.positions-count-cell strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.positions-register-panel {
  opacity: 0.94;
}

.compact-form-grid {
  gap: 12px;
}

.compact-search-row {
  margin-top: 12px;
}

@media (max-width: 920px) {
  .summary-grid,
  .menu-grid,
  .filter-grid,
  .result-grid,
  .cumulative-grid,
  .cumulative-summary,
  .form-grid,
  .position-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positions-board-head,
  .positions-board-row {
    grid-template-columns: minmax(120px, 1fr) minmax(90px, 0.6fr);
  }

  .positions-filter-row {
    grid-template-columns: 1fr;
  }

  .positions-board-head span:nth-child(n + 3),
  .positions-board-row > :nth-child(n + 3) {
    grid-column: span 2;
  }

  .cumulative-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar,
  .search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar {
    flex-wrap: wrap;
  }

  .summary-grid,
  .menu-grid,
  .filter-grid,
  .result-grid,
  .chart-stack,
  .cumulative-grid,
  .cumulative-summary,
  .form-grid,
  .position-grid {
    grid-template-columns: 1fr;
  }

  .positions-board-head {
    display: none;
  }

  .positions-board-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .panel,
  .hero-card,
  .summary-card {
    padding: 18px;
  }

  .cumulative-form-grid {
    grid-template-columns: 1fr;
  }
}
