:root {
  --ink: #0b101a;
  --ink-soft: #222c3d;
  --muted: #667184;
  --paper: #f1f3f5;
  --panel: #ffffff;
  --line: #dce2e9;
  --line-dark: #c5ced9;
  --cyan: #4aa9cf;
  --cyan-dark: #237d9e;
  --gold: #f1b84a;
  --coral: #d85e3f;
  --green: #238b63;
  --focus: #1168d5;
  --shadow: 0 12px 28px rgba(18, 26, 42, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #080c14;
  line-height: 1.45;
}

button,
input,
textarea,
select { font: inherit; }

button,
select,
input,
textarea { border-radius: 6px; }

button { cursor: pointer; }

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(17, 104, 213, .32);
  outline-offset: 2px;
}

.hidden { display: none !important; }

.app-shell {
  width: 100%;
  min-height: 100vh;
}

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - 1360px) / 2));
  background: rgba(7, 11, 19, .98);
  border-bottom: 1px solid rgba(241, 184, 74, .32);
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.collaboration-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.user-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.user-picker > span { color: #c8d2df; }

.user-picker select {
  width: 150px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 7px 30px 7px 10px;
  background: #243147;
  color: white;
}

.save-status {
  min-width: 104px;
  color: #cbd5e1;
  font-size: 12px;
  text-align: right;
}

.button,
.icon-button,
.text-button,
.import-label {
  border: 0;
  font-weight: 800;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
}

.button:hover,
.icon-button:hover { filter: brightness(1.08); }

.button-accent {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.button-light {
  background: white;
  border-color: white;
  color: var(--ink);
}

.button-quiet {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.utility-bar .button-quiet {
  min-height: 38px;
  color: #eef3f8;
  border-color: rgba(255, 255, 255, .26);
  padding: 7px 11px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .26);
  background: transparent;
  color: white;
  font-size: 21px;
}

.quick-nav {
  position: sticky;
  top: 64px;
  z-index: 29;
  display: flex;
  justify-content: center;
  gap: 4px;
  min-height: 48px;
  padding: 6px max(14px, calc((100vw - 1320px) / 2));
  overflow-x: auto;
  background: rgba(11, 16, 26, .97);
  border-bottom: 1px solid rgba(241, 184, 74, .38);
  scrollbar-width: none;
}

.quick-nav::-webkit-scrollbar { display: none; }

.quick-nav a,
.quick-nav button {
  flex: 0 0 auto;
  min-width: 92px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: #d6dde7;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.quick-nav a:hover,
.quick-nav button:hover,
.quick-nav a.active {
  border-color: rgba(241, 184, 74, .58);
  background: rgba(241, 184, 74, .12);
  color: #ffd77d;
}

.load-problem {
  position: sticky;
  top: 112px;
  z-index: 28;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px max(18px, calc((100vw - 1320px) / 2));
  background: #fff1ec;
  border-bottom: 1px solid #e4aa98;
  color: #773626;
}

.load-problem > div { display: grid; gap: 2px; }
.load-problem span { font-size: 12px; }

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 48px;
  padding: 52px max(28px, calc((100vw - 1320px) / 2)) 42px;
  background:
    linear-gradient(90deg, rgba(5, 8, 14, .98) 0%, rgba(5, 8, 14, .89) 43%, rgba(5, 8, 14, .38) 74%, rgba(5, 8, 14, .62) 100%),
    url("assets/bronson-space-hero.jpg") center 48% / cover no-repeat;
  border-bottom: 2px solid var(--gold);
  color: white;
}

.hero-content { max-width: 890px; }

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow { color: #ffd77d; }

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Arial Black", Impact, Aptos, sans-serif;
  font-size: 66px;
  line-height: .96;
  font-weight: 900;
  letter-spacing: 0;
}

.subhead {
  max-width: 780px;
  margin: 18px 0;
  color: #e5ecf4;
  font-size: 19px;
  line-height: 1.55;
}

.mission-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.mission-facts span {
  padding: 7px 10px;
  border: 1px solid rgba(241, 184, 74, .58);
  border-radius: 4px;
  background: rgba(9, 13, 22, .72);
  color: #ffe0a0;
  font-size: 13px;
  font-weight: 800;
}

.party-details {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 184, 74, .42);
}

.party-details > div {
  display: grid;
  gap: 3px;
  min-width: 112px;
}

.party-details span {
  color: #aebbc9;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.party-details strong { font-size: 15px; }

.party-details small {
  max-width: 260px;
  color: #c8d0dc;
  font-size: 11px;
}

.gear-note {
  margin: 14px 0 0;
  color: #c8d0dc;
  font-size: 12px;
}

.gear-note strong { color: #ffd77d; }

.readiness-panel {
  align-self: end;
  padding: 24px;
  background: rgba(7, 11, 19, .94);
  color: white;
  border: 1px solid rgba(241, 184, 74, .72);
  box-shadow: var(--shadow);
}

.readiness-ring {
  --progress: 0deg;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) var(--progress), #2d3440 0deg);
}

.readiness-ring::before {
  content: "";
  grid-area: 1 / 1;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: #0b101a;
}

.readiness-ring > div {
  z-index: 1;
  display: grid;
  text-align: center;
}

.readiness-ring strong {
  font-size: 38px;
  line-height: 1;
}

.readiness-ring span {
  color: #aeb8c7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-panel > p {
  margin: 0;
  text-align: center;
  font-weight: 800;
}

.progress {
  height: 8px;
  margin: 13px 0;
  overflow: hidden;
  background: #2d3440;
  border-radius: 4px;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width .25s ease;
}

.readiness-panel .readiness-note {
  color: #aeb8c7;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.planner { display: block; }

.dashboard-band,
.mission-map-band,
.checklist-band {
  padding: 62px max(24px, calc((100vw - 1320px) / 2));
}

.dashboard-band { background: #f7f8fa; }

.section-title-row,
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.section-title-row { margin-bottom: 28px; }

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

#updatedText {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 17px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f9fafb;
  color: var(--ink);
  text-align: left;
}

.stat:last-child { border-right: 0; }
.stat:hover { background: #f1f5f8; }
.stat span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.stat strong { font-size: 30px; line-height: 1; }
.stat-critical strong { color: var(--coral); }
.stat-ready strong { color: var(--green); }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 46px;
  margin-top: 42px;
}

.focus-panel { padding-right: 46px; border-right: 1px solid var(--line); }

.panel-heading { align-items: center; margin-bottom: 16px; }

.count-badge {
  padding: 5px 8px;
  border-radius: 4px;
  background: #f1f4f7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.focus-list,
.activity-list { display: grid; }

.focus-item {
  width: 100%;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.focus-index {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.focus-item strong { display: block; font-size: 14px; }
.focus-item small { color: var(--muted); }
.focus-arrow { color: var(--muted); font-size: 18px; }

.text-button {
  padding: 5px 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.activity-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.activity-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-soft);
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.activity-item p { margin: 0; font-size: 13px; }
.activity-item small { display: block; margin-top: 2px; color: var(--muted); }
.activity-empty { margin: 8px 0 0; color: var(--muted); font-size: 14px; }

.mission-map-band {
  display: grid;
  grid-template-columns: .7fr 1.5fr .8fr;
  gap: 38px;
  align-items: center;
  background: #111824;
  border-top: 1px solid rgba(241, 184, 74, .5);
  border-bottom: 1px solid rgba(241, 184, 74, .5);
  color: white;
}

.mission-map-band .kicker { color: #ffd77d; }
.map-copy p:last-child { margin-bottom: 0; color: #aeb8c7; }
.map-copy h2 { font-size: 34px; }

.mission-map {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10px;
  min-height: 300px;
}

.zone {
  position: relative;
  padding: 46px 14px 14px;
  border: 2px solid #8c9aab;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.zone-outdoor { border-style: dashed; }

.zone-label {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.zone-rooms {
  height: 100%;
  display: grid;
  gap: 8px;
}

.zone-rooms > div {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: white;
}

.zone-rooms strong { font-size: 13px; }
.zone-rooms span { color: var(--muted); font-size: 11px; }
.zone-rooms .zone-primary { border-color: #d69e32; background: #fff8e9; }

.venue-photo {
  margin: 0;
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.venue-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.venue-photo figcaption {
  padding: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.checklist-band { background: var(--paper); }
.checklist-heading { align-items: center; }

.workspace {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 26px;
}

.sidebar {
  position: sticky;
  top: 128px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.search-box,
.notes-box,
.dialog-card label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-dark);
  padding: 9px 10px;
  background: white;
  color: var(--ink);
}

textarea { resize: vertical; }

.filter-group {
  display: grid;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.filter-group button {
  min-height: 42px;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink-soft);
  font-weight: 800;
  text-align: left;
}

.filter-group button:last-child { border-bottom: 0; }
.filter-group button:hover { background: #f4f7f9; }
.filter-group button.active {
  background: #fff3d6;
  color: #5d3e00;
  box-shadow: inset 4px 0 0 var(--gold);
}

.section-nav {
  display: grid;
  gap: 2px;
}

.section-nav a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 2px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}

.section-nav a:hover { color: var(--ink); }
.section-nav span { color: var(--line-dark); }

.file-actions {
  display: grid;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.file-actions .button,
.import-label {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  background: white;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: left;
}

.import-label { display: flex; align-items: center; cursor: pointer; }
.import-label input { display: none; }

.checklist-content { min-width: 0; }

.notes-box {
  margin-bottom: 18px;
  padding: 16px;
  background: #fff8df;
  border: 1px solid #ead99b;
  border-radius: 8px;
}

.notes-box textarea { border-color: #ded09f; }

.section-card {
  margin: 0 0 16px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(18, 26, 42, .04);
}

.section-card.flash { animation: flash 1.2s ease; }

@keyframes flash {
  0%, 100% { box-shadow: 0 4px 14px rgba(18, 26, 42, .04); }
  45% { box-shadow: 0 0 0 4px rgba(8, 167, 184, .28); }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  background: #f9fafb;
  border-bottom: 1px solid var(--line);
}

.section-head h3 { font-size: 21px; }

.section-progress {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.mini-progress {
  width: 74px;
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: #dfe5ea;
}

.mini-progress span { display: block; height: 100%; background: var(--green); }

.item {
  display: grid;
  grid-template-columns: 30px minmax(180px, 1.3fr) minmax(130px, .55fr) minmax(180px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 18px;
  border-bottom: 1px solid #edf0f3;
  transition: background .15s ease;
}

.item:last-child { border-bottom: 0; }
.item:hover { background: #fbfcfd; }
.item.highlight { background: #fff4ef; }

.item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--green);
}

.item-copy { min-width: 0; }

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

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 3px;
}

.critical-label {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.item.done .item-text { color: var(--muted); text-decoration: line-through; }
.item.done { background: #fafcfb; }

.owner-input,
.note-input {
  min-width: 0;
  padding: 8px 9px;
  font-size: 12px;
}

.owner-input.unassigned { border-color: #e5a89e; color: #9f3f32; background: #fff8f6; }

.empty-state {
  display: grid;
  gap: 4px;
  place-items: center;
  min-height: 180px;
  margin-bottom: 18px;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  background: white;
  text-align: center;
}

.empty-state span { color: var(--muted); }

dialog {
  width: min(620px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

dialog::backdrop { background: rgba(8, 14, 25, .68); }

.dialog-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.dialog-heading h3 { font-size: 26px; }

.dialog-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: #eef1f4;
  color: var(--ink);
  font-size: 24px;
}

.dialog-intro { margin: -3px 0 0; color: var(--muted); font-size: 14px; }

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

menu {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
}

.people-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.person-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.person-row .activity-avatar { background: var(--cyan-dark); }
.person-row strong { display: block; font-size: 14px; }
.person-row span:last-child { color: var(--muted); font-size: 12px; }

.add-person-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  padding-top: 4px;
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr) 250px; min-height: 530px; gap: 28px; }
  h1 { font-size: 56px; }
  .mission-map-band { grid-template-columns: .8fr 1.4fr; }
  .venue-photo { grid-column: 1 / -1; display: grid; grid-template-columns: 200px 1fr; align-items: center; }
  .venue-photo img { aspect-ratio: 4 / 3; }
  .item { grid-template-columns: 30px minmax(170px, 1fr) 130px minmax(150px, .8fr); }
}

@media (max-width: 820px) {
  .utility-bar { position: sticky; align-items: center; padding: 8px 14px; }
  .brand { min-height: 40px; }
  .collaboration-controls { flex-wrap: nowrap; }
  .save-status { display: none; }
  .quick-nav { top: 56px; justify-content: flex-start; }
  .load-problem { top: 104px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 18px; padding: 38px 22px 28px; }
  .hero-content { max-width: 700px; }
  h1 { font-size: 48px; }
  .readiness-panel { display: grid; grid-template-columns: 112px 1fr; column-gap: 18px; align-items: center; }
  .readiness-ring { width: 108px; height: 108px; grid-row: 1 / 5; margin: 0; }
  .readiness-ring::before { width: 84px; height: 84px; }
  .readiness-ring strong { font-size: 27px; }
  .readiness-panel > p { text-align: left; }
  .dashboard-grid { grid-template-columns: 1fr; gap: 32px; }
  .focus-panel { padding-right: 0; padding-bottom: 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .mission-map-band { grid-template-columns: 1fr; }
  .mission-map { min-height: 280px; }
  .venue-photo { grid-column: auto; }
  .workspace { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .filter-group { grid-template-columns: repeat(5, minmax(104px, 1fr)); overflow-x: auto; }
  .filter-group button { border-right: 1px solid var(--line); border-bottom: 0; text-align: center; }
  .section-nav { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 7px; }
  .section-nav a { flex: 0 0 auto; padding: 7px 10px; border: 1px solid var(--line-dark); border-radius: 5px; background: white; }
  .file-actions { grid-template-columns: repeat(3, 1fr); border-top: 0; padding-top: 0; }
  .item { grid-template-columns: 30px minmax(0, 1fr); }
  .owner-input, .note-input { grid-column: 2; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 112px; }
  .utility-bar { min-height: 56px; display: grid; grid-template-columns: 34px 1fr; gap: 8px; }
  .brand span:last-child { display: none; }
  .collaboration-controls { grid-column: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 6px; }
  .user-picker > span { display: none; }
  .user-picker select { width: 100%; min-width: 0; height: 38px; }
  .utility-bar .button-quiet { width: 38px; padding: 0; font-size: 0; }
  .utility-bar .button-quiet span { font-size: 20px; }
  .quick-nav { min-height: 46px; padding: 5px 8px; }
  .quick-nav a, .quick-nav button { min-width: 76px; min-height: 34px; padding: 6px 9px; }
  .load-problem { display: grid; gap: 8px; padding: 10px 14px; }
  .load-problem .button { width: 100%; }
  .hero { gap: 14px; padding: 28px 16px 20px; background-position: 53% center; }
  h1 { font-size: 37px; line-height: 1; }
  .subhead { margin: 13px 0; font-size: 14px; line-height: 1.45; }
  .mission-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
  .mission-facts span { padding: 6px 8px; font-size: 11px; }
  .party-details { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 12px; padding-top: 12px; }
  .party-details > div { min-width: 0; }
  .party-details .location-detail { grid-column: 1 / -1; }
  .party-details .button { grid-column: 1 / -1; min-height: 36px; }
  .party-details span { font-size: 9px; }
  .party-details strong { font-size: 13px; }
  .party-details small { font-size: 10px; }
  .gear-note { margin-top: 10px; font-size: 11px; }
  .readiness-panel { grid-template-columns: 78px 1fr; padding: 12px; }
  .readiness-ring { width: 74px; height: 74px; }
  .readiness-ring::before { width: 56px; height: 56px; }
  .readiness-ring strong { font-size: 19px; }
  .readiness-ring span { font-size: 9px; }
  .readiness-panel > p { font-size: 12px; }
  .readiness-panel .readiness-note { font-size: 10px; }
  .progress { margin: 8px 0; }
  .dashboard-band, .mission-map-band, .checklist-band { padding: 34px 16px; }
  h2 { font-size: 30px; }
  .section-title-row { display: grid; gap: 10px; }
  #updatedText { text-align: left; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .mission-map { grid-template-columns: 1fr; }
  .zone { min-height: 245px; }
  .venue-photo { display: block; }
  .file-actions { grid-template-columns: 1fr; }
  .checklist-heading .button { width: 100%; }
  .section-head { padding: 14px; }
  .section-head h3 { font-size: 18px; }
  .mini-progress { display: none; }
  .item { padding: 12px 14px; }
  .dialog-card { padding: 18px; }
  .dialog-grid, .add-person-row { grid-template-columns: 1fr; }
  menu .button { flex: 1; }
}

@media print {
  body { background: white; }
  .utility-bar,
  .readiness-panel,
  .dashboard-band,
  .mission-map-band,
  .sidebar,
  #addItemButton,
  dialog { display: none !important; }
  .hero { min-height: auto; display: block; padding: 24px; background: var(--ink); print-color-adjust: exact; }
  h1 { font-size: 40px; }
  .subhead { margin: 12px 0; font-size: 14px; }
  .mission-facts { margin-bottom: 12px; }
  .checklist-band { padding: 18px 0; }
  .workspace { display: block; }
  .notes-box { break-inside: avoid; }
  .section-card { break-inside: avoid; box-shadow: none; }
  .item { grid-template-columns: 24px 1.3fr 110px 1fr; padding: 7px 10px; }
  .owner-input, .note-input { grid-column: auto; border: 0; padding: 0; }
}
