:root {
  --mhw-navy: #071d35;
  --mhw-blue: #123f5b;
  --mhw-teal: #087f7a;
  --mhw-orange: #e87722;
  --mhw-cream: #f7f4ee;
  --mhw-paper: #ffffff;
  --mhw-ink: #102332;
  --mhw-muted: #64727c;
  --mhw-line: #d8dee2;
  --mhw-warn-bg: #fff3df;
  --mhw-good-bg: #e5f5ef;
}

.mhw-tour-launch {
  position: fixed;
  z-index: 74;
  right: 22px;
  top: 82px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #fff8;
  border-radius: 3px;
  color: #fff;
  background: var(--mhw-navy);
  box-shadow: 0 9px 24px #071d3536;
  font: 800 12px/1 "Segoe UI", Arial, sans-serif;
}

.mhw-tour-launch:hover,
.mhw-tour-launch:focus-visible {
  background: var(--mhw-blue);
}

html,
body {
  overflow-x: hidden;
}

body.mhw-presentation-active {
  overflow: hidden;
}

body.mhw-presentation-active .sidebar {
  display: none;
}

body.mhw-presentation-active main.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  height: calc(100dvh - 34px);
  min-height: 0;
  overflow: hidden;
}

body.mhw-presentation-active main.workspace > .content,
body.mhw-presentation-active main.workspace > .demo-banner,
body.mhw-presentation-active main.workspace > .fd-overview,
body.mhw-presentation-active main.workspace > [data-mhw-outcome-view] {
  display: none !important;
}

.mhw-presentation-deck[hidden] {
  display: none;
}

.mhw-presentation-deck {
  display: grid;
  min-height: 0;
  padding: 18px clamp(18px, 2.4vw, 34px) 18px;
  overflow: hidden;
  background:
    linear-gradient(128deg, #edf2f3 0%, #f7f4ee 47%, #e5efed 100%);
}

.mhw-presentation-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: start;
  gap: 4px;
  width: min(640px, 100%);
  margin-bottom: 14px;
  padding: 4px;
  border: 1px solid #cbd4d6;
  border-radius: 4px;
  background: #ffffffb8;
}

.mhw-presentation-tabs button {
  min-height: 34px;
  padding: 8px 11px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
  color: #4c5c65;
  background: transparent;
  font: 800 10px/1.1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mhw-presentation-tabs button:hover,
.mhw-presentation-tabs button:focus-visible,
.mhw-presentation-tabs button[aria-selected="true"] {
  border-bottom-color: var(--mhw-orange);
  color: #fff;
  background: var(--mhw-navy);
}

.mhw-presentation-tabs button:focus-visible,
.mhw-presentation-detail:focus-visible,
.mhw-presentation-return:focus-visible,
.mhw-operation-switch button:focus-visible {
  outline: 3px solid #e87722;
  outline-offset: 2px;
}

.mhw-presentation-panel {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #cbd4d6;
  border-left: 4px solid var(--mhw-orange);
  border-radius: 4px;
  background: #ffffffeb;
  box-shadow: 0 16px 36px #071d3518;
}

.mhw-presentation-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.2vw, 30px) clamp(18px, 2.7vw, 38px) 14px;
  border-bottom: 1px solid var(--mhw-line);
}

.mhw-presentation-head > div {
  min-width: 0;
}

.mhw-presentation-head h1 {
  margin: 5px 0 7px;
  color: var(--mhw-navy);
  font: 800 clamp(23px, 2.3vw, 36px)/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.mhw-presentation-head p {
  max-width: 760px;
  margin: 0;
  color: var(--mhw-muted);
  font: 500 clamp(12px, 1.1vw, 14px)/1.45 "Segoe UI", Arial, sans-serif;
}

.mhw-presentation-detail,
.mhw-presentation-return {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--mhw-navy);
  border-radius: 3px;
  color: #fff;
  background: var(--mhw-navy);
  font: 800 10px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.mhw-presentation-return {
  color: var(--mhw-navy);
  background: #fff;
}

.mhw-presentation-detail:hover,
.mhw-presentation-detail:focus-visible {
  background: var(--mhw-blue);
}

.mhw-presentation-return:hover,
.mhw-presentation-return:focus-visible {
  color: #fff;
  background: var(--mhw-navy);
}

.mhw-presentation-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 clamp(18px, 2.7vw, 38px);
  border-bottom: 1px solid var(--mhw-line);
}

.mhw-presentation-metrics article {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 94px;
  padding: 15px 18px;
  border-right: 1px solid var(--mhw-line);
}

.mhw-presentation-metrics article:last-child {
  border-right: 0;
}

.mhw-presentation-metrics span,
.mhw-presentation-insights > div > span,
.mhw-presentation-insight-grid article > span {
  color: var(--mhw-muted);
  font: 800 8px/1.1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.mhw-presentation-metrics strong {
  color: var(--mhw-navy);
  font: 800 clamp(19px, 2vw, 28px)/1 Georgia, "Times New Roman", serif;
}

.mhw-presentation-metrics small {
  color: var(--mhw-muted);
  font: 600 10px/1.25 "Segoe UI", Arial, sans-serif;
}

.mhw-operation-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 13px clamp(18px, 2.7vw, 38px) 0;
}

