/* Encore: shared styles. Dark theme, two accents (orange + violet). */

:root {
  --ink: #0E0E12;
  --surface: #15151C;
  --surface-2: #1C1C26;
  --surface-3: #23232F;
  --line: #2C2C3A;
  --line-soft: #24242F;
  --text: #F4F4F6;
  --muted: #A1A1AA;
  --faint: #71717F;
  --orange: #FF6A00;
  --orange-soft: rgba(255, 106, 0, 0.14);
  --violet: #8B5CF6;
  --violet-soft: rgba(139, 92, 246, 0.16);
  --green: #34D399;
  --amber: #FBBF24;
  --red: #F87171;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.8);
  --sidebar-w: 244px;
  --header-h: 64px;
  --display: "Unbounded", system-ui, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --mono: "Fira Code", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* radial energy in the page background, kept subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 420px at 84% -6%, rgba(255, 106, 0, 0.10), transparent 60%),
    radial-gradient(680px 460px at 6% 108%, rgba(139, 92, 246, 0.12), transparent 60%);
  z-index: 0;
}

/* ---------- Layout shell ---------- */
.shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink) 100%);
  border-right: 1px solid var(--line);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 6px 0;
}
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  color: #0E0E12;
  flex: none;
}
.brand .mark svg { width: 20px; height: 20px; display: block; }
.brand .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand .tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav { display: flex; flex-direction: column; gap: 3px; }
.nav .nav-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 6px 10px;
}
.nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.nav a svg { width: 18px; height: 18px; flex: none; }
.nav a:hover { background: var(--surface-2); color: var(--text); }
.nav a:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }
.nav a.active {
  background: var(--orange-soft);
  color: var(--text);
  box-shadow: inset 2px 0 0 var(--orange);
}
.nav a.active svg { color: var(--orange); }

.sidebar-foot {
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  flex: none;
}
.sidebar-foot .who { font-size: 13px; font-weight: 600; }
.sidebar-foot .role { font-size: 11px; color: var(--faint); }

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 26px;
  background: rgba(14, 14, 18, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.topbar h1 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  margin: 2px 0 0;
  letter-spacing: -0.01em;
}
.topbar .head-text { display: flex; flex-direction: column; }
.topbar .spacer { flex: 1; }

.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  min-width: 210px;
}
.search svg { width: 15px; height: 15px; color: var(--faint); flex: none; }
.search input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--body); font-size: 13px; width: 100%;
}
.search input::placeholder { color: var(--faint); }

.icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  display: grid; place-items: center;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.icon-btn:hover { color: var(--text); border-color: var(--violet); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn .dot {
  position: absolute; margin: -14px 0 0 12px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}

/* Main */
.main { min-width: 0; }
.page {
  padding: 26px 26px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-lead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.page-lead .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.page-lead h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.page-lead p { margin: 0; color: var(--muted); max-width: 60ch; }

/* ---------- Reusable pieces ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.card h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
}
.card .sub { color: var(--muted); font-size: 13px; margin: 0 0 16px; }

.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin: 0 0 14px;
}
.section-head h3 { font-family: var(--display); font-size: 16px; font-weight: 600; margin: 0; }
.section-head .hint { font-family: var(--mono); font-size: 11px; color: var(--faint); }

.grid { display: grid; gap: 16px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.span-2 { grid-column: span 2; }

/* Stat tile */
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.stat .stat-top { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.stat .stat-ic {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; flex: none;
  background: var(--orange-soft); color: var(--orange);
}
.stat .stat-ic svg { width: 16px; height: 16px; }
.stat.violet .stat-ic { background: var(--violet-soft); color: var(--violet); }
.stat .label { font-size: 12px; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.stat .value { font-family: var(--display); font-size: 27px; font-weight: 600; margin: 12px 0 2px; letter-spacing: -0.02em; }
.stat .delta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.stat .delta.up { color: var(--green); }
.stat .delta.down { color: var(--red); }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}
.badge .bd { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.badge.on-sale { color: var(--green); border-color: rgba(52, 211, 153, 0.35); }
.badge.on-sale .bd { background: var(--green); }
.badge.nearly, .badge.review, .badge.pending-soft { color: var(--amber); border-color: rgba(251, 191, 36, 0.35); }
.badge.nearly .bd, .badge.review .bd, .badge.pending-soft .bd { background: var(--amber); }
.badge.draft, .badge.pending { color: var(--faint); }
.badge.sold-out { color: var(--violet); border-color: rgba(139, 92, 246, 0.4); }
.badge.sold-out .bd { background: var(--violet); }
.badge.confirmed { color: var(--green); border-color: rgba(52, 211, 153, 0.35); }
.badge.confirmed .bd { background: var(--green); }

/* Meter / progress */
.meter { height: 8px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.meter > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--violet)); }
.meter.violet > span { background: var(--violet); }
.meter.green > span { background: var(--green); }
.meter.over > span { background: linear-gradient(90deg, var(--amber), var(--red)); }

/* Tables */
.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th {
  text-align: left; font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); padding: 10px 12px; border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.tbl td { padding: 12px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.tbl tbody tr { cursor: default; transition: background 0.12s; }
.tbl tbody tr.clickable { cursor: pointer; }
.tbl tbody tr:hover { background: var(--surface-2); }
.tbl tbody tr.selected { background: var(--orange-soft); }
.tbl .strong { font-weight: 600; }
.tbl .num { font-family: var(--mono); text-align: right; }
.mono { font-family: var(--mono); }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 10px; padding: 9px 15px;
  border: 1px solid var(--line); background: var(--surface-2);
  color: var(--text); font-weight: 500; font-size: 13px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { border-color: var(--violet); }
.btn:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }
.btn.primary { background: var(--orange); border-color: var(--orange); color: #16110A; font-weight: 600; }
.btn.primary:hover { background: #ff7d1f; }
.btn.ghost { background: transparent; }
.btn.sm { padding: 6px 11px; font-size: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: 12px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface-2);
  color: var(--muted); cursor: pointer; transition: all 0.15s;
}
.chip:hover { color: var(--text); }
.chip[aria-pressed="true"] { background: var(--violet-soft); color: var(--violet); border-color: var(--violet); }
.chip:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* Toggle switch (visual) */
.switch {
  position: relative; width: 42px; height: 24px; flex: none;
  border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface-3); cursor: pointer; padding: 0;
  transition: background 0.18s, border-color 0.18s;
}
.switch::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--muted); transition: transform 0.18s, background 0.18s;
}
.switch[aria-checked="true"] { background: var(--orange-soft); border-color: var(--orange); }
.switch[aria-checked="true"]::after { transform: translateX(18px); background: var(--orange); }
.switch:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* Checkbox (visual) */
.check {
  width: 22px; height: 22px; border-radius: 6px; flex: none;
  border: 1px solid var(--line); background: var(--surface-2);
  display: grid; place-items: center; cursor: pointer; color: transparent;
  transition: all 0.15s;
}
.check svg { width: 14px; height: 14px; }
.check[aria-checked="true"] { background: var(--green); border-color: var(--green); color: #0E0E12; }
.check:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* Avatar chip inline */
.person { display: inline-flex; align-items: center; gap: 8px; }
.person .pa {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  background: var(--violet-soft); color: var(--violet);
}

/* ---------- index charts ---------- */
.trend {
  width: 100%; height: auto; display: block;
}
.trend .grid-line { stroke: var(--line-soft); stroke-width: 1; }
.trend .area { fill: url(#trendFill); }
.trend .line { fill: none; stroke: var(--orange); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.trend .dot { fill: var(--ink); stroke: var(--orange); stroke-width: 2; }
.trend .x-lab { fill: var(--faint); font-family: "Fira Code", monospace; font-size: 9px; }
.trend .y-lab { fill: var(--faint); font-family: "Fira Code", monospace; font-size: 9px; }

/* Agenda strip on overview */
.agenda-strip { display: flex; flex-direction: column; gap: 0; }
.agenda-row {
  display: grid; grid-template-columns: 66px 1fr; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row .a-time { font-family: var(--mono); font-size: 13px; color: var(--orange); font-weight: 500; }
.agenda-row .a-title { font-weight: 600; font-size: 14px; }
.agenda-row .a-room { color: var(--muted); font-size: 12px; }

/* Capacity list */
.cap-item { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.cap-item:last-child { border-bottom: none; }
.cap-item .cap-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.cap-item .cap-name { font-weight: 600; font-size: 14px; }
.cap-item .cap-date { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.cap-item .cap-nums { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- Run of show (schedule), signature layout ---------- */
.ros-toolbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.ros-toolbar .ev-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px;
}
.ros-toolbar .ev-pill .ev-ic { color: var(--orange); display: grid; place-items: center; }
.ros-toolbar .ev-pill .ev-name { font-family: var(--display); font-weight: 600; font-size: 14px; }
.ros-toolbar .ev-pill .ev-meta { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.ros-legend { display: flex; gap: 14px; flex-wrap: wrap; margin-left: auto; }
.ros-legend .lg { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.ros-legend .lg i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }

.timeline {
  position: relative;
  margin-left: 8px;
  padding-left: 0;
}
/* the spine */
.timeline::before {
  content: "";
  position: absolute;
  left: 86px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--violet));
  opacity: 0.55;
}
.ros-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  padding: 6px 0 20px;
}
.ros-item .ros-time {
  text-align: right;
  padding-top: 14px;
}
.ros-item .ros-time .t-start { font-family: var(--mono); font-size: 14px; font-weight: 600; }
.ros-item .ros-time .t-end { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.ros-item .node {
  position: absolute;
  left: 79px; top: 18px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--violet);
  z-index: 2;
}
.ros-item.done .node { border-color: var(--green); background: var(--green); }
.ros-item.live .node { border-color: var(--orange); background: var(--orange); box-shadow: 0 0 0 5px var(--orange-soft); }
.ros-item .ros-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 15px 17px;
  transition: border-color 0.15s, transform 0.15s;
}
.ros-item .ros-card:hover { border-color: var(--violet); }
.ros-item.live .ros-card { border-color: var(--orange); box-shadow: var(--shadow); }
.ros-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ros-head .ros-title { font-weight: 600; font-size: 15px; }
.ros-head .ros-title[contenteditable="true"] { outline: none; border-radius: 4px; padding: 1px 4px; margin: -1px -4px; }
.ros-head .ros-title[contenteditable="true"]:focus { background: var(--surface-3); box-shadow: 0 0 0 1px var(--violet); }
.ros-dur { font-family: var(--mono); font-size: 11px; color: var(--faint); white-space: nowrap; }
.ros-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 10px; color: var(--muted); font-size: 13px; }
.ros-meta .m { display: inline-flex; align-items: center; gap: 6px; }
.ros-meta .m svg { width: 14px; height: 14px; color: var(--faint); }
.ros-track {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
}
.ros-note {
  margin-top: 11px; padding-top: 11px; border-top: 1px dashed var(--line);
  color: var(--muted); font-size: 13px;
}
.ros-item .ros-actions { display: flex; gap: 6px; margin-top: 12px; }

/* tier breakdown bars (attendees) */
.tier-row { display: grid; grid-template-columns: 96px 1fr 44px; align-items: center; gap: 12px; padding: 9px 0; }
.tier-row .tname { font-size: 13px; font-weight: 600; }
.tier-row .tcount { font-family: var(--mono); font-size: 13px; text-align: right; color: var(--muted); }
.bar { height: 10px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: 999px; }

/* vendor budget bars */
.vend-row { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.vend-row:last-child { border-bottom: none; }
.vend-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.vend-name { font-weight: 600; font-size: 14px; }
.vend-role { font-size: 12px; color: var(--muted); }
.vend-figs { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 6px; display: flex; justify-content: space-between; }
.vend-figs .over { color: var(--amber); }

/* checklist */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist .ck-body { flex: 1; }
.checklist .ck-text { font-size: 14px; }
.checklist li.done .ck-text { color: var(--faint); text-decoration: line-through; }
.checklist .ck-owner { font-family: var(--mono); font-size: 11px; color: var(--faint); margin-top: 3px; }

/* detail panel */
.detail-panel .dp-title { font-family: var(--display); font-size: 18px; font-weight: 600; margin: 0 0 2px; }
.detail-panel .dp-venue { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.dp-stat { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.dp-stat:last-of-type { border-bottom: none; }
.dp-stat .k { color: var(--muted); }
.dp-stat .v { font-weight: 600; font-family: var(--mono); }
.empty-hint { color: var(--faint); font-size: 13px; text-align: center; padding: 30px 10px; }

/* demo banner */
.demo-banner {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; color: var(--faint);
  background: var(--surface-2); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: 7px 12px; margin-bottom: 18px;
}
.demo-banner svg { width: 14px; height: 14px; color: var(--violet); flex: none; }

.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px);
  background: var(--surface-3); border: 1px solid var(--line);
  color: var(--text); padding: 11px 18px; border-radius: 10px;
  font-size: 13px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 50;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.no-results { color: var(--faint); text-align: center; padding: 26px; font-size: 14px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* mobile menu button hidden on desktop */
.menu-btn { display: none; }
.scrim { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --sidebar-w: 0px; }
  .shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; top: 0; left: 0; z-index: 40;
    width: 260px; height: 100vh;
    transform: translateX(-100%); transition: transform 0.22s ease;
  }
  body.nav-open .sidebar { transform: translateX(0); }
  body.nav-open .scrim {
    display: block; position: fixed; inset: 0; z-index: 30;
    background: rgba(0,0,0,0.55);
  }
  .menu-btn { display: grid; }
  .page { padding: 20px 16px 56px; }
  .topbar { padding: 0 16px; }
  .search { display: none; }
}
@media (max-width: 620px) {
  .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .page-lead h2 { font-size: 22px; }
  .ros-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .timeline::before { left: 68px; }
  .ros-item .node { left: 61px; }
  .ros-legend { width: 100%; margin-left: 0; }
}
