/* ============================================================
   Palworld Panel — "field-station console" design system
   Dark, rugged, instrument-panel. Nameplate cards + status LEDs
   are the signature motif; everything else stays quiet.
   ============================================================ */

:root {
  --bg-void: #0e100b;
  --bg-base: #12140f;
  --bg-panel: #1b1f17;
  --bg-raised: #242a1d;
  --bg-input: #1a1d15;
  --line: #34392a;
  --line-soft: #262b1e;

  --text-primary: #edefe4;
  --text-muted: #9ba38c;
  --text-faint: #6b715e;

  --accent: #ff7a1a;
  --accent-dim: #a5510f;
  --accent-glow: rgba(255, 122, 26, 0.35);

  --data: #6fb7c9;
  --good: #7cc576;
  --good-glow: rgba(124, 197, 118, 0.55);
  --bad: #e5484d;
  --bad-glow: rgba(229, 72, 77, 0.55);
  --warn: #e8c547;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius: 3px;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

body {
  background-image:
    radial-gradient(ellipse at top left, rgba(255,122,26,0.05), transparent 45%),
    radial-gradient(ellipse at bottom right, rgba(111,183,201,0.04), transparent 50%);
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

a { color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--accent-glow); color: var(--text-primary); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-panel); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-faint); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, .nameplate {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.mono { font-family: var(--font-mono); }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }

/* ---------------------------------------------------------- app shell -- */
#app { display: flex; min-height: 100vh; }

.rail {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-panel);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}

.rail-brand {
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  border-bottom: 1px solid var(--line-soft);
}
.rail-brand .mark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.rail-brand .mark span { color: var(--accent); }
.rail-brand .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.rail-nav { flex: 1; padding: var(--sp-3) 0; overflow-y: auto; }
.rail-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  padding: var(--sp-3) var(--sp-4) var(--sp-1);
}
.rail-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: background 120ms, color 120ms, border-color 120ms;
  font-size: 13px;
}
.rail-link:hover { background: var(--bg-raised); color: var(--text-primary); }
.rail-link.active {
  color: var(--text-primary);
  border-left-color: var(--accent);
  background: linear-gradient(90deg, var(--accent-glow), transparent 60%);
}
.rail-link .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.rail-footer {
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--line-soft);
}
.btn-logout {
  width: 100%;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: var(--sp-2);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.btn-logout:hover { border-color: var(--bad); color: var(--bad); }

/* --------------------------------------------------------- main column - */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.instrument-strip {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-3) var(--sp-5);
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  flex-wrap: wrap;
}
.gauge { display: flex; align-items: baseline; gap: var(--sp-2); }
.gauge .label { color: var(--text-faint); letter-spacing: 0.08em; font-size: 10px; }
.gauge .value { color: var(--data); font-size: 14px; }
.gauge .value.warn { color: var(--warn); }
.gauge .value.bad { color: var(--bad); }

.content { padding: var(--sp-5); flex: 1; }
.content.narrow { max-width: 860px; }

.page-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.page-header h1 { font-size: 26px; }
.page-header .desc { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

/* ------------------------------------------------------------- buttons - */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 120ms, background 120ms, color 120ms, transform 80ms;
}
.btn:hover { border-color: var(--text-faint); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #1a0f04; }
.btn-primary:hover { background: #ff8c3c; border-color: #ff8c3c; }
.btn-danger { border-color: var(--bad); color: var(--bad); background: transparent; }
.btn-danger:hover { background: rgba(229,72,77,0.12); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-raised); }
.btn-sm { padding: 5px 10px; font-size: 11px; }

/* --------------------------------------------------------------- cards - */
.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-4);
}

.station {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: border-color 150ms;
}
.station::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--line);
}
.station.is-running::before { background: var(--good); box-shadow: 0 0 12px var(--good-glow); }
.station.is-stopped::before { background: var(--bad); }
.station:hover { border-color: var(--text-faint); }

.station-head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-2); }
.station-title { font-family: var(--font-display); font-size: 19px; letter-spacing: 0.02em; text-transform: uppercase; }
.led {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bad); margin-top: 5px; flex-shrink: 0;
}
.led.on { background: var(--good); box-shadow: 0 0 8px var(--good-glow); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

.station-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: 2px; }
.station-stats {
  display: flex; gap: var(--sp-4); margin: var(--sp-4) 0;
  font-family: var(--font-mono);
}
.station-stats .stat .n { font-size: 20px; color: var(--data); display: block; }
.station-stats .stat .l { font-size: 10px; color: var(--text-faint); letter-spacing: 0.08em; }
.station-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.station.add-new {
  display: flex; align-items: center; justify-content: center;
  border-style: dashed; min-height: 160px; cursor: pointer;
  color: var(--text-faint); font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase;
}
.station.add-new:hover { color: var(--accent); border-color: var(--accent-dim); }