.mhw-operation-switch button {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #afbec4;
  border-radius: 999px;
  color: #46606e;
  background: #f8faf9;
  font: 800 9px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mhw-operation-switch button:hover,
.mhw-operation-switch button:focus-visible,
.mhw-operation-switch button[aria-pressed="true"] {
  border-color: var(--mhw-teal);
  color: #fff;
  background: var(--mhw-teal);
}

.mhw-presentation-insights {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: clamp(15px, 2vw, 25px) clamp(18px, 2.7vw, 38px);
}

.mhw-presentation-insights h2 {
  margin: 4px 0 12px;
  color: var(--mhw-navy);
  font: 800 clamp(17px, 1.6vw, 23px)/1.15 Georgia, "Times New Roman", serif;
}

.mhw-presentation-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mhw-presentation-insight-grid article {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 112px;
  padding: 17px;
  border: 1px solid #cbd4d6;
  border-top: 3px solid #7dbab4;
  background: #f9fbfa;
}

.mhw-presentation-insight-grid strong {
  color: var(--mhw-ink);
  font: 800 14px/1.2 Georgia, "Times New Roman", serif;
}

.mhw-presentation-insight-grid p {
  margin: 0;
  color: #51616a;
  font: 600 11px/1.4 "Segoe UI", Arial, sans-serif;
}

.mhw-presentation-boundary {
  margin: 0;
  padding: 10px clamp(18px, 2.7vw, 38px);
  border-top: 1px solid var(--mhw-line);
  color: #65747c;
  font: 700 9px/1.35 "Segoe UI", Arial, sans-serif;
}

.sidebar .brand {
  min-height: 88px;
  padding: 12px 14px;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
}

.brand-mark.mhw-brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}

.mhw-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.mhw-powered-bar {
  position: fixed;
  z-index: 73;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #050505;
  font: 800 10px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.035em;
}

.mhw-powered-bar a {
  color: #fff;
  text-decoration: none;
}

.mhw-powered-bar a:hover,
.mhw-powered-bar a:focus-visible {
  color: #ffbf83;
  text-decoration: underline;
}

.workspace {
  padding-bottom: 34px;
}

.fd-overview {
  overflow-x: clip;
}

.sidebar nav > button,
.sidebar nav > .fd-nav-heading,
nav[aria-label="Workspace"] > button,
nav[aria-label="Workspace"] > .fd-nav-heading {
  display: none !important;
}

.mhw-compact-nav {
  display: grid;
  gap: 3px;
  order: 1;
  padding: 2px 8px 8px;
}

.mhw-compact-nav-label {
  padding: 8px 10px 5px;
  color: #f49a4b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mhw-compact-nav > button,
.mhw-nav-cluster-items button {
  display: block !important;
  width: 100%;
  min-height: 34px;
  margin: 0 !important;
  padding: 8px 10px 8px 13px !important;
  border: 0;
  border-left: 3px solid transparent !important;
  color: #d8e4ed;
  background: transparent;
  font: 700 11px/1.25 "Segoe UI", Arial, sans-serif;
  text-align: left;
}

.mhw-compact-nav > button:hover,
.mhw-compact-nav > button:focus-visible,
.mhw-compact-nav > button.is-active,
.mhw-nav-cluster-items button:hover,
.mhw-nav-cluster-items button:focus-visible,
.mhw-nav-cluster-items button.is-active {
  border-left-color: var(--mhw-orange) !important;
  color: #fff;
  background: #164d70;
}

.mhw-nav-cluster {
  border-top: 1px solid #1a4563;
}

.mhw-nav-cluster summary {
  position: relative;
  min-height: 36px;
  padding: 11px 27px 9px 10px;
  color: #f49a4b;
  cursor: pointer;
  list-style: none;
  font: 900 9px/1.2 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.mhw-nav-cluster summary::-webkit-details-marker {
  display: none;
}

.mhw-nav-cluster summary::after {
  position: absolute;
  right: 10px;
  content: "+";
  font-size: 14px;
  line-height: 0.7;
}

.mhw-nav-cluster[open] summary::after {
  content: "−";
}

.mhw-nav-cluster-items {
  display: grid;
  gap: 2px;
  padding-bottom: 6px;
}

.mhw-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(820px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid #81909b;
  border-radius: 4px;
  color: var(--mhw-ink);
  background: var(--mhw-paper);
  box-shadow: 0 24px 80px #071d3570;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.mhw-dialog::backdrop {
  background: #061a2eae;
  backdrop-filter: blur(2px);
}

.mhw-dialog-shell {
  display: grid;
  max-height: inherit;
  grid-template-rows: auto minmax(0, 1fr);
}

.mhw-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--mhw-line);
  background: #faf9f6;
}

