:root {
  --bg: #f4efe5;
  --panel: rgba(255, 251, 243, 0.84);
  --panel-strong: rgba(255, 251, 243, 0.94);
  --line: rgba(73, 59, 44, 0.15);
  --text: #1f1c18;
  --muted: #675a4b;
  --accent: #2e5c46;
  --accent-strong: #204433;
  --shadow: 0 22px 60px rgba(46, 35, 22, 0.12);
}

* { box-sizing: border-box; }
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(88, 144, 116, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(181, 114, 72, 0.15), transparent 22%),
    linear-gradient(180deg, #f6f1e7 0%, #efe8dd 55%, #ebe3d6 100%);
  color: var(--text);
}
body.auth-gate-open {
  overflow: hidden;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}
.auth-card {
  width: min(360px, 100%);
  background: rgba(255, 251, 243, 0.97);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.connection-box {
  margin: 14px 0 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(245, 240, 232, 0.8);
  border: 1px solid rgba(73, 59, 44, 0.12);
}
.auth-gate[hidden] {
  display: none !important;
}
.shell {
  width: min(1500px, calc(100% - 24px));
  margin: 24px auto 40px;
  padding: 24px;
  min-width: 0;
}
.app-topbar {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 251, 243, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.app-topbar-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.app-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(160deg, #2e5c46, #1c3b2c);
  color: #f3f7f4;
  font: 700 14px/1 "IBM Plex Mono", monospace;
}
.app-brand-copy { display: grid; gap: 2px; }
.app-brand-copy strong { color: var(--accent-strong); }
.app-brand-copy span,
.app-topbar-note {
  color: var(--muted);
  font-size: 13px;
}
.auth-chip-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.auth-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 92, 70, 0.12);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  margin-bottom: 18px;
}
.hero-copy,
.hero-note,
.panel {
  backdrop-filter: blur(14px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 22px;
  display: grid;
  gap: 14px;
}
.hero-note {
  padding: 20px;
  background: linear-gradient(160deg, rgba(46, 92, 70, 0.9), rgba(27, 48, 37, 0.94));
  color: #eef6f0;
}
.hero-note-title {
  margin: 0 0 12px;
  font-weight: 800;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font: 500 12px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.lede {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.section-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.section-jump a {
  text-decoration: none;
  border: 1px solid rgba(46, 92, 70, 0.16);
  border-radius: 999px;
  background: rgba(46, 92, 70, 0.08);
  color: var(--accent-strong);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}
.wizard-tabs {
  display: none;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 251, 243, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  gap: 8px;
}
.wizard-tab {
  flex: 1;
  border: 1px solid rgba(46, 92, 70, 0.16);
  border-radius: 999px;
  background: rgba(46, 92, 70, 0.08);
  color: var(--accent-strong);
}
.wizard-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7fbf8;
  border-color: transparent;
}
.mobile-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 20;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(46, 35, 22, 0.18);
  max-width: calc(100vw - 24px);
}
.mobile-dock-item {
  border: 1px solid rgba(46, 92, 70, 0.16);
  border-radius: 999px;
  background: rgba(46, 92, 70, 0.08);
  color: var(--accent-strong);
  padding: 12px 10px;
}
.mobile-dock-item.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7fbf8;
  border-color: transparent;
}
.workflow-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.workflow-pill {
  border: 1px solid rgba(46, 92, 70, 0.18);
  border-radius: 999px;
  background: rgba(46, 92, 70, 0.08);
  color: var(--accent-strong);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
}
.grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}
.panel { padding: 20px; background: var(--panel-strong); min-width: 0; overflow-x: clip; }
.panel h2, .panel h3 { margin: 0 0 14px; }
.section + .section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(73, 59, 44, 0.12);
}
.quick-start-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(246, 242, 235, 0.92) 100%);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(73, 59, 44, 0.12);
}
.quick-start-panel .overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mode-toggle-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 18px;
  border: 1px solid rgba(73, 59, 44, 0.12);
  background: rgba(255,255,255,0.82);
}
.mode-toggle-copy {
  display: grid;
  gap: 4px;
}
.mode-toggle-copy strong {
  font-size: 16px;
}
.mode-toggle-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.login-mode-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.login-mode-option {
  position: relative;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(73, 59, 44, 0.12);
  background: rgba(246, 242, 235, 0.78);
  cursor: pointer;
}
.login-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.login-mode-option span {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.login-mode-option small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.login-mode-option:has(input:checked) {
  border-color: rgba(46, 92, 70, 0.36);
  background: linear-gradient(180deg, rgba(46, 92, 70, 0.14) 0%, rgba(255,255,255,0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(46, 92, 70, 0.08);
}
.quick-load-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.quick-run-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.quick-load-actions button {
  width: 100%;
}
.quick-run-actions button {
  width: 100%;
}
#quick-run-reservation {
  grid-column: 1 / -1;
}
.reservation-hero-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(73, 59, 44, 0.14);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(246, 242, 235, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(46, 35, 22, 0.08);
}
.reservation-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.reservation-hero-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.reservation-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  background: rgba(46, 92, 70, 0.1);
}
.reservation-hero-copy h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.reservation-subcopy {
  margin: 0;
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}
.reservation-subcopy strong {
  color: var(--text);
  font-size: 15px;
}
.reservation-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #1d4f91;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.reservation-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.reservation-fact {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(73, 59, 44, 0.1);
}
.reservation-fact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.reservation-fact-value {
  display: block;
  font-size: 17px;
  line-height: 1.45;
  word-break: keep-all;
}
.reservation-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.reservation-mini-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(250, 247, 241, 0.92);
  border: 1px solid rgba(73, 59, 44, 0.1);
}
.reservation-mini-card strong {
  font-size: 16px;
  line-height: 1.35;
}
.reservation-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.quick-run-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(180deg, rgba(233, 242, 255, 0.72) 0%, rgba(255,255,255,0.84) 100%);
}
.quick-run-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.quick-run-copy strong {
  color: #1d4f91;
}
.quick-run-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.quick-run-actions button {
  min-width: 132px;
}
.quick-template-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.quick-template-card {
  border: 1px solid rgba(73, 59, 44, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.78);
}
.quick-template-card strong {
  display: block;
  margin-bottom: 8px;
}
.quick-template-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}
.advanced-panel {
  border-top: none;
  padding-top: 0;
}
.advanced-panel summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 14px 0;
}
.advanced-panel summary::-webkit-details-marker {
  display: none;
}
.helper {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.field-grid.single { grid-template-columns: 1fr; }
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  min-width: 0;
}
input, textarea, select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(73, 59, 44, 0.18);
  border-radius: 12px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.8);
}
input[type="date"],
input[type="datetime-local"] {
  min-height: 48px;
  line-height: 1.2;
  display: block;
  -webkit-appearance: none;
}
textarea { min-height: 140px; resize: vertical; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
button {
  border: none;
  border-radius: 12px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 700;
}
.primary { background: #2563eb; color: #fff; }
.secondary { background: rgba(46, 92, 70, 0.12); color: #143123; }
.danger { background: #dc2626; color: #fff; }
.ghost { background: rgba(255,255,255,0.72); color: #0f172a; border: 1px solid rgba(73, 59, 44, 0.16); }
.card-list { display: flex; flex-direction: column; gap: 12px; }
.queue-builder {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-bottom: 14px;
}
.queue-builder-card {
  border: 1px solid rgba(73, 59, 44, 0.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.7);
}
.queue-builder-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}
.routing-presets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.routing-preset {
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(46, 92, 70, 0.12);
  background: rgba(255,255,255,0.82);
  color: var(--text);
}
.routing-preset strong { font-size: 14px; }
.routing-preset span { font-size: 12px; color: var(--muted); }
.routing-preset.active {
  border-color: rgba(46, 92, 70, 0.3);
  background: linear-gradient(180deg, rgba(46, 92, 70, 0.14) 0%, rgba(255,255,255,0.95) 100%);
  box-shadow: inset 0 0 0 1px rgba(46, 92, 70, 0.06);
}
.worker-chip-board {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 44px;
}
.worker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(46, 92, 70, 0.16);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(46, 92, 70, 0.08);
  color: var(--accent-strong);
}
.worker-chip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.queue-preview {
  display: grid;
  gap: 10px;
}
.queue-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(245, 240, 232, 0.9);
}
.queue-preview-row span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.queue-preview-row strong {
  text-align: right;
  font-size: 13px;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.overview-card {
  border: 1px solid rgba(73, 59, 44, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,251,255,0.7) 100%);
}
.overview-card strong {
  display: block;
  margin-bottom: 8px;
}
.overview-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.campground-search-panel {
  display: grid;
  gap: 10px;
}
.campground-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.campground-search-results {
  display: grid;
  gap: 10px;
}
.campground-search-item {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(73, 59, 44, 0.12);
}
.campground-search-item strong {
  font-size: 15px;
}
.campground-search-meta {
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.campground-search-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.analysis-summary-panel {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(73, 59, 44, 0.12);
  background: rgba(255,255,255,0.82);
}
.analysis-summary-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}
.candidate-chip-board {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.candidate-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(46, 92, 70, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(46, 92, 70, 0.08);
  color: var(--accent-strong);
  font-weight: 600;
}
.candidate-chip small {
  color: var(--muted);
  font-size: 11px;
}
.target-card {
  border: 1px solid rgba(73, 59, 44, 0.12);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.72);
}
.target-card .field-grid {
  margin-top: 10px;
}
.target-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.target-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.status-box {
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(73, 59, 44, 0.12);
}
.status-box strong { display: block; margin-bottom: 8px; }
.status-summary-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.log-box, .json-box {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  min-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}
.list-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
}
.list-item {
  border: 1px solid rgba(73, 59, 44, 0.12);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.82);
}
.worker-card {
  display: grid;
  gap: 8px;
}
.worker-card-top,
.job-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.worker-card-stats,
.job-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mini-stat {
  border-radius: 12px;
  padding: 10px;
  background: rgba(245, 240, 232, 0.9);
  border: 1px solid rgba(73, 59, 44, 0.08);
}
.mini-stat span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mini-stat strong {
  display: block;
  font-size: 13px;
  word-break: break-word;
}
.worker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.list-item-title {
  font-weight: 800;
  margin-bottom: 6px;
}
.list-item-meta {
  color: var(--muted);
  font-size: 12px;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.status-chip.idle { background: #e0f2fe; color: #0369a1; }
.status-chip.busy { background: #fee2e2; color: #b91c1c; }
.status-chip.offline { background: #e5e7eb; color: #374151; }
.status-chip.draining { background: #fef3c7; color: #b45309; }
.status-chip.queued,
.status-chip.assigned { background: #dbeafe; color: #1d4ed8; }
.status-chip.running { background: #fef3c7; color: #b45309; }
.status-chip.succeeded { background: #dcfce7; color: #15803d; }
.status-chip.failed,
.status-chip.cancelled,
.status-chip.stale { background: #fee2e2; color: #b91c1c; }
.inline-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 92, 70, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}
.success { color: #15803d; }
.warning { color: #b45309; }
.error { color: #b91c1c; }
.muted { color: #64748b; }
@media (max-width: 980px) {
  .hero, .grid, .field-grid, .queue-builder { grid-template-columns: 1fr; }
  .shell { padding: 16px; }
  .overview-grid { grid-template-columns: 1fr; }
  .quick-start-panel .overview-grid,
  .quick-load-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-template-cards { grid-template-columns: 1fr; }
  .reservation-mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section-jump { display: none; }
  .wizard-tabs { display: none; }
  .mobile-dock { display: grid; }
  .shell {
    width: calc(100% - 10px);
    margin: 10px auto 20px;
    padding: 0 0 96px;
  }
  .app-topbar,
  .panel {
    border-radius: 20px;
  }
  .app-topbar {
    padding: 14px;
    margin-bottom: 12px;
  }
  .app-topbar-note,
  .hero-note { display: none; }
  .hero {
    margin-bottom: 12px;
  }
  .hero-copy {
    padding: 18px;
  }
  [data-step-panel] { display: none; }
  [data-step-panel].active-step-panel { display: block; }
  .routing-presets,
  .worker-card-stats,
  .job-meta-grid,
  .campground-search-bar { grid-template-columns: 1fr; }
  .queue-builder-head,
  .worker-card-top,
  .job-card-top { display: grid; }
  .hero h1 { font-size: clamp(24px, 8vw, 34px); }
  .reservation-hero-top {
    flex-direction: column;
    align-items: stretch;
  }
  .reservation-hero-copy h4 { font-size: 24px; }
  .reservation-fact-grid { grid-template-columns: 1fr; }
  .reservation-fact-value { font-size: 16px; }
  .mobile-dock-item { padding: 10px 6px; font-size: 12px; }
  .button-row { flex-direction: column; }
  .quick-start-panel .overview-grid,
  .login-mode-segment,
  .quick-load-actions,
  .quick-run-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-start-panel .overview-card {
    min-height: 110px;
  }
  .quick-run-actions button { width: 100%; }
}