/* -------------------------------------------------------------- tabs --- */
.tabstrip {
  display: flex; gap: 2px; border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-4); overflow-x: auto;
}
.tab {
  padding: var(--sp-2) var(--sp-4);
  cursor: pointer; color: var(--text-muted);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.tab:hover { color: var(--text-primary); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ------------------------------------------------------------ forms --- */
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 5px; }
.field .field-desc { font-size: 11px; color: var(--text-faint); margin-top: 4px; }
input[type=text], input[type=password], input[type=number], input[type=search], textarea, select {
  width: 100%; background: var(--bg-input); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 8px 10px; color: var(--text-primary);
  transition: border-color 120ms;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { font-family: var(--font-mono); font-size: 12px; resize: vertical; }
.help-inline { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); }

.switch { position: relative; display: inline-block; width: 38px; height: 21px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0; background: var(--bg-input); border: 1px solid var(--line);
  border-radius: 20px; cursor: pointer; transition: background 150ms;
}
.switch .track::before {
  content: ""; position: absolute; width: 15px; height: 15px; left: 2px; top: 2px;
  background: var(--text-faint); border-radius: 50%; transition: transform 150ms, background 150ms;
}
.switch input:checked + .track { background: var(--accent-dim); border-color: var(--accent); }
.switch input:checked + .track::before { transform: translateX(17px); background: var(--accent); }

.chip-row { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.chip {
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 20px;
  cursor: pointer; font-size: 12px; color: var(--text-muted); user-select: none;
}
.chip.on { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

.settings-group { margin-bottom: var(--sp-6); }
/* Collapsed groups sit closer together so the headings read as one list. */
.settings-group:not([open]) { margin-bottom: var(--sp-3); }
.settings-group:not([open]) > summary { margin-bottom: 0; }
.settings-group > summary {
  display: flex; align-items: center; gap: var(--sp-2);
  cursor: pointer; list-style: none; user-select: none;
  padding-bottom: var(--sp-2); margin-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-soft);
}
.settings-group > summary::-webkit-details-marker { display: none; }
.settings-group > summary::before {
  content: ""; flex: none;
  border-left: 5px solid var(--text-faint);
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  transition: transform 120ms ease, border-left-color 120ms ease;
}
.settings-group[open] > summary::before { transform: rotate(90deg); }
.settings-group > summary:hover { border-bottom-color: var(--line); }
.settings-group > summary:hover::before { border-left-color: var(--accent); }
.settings-group > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.settings-group h3 { font-size: 14px; color: var(--text-primary); margin: 0; }
.settings-group .gcount {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  color: var(--text-faint);
}
.settings-row {
  display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-4);
  align-items: center; padding: var(--sp-2) 0; border-bottom: 1px solid var(--line-soft);
}
.settings-row:last-child { border-bottom: none; }
.settings-row .rlabel { font-size: 12.5px; }
.settings-row .rlabel .k { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); }

/* -------------------------------------------------------------- table - */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--line); }
td { padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--line-soft); }
tr:hover td { background: var(--bg-raised); }
.id-cell { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }

/* --------------------------------------------------------------- misc - */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 12px; border: 1px solid var(--line); text-transform: uppercase;
}
.badge.good { color: var(--good); border-color: var(--good); }
.badge.bad { color: var(--bad); border-color: var(--bad); }
.badge.warn { color: var(--warn); border-color: var(--warn); }

.terminal {
  background: var(--bg-void); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 12px; color: #cfe8b8;
  height: 480px; overflow-y: auto; padding: var(--sp-3); white-space: pre-wrap; word-break: break-all;
}
.terminal .line { border-left: 2px solid transparent; padding-left: 6px; }
.terminal .line:hover { border-left-color: var(--accent-dim); background: rgba(255,255,255,0.02); }

.empty-state {
  text-align: center; padding: var(--sp-7) var(--sp-4); color: var(--text-faint);
}
.empty-state .glyph { font-size: 32px; margin-bottom: var(--sp-3); color: var(--text-faint); }
.empty-state .action { margin-top: var(--sp-4); }

.toast-stack { position: fixed; bottom: var(--sp-5); right: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); z-index: 200; }
.toast {
  background: var(--bg-raised); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--radius); font-size: 13px; min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); animation: slidein 180ms ease-out;
}
.toast.error { border-left-color: var(--bad); }
.toast.success { border-left-color: var(--good); }
@keyframes slidein { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(6,7,4,0.72); display: flex;
  align-items: center; justify-content: center; z-index: 150; padding: var(--sp-4);
  backdrop-filter: blur(2px);
}
.modal {
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5); width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto;
}
.modal h2 { font-size: 20px; margin-bottom: var(--sp-4); }
.modal-actions { display: flex; justify-content: flex-end; gap: var(--sp-2); margin-top: var(--sp-5); }

.breadcrumbs { display: flex; gap: 4px; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); flex-wrap: wrap; margin-bottom: var(--sp-3); }
.breadcrumbs a { cursor: pointer; color: var(--data); }
.breadcrumbs a:hover { text-decoration: underline; }