.mhw-dialog-head span,
.mhw-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--mhw-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.mhw-dialog-head h2 {
  margin: 0;
  color: var(--mhw-ink);
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.mhw-close,
.mhw-text-button {
  padding: 0;
  border: 0;
  color: var(--mhw-blue);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.mhw-close {
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid var(--mhw-line);
  background: #fff;
}

.mhw-dialog-body {
  padding: 24px;
  overflow: auto;
}

.mhw-dialog-lead {
  margin: 0 0 18px;
  color: #344a59;
  font-size: 15px;
  line-height: 1.6;
}

.mhw-boundary,
.mhw-delivery-receipt {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  border-left: 4px solid var(--mhw-teal);
  background: #edf7f5;
}

.mhw-boundary strong,
.mhw-delivery-receipt strong {
  font-size: 13px;
}

.mhw-boundary span,
.mhw-delivery-receipt span {
  color: #45606d;
  font-size: 11px;
  line-height: 1.45;
}

.mhw-dialog-actions,
.mhw-tour-actions,
.mhw-sync-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.mhw-dialog-actions {
  margin-top: 22px;
}

.mhw-primary,
.mhw-secondary {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 2px;
  font: 800 11px/1 "Segoe UI", Arial, sans-serif;
}

.mhw-primary {
  border: 1px solid var(--mhw-navy);
  color: #fff;
  background: var(--mhw-navy);
}

.mhw-primary:hover,
.mhw-primary:focus-visible {
  border-color: var(--mhw-orange);
  background: #123f5b;
}

.mhw-primary:disabled {
  cursor: wait;
  opacity: 0.55;
}

.mhw-secondary {
  border: 1px solid #80909a;
  color: var(--mhw-ink);
  background: #fff;
}

.mhw-primary:focus-visible,
.mhw-secondary:focus-visible,
.mhw-close:focus-visible,
.mhw-text-button:focus-visible,
.mhw-tour-launch:focus-visible,
.mhw-document-card:focus-visible,
.mhw-integration-card:focus-visible,
.mhw-integration-list-item:focus-visible {
  outline: 3px solid #ffb36f;
  outline-offset: 2px;
}

.mhw-powered-bar a:focus-visible {
  outline: 3px solid #ffb36f;
  outline-offset: 3px;
}

.mhw-tour-card {
  position: fixed;
  z-index: 78;
  right: 22px;
  top: 132px;
  width: min(350px, calc(100vw - 32px));
  padding: 19px;
  border: 1px solid #2f526a;
  border-top: 4px solid var(--mhw-orange);
  border-radius: 3px;
  color: #fff;
  background: var(--mhw-navy);
  box-shadow: 0 18px 50px #071d3560;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.mhw-tour-progress {
  color: #8dd8d3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mhw-tour-card h2 {
  margin: 6px 0 8px;
  font-size: 19px;
  line-height: 1.2;
}

.mhw-tour-card p {
  margin: 0 0 17px;
  color: #c8d5dd;
  font-size: 12px;
  line-height: 1.55;
}

.mhw-tour-card .mhw-primary {
  border-color: var(--mhw-orange);
  color: var(--mhw-navy);
  background: #ff9b4d;
}

.mhw-tour-card .mhw-secondary {
  border-color: #708696;
  color: #fff;
  background: transparent;
}

.mhw-tour-card .mhw-text-button {
  color: #c8d5dd;
}

.mhw-tour-target {
  position: relative;
  z-index: 75;
  outline: 4px solid #ff9b4d !important;
  outline-offset: 4px;
}

.mhw-sync-panel,
.mhw-documents,
.mhw-integrations {
  margin: 0 24px 16px;
  border: 1px solid var(--mhw-line);
  color: var(--mhw-ink);
  background: var(--mhw-paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.fd-overview > .mhw-sync-panel {
  margin: 0 0 14px;
}

.fd-overview .fd-body > .mhw-sync-panel {
  min-height: 0;
  margin: 0;
}

.fd-overview .fd-body > .mhw-sync-panel .mhw-section-head {
  min-height: 0;
  padding: 12px 16px;
}

.fd-overview .fd-body > .mhw-sync-panel .mhw-section-head h2 {
  margin: 3px 0 0;
  font-size: 16px;
}

.fd-overview .fd-body > .mhw-sync-panel .mhw-section-head p {
  display: none;
}

.fd-overview .fd-body > .mhw-sync-panel .mhw-sync-metrics {
  display: none;
}

.mhw-sync-panel[data-mode="stale"] {
  border-left: 5px solid var(--mhw-orange);
}

.mhw-sync-panel[data-mode="synced"] {
  border-left: 5px solid var(--mhw-teal);
}

.mhw-integrations {
  margin: 18px 24px;
  padding: 0 0 17px;
  border: 1px solid var(--mhw-line);
  border-top: 4px solid var(--mhw-blue);
  background: #fff;
}

.mhw-integration-head {
  margin: 0;
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--mhw-line);
}

.mhw-integration-head h2 {
  margin: 0;
  color: var(--mhw-ink);
  font-size: 18px;
}

.mhw-integration-head p {
  max-width: 660px;
  margin: 7px 0 0;
  color: #435966;
  font-size: 12px;
  line-height: 1.5;
}

.mhw-integration-grid,
.mhw-integration-list {
  display: grid;
  gap: 10px;
}

.mhw-integration-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 17px 22px 0;
}

.mhw-integration-card,
.mhw-integration-list-item {
  display: grid;
  gap: 7px;
  border: 1px solid var(--mhw-line);
  color: var(--mhw-ink);
  background: #faf9f6;
  text-align: left;
}

.mhw-integration-card {
  min-height: 132px;
  padding: 14px;
  border-top: 3px solid #78a9ad;
}

.mhw-integration-card:hover,
.mhw-integration-card:focus-visible,
.mhw-integration-list-item:hover,
.mhw-integration-list-item:focus-visible,
.mhw-integration-list-item.is-selected {
  border-color: var(--mhw-teal);
  background: #f0f8f7;
}

.mhw-integration-card strong,
.mhw-integration-list-item strong {
  font-size: 12px;
}

.mhw-integration-card span,
.mhw-integration-list-item span {
  color: #435966;
  font-size: 10px;
  line-height: 1.48;
}

.mhw-integration-card small,
.mhw-integration-list-item small {
  margin-top: auto;
  color: var(--mhw-teal);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-integrations > .mhw-fixture-note {
  margin: 13px 22px 0;
}

.mhw-overnight {
  margin: 18px 24px;
  padding: 0 0 17px;
  border: 1px solid var(--mhw-line);
  border-top: 4px solid var(--mhw-teal);
  background: #fff;
}

.mhw-overnight-head {
  margin: 0;
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--mhw-line);
}

.mhw-overnight-head h2 {
  margin: 0;
  color: var(--mhw-ink);
  font-size: 18px;
}

.mhw-overnight-feed {
  display: grid;
  gap: 0;
  padding: 0 22px;
}

.mhw-overnight-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--mhw-line);
  color: var(--mhw-ink);
  background: transparent;
  text-align: left;
}

.mhw-overnight-item:hover,
.mhw-overnight-item:focus-visible {
  color: #0c5e78;
}

.mhw-overnight-item:last-child {
  border-bottom: 0;
}

