:root {
  background: #f5f6f4;
  color: #18211f;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  --sidebar-width: 156px;
  --sidebar-collapsed-width: 48px;
  --sidebar-gap: 18px;
  --sidebar-padding: 20px 12px;
  --surface: #ffffff;
  --surface-muted: #f7f7f3;
  --line: #dfe3dc;
  --line-strong: #c8d0c8;
  --text: #18211f;
  --muted: #65716d;
  --muted-strong: #4b5753;
  --accent: #216b57;
  --accent-soft: #e4f0eb;
  --blue: #315f8c;
  --blue-soft: #e8eef5;
  --clay: #8b4f3f;
  --clay-soft: #f4e7e1;
  --violet: #615684;
  --violet-soft: #ece9f3;
  --amber: #8a6424;
  --amber-soft: #fbf1dc;
  --shadow-subtle: 0 1px 2px rgba(23, 32, 34, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  display: block;
  min-height: 100vh;
}

.sidebar {
  align-content: start;
  background: #ffffff;
  border-right: 1px solid #d9ded5;
  color: #172022;
  display: grid;
  gap: var(--sidebar-gap);
  height: 100vh;
  left: 0;
  overflow-y: auto;
  padding: var(--sidebar-padding);
  position: fixed;
  top: 0;
  width: var(--sidebar-width);
  transition:
    width 160ms ease,
    padding 160ms ease;
  z-index: 10;
}

.sidebar-collapsed .sidebar {
  width: var(--sidebar-collapsed-width);
  padding-inline: 10px;
}

.brand {
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}

.sidebar-toggle {
  align-items: center;
  background: #edf2ec;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  color: #4f5c55;
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 30px;
}

.sidebar-toggle:hover {
  background: #e5efe8;
  color: #1f4c3e;
}

.sidebar-note {
  color: #66736b;
  font-size: 12px;
  margin: 6px 0 0;
}

nav {
  display: grid;
  gap: 4px;
}

nav a {
  align-items: center;
  border-radius: 6px;
  color: #4f5c55;
  display: flex;
  gap: 8px;
  min-height: 32px;
  padding: 7px 8px;
  position: relative;
  text-decoration: none;
}

nav a:hover {
  background: #eef2ec;
  color: #172022;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2f6f5f;
  outline-offset: 3px;
}

nav a.active {
  background: #e5efe8;
  color: #1f4c3e;
  font-weight: 650;
}

nav a.active::before {
  background: #2f6f5f;
  border-radius: 999px;
  content: "";
  inset: 8px auto 8px 4px;
  position: absolute;
  width: 3px;
}

.nav-icon,
.sidebar-toggle-icon {
  flex: 0 0 auto;
}

.workspace {
  align-content: start;
  display: grid;
  gap: 18px;
  margin-left: var(--sidebar-width);
  padding: 30px clamp(18px, 3vw, 38px) 42px;
  transition: margin-left 160ms ease;
}

.sidebar-collapsed .workspace {
  margin-left: var(--sidebar-collapsed-width);
}

.sidebar-collapsed .brand,
.sidebar-collapsed .sidebar-note,
.sidebar-collapsed .nav-label {
  display: none;
}

.sidebar-collapsed nav {
  gap: 6px;
}

.sidebar-collapsed nav a {
  justify-content: center;
  padding: 0;
}

.sidebar-collapsed nav a.active::before {
  inset: auto auto 4px auto;
  height: 3px;
  width: 16px;
}

.workspace > section[id] {
  scroll-margin-top: 18px;
}

.topbar,
.panel-heading,
.actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.topbar {
  background: transparent;
  border: 0;
  padding: 0 2px 2px;
}

.topbar p,
.panel-heading span,
.metric span,
.metric small,
.info-block span,
.task-row small,
.output-row span {
  color: #66736b;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.15;
}

h2 {
  font-size: 16px;
}

.status-pill {
  background: #ece5d5;
  border: 1px solid #d7ccb6;
  border-radius: 999px;
  color: #594a2f;
  padding: 8px 12px;
  white-space: nowrap;
}

.status-pill.ok {
  background: #dfeee4;
  border-color: #bad7c4;
  color: #24513a;
}

.mobile-quick-panel {
  display: none;
}

.mobile-offline-banner {
  background: #fff6e2;
  border: 1px solid #dec784;
  border-radius: 8px;
  color: #594a2f;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.mobile-offline-banner p {
  line-height: 1.45;
}

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

.workbench-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(90deg, #edf5f0, #fbf1dc);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.8fr);
  padding: 16px;
}

.launch-readiness-board {
  background: #ffffff;
  border: 1px solid #c9d6cf;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.35fr);
  min-width: 0;
  padding: 12px;
}

.launch-readiness-copy,
.launch-readiness-card {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.launch-readiness-copy span,
.launch-readiness-card span,
.launch-readiness-evidence span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
}

.launch-readiness-copy h2 {
  font-size: 18px;
  line-height: 1.2;
}

.launch-readiness-copy p {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.4;
}

.launch-readiness-copy a {
  color: var(--accent);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.launch-readiness-copy strong {
  background: var(--accent-soft);
  border: 1px solid #bfd9cd;
  border-radius: 999px;
  color: #1f4d3d;
  font-size: 12px;
  padding: 4px 8px;
}

.launch-readiness-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-readiness-card {
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px;
}

.launch-readiness-card strong {
  color: var(--text);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.launch-readiness-card p {
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.launch-readiness-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  grid-column: 1 / -1;
}

.launch-readiness-evidence span {
  background: #eef4ef;
  border: 1px solid #cfddd2;
  border-radius: 999px;
  color: #40524a;
  overflow-wrap: anywhere;
  padding: 5px 8px;
}

.workbench-primary {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.workbench-intent {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.workbench-intent span,
.workbench-status-heading span,
.workbench-lanes span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workbench-intent h2 {
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
}

.workbench-intent p {
  color: var(--muted-strong);
  line-height: 1.48;
}

.workbench-status {
  align-content: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
}

.workbench-status-heading {
  display: grid;
  gap: 4px;
}

.workbench-status-heading strong {
  color: var(--text);
  font-size: 17px;
}

.workbench-status .metric-grid {
  gap: 6px;
  grid-template-columns: 1fr;
}

.workbench-status .metric {
  align-items: center;
  background: #ffffff;
  display: grid;
  gap: 3px 8px;
  grid-template-columns: minmax(72px, 0.5fr) minmax(0, 1fr);
  padding: 9px 10px;
}

.workbench-status .metric span {
  font-size: 12px;
}

.workbench-status .metric strong {
  font-size: 15px;
}

.workbench-status .metric small {
  grid-column: 2;
}

.workbench-safe-note {
  background: var(--amber-soft);
  border: 1px solid #e1c88f;
  border-radius: 6px;
  color: #5c4319;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.workbench-safe-note span {
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.workbench-lanes {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workbench-lanes article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
}

.workbench-lanes strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.workbench-lanes p {
  color: var(--muted-strong);
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.composer-panel {
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.55fr) minmax(200px, 0.75fr);
  padding: 14px;
}

.workbench-hero .composer-panel {
  background: rgba(255, 255, 255, 0.82);
  grid-template-columns: minmax(0, 1fr);
  padding: 14px;
}

.workbench-hero .composer-copy {
  display: none;
}

.ops-dashboard {
  background: #fcfcf9;
  border: 1px solid #cfd6cc;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.ops-header {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.ops-header p {
  color: #4f5c55;
  font-size: 13px;
  line-height: 1.45;
  max-width: 720px;
}

.ops-header h2 {
  color: #111917;
  font-size: 23px;
  line-height: 1.15;
}

.ops-safety-strip,
.mobile-safety-strip {
  background: #fff8e8;
  border: 1px solid #dcc68d;
  border-left: 4px solid var(--amber);
  border-radius: 6px;
  color: #57431f;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px 10px 10px;
}

.ops-safety-strip strong,
.mobile-safety-strip strong {
  color: #22180a;
  overflow-wrap: anywhere;
}

.ops-safety-strip span,
.mobile-safety-strip span {
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ops-command-center,
.teammate-daily-workbench,
.ops-review-strip {
  background: #ffffff;
  border: 1px solid #d8ded6;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.ops-command-center {
  border-left: 4px solid var(--blue);
  padding-left: 10px;
}

.teammate-daily-workbench {
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.ops-review-strip {
  border-left: 4px solid var(--clay);
  padding-left: 10px;
}

.ops-boundary-grid {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: 10px;
  padding: 0;
}

.ops-command-grid,
.teammate-daily-grid,
.teammate-daily-queue,
.ops-review-list,
.ops-boundary-grid,
.ops-mini-card-grid {
  display: grid;
  gap: 10px;
}

.ops-command-grid {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.teammate-daily-grid {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.teammate-daily-queue {
  grid-template-columns: repeat(5, minmax(132px, 1fr));
}

.ops-review-list {
  grid-template-columns: repeat(5, minmax(128px, 1fr));
}

.ops-boundary-grid {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.ops-mini-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-command-card,
.teammate-daily-card,
.teammate-daily-action,
.ops-review-item,
.ops-boundary-item,
.ops-mini-card,
.ops-readonly-note {
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px;
}

.teammate-daily-action {
  color: inherit;
  text-decoration: none;
}

.ops-command-card {
  border-left: 3px solid var(--blue);
  padding-left: 9px;
}

.teammate-daily-card,
.teammate-daily-action {
  border-left: 3px solid var(--accent);
  padding-left: 9px;
}

.teammate-daily-action:nth-child(2n),
.teammate-daily-card:nth-child(2n) {
  border-left-color: var(--blue);
}

.teammate-daily-action:nth-child(3n),
.teammate-daily-card:nth-child(3n) {
  border-left-color: var(--amber);
}

.ops-command-card:nth-child(2n) {
  border-left-color: var(--accent);
}

.ops-command-card:nth-child(3n) {
  border-left-color: var(--clay);
}

.ops-review-item {
  background: #fffdf7;
  border-left: 3px solid var(--amber);
  padding-left: 9px;
}

.ops-boundary-item {
  background: #f8f9f5;
  border-style: dashed;
}

.ops-mini-card {
  align-content: start;
  border-left: 3px solid var(--violet);
  min-height: 112px;
  padding-left: 9px;
}

.ops-mini-card:nth-child(2n) {
  border-left-color: var(--blue);
}

.ops-mini-card:nth-child(3n) {
  border-left-color: var(--clay);
}

.ops-command-card span,
.ops-command-card small,
.teammate-daily-card span,
.teammate-daily-card small,
.teammate-daily-action span,
.teammate-daily-action small,
.ops-review-item span,
.ops-review-item small,
.ops-boundary-item span,
.ops-mini-card span,
.ops-mini-card small,
.ops-readonly-note span {
  color: #5f6a65;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.ops-command-card strong,
.teammate-daily-card strong,
.teammate-daily-action strong,
.ops-review-item strong,
.ops-boundary-item strong,
.ops-mini-card strong,
.ops-readonly-note strong {
  color: #111917;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ops-command-card p,
.teammate-daily-card p,
.teammate-daily-action p,
.ops-review-item p,
.ops-boundary-item p,
.ops-mini-card p {
  color: #4f5c55;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.ops-review-strip > div:first-child {
  display: grid;
  gap: 4px;
}

.ops-review-strip > div:first-child p {
  color: #4f5c55;
  line-height: 1.45;
}

.ops-kpi-grid,
.ops-grid {
  display: grid;
  gap: 12px;
}

.ops-kpi-grid {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.ops-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.ops-lane-list,
.ops-teammate-list {
  display: grid;
  gap: 8px;
}

.ops-lane-card,
.ops-teammate-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 11px 12px;
}

.ops-lane-card {
  border-left: 4px solid var(--blue);
  padding-left: 10px;
}

.ops-teammate-card {
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.ops-lane-card span,
.ops-teammate-card span,
.ops-lane-card small,
.ops-teammate-card small,
.ops-card small {
  color: #5f6a65;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.ops-lane-card strong,
.ops-teammate-card strong,
.ops-card strong {
  color: #172022;
  overflow-wrap: anywhere;
}

.ops-lane-card p,
.ops-teammate-card p,
.ops-card p {
  color: #4f5c55;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ops-card {
  align-content: start;
  background: #ffffff;
  border-color: #d8ded6;
  box-shadow: none;
  gap: 12px;
}

.ops-kpi-grid .metric {
  background: #ffffff;
  border-color: #d8ded6;
  border-left: 4px solid var(--accent);
  min-height: 86px;
  padding: 12px;
}

.ops-kpi-grid .metric:nth-child(2) {
  border-left-color: var(--blue);
}

.ops-kpi-grid .metric:nth-child(3) {
  border-left-color: var(--amber);
}

.ops-kpi-grid .metric:nth-child(4) {
  border-left-color: var(--clay);
}

.ops-kpi-grid .metric span {
  color: #5f6a65;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.ops-kpi-grid .metric strong {
  color: #111917;
  font-size: 22px;
  line-height: 1.1;
}

.ops-kpi-grid .metric small {
  color: #4f5c55;
  line-height: 1.35;
}

.ops-card .panel-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.automation-run-plan-preview {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.automation-run-plan-preview article {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
}

.automation-run-plan-preview span {
  color: #66736b;
  font-size: 13px;
}

.automation-run-plan-preview strong,
.automation-run-plan-preview p {
  overflow-wrap: anywhere;
}

.automation-run-plan-preview p {
  color: #4f5c55;
  line-height: 1.4;
}

.teammate-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 245, 0.96)),
    linear-gradient(90deg, rgba(228, 240, 235, 0.7), rgba(232, 238, 245, 0.62), rgba(244, 231, 225, 0.44));
  border-color: var(--line);
  scroll-margin-top: 18px;
}

.teammate-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
}

.teammate-card,
.scan-card,
.activity-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-subtle);
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
}

.teammate-card {
  align-content: start;
  border-top: 3px solid var(--accent);
  min-height: 128px;
  padding-top: 10px;
}

.teammate-card.profile-card {
  border-top-color: var(--blue);
}

.teammate-card.task-card {
  border-top-color: var(--violet);
}

.teammate-card.approval-card {
  border-top-color: var(--amber);
}

.teammate-card.report-card {
  border-top-color: var(--clay);
}

.teammate-card span,
.teammate-card small,
.scan-card span,
.activity-item span {
  color: #66736b;
  font-size: 13px;
}

.teammate-card strong,
.scan-card strong,
.activity-item strong {
  color: #172022;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.teammate-card p,
.scan-card p,
.activity-item p {
  color: #4f5c55;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.scan-card {
  border-left: 3px solid var(--blue);
  padding-left: 10px;
}

.scan-card a {
  align-items: center;
  background: #f8faf6;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  color: #285343;
  display: inline-flex;
  font-size: 13px;
  font-weight: 720;
  justify-content: space-between;
  line-height: 1.2;
  min-height: 40px;
  padding: 8px 10px;
  text-decoration: none;
  width: fit-content;
}

.scan-card a::after {
  color: #6d7771;
  content: ">";
  font-size: 12px;
  margin-left: 10px;
}

.scan-card a:hover {
  background: #eef4ee;
  border-color: #c8d5cc;
  color: #1f4c3e;
}

.scan-card a:focus-visible {
  background: #eef4ee;
  border-color: #9ab7a8;
}

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

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

.activity-item {
  border-left: 3px solid var(--violet);
  padding-left: 10px;
}

.teammate-inbox {
  display: grid;
  gap: 12px;
}

.teammate-inbox-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.teammate-inbox-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-left: 3px solid var(--clay);
  border-radius: 6px;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px 12px 12px 10px;
}

.teammate-inbox-item span,
.teammate-inbox-item small {
  color: #66736b;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.teammate-inbox-item strong,
.teammate-inbox-item p {
  overflow-wrap: anywhere;
}

.teammate-inbox-item p {
  color: #4f5c55;
  line-height: 1.45;
}

.composer-copy {
  align-content: start;
  display: grid;
  gap: 8px;
}

.composer-copy span,
.draft-preview span {
  color: #66736b;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.composer-copy h2 {
  font-size: 21px;
  line-height: 1.25;
}

.composer-form {
  display: grid;
  gap: 10px;
}

.composer-form textarea,
.composer-form input {
  background: #fbfbf8;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  min-width: 0;
  outline: none;
  padding: 11px 12px;
  width: 100%;
}

.composer-form textarea {
  min-height: 112px;
  resize: vertical;
}

.composer-form textarea:focus,
.composer-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.composer-controls {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.composer-controls button {
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  min-height: 44px;
  padding: 0 16px;
  white-space: nowrap;
}

.composer-controls button:disabled {
  background: #c6d0c9;
  border-color: #c6d0c9;
  color: #66736b;
  cursor: not-allowed;
}

.draft-preview {
  align-content: start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 7px;
  min-height: 100px;
  padding: 12px;
}

.draft-preview strong {
  color: var(--accent);
}

.draft-preview p {
  color: #4f5c55;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.draft-preview small {
  color: #66736b;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

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

.command-plan-grid small {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #4f5c55;
  display: grid;
  gap: 2px;
  padding: 7px 8px;
}

.command-plan-grid b {
  color: #172022;
}

.draft-actions {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-top: 2px;
  padding-top: 10px;
}

.draft-actions button {
  background: #1e5147;
  border: 1px solid #1e5147;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  min-height: 40px;
  padding: 0 14px;
  white-space: nowrap;
}

.draft-actions button:disabled {
  background: #c6d0c9;
  border-color: #c6d0c9;
  color: #66736b;
  cursor: not-allowed;
}

.main-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
}

.split-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.system-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.runner-console-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr) minmax(260px, 0.75fr);
}

.runner-queue-summary {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.runner-queue-summary-card {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
}

.runner-queue-summary-card span {
  color: #66736b;
  font-size: 12px;
  font-weight: 750;
}

.runner-queue-summary-card strong {
  color: #172022;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.runner-queue-summary-card p {
  color: #4f5c55;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.runner-queue-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.75fr);
}

.runner-queue-lanes,
.runner-queue-boundary {
  display: grid;
  gap: 6px;
}

.runner-queue-card {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-left: 4px solid #5b7e70;
  border-radius: 6px;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
}

.runner-queue-card.state-blocked {
  border-left-color: #a35443;
}

.runner-queue-card.state-noop_recorded,
.runner-queue-card.state-dry_run_recorded {
  border-left-color: #7c6f46;
}

.runner-queue-card div {
  display: grid;
  gap: 3px;
  grid-template-columns: auto minmax(0, 1fr);
}

.runner-queue-card span,
.runner-queue-card small,
.runner-queue-boundary small {
  color: #4f5c55;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.runner-queue-card strong {
  color: #172022;
  overflow-wrap: anywhere;
}

.runner-queue-card p {
  color: #4f5c55;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.runner-queue-boundary small {
  background: #eef2ec;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  padding: 7px 8px;
}

.runner-queue-boundary b {
  color: #172022;
  display: block;
  font-weight: 750;
  margin-bottom: 2px;
}

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

.wave2-bundle-card {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px;
}

.wave2-bundle-card span {
  color: #66736b;
  font-size: 13px;
  font-weight: 750;
}

.wave2-bundle-card strong {
  color: #172022;
  overflow-wrap: anywhere;
}

.wave2-bundle-card small {
  background: #ffffff;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  color: #4f5c55;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding: 8px;
}

.wave2-bundle-card b {
  color: #172022;
  display: block;
  font-weight: 750;
  margin-bottom: 2px;
}

.helper-text {
  color: #4f5c55;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.panel,
.metric,
.info-block {
  background: #ffffff;
  border: 1px solid #d9ded5;
  border-radius: 8px;
}

.panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.metric,
.info-block {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 14px;
}

.metric strong,
.info-block strong {
  font-size: 20px;
}

.info-block p {
  color: #4c5752;
  line-height: 1.45;
}

.detail-grid.compact .info-block {
  min-height: 78px;
}

.task-list,
.conversation-list,
.output-list,
.route-list,
.status-list,
.config-list {
  display: grid;
  gap: 8px;
}

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

.route-catalog-summary small {
  background: #eef2ec;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  color: #4f5c55;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding: 8px;
}

.task-row {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  color: #172022;
  cursor: pointer;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 10px;
  text-align: left;
}

.task-row.active,
.task-row:hover {
  border-color: #5b7e70;
  box-shadow: inset 3px 0 0 #2f6f5f;
}

.task-row strong {
  color: #2f6f5f;
}

.timeline {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li,
.timeline-evidence-card,
.conversation-row,
.output-row,
.audit-row,
.route-row,
.status-row,
.empty-state {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.timeline span {
  color: #2f6f5f;
  font-weight: 650;
}

.timeline-evidence-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.timeline-evidence-card p,
.timeline-evidence-card small {
  color: #4f5c55;
  grid-column: 1 / -1;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.audit-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.audit-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.audit-row strong {
  overflow-wrap: anywhere;
}

.audit-row span {
  color: #2f6f5f;
  font-weight: 700;
}

.route-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.status-row {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  grid-template-columns: minmax(0, 1fr) auto;
  padding-left: 10px;
}

.route-row strong {
  overflow-wrap: anywhere;
}

.status-row strong {
  overflow-wrap: anywhere;
}

.route-row span {
  color: #2f6f5f;
  font-weight: 700;
}

.route-row p {
  color: #4f5c55;
  grid-column: 1 / -1;
  line-height: 1.4;
}

.status-row span {
  color: #275f50;
  font-weight: 700;
}

.status-row p {
  color: #4f5c55;
  grid-column: 1 / -1;
  line-height: 1.45;
}

.memory-review-summary-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.memory-review-summary-card {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
}

.memory-review-summary-card span {
  color: #607067;
  font-size: 0.78rem;
  font-weight: 700;
}

.memory-review-summary-card strong {
  color: #172022;
  overflow-wrap: anywhere;
}

.memory-review-summary-card p {
  color: #4f5c55;
  line-height: 1.4;
  margin: 0;
  overflow-wrap: anywhere;
}

.approval-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.approval-actions button {
  background: #edf2ec;
  border: 1px solid #cfd6cc;
  border-radius: 6px;
  color: #1f4c3e;
  cursor: pointer;
  font-weight: 700;
  min-height: 36px;
  padding: 0 12px;
}

.approval-actions button:hover {
  background: #e5efe8;
}

.approval-actions button:disabled {
  color: #66736b;
  cursor: not-allowed;
}

.approval-actions span {
  color: #66736b;
  font-size: 13px;
}

.mobile-approval-buttons {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-approval-buttons button {
  background: #edf2ec;
  border: 1px solid #cfd6cc;
  border-radius: 6px;
  color: #1f4c3e;
  cursor: pointer;
  font-weight: 700;
  min-height: 40px;
  padding: 0 10px;
}

.mobile-approval-buttons button:disabled {
  color: #66736b;
  cursor: not-allowed;
}

.timeline p,
.conversation-row p,
.output-row p,
.audit-row p {
  color: #4f5c55;
  line-height: 1.45;
}

.runner-audit-timeline small {
  color: #66736b;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.output-row p,
.redaction-summary-grid {
  display: grid;
  gap: 6px;
}

.output-row small {
  color: #66736b;
  overflow-wrap: anywhere;
}

.redaction-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.redaction-summary-card {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
}

.redaction-summary-card span {
  color: #66736b;
  font-size: 13px;
}

.redaction-summary-card strong,
.redaction-summary-card p {
  overflow-wrap: anywhere;
}

.redaction-summary-card p {
  color: #4f5c55;
  line-height: 1.4;
}

.provider-ledger-summary {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-ledger-summary small {
  background: #f8f9f5;
  border: 1px solid #d9ded5;
  border-radius: 6px;
  color: #4f5c55;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 8px 10px;
}

.provider-ledger-summary .provider-safety-banner {
  background: #fff8e8;
  border-color: #d8b057;
  color: #4a3b12;
  font-weight: 700;
  grid-column: 1 / -1;
}

.conversation-row span {
  color: #2f6f5f;
  font-weight: 700;
}

.empty-state {
  color: #66736b;
  min-height: 72px;
}

@media (max-width: 980px) {
  .workbench-hero {
    grid-template-columns: 1fr;
  }

  .launch-readiness-board {
    grid-template-columns: 1fr;
  }

  .launch-readiness-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workbench-status .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .composer-panel,
  .main-grid,
  .ops-grid,
  .runner-console-grid,
  .system-grid,
  .teammate-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .activity-strip,
  .detail-grid,
    .workbench-lanes,
    .teammate-daily-grid,
    .teammate-daily-queue,
    .ops-command-grid,
    .ops-review-list,
    .ops-boundary-grid,
    .ops-mini-card-grid,
    .ops-kpi-grid,
    .command-plan-grid,
    .automation-run-plan-preview,
    .pairing-ux-grid,
    .provider-ledger-summary,
    .redaction-summary-grid,
    .scan-card-grid,
    .teammate-inbox-list,
    .wave2-bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    background: #f5f6f4;
  }

  .sidebar {
    align-items: center;
    border-bottom: 1px solid #d9ded5;
    border-right: 0;
    bottom: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: auto 1fr;
    height: auto;
    left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    top: auto;
    width: auto;
  }

  .workspace {
    margin-left: 0;
    gap: 12px;
    padding: 10px 10px 92px;
  }

  .topbar {
    gap: 6px;
    padding-bottom: 0;
  }

  .topbar p {
    font-size: 12px;
  }

  h1 {
    font-size: 22px;
    line-height: 1.1;
  }

  .status-pill {
    font-size: 12px;
    padding: 6px 8px;
  }

  .workbench-hero {
    border-radius: 8px;
    gap: 8px;
    padding: 9px;
  }

  .launch-readiness-board,
  .launch-readiness-grid {
    grid-template-columns: 1fr;
  }

  .launch-readiness-board {
    gap: 8px;
    padding: 10px;
  }

  .ops-header {
    display: grid;
    gap: 8px;
  }

  .ops-safety-strip,
  .mobile-safety-strip {
    gap: 3px;
    padding: 9px 10px;
  }

  .workbench-intent h2 {
    font-size: 18px;
    line-height: 1.12;
  }

  .workbench-intent {
    gap: 4px;
  }

  .workbench-intent p {
    font-size: 13px;
    line-height: 1.34;
  }

  .workbench-status {
    gap: 6px;
    padding: 8px;
  }

  .workbench-status-heading {
    gap: 2px;
  }

  .workbench-status-heading strong {
    font-size: 15px;
  }

  .workbench-lanes,
  .teammate-daily-grid,
  .teammate-daily-queue,
  .teammate-inbox-list {
    grid-template-columns: 1fr;
  }

  .workbench-status .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workbench-status .metric {
    align-content: start;
    align-items: start;
    gap: 4px;
    grid-template-columns: 1fr;
    min-height: 58px;
    padding: 7px 8px;
  }

  .workbench-status .metric small {
    grid-column: auto;
  }

  .workbench-safe-note {
    gap: 2px;
    padding: 8px;
  }

  .workbench-safe-note span {
    font-size: 12px;
    line-height: 1.32;
  }

  .workbench-hero .composer-panel {
    gap: 8px;
    padding: 9px;
  }

  nav {
    display: grid;
    gap: 6px;
    grid-auto-columns: minmax(58px, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
  }

  nav a {
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 6px;
    text-align: center;
  }

  nav a.active::before {
    inset: auto auto 3px auto;
    height: 3px;
    width: 18px;
  }

  .brand,
  .sidebar-note,
  .nav-label,
  .sidebar-toggle {
    display: none;
  }

  .mobile-quick-panel {
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr;
    order: 1;
  }

  .mobile-task-card,
  .mobile-approval-card,
  .mobile-approval-evidence-card,
  .mobile-runner-card,
  .mobile-runner-queue-card,
  .mobile-wave2-card,
  .mobile-report-card,
  .mobile-scan-card,
  .mobile-chat-card,
  .mobile-boundary-card,
  .mobile-ops-stack-card,
  .mobile-control-plan-card,
  .mobile-shenzhen-entry-card,
  .mobile-memory-review-card,
  .mobile-automation-run-plan-card,
  .mobile-pwa-boundary-card {
    background: #ffffff;
    border: 1px solid #d9ded5;
    border-radius: 8px;
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 8px;
  }

  .mobile-task-card span,
  .mobile-approval-card span,
  .mobile-approval-evidence-card span,
  .mobile-runner-card span,
  .mobile-runner-queue-card span,
  .mobile-wave2-card span,
  .mobile-report-card span,
  .mobile-scan-card span,
  .mobile-chat-card span,
  .mobile-boundary-card span,
  .mobile-ops-stack-card span,
  .mobile-control-plan-card span,
  .mobile-shenzhen-entry-card span,
  .mobile-memory-review-card span,
  .mobile-automation-run-plan-card span,
  .mobile-pwa-boundary-card span {
    color: #66736b;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-task-card strong,
  .mobile-approval-card strong,
  .mobile-approval-evidence-card strong,
  .mobile-runner-card strong,
  .mobile-runner-queue-card strong,
  .mobile-wave2-card strong,
  .mobile-report-card strong,
  .mobile-scan-card strong,
  .mobile-chat-card strong,
  .mobile-boundary-card strong,
  .mobile-ops-stack-card strong,
  .mobile-control-plan-card strong,
  .mobile-shenzhen-entry-card strong,
  .mobile-memory-review-card strong,
  .mobile-automation-run-plan-card strong,
  .mobile-pwa-boundary-card strong {
    color: #172022;
    overflow-wrap: anywhere;
  }

  .mobile-task-card p,
  .mobile-approval-card p,
  .mobile-approval-evidence-card p,
  .mobile-runner-card p,
  .mobile-runner-queue-card p,
  .mobile-wave2-card p,
  .mobile-report-card p,
  .mobile-scan-card p,
  .mobile-chat-card p,
  .mobile-boundary-card p,
  .mobile-ops-stack-card p,
  .mobile-control-plan-card p,
  .mobile-shenzhen-entry-card p,
  .mobile-memory-review-card p,
  .mobile-automation-run-plan-card p,
  .mobile-pwa-boundary-card p {
    color: #4f5c55;
    line-height: 1.38;
    overflow-wrap: anywhere;
  }

  .mobile-boundary-list,
  .mobile-evidence-list,
  .mobile-runner-list,
  .mobile-runner-queue-list,
  .mobile-wave2-list,
  .mobile-scan-list,
  .mobile-ops-stack-list,
  .mobile-redaction-list,
  .mobile-redaction-boundary,
  .mobile-memory-review-list,
  .mobile-run-plan-list,
  .mobile-route-list {
    display: grid;
    gap: 4px;
  }

  .mobile-boundary-list,
  .mobile-evidence-list,
  .mobile-runner-list,
  .mobile-runner-queue-list,
  .mobile-wave2-list,
  .mobile-scan-list,
  .mobile-ops-stack-list,
  .mobile-memory-review-list,
  .mobile-redaction-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-redaction-boundary {
    grid-template-columns: 1fr;
  }

  .route-catalog-summary {
    grid-template-columns: 1fr;
  }

  .provider-ledger-summary {
    grid-template-columns: 1fr;
  }

  .mobile-safety-strip {
    position: relative;
  }

  .mobile-boundary-list small,
  .mobile-evidence-list small,
  .mobile-runner-list small,
  .mobile-runner-queue-list small,
  .mobile-wave2-list small,
  .mobile-scan-list small,
  .mobile-ops-stack-list small,
  .mobile-redaction-list small,
  .mobile-redaction-boundary small,
  .mobile-memory-review-list small,
  .mobile-run-plan-list small,
  .mobile-route-list small {
    background: #f8f9f5;
    border: 1px solid #d9ded5;
    border-radius: 6px;
    color: #4f5c55;
    line-height: 1.32;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 5px 6px;
  }

  .scan-card-grid {
    gap: 6px;
    grid-template-columns: 1fr;
    order: -1;
  }

  .scan-card {
    align-items: center;
    border-left-width: 2px;
    gap: 4px 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    padding: 8px;
  }

  .scan-card span,
  .scan-card p {
    font-size: 12px;
  }

  .scan-card strong,
  .scan-card p {
    grid-column: 1;
  }

  .scan-card strong {
    font-size: 14px;
    line-height: 1.18;
  }

  .scan-card p {
    line-height: 1.28;
  }

  .scan-card a {
    align-self: stretch;
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-content: center;
    min-height: 34px;
    min-width: 68px;
    padding: 6px 8px;
  }

  .mobile-ops-stack-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .mobile-evidence-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .mobile-runner-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .mobile-runner-queue-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .mobile-wave2-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .mobile-scan-list b,
  .mobile-memory-review-list b,
  .mobile-redaction-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .mobile-run-plan-list b {
    color: #172022;
    display: block;
    font-weight: 750;
    margin-bottom: 2px;
  }

  .metric,
  .info-block,
    .task-row,
    .timeline li,
    .timeline-evidence-card,
    .conversation-row,
    .output-row,
    .audit-row,
  .route-row,
  .status-row,
  .empty-state {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .workspace {
    padding-inline: 12px;
  }

  .topbar,
  .panel-heading {
    align-items: start;
    display: grid;
  }

  nav,
  .composer-controls,
  .command-plan-grid,
  .activity-strip,
  .metric-grid,
  .detail-grid,
  .redaction-summary-grid,
  .runner-queue-grid,
  .runner-queue-summary,
  .wave2-bundle-grid,
  .ops-command-grid,
  .ops-review-list,
  .ops-boundary-grid,
  .ops-mini-card-grid,
  .ops-kpi-grid,
  .automation-run-plan-preview,
  .pairing-ux-grid,
  .scan-card-grid,
  .mobile-scan-list,
  .mobile-redaction-list {
    grid-template-columns: 1fr;
  }

  .memory-review-summary-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 24px;
  }

  .status-pill {
    white-space: normal;
  }

  .panel,
  .composer-panel,
  .teammate-panel,
  .ops-dashboard {
    padding: 12px;
  }

  .ops-command-center,
  .ops-review-strip {
    padding: 10px 10px;
  }

  .workbench-hero .composer-panel {
    padding: 11px;
  }

  .composer-copy h2 {
    font-size: 17px;
  }

  .approval-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .approval-actions button {
    min-height: 42px;
    width: 100%;
  }

  .audit-row,
  .route-row,
  .status-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 22px;
  }

  .workspace {
    padding-inline: 10px;
  }

  .workbench-hero .composer-panel {
    padding: 9px;
  }
}