.file-row { display: flex; align-items: center; gap: var(--sp-3); padding: 7px var(--sp-2); border-radius: var(--radius); cursor: default; }
.file-row:hover { background: var(--bg-raised); }
.file-row .fname { flex: 1; cursor: pointer; }
.file-row .fname.dir { color: var(--data); cursor: pointer; }
.file-row .fsize, .file-row .fdate { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); width: 90px; text-align: right; }
.file-row .factions { display: flex; gap: 4px; opacity: 0; transition: opacity 120ms; }
.file-row:hover .factions { opacity: 1; }

/* --------------------------------------------------------------- login - */
/* --------------------------------------------------------- nexus browser - */
.nexus-searchbar {
  display: flex; gap: var(--sp-2); margin-bottom: var(--sp-4); flex-wrap: wrap;
}
.nexus-searchbar input[type=search] { flex: 1; min-width: 200px; }
.nexus-searchbar select { width: auto; min-width: 150px; }

/* ------------------------------------------- permission + day checkboxes - */
.perm-grid {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
}
.perm-check {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-input); font-size: 12.5px; cursor: pointer;
  user-select: none;
}
.perm-check:hover { border-color: var(--accent-dim); }
.perm-check:has(input:checked) {
  border-color: var(--accent); background: var(--bg-raised); color: var(--text-primary);
}
.perm-check input { accent-color: var(--accent); margin: 0; }
.perm-check:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }

.user-row {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: var(--sp-3); margin-bottom: var(--sp-3);
}
.user-head { display: flex; align-items: center; gap: var(--sp-2); }
.user-head .uname {
  font-family: var(--font-mono); font-size: 13px; color: var(--text-primary);
}
.user-perms { margin-top: var(--sp-2); display: flex; flex-wrap: wrap; gap: 5px; }
.user-edit {
  margin-top: var(--sp-3); padding-top: var(--sp-3);
  border-top: 1px dashed var(--line);
}

.nexus-filterbar {
  display: flex; align-items: center; gap: var(--sp-2);
  margin: calc(var(--sp-4) * -1 + 4px) 0 var(--sp-3);
  font-size: 12.5px; color: var(--text-dim);
}
.nexus-filterbar .faint { margin-left: auto; font-size: 11px; }

.nexus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}

.nexus-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color 150ms, transform 100ms;
}
.nexus-card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.nexus-card .thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: var(--bg-void); display: block;
}
.nexus-card .thumb-empty {
  width: 100%; aspect-ratio: 16/9; background: var(--bg-void);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); font-family: var(--font-mono); font-size: 11px;
}
.nexus-card .body { padding: var(--sp-3); flex: 1; display: flex; flex-direction: column; gap: 6px; }
.nexus-card .title {
  font-family: var(--font-display); font-size: 16px; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1.15;
}
.nexus-card .summary {
  font-size: 12px; color: var(--text-muted); flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nexus-card .meta {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-faint);
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
}
.nexus-card .meta .data { color: var(--data); }

.compat-warn {
  border-left: 3px solid var(--bad);
  background: rgba(229,72,77,0.08);
  padding: var(--sp-2) var(--sp-3);
  font-size: 12px; color: var(--text-primary);
  border-radius: var(--radius);
}
.compat-warn strong { color: var(--bad); }

.nexus-pager { display: flex; justify-content: center; align-items: center; gap: var(--sp-3); margin-top: var(--sp-5); }
.nexus-pager .pos { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); }

.file-pick {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3); border: 1px solid var(--line-soft);
  border-radius: var(--radius); margin-bottom: var(--sp-2);
}
.file-pick .fp-name { font-size: 13px; }
.file-pick .fp-meta { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); }
.file-pick.is-main { border-color: var(--accent-dim); }

.steps { counter-reset: step; margin: var(--sp-3) 0; padding: 0; list-style: none; }
.steps li {
  counter-increment: step; position: relative; padding-left: 26px;
  margin-bottom: var(--sp-2); font-size: 12.5px; color: var(--text-muted);
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-raised); border: 1px solid var(--line);
  color: var(--accent); font-family: var(--font-mono); font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}

.mod-source { font-family: var(--font-mono); font-size: 10px; color: var(--data); }

.login-screen {
  width: 100%;
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,122,26,0.08), transparent 45%),
    radial-gradient(ellipse at 70% 80%, rgba(111,183,201,0.06), transparent 50%),
    var(--bg-void);
}
.login-card { width: 360px; padding: var(--sp-6) var(--sp-5); }
.login-brand { text-align: center; margin-bottom: var(--sp-6); }
.login-brand .mark { font-family: var(--font-display); font-size: 34px; letter-spacing: 0.03em; }
.login-brand .mark span { color: var(--accent); }
.login-brand .sub { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); letter-spacing: 0.16em; margin-top: 6px; }
.login-error { color: var(--bad); font-size: 12px; margin-top: var(--sp-2); font-family: var(--font-mono); min-height: 16px; }

.loading-fill { display: flex; align-items: center; justify-content: center; padding: var(--sp-7); color: var(--text-faint); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; }

@media (max-width: 760px) {
  .rail { position: fixed; z-index: 100; transform: translateX(-100%); transition: transform 200ms; }
  .rail.open { transform: translateX(0); }
  .settings-row { grid-template-columns: 1fr; }
  .instrument-strip { gap: var(--sp-4); }
}