.mhw-overnight-time,
.mhw-overnight-item small {
  color: var(--mhw-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.mhw-overnight-item > div {
  display: grid;
  gap: 4px;
}

.mhw-overnight-item strong {
  font-size: 13px;
  line-height: 1.3;
}

.mhw-overnight-item span:not(.mhw-overnight-time):not(.mhw-overnight-action) {
  color: #435966;
  font-size: 11px;
  line-height: 1.45;
}

.mhw-overnight-action {
  color: var(--mhw-blue);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.mhw-overnight > .mhw-fixture-note {
  margin: 13px 22px 0;
}

.mhw-overview-center {
  margin: 18px 0;
  border: 1px solid var(--mhw-line);
  border-top: 5px solid var(--mhw-teal);
  background: #fff;
}

.mhw-overview-center-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--mhw-line);
}

.mhw-overview-center-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: start;
  padding: 18px;
  border: 0;
  border-right: 1px solid var(--mhw-line);
  color: var(--mhw-ink);
  background: #fff;
  text-align: left;
}

.mhw-overview-center-card:last-child {
  border-right: 0;
}

.mhw-overview-center-card:hover,
.mhw-overview-center-card:focus-visible {
  background: #f1f7f7;
}

.mhw-overview-center-card span {
  color: var(--mhw-teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mhw-overview-center-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.mhw-overview-center-card small {
  color: #526a76;
  font-size: 10px;
  line-height: 1.45;
}

.mhw-outcome-nav {
  display: grid;
  gap: 3px;
  margin: 17px 0 0;
  padding: 13px 0 0;
  border-top: 1px solid #214863;
}

.mhw-outcome-nav > span {
  padding: 0 15px 6px;
  color: #f49a4b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mhw-outcome-nav button {
  min-height: 31px;
  padding: 7px 15px;
  border: 0;
  border-left: 4px solid transparent;
  color: #dce7ee;
  background: transparent;
  font: 700 11px/1.2 "Segoe UI", Arial, sans-serif;
  text-align: left;
}

.mhw-outcome-nav button:hover,
.mhw-outcome-nav button:focus-visible,
.mhw-outcome-nav button.is-active {
  border-left-color: var(--mhw-orange);
  color: #fff;
  background: #164d70;
}

body[data-mhw-outcome-view] .fd-overview,
body[data-mhw-outcome-view] .workspace > .content,
body[data-mhw-outcome-view] .workspace > .demo-banner {
  display: none;
}

.mhw-outcome-view {
  margin: 24px;
  border: 1px solid var(--mhw-line);
  border-top: 5px solid var(--mhw-blue);
  color: var(--mhw-ink);
  background: var(--mhw-paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.mhw-outcome-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--mhw-line);
  background: #fff;
}

.mhw-outcome-head h1 {
  margin: 3px 0 6px;
  font-size: clamp(25px, 4vw, 37px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mhw-outcome-head p {
  max-width: 700px;
  margin: 0;
  color: #435966;
  font-size: 13px;
  line-height: 1.55;
}

.mhw-outcome-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--mhw-line);
  background: #f8faf9;
}

.mhw-outcome-metrics.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mhw-outcome-metrics article {
  display: grid;
  gap: 4px;
  min-height: 104px;
  align-content: center;
  padding: 18px 22px;
  border-right: 1px solid var(--mhw-line);
}

.mhw-outcome-metrics article:last-child {
  border-right: 0;
}

.mhw-outcome-metrics span {
  color: var(--mhw-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mhw-outcome-metrics strong {
  font-size: 29px;
  line-height: 1;
}

.mhw-outcome-metrics small {
  color: #526a76;
  font-size: 10px;
}

.mhw-outcome-evidence {
  padding: 24px;
}

.mhw-outcome-evidence-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mhw-line);
}

.mhw-outcome-evidence-head h2 {
  margin: 0;
  font-size: 17px;
}

.mhw-outcome-evidence-head p {
  max-width: 410px;
  margin: 0;
  color: #526a76;
  font-size: 11px;
  line-height: 1.45;
}

.mhw-outcome-records {
  display: grid;
}

.mhw-outcome-record {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--mhw-line);
  color: var(--mhw-ink);
  background: transparent;
  text-align: left;
}

.mhw-outcome-record:hover,
.mhw-outcome-record:focus-visible {
  color: #0c5e78;
}

.mhw-outcome-record > span {
  color: var(--mhw-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.mhw-outcome-record > div {
  display: grid;
  gap: 4px;
}

.mhw-outcome-record strong {
  font-size: 13px;
  line-height: 1.3;
}

.mhw-outcome-record div > span {
  color: #435966;
  font-size: 11px;
  line-height: 1.45;
}

.mhw-outcome-record small {
  padding: 5px 7px;
  color: #07564f;
  background: var(--mhw-good-bg);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-outcome-bottom {
  display: grid;
  gap: 14px;
  padding: 0 24px 24px;
}

.mhw-outcome-bottom .mhw-sync-panel {
  margin: 0;
}

.mhw-owner-workspace {
  padding: 24px;
  border-bottom: 1px solid var(--mhw-line);
  background: #f5f8f8;
}

.mhw-owner-workspace-head {
  max-width: 780px;
  margin-bottom: 16px;
}

.mhw-owner-workspace-head h2 {
  margin: 3px 0 5px;
  font-size: 20px;
}

.mhw-owner-workspace-head p,
.mhw-workspace-panel > p {
  margin: 0;
  color: #526a76;
  font-size: 11px;
  line-height: 1.5;
}

.mhw-owner-workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mhw-workspace-panel {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--mhw-line);
  border-top: 3px solid var(--mhw-blue);
  background: #fff;
}

.mhw-workspace-panel.is-wide {
  grid-column: span 2;
}

.mhw-workspace-panel h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.mhw-workspace-panel > .mhw-primary,
.mhw-workspace-panel > .mhw-secondary,
.mhw-workspace-panel > progress {
  margin-top: 14px;
}

.mhw-adaptive-shell {
  display: grid;
  gap: 14px;
}

@media (min-width: 821px) {
  body[data-mhw-outcome-view="front-desk"] .mhw-outcome-view,
  body[data-mhw-outcome-view="seo-station"] .mhw-outcome-view,
  body[data-mhw-outcome-view="owner-reports"] .mhw-outcome-view {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-outcome-head,
  body[data-mhw-outcome-view="seo-station"] .mhw-outcome-head,
  body[data-mhw-outcome-view="owner-reports"] .mhw-outcome-head {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-outcome-head p,
  body[data-mhw-outcome-view="seo-station"] .mhw-outcome-head p,
  body[data-mhw-outcome-view="owner-reports"] .mhw-outcome-head p {
    font-size: 12px;
    line-height: 1.35;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-outcome-metrics article,
  body[data-mhw-outcome-view="seo-station"] .mhw-outcome-metrics article,
  body[data-mhw-outcome-view="owner-reports"] .mhw-outcome-metrics article {
    min-height: 86px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-outcome-bottom,
  body[data-mhw-outcome-view="seo-station"] .mhw-outcome-bottom,
  body[data-mhw-outcome-view="owner-reports"] .mhw-outcome-bottom {
    padding-bottom: 14px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-compact-nav,
  body[data-mhw-outcome-view="seo-station"] .mhw-compact-nav,
  body[data-mhw-outcome-view="owner-reports"] .mhw-compact-nav {
    gap: 1px;
    padding-top: 0;
    padding-bottom: 4px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-compact-nav-label,
  body[data-mhw-outcome-view="seo-station"] .mhw-compact-nav-label,
  body[data-mhw-outcome-view="owner-reports"] .mhw-compact-nav-label {
    padding-top: 5px;
    padding-bottom: 3px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-compact-nav > button,
  body[data-mhw-outcome-view="seo-station"] .mhw-compact-nav > button,
  body[data-mhw-outcome-view="owner-reports"] .mhw-compact-nav > button,
  body[data-mhw-outcome-view="front-desk"] .mhw-nav-cluster-items button,
  body[data-mhw-outcome-view="seo-station"] .mhw-nav-cluster-items button,
  body[data-mhw-outcome-view="owner-reports"] .mhw-nav-cluster-items button {
    min-height: 29px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    font-size: 10px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-nav-cluster summary,
  body[data-mhw-outcome-view="seo-station"] .mhw-nav-cluster summary,
  body[data-mhw-outcome-view="owner-reports"] .mhw-nav-cluster summary {
    min-height: 30px;
    padding-top: 8px;
    padding-bottom: 7px;
  }

  body[data-mhw-outcome-view="front-desk"] .mhw-nav-cluster-items,
  body[data-mhw-outcome-view="seo-station"] .mhw-nav-cluster-items,
  body[data-mhw-outcome-view="owner-reports"] .mhw-nav-cluster-items {
    gap: 0;
    padding-bottom: 3px;
  }

  .mhw-adaptive-workspace {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .mhw-adaptive-workspace .mhw-owner-workspace-head {
    margin-bottom: 10px;
  }

  .mhw-adaptive-workspace .mhw-owner-workspace-head > p {
    display: none;
  }

  .mhw-call-queue article {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .mhw-adaptive-workspace .mhw-owner-settings {
    gap: 8px;
    margin-top: 10px;
  }

  .mhw-adaptive-workspace .mhw-owner-settings select {
    min-height: 34px;
  }

  .mhw-adaptive-workspace .mhw-owner-settings .mhw-primary {
    min-height: 34px;
  }

  .mhw-adaptive-workspace .mhw-tab-records .mhw-outcome-record {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mhw-adaptive-workspace .mhw-tab-records .mhw-outcome-record > div {
    gap: 0;
  }

  .mhw-adaptive-workspace .mhw-tab-records .mhw-outcome-record div > span {
    display: none;
  }
}

.mhw-workspace-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--mhw-line);
  background: #fff;
}

.mhw-workspace-tabs button {
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #526a76;
  background: transparent;
  font: 900 10px/1.2 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.045em;
  text-align: left;
  text-transform: uppercase;
}

.mhw-workspace-tabs button:hover,
.mhw-workspace-tabs button:focus-visible {
  color: var(--mhw-blue);
  background: #f5f8f8;
}

.mhw-workspace-tabs button.is-active {
  border-bottom-color: var(--mhw-orange);
  color: var(--mhw-ink);
  background: #eef5f5;
}

.mhw-adaptive-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 14px;
}

.mhw-tab-records {
  margin-top: 14px;
}

.mhw-view-switch {
  display: inline-flex;
  margin-top: 14px;
  border: 1px solid var(--mhw-line);
  background: #f7f9f9;
}

.mhw-view-switch button {
  min-height: 31px;
  padding: 6px 10px;
  border: 0;
  border-right: 1px solid var(--mhw-line);
  color: #526a76;
  background: transparent;
  font: 900 9px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mhw-view-switch button:last-child {
  border-right: 0;
}

.mhw-view-switch button.is-active {
  color: #fff;
  background: var(--mhw-blue);
}

.mhw-switch-content {
  min-width: 0;
}

.mhw-trend-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mhw-trend-list article {
  display: grid;
  gap: 5px;
}

.mhw-trend-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #314b5a;
  font-size: 10px;
}

.mhw-trend-list strong {
  color: var(--mhw-ink);
}

.mhw-trend-list progress {
  width: 100%;
  height: 10px;
  accent-color: var(--mhw-teal);
}

.mhw-trend-list small {
  color: #526a76;
  font-size: 9px;
  line-height: 1.35;
}

.mhw-call-queue {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--mhw-line);
}

.mhw-call-queue article {
  display: grid;
  grid-template-columns: minmax(108px, 0.8fr) minmax(0, 1.3fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 11px;
  border-bottom: 1px solid var(--mhw-line);
  background: #fafcfb;
}

.mhw-call-queue article:last-child {
  border-bottom: 0;
}

.mhw-call-queue article > div {
  display: grid;
  gap: 3px;
}

.mhw-call-queue strong {
  color: var(--mhw-ink);
  font-size: 10px;
}

.mhw-call-queue span,
.mhw-call-queue article > div small {
  color: #526a76;
  font-size: 9px;
  line-height: 1.3;
}

.mhw-call-queue > article > small {
  padding: 4px 6px;
  color: #07564f;
  background: var(--mhw-good-bg);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.mhw-readiness-grid article {
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 92px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--mhw-line);
  background: #f8faf9;
}

.mhw-readiness-grid strong {
  color: var(--mhw-ink);
  font-size: 11px;
}

.mhw-readiness-grid span {
  color: #526a76;
  font-size: 9px;
  line-height: 1.35;
}

.mhw-readiness-grid small {
  margin-top: auto;
  color: var(--mhw-teal);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mhw-table-scroll {
  width: 100%;
  margin-top: 13px;
  overflow-x: auto;
}

.mhw-owner-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 10px;
}

.mhw-owner-table th,
.mhw-owner-table td {
  padding: 10px 9px;
  border-bottom: 1px solid var(--mhw-line);
  color: #314b5a;
  text-align: left;
  vertical-align: top;
}

.mhw-owner-table thead th {
  color: var(--mhw-muted);
  background: #f7f9f9;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mhw-owner-table tbody th {
  color: var(--mhw-ink);
  font-weight: 800;
}

.mhw-owner-settings {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.mhw-owner-settings > label:not(.mhw-owner-check) {
  display: grid;
  gap: 5px;
  color: #526a76;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mhw-owner-settings select {
  width: 100%;
  min-height: 38px;
  padding: 7px 9px;
  border: 1px solid #b9c5ca;
  color: var(--mhw-ink);
  background: #fff;
  font-size: 11px;
  text-transform: none;
}

.mhw-owner-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #3d5664;
  font-size: 10px;
  line-height: 1.4;
}

.mhw-owner-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.mhw-owner-actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mhw-owner-actions button {
  width: 100%;
}

.mhw-owner-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mhw-owner-signal-grid article {
  display: grid;
  gap: 3px;
  min-height: 76px;
  align-content: center;
  padding: 12px;
  background: #eef5f5;
}

.mhw-owner-signal-grid span {
  color: var(--mhw-teal);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-owner-signal-grid strong {
  font-size: 18px;
}

.mhw-owner-signal-grid small {
  color: #526a76;
  font-size: 9px;
  line-height: 1.35;
}

.mhw-workspace-panel progress {
  width: 100%;
  height: 12px;
  accent-color: var(--mhw-teal);
}

.mhw-channel-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mhw-channel-cards article {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--mhw-line);
  background: #f8faf9;
}

.mhw-channel-cards article > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.mhw-channel-cards article > div strong {
  color: var(--mhw-ink);
  font-size: 12px;
}

.mhw-channel-cards article > div span {
  flex: 0 0 auto;
  padding: 4px 6px;
  color: #07564f;
  background: var(--mhw-good-bg);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-channel-cards article > div span[data-tone="attention"] {
  color: #7a4804;
  background: var(--mhw-warn-bg);
}

.mhw-channel-cards dl {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
}

.mhw-channel-cards dl > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding-top: 7px;
  border-top: 1px solid var(--mhw-line);
}

.mhw-channel-cards dt {
  color: var(--mhw-muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-channel-cards dd {
  margin: 0;
  color: #314b5a;
  font-size: 9px;
  text-align: right;
}

.mhw-integration-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.mhw-integration-list-item {
  min-height: 118px;
  padding: 14px;
}

.mhw-connection-steps {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--mhw-line);
  background: #faf9f6;
}

.mhw-connection-steps h3 {
  margin: 0;
  font-size: 14px;
}

.mhw-connection-steps ol {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #334b59;
  font-size: 11px;
  line-height: 1.6;
}

.mhw-sync-head,
.mhw-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}

.mhw-sync-head h2,
.mhw-section-head h2 {
  margin: 3px 0 5px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.mhw-sync-head p,
.mhw-section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--mhw-muted);
  font-size: 11px;
  line-height: 1.5;
}

.mhw-sync-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.mhw-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 14px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-status.is-stale {
  color: #824100;
  background: var(--mhw-warn-bg);
}

.mhw-status.is-current {
  color: #07564f;
  background: var(--mhw-good-bg);
}

.mhw-sync-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--mhw-line);
}

.mhw-sync-metrics article {
  display: grid;
  gap: 2px;
  min-height: 74px;
  align-content: center;
  padding: 12px 18px;
  border-right: 1px solid var(--mhw-line);
}

.mhw-sync-metrics article:last-child {
  border-right: 0;
}

.mhw-sync-metrics span,
.mhw-dialog-facts span {
  color: var(--mhw-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.mhw-sync-metrics strong {
  font-size: 23px;
  line-height: 1;
}

.mhw-sync-metrics small {
  color: var(--mhw-muted);
  font-size: 9px;
}

.mhw-documents {
  padding-bottom: 18px;
}

.mhw-section-head {
  border-bottom: 1px solid var(--mhw-line);
}

.mhw-document-tools {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.mhw-document-tools label,
.mhw-sync-form label,
.mhw-settings-form label {
  display: grid;
  gap: 5px;
  color: var(--mhw-muted);
  font-size: 9px;
  font-weight: 800;
}

.mhw-document-tools input,
.mhw-document-tools select,
.mhw-sync-form input,
.mhw-settings-form select {
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid #a9b4bb;
  border-radius: 2px;
  color: var(--mhw-ink);
  background: #fff;
  font: 600 12px/1 "Segoe UI", Arial, sans-serif;
}

.mhw-document-tools input {
  width: 210px;
}

.mhw-document-count {
  padding: 12px 20px 0;
  color: var(--mhw-muted);
  font-size: 10px;
  font-weight: 800;
}

.mhw-document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 20px 0;
}

.mhw-document-card {
  display: grid;
  min-height: 148px;
  align-content: start;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--mhw-line);
  border-top: 3px solid var(--mhw-teal);
  border-radius: 2px;
  color: var(--mhw-ink);
  background: #fff;
  text-align: left;
}

.mhw-document-card:hover {
  border-color: #8ba1ae;
  background: #fbfaf7;
}

.mhw-document-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--mhw-teal);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mhw-doc-status {
  padding: 3px 6px;
  color: #4e5f69;
  background: #edf1f3;
  font-size: 8px;
}

.mhw-document-card > strong {
  font-size: 12px;
  line-height: 1.3;
}

.mhw-document-property,
.mhw-document-meta {
  color: var(--mhw-muted);
  font-size: 9px;
  line-height: 1.35;
}

.mhw-document-meta {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #edf0f2;
}

.mhw-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--mhw-muted);
  background: #f7f8f8;
  text-align: center;
}

.mhw-dialog-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--mhw-line);
}

.mhw-dialog-facts article {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-right: 1px solid var(--mhw-line);
}

.mhw-dialog-facts article:last-child {
  border-right: 0;
}

.mhw-dialog-facts strong {
  font-size: 11px;
}

.mhw-document-preview,
.mhw-report-copy,
.mhw-email-preview {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--mhw-line);
  background: #faf9f6;
}

.mhw-document-preview h3,
.mhw-report-copy h3,
.mhw-email-preview h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.mhw-document-preview p,
.mhw-email-preview p {
  color: #435966;
  font-size: 12px;
  line-height: 1.55;
}

.mhw-document-preview ul,
.mhw-report-copy ul {
  margin: 12px 0 0;
  padding-left: 19px;
  color: #334b59;
  font-size: 11px;
  line-height: 1.7;
}

.mhw-fixture-note {
  margin: 14px 0 0;
  color: var(--mhw-muted);
  font-size: 10px;
  line-height: 1.5;
}

.mhw-report-state {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 4px solid var(--mhw-orange);
  background: var(--mhw-warn-bg);
}

.mhw-report-state.is-current {
  border-left-color: var(--mhw-teal);
  background: var(--mhw-good-bg);
}

.mhw-report-state strong {
  font-size: 13px;
}

.mhw-report-state span {
  color: var(--mhw-muted);
  font-size: 11px;
}

.mhw-sync-form,
.mhw-settings-form {
  display: grid;
  gap: 13px;
}

.mhw-sync-progress {
  min-height: 42px;
  padding: 13px 14px 13px 38px;
  border: 1px solid #b5c6cd;
  color: #214e62;
  background: #eef7f8;
  font-size: 11px;
  font-weight: 800;
}

.mhw-sync-progress::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px 0 -23px;
  border: 2px solid #78a9ad;
  border-top-color: var(--mhw-teal);
  border-radius: 50%;
  animation: mhw-spin 0.8s linear infinite;
  content: "";
}

.mhw-checkbox {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.mhw-checkbox input {
  width: 17px;
  height: 17px;
}

.mhw-delivery-receipt {
  gap: 8px;
}

.mhw-email-preview strong {
  color: var(--mhw-ink);
}

.mhw-toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 76px;
  max-width: 380px;
  padding: 13px 15px;
  border-left: 4px solid #46b9af;
  color: #fff;
  background: var(--mhw-navy);
  box-shadow: 0 12px 32px #071d3548;
  font: 700 11px/1.45 "Segoe UI", Arial, sans-serif;
}

@keyframes mhw-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .mhw-outcome-metrics.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhw-outcome-metrics.is-four article:nth-child(2) {
    border-right: 0;
  }

  .mhw-outcome-metrics.is-four article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--mhw-line);
  }

  .mhw-overview-center-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhw-overview-center-card:nth-child(2) {
    border-right: 0;
  }

  .mhw-overview-center-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--mhw-line);
  }

  .mhw-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhw-sync-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhw-integration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mhw-sync-metrics article:nth-child(2) {
    border-right: 0;
  }

  .mhw-sync-metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--mhw-line);
  }
}

@media (max-width: 820px) {
  body.mhw-presentation-active main.workspace {
    height: calc(100dvh - 34px);
  }

  .mhw-presentation-deck {
    padding: 12px 14px;
  }

  .mhw-presentation-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px 18px 12px;
  }

  .mhw-presentation-detail {
    width: 100%;
  }

  .mhw-presentation-metrics {
    margin: 0 18px;
  }

  .mhw-presentation-insights {
    padding: 16px 18px;
  }

  .mhw-operation-switch {
    padding: 10px 18px 0;
  }

  .fd-mobile-cards {
    display: block;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
  }

  .fd-mobile-cards thead {
    display: none;
  }

  .fd-mobile-cards tbody {
    display: grid;
    gap: 10px;
  }

  .fd-mobile-cards tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 13px;
    border: 1px solid var(--fd-line);
    border-left: 3px solid var(--fd-orange);
    background: #fff;
  }

  .fd-mobile-cards td,
  .fd-blocker-table td,
  .fd-blocker-table td:last-child,
  .fd-blocker-table td:nth-child(2),
  .fd-blocker-table td:nth-child(3),
  .fd-blocker-table td:nth-child(4) {
    display: grid;
    gap: 3px;
    width: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .fd-mobile-cards td::before {
    color: var(--fd-muted);
    content: attr(data-label);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .fd-mobile-cards td:first-child,
  .fd-mobile-cards td:last-child,
  .fd-vendor-table td:nth-child(2),
  .fd-vendor-table td:nth-child(3) {
    grid-column: 1 / -1;
  }

  .fd-mobile-cards td:last-child {
    justify-items: start;
    padding-top: 9px;
    border-top: 1px solid var(--fd-line-soft);
  }

  .fd-mobile-cards .fd-empty::before {
    content: none;
  }

  .fd-blocker-name {
    align-items: flex-start;
  }

  .mhw-sync-panel,
  .mhw-documents,
  .mhw-integrations,
  .mhw-overview-center {
    margin-right: 16px;
    margin-left: 16px;
  }

  .fd-overview > .mhw-sync-panel {
    margin-right: 0;
    margin-left: 0;
  }

  .mhw-sync-head,
  .mhw-section-head,
  .mhw-document-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .mhw-document-tools input {
    width: 100%;
  }

  .mhw-dialog-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .mhw-integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhw-owner-workspace-grid {
    grid-template-columns: 1fr;
  }

  .mhw-workspace-panel.is-wide {
    grid-column: auto;
  }

  .mhw-dialog-facts article:nth-child(2) {
    border-right: 0;
  }

  .mhw-dialog-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--mhw-line);
  }
}

@media (max-width: 560px) {
  .mhw-presentation-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 9px;
  }

  .mhw-presentation-tabs button {
    min-height: 30px;
    padding: 7px 8px;
    font-size: 8px;
  }

  .mhw-presentation-head h1 {
    font-size: 23px;
  }

  .mhw-presentation-head p {
    display: none;
  }

  .mhw-presentation-metrics article {
    min-height: 69px;
    padding: 11px 9px;
  }

  .mhw-presentation-metrics strong {
    font-size: 19px;
  }

  .mhw-presentation-insight-grid {
    grid-template-columns: 1fr;
  }

  .mhw-presentation-insight-grid article {
    min-height: 0;
    padding: 12px;
  }

  .mhw-presentation-insight-grid article:nth-child(2) {
    display: none;
  }

  .mhw-presentation-insights {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mhw-tour-launch {
    position: static;
    z-index: auto;
    order: 2;
    min-height: 38px;
    padding: 0 12px;
    box-shadow: none;
  }

  .suite-fixture-toggle {
    position: static;
    z-index: auto;
    order: 3;
    min-height: 38px;
    padding: 0 12px;
    box-shadow: none;
  }

  .workspace > header .header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .workspace > header .workspace-search {
    flex: 1 0 100%;
    order: 0;
  }

  .workspace > header .menu-button {
    order: 1;
  }

  .mhw-tour-card {
    right: 14px;
    top: 122px;
  }

  .mhw-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }

  .mhw-dialog-head,
  .mhw-dialog-body,
  .mhw-sync-head,
  .mhw-section-head {
    padding: 16px;
  }

  .mhw-document-grid,
  .mhw-sync-metrics,
  .mhw-dialog-facts,
  .mhw-integration-grid,
  .mhw-integration-list,
  .mhw-overview-center-grid,
  .mhw-owner-signal-grid,
  .mhw-channel-cards {
    grid-template-columns: 1fr;
  }

  .mhw-overview-center-card,
  .mhw-overview-center-card:nth-child(2),
  .mhw-overview-center-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--mhw-line);
  }

  .mhw-overview-center-card:last-child {
    border-bottom: 0;
  }

  .mhw-sync-metrics article,
  .mhw-sync-metrics article:nth-child(2),
  .mhw-dialog-facts article,
  .mhw-dialog-facts article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--mhw-line);
  }

  .mhw-sync-metrics article:last-child,
  .mhw-dialog-facts article:last-child {
    border-bottom: 0;
  }

  .mhw-document-grid {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mhw-document-card {
    min-height: 130px;
  }

  .mhw-dialog-actions > button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mhw-sync-progress::before {
    animation: none;
  }
}

@media (max-height: 700px) {
  .mhw-presentation-deck {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mhw-presentation-tabs {
    margin-bottom: 7px;
  }

  .mhw-presentation-head {
    padding-top: 13px;
    padding-bottom: 10px;
  }

  .mhw-presentation-head h1 {
    font-size: clamp(20px, 2vw, 27px);
  }

  .mhw-presentation-head p {
    display: none;
  }

  .mhw-presentation-metrics article {
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mhw-presentation-insights {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mhw-presentation-insights h2 {
    margin-bottom: 8px;
  }

  .mhw-presentation-insight-grid article {
    min-height: 0;
    padding: 11px;
  }

  .mhw-presentation-insight-grid p {
    display: none;
  }

  .mhw-presentation-boundary {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

@media (max-width: 820px) {
  .mhw-overnight,
  .mhw-outcome-view {
    margin-right: 16px;
    margin-left: 16px;
  }

  .mhw-outcome-head,
  .mhw-outcome-evidence-head {
    align-items: stretch;
    flex-direction: column;
  }

  .mhw-owner-workspace {
    padding: 18px;
  }

  .mhw-adaptive-content {
    grid-template-columns: 1fr;
  }

  .mhw-outcome-metrics:not(.is-four) {
    grid-template-columns: 1fr;
  }

  .mhw-outcome-metrics article,
  .mhw-outcome-metrics article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--mhw-line);
  }

  .mhw-outcome-metrics article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .mhw-overnight-head,
  .mhw-outcome-head,
  .mhw-outcome-evidence,
  .mhw-outcome-bottom {
    padding: 16px;
  }

  .mhw-overnight-feed {
    padding: 0 16px;
  }

  .mhw-overnight-item,
  .mhw-outcome-record {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .mhw-workspace-tabs button {
    min-height: 39px;
    padding: 8px 7px;
    font-size: 8px;
    letter-spacing: 0.02em;
  }

  .mhw-call-queue article {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }

  .mhw-call-queue article > div:nth-child(2) {
    grid-column: 1 / -1;
  }

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

  .mhw-overnight-action,
  .mhw-outcome-record small {
    justify-self: start;
  }
}
