:root {
  color-scheme: light;
  --ink: #181b19;
  --muted: #656b66;
  --line: #e2e5df;
  --paper: #f7f8f4;
  --accent: #d5ef8d;
  --green: #3d5935;
  --white: #fff;
  --warning: #855326;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    15px/1.55 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select {
  font: inherit;
}
button,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
button:hover,
.button:hover {
  background: #f0f3e9;
  border-color: #a1ad94;
}
button.quiet {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
a:hover {
  color: var(--green);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #567834;
  outline-offset: 4px;
}
main:focus {
  outline: none;
}
.skip {
  position: fixed;
  left: -9999px;
  z-index: 20;
}
.skip:focus {
  left: 20px;
  top: 12px;
  background: #fff;
  padding: 12px;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  border-right: 1px solid var(--line);
  padding: 38px 20px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.brand {
  display: block;
  padding: 6px 16px 24px;
}
.brand img {
  width: 96px;
  height: auto;
  display: block;
}
.product {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  padding: 4px 16px 32px;
}
.navlabel {
  margin: 0 16px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #555d56;
  font-weight: 550;
}
nav a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
nav a:hover {
  background: #f5f7f1;
}
nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 24px 14px 0;
}
.sidebar-bottom p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.sidebar-bottom a {
  font-size: 12px;
}
#signout {
  margin-top: 18px;
  width: 100%;
}
[hidden] {
  display: none !important;
}
.workspace {
  margin-left: 220px;
}
.topbar {
  height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  color: var(--muted);
}
.topbar strong {
  font-weight: 550;
  color: var(--ink);
}
.topbar .workspace-mark {
  display: flex;
  align-items: center;
  gap: 9px;
}
.workspace-mark:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b5cb84;
}
#preview {
  padding: 9px 40px;
  background: #f0f3e8;
  color: #52603e;
  font-size: 11px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #e3e9d6;
}
main {
  max-width: 1500px;
  margin: auto;
  padding: 38px 40px 64px;
  min-height: 82vh;
}
.pagehead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 30px;
}
.pagehead > div {
  max-width: 720px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 10px;
}
h1 {
  font-size: clamp(30px, 3.25vw, 46px);
  letter-spacing: -0.055em;
  line-height: 1.12;
  font-weight: 620;
  margin: 0 0 13px;
}
h2 {
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  font-weight: 620;
  margin: 0 0 8px;
}
h3 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 6px;
  font-weight: 650;
}
p {
  margin: 0 0 14px;
}
.headnote {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: 610px;
}
.sub,
.scope {
  font-size: 12px;
  color: var(--muted);
}
.scope {
  margin: 15px 0;
}
.overview-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
}
.summary-item {
  padding: 23px 26px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  font-size: 12px;
  transition: background 0.15s;
}
.summary-item:last-child {
  border: 0;
  background: var(--accent);
}
.summary-item:hover {
  background: #edf2e3;
  color: var(--ink);
}
.summary-item > strong {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 560;
  margin: 18px 0 22px;
}
.summary-item small {
  font-size: 26px;
  color: var(--muted);
  font-weight: 400;
}
.summary-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: #55614b;
}
.summary-foot b {
  font-size: 18px;
  font-weight: 400;
}
.notice {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #e7dfcc;
  background: #fcfaf4;
  border-radius: 9px;
  margin: 0 0 28px;
  font-size: 12px;
}
.notice p {
  margin: 0;
  flex: 1;
}
.notice strong,
.notice p span {
  display: block;
}
.notice strong {
  font-weight: 600;
}
.notice p span {
  color: #776b54;
  margin-top: 2px;
}
.notice > a {
  font-weight: 600;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.notice-symbol {
  border: 1px solid #c2ac84;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  text-align: center;
  color: #826e4c;
  line-height: 18px;
  font-family: Georgia, serif;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.panelhead {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}
.panelhead h2,
.panelhead h3 {
  margin: 0;
}
.panelhead .eyebrow {
  margin-bottom: 5px;
}
.panelbody {
  padding: 22px 24px;
}
.textlink {
  font-size: 12px;
  white-space: nowrap;
  font-weight: 550;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.network-head,
.network-row {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.7fr) minmax(140px, 1fr) minmax(140px, 1fr)
    36px;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
}
.network-head {
  font-size: 10px;
  color: var(--muted);
  background: #fafbf8;
  border-bottom: 1px solid var(--line);
}
.network-head span:last-child {
  text-align: center;
}
.network-row {
  min-height: 91px;
  border-bottom: 1px solid var(--line);
}
.network-row:hover {
  background: #fcfdf9;
}
.show-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.show-identity strong {
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 1.35;
}
.show-identity small,
.network-value small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.avatar {
  width: 42px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf0e7;
  color: #4d5c43;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
  border-radius: 6px;
  flex-shrink: 0;
}
.network-row:nth-of-type(3n) .avatar {
  background: #f0e9e2;
  color: #715e52;
}
.network-row:nth-of-type(3n + 1) .avatar {
  background: #e8edf0;
  color: #536770;
}
.network-value strong {
  font-size: 17px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.arrowlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  text-decoration: none;
  font-size: 21px;
  color: #67715e;
  border-radius: 6px;
}
.arrowlink:hover {
  background: #eef3e4;
}
.mobile-label {
  display: none;
}
.table-note {
  margin: 0;
  padding: 15px 24px;
  color: var(--muted);
  font-size: 11px;
  background: #fcfdfa;
}
.columns {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 24px;
}
.sectiongap {
  margin-top: 28px;
}
.sectionheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 16px;
}
.sectionheading h2 {
  margin: 0;
}
.attention .panelbody {
  padding-top: 5px;
  padding-bottom: 5px;
}
.attention-item {
  display: block;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.attention-item:last-child {
  border: 0;
}
.attention-item strong {
  font-size: 13px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}
.attention-item p {
  color: var(--muted);
  font-size: 12px;
  margin: 6px 0 0;
}
.dot {
  width: 8px;
  height: 8px;
  background: #ad8142;
  border-radius: 50%;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f4e9;
  color: #4b603d;
  border: 1px solid #e3ead9;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 550;
  line-height: 1.5;
  white-space: nowrap;
}
.pill.warn {
  color: var(--warning);
  background: #faf3e8;
  border-color: #efe2cd;
}
.agenda-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.agenda-row:last-child {
  border: 0;
}
.dateblock {
  width: 48px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.15;
}
.dateblock strong {
  display: block;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.dateblock span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}
.agenda-info {
  flex: 1;
  min-width: 0;
}
.agenda-info h3 a {
  text-decoration: none;
}
.agenda-info p {
  font-size: 12px;
  color: var(--muted);
  margin: 3px 0 0;
}
.agenda-status {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.agenda-status .sub {
  font-size: 10px;
}
.agenda-month {
  margin-top: 24px;
}
.agenda-month > h2 {
  font-size: 15px;
  margin-bottom: 12px;
}
.toolbar {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
label {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.searchlabel {
  flex: 1;
  min-width: 220px;
}
input,
select {
  border: 1px solid #dce1d6;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
  font-size: 13px;
}
select {
  min-width: 155px;
}
input[type="search"] {
  width: 100%;
}
.showgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.showcard {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.15s,
    transform 0.15s;
}
.showcard:hover {
  border-color: #9bab88;
  transform: translateY(-2px);
}
.cardtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.showcard > .eyebrow {
  font-size: 9px;
}
.showcard h2 {
  font-size: 22px;
  line-height: 1.2;
  min-height: 54px;
  margin-bottom: 10px;
}
.showcard h2 a {
  text-decoration: none;
}
.showcard .room {
  min-height: 37px;
  margin-bottom: 18px;
}
.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.card-metrics span {
  font-size: 10px;
  color: var(--muted);
  display: block;
}
.card-metrics strong {
  font-size: 21px;
  letter-spacing: -0.04em;
  font-weight: 550;
  display: block;
  margin-top: 5px;
}
.showcard > .scope {
  font-size: 10px;
  margin: 8px 0 18px;
}
.cardbottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: auto;
  font-size: 11px;
  color: var(--muted);
}
.showgrid > .empty {
  grid-column: 1/-1;
}
.empty {
  padding: 38px 24px;
  text-align: center;
}
.empty p {
  font-size: 13px;
  color: var(--muted);
  max-width: 480px;
  margin: 8px auto 18px;
}
.backlink {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 15px;
  text-decoration: none;
  color: var(--muted);
}
.show-hero {
  display: flex;
  align-items: center;
  gap: 24px;
}
.show-hero > .avatar {
  width: 82px;
  height: 94px;
  font-size: 24px;
}
.show-hero h1 {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 850px;
}
.show-hero p:last-child {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
.linkrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.showlinks {
  margin: 24px 0 28px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.metriclist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 24px;
}
.metriclist dt {
  font-size: 12px;
  color: var(--muted);
}
.metriclist dd {
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 550;
  margin: 6px 0 8px;
  line-height: 1.2;
}
.metriclist .sub {
  font-size: 10px;
}
.info-list {
  margin: 0 0 20px;
}
.info-list > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.info-list dt {
  color: var(--muted);
}
.info-list dd {
  margin: 0;
  text-align: right;
}
.historical {
  background: #fdfefb;
}
.historical > summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.historical summary small {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-left: 14px;
}
.historical .metriclist {
  padding: 0;
}
.historical .metriclist dd {
  font-size: 20px;
}
details summary {
  min-height: 44px;
  cursor: pointer;
}
details[open] > summary {
  border-bottom: 1px solid var(--line);
}
.sourcegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sourcecard {
  padding: 20px;
}
.sourcehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sourcehead h3 {
  margin: 0;
}
.coverage {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0 12px;
}
.coverage strong {
  font-size: 30px;
  font-weight: 550;
  letter-spacing: -0.04em;
}
.coverage small {
  font-size: 19px;
  font-weight: 400;
  color: var(--muted);
}
.coverage > span {
  font-size: 11px;
  color: var(--muted);
}
meter {
  width: 100%;
  height: 7px;
  display: block;
  border: 0;
  background: #eff1eb;
  border-radius: 4px;
}
meter::-webkit-meter-bar {
  background: #eff1eb;
  border: 0;
  height: 7px;
}
meter::-webkit-meter-optimum-value {
  background: #809c51;
}
.pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 26px;
}
.pipeline p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.pipeline h3 {
  margin: 13px 0 7px;
}
.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f2ec;
  border: 1px solid var(--line);
  font-size: 11px;
}
.step.done {
  background: var(--accent);
  border-color: #c8df97;
}
.technical > summary {
  padding: 18px 24px;
  font-size: 12px;
  color: var(--muted);
}
.technical > p {
  padding: 0 24px 18px;
  font-size: 12px;
  color: var(--muted);
}
.row {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.row:last-child {
  border: 0;
}
.row p {
  margin: 4px 0;
}
.actions {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}
.actions li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
}
.actions li:last-child {
  border: 0;
}
.actions li:before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  font-size: 11px;
  color: var(--muted);
}
.actions p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0;
}
.actions summary {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.login {
  padding: 8vh 0;
  max-width: 680px;
}
.login h1 {
  font-size: clamp(38px, 5vw, 64px);
}
.login p {
  max-width: 480px;
  color: var(--muted);
}
.error {
  color: #973d29;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 40px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
@media (min-width: 1550px) {
  main {
    padding-top: 48px;
  }
  .network-row {
    min-height: 98px;
  }
}
@media (max-width: 1200px) {
  .sidebar {
    width: 188px;
    padding-inline: 14px;
  }
  .workspace {
    margin-left: 188px;
  }
  main {
    padding: 30px 26px 50px;
  }
  .topbar {
    padding-inline: 26px;
  }
  .network-head,
  .network-row {
    grid-template-columns:
      minmax(185px, 1.5fr) minmax(125px, 1fr) minmax(125px, 1fr)
      28px;
    gap: 14px;
    padding-inline: 20px;
  }
  .network-value small {
    font-size: 9px;
  }
  .showgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .columns {
    grid-template-columns: 1fr;
  }
  .sourcegrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pagehead {
    align-items: flex-start;
  }
  .pagehead > .button {
    margin-top: 18px;
  }
  .summary-item {
    padding: 20px;
  }
  .summary-foot {
    font-size: 10px;
  }
}
@media (max-width: 960px) {
  .sidebar {
    position: static;
    width: 100%;
    padding: 14px 24px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand {
    padding: 10px 0;
  }
  .brand img {
    width: 70px;
  }
  .product {
    padding: 0;
    font-size: 15px;
    white-space: nowrap;
  }
  .navlabel,
  .sidebar-bottom {
    display: none;
  }
  nav {
    margin-left: auto;
    flex-direction: row;
    gap: 4px;
  }
  nav a {
    padding: 10px;
    font-size: 12px;
    min-height: 44px;
    gap: 7px;
  }
  nav a svg {
    width: 15px;
  }
  .workspace {
    margin-left: 0;
  }
  .topbar {
    height: 46px;
  }
  .network-value small {
    font-size: 10px;
  }
  .pagehead > .button {
    margin-top: 10px;
  }
  .showgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .sidebar {
    padding: 20px 18px 10px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand {
    padding: 8px 0;
  }
  .brand img {
    width: 70px;
  }
  .product {
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }
  nav {
    margin: 8px 0 0;
    width: 100%;
    justify-content: space-between;
  }
  nav a {
    padding: 9px 10px;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
    min-width: 65px;
  }
  nav a svg {
    width: 17px;
    height: 17px;
  }
  .topbar {
    display: none;
  }
  #preview {
    padding: 8px 18px;
    font-size: 10px;
  }
  main {
    padding: 28px 18px 44px;
  }
  .pagehead {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .pagehead > .button {
    margin: 0;
  }
  h1 {
    font-size: 32px;
  }
  .headnote {
    font-size: 13px;
    line-height: 1.6;
  }
  .overview-summary {
    grid-template-columns: 1fr;
  }
  .summary-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 15px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .summary-item > strong {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
    font-size: 35px;
    margin: 0;
  }
  .summary-item small {
    font-size: 20px;
  }
  .summary-foot {
    grid-column: 1;
    font-size: 10px;
  }
  .summary-foot b {
    display: none;
  }
  .notice {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px;
    gap: 10px;
  }
  .notice p {
    min-width: 220px;
  }
  .notice > a {
    margin-left: 30px;
    min-height: 32px;
  }
  .notice-symbol {
    margin-top: 3px;
  }
  .panelhead {
    padding: 18px;
  }
  .panelhead h2 {
    font-size: 18px;
  }
  .panelhead > .button {
    font-size: 11px;
    padding: 8px;
    white-space: normal;
  }
  .network-head {
    display: none;
  }
  .network-row {
    grid-template-columns: 1fr 1fr 32px;
    padding: 18px;
    gap: 13px;
  }
  .show-identity {
    grid-column: 1/3;
  }
  .network-row > .arrowlink {
    grid-column: 3;
    grid-row: 1;
  }
  .network-value {
    grid-row: 2;
  }
  .network-value strong {
    font-size: 18px;
  }
  .network-value small {
    font-size: 9px;
  }
  .mobile-label {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 3px;
  }
  .table-note {
    padding: 16px 18px;
    line-height: 1.6;
  }
  .show-identity strong {
    font-size: 14px;
  }
  .avatar {
    width: 40px;
    height: 44px;
  }
  .sectiongap {
    margin-top: 24px;
  }
  .columns {
    gap: 20px;
  }
  .agenda-row {
    padding: 20px 16px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .dateblock {
    width: 40px;
  }
  .agenda-info {
    flex-basis: calc(100% - 54px);
  }
  .agenda-status {
    margin-left: 54px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }
  .agenda-info p {
    font-size: 11px;
  }
  .toolbar {
    padding: 16px;
    gap: 12px;
  }
  .toolbar label {
    flex: 1;
    min-width: 0;
  }
  .toolbar .searchlabel {
    flex-basis: 100%;
  }
  .toolbar select {
    min-width: 0;
    width: 100%;
  }
  .toolbar .quiet {
    width: 100%;
    min-height: 36px;
  }
  .showgrid {
    grid-template-columns: 1fr;
  }
  .showcard {
    padding: 22px;
  }
  .showcard h2 {
    min-height: 0;
    font-size: 24px;
  }
  .showcard .room {
    min-height: 0;
  }
  .cardtop {
    margin-bottom: 20px;
  }
  .sourcegrid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sourcecard {
    padding: 16px;
  }
  .sourcehead {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .coverage {
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
  }
  .coverage strong {
    font-size: 28px;
  }
  .pipeline {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 24px;
  }
  .sectionheading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .show-hero {
    gap: 16px;
    align-items: flex-start;
  }
  .show-hero > .avatar {
    width: 55px;
    height: 64px;
    font-size: 16px;
  }
  .show-hero h1 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }
  .show-hero > .avatar + div {
    min-width: 0;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .metriclist {
    padding: 20px;
    gap: 20px;
  }
  .metriclist dd {
    font-size: 26px;
  }
  .showlinks .button {
    font-size: 12px;
    padding: 9px 12px;
  }
  .historical > summary {
    padding: 18px;
    align-items: center;
  }
  .historical summary small {
    display: block;
    margin: 4px 0 0;
  }
  .historical summary > .sub {
    white-space: nowrap;
  }
  .panelbody {
    padding: 20px;
  }
  .historical .metriclist {
    grid-template-columns: 1fr 1fr;
  }
  .historical .metriclist dd {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .row {
    padding: 18px;
    align-items: flex-start;
  }
  .row > div {
    min-width: 0;
  }
  .row .sub {
    font-size: 11px;
  }
  .technical > summary {
    padding: 18px;
  }
  .technical .panelbody {
    font-size: 13px;
  }
  footer {
    padding: 20px 18px;
    font-size: 9px;
    align-items: flex-start;
  }
  .info-list > div {
    gap: 16px;
  }
  .textlink {
    font-size: 11px;
  }
  .panelhead .eyebrow {
    font-size: 9px;
  }
  .notice .button {
    margin-left: 30px;
  }
  .login {
    padding-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .showcard:hover {
    transform: none;
  }
}

/* Keep supporting data legible at every size. */
.network-value small,
.show-identity small {
  font-size: 11px;
}
.network-head {
  font-size: 11px;
}
.network-value strong {
  font-size: 19px;
}
.disclosure-label::before {
  content: "Expand ↓";
}
.historical[open] .disclosure-label::before {
  content: "Collapse ↑";
}

.pill:not(.warn):not(.good) {
  background: #f3f4f0;
  color: #62685d;
  border-color: #e4e7df;
}

/* Evidence-led content review */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-top: 3px solid var(--accent);
}
.insight-card h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 4px 0 14px;
}
.insight-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.insight-card .textlink {
  margin-top: auto;
  padding-top: 18px;
}
.insight-gaps {
  margin-top: 16px;
}
.insight-gaps > summary,
.insight-method > summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
}
.insight-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 20px;
}
.insight-brief h3 {
  font-size: 16px;
  margin: 24px 0 8px;
}
.insight-brief p,
.evidence-card p,
.insight-method p {
  line-height: 1.7;
}
.insight-brief p:not(.eyebrow) {
  color: var(--muted);
}
.insight-brief .insight-observation {
  font-size: 20px;
  color: var(--ink);
  line-height: 1.5;
}
.evidence-card {
  background: #f0f4e8;
}
.evidence-card h3 {
  font-size: 38px;
  margin: 18px 0 14px;
  letter-spacing: -1px;
}
.evidence-card h3 span {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 500;
}
.evidence-card blockquote {
  margin: 22px 0;
  padding-left: 16px;
  border-left: 2px solid #bacb9b;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.evidence-card .button {
  margin-bottom: 12px;
}
.insight-method {
  margin-top: 16px;
}
.exclusion-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.sample-group {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 20px;
}
.sample-scroll {
  overflow-x: auto;
}
.sample-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
.sample-table th {
  padding: 12px 10px;
  color: var(--muted);
  font-weight: 500;
}
.sample-table td {
  border-top: 1px solid var(--line);
  padding: 14px 10px;
  vertical-align: top;
}
.sample-table th:first-child,
.sample-table td:first-child {
  padding-left: 0;
  width: 52%;
  min-width: 180px;
}
.sample-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}
.sample-table small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}
.sample-table a {
  overflow-wrap: anywhere;
}
.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;
}
@media (max-width: 1100px) {
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .insight-card h3 {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .insight-detail {
    grid-template-columns: minmax(0, 1fr);
  }
  .insight-card {
    padding: 22px;
  }
  .insight-gaps > summary,
  .insight-method > summary {
    padding: 20px;
  }
  .insight-brief .insight-observation {
    font-size: 18px;
  }
}
.owner-review {
  padding-left: 20px;
  line-height: 1.7;
}
.owner-review li {
  padding: 5px 0;
  overflow-wrap: anywhere;
}

/* Account identities remain visible without widening a metric column. */
.network-value, .card-metrics > div { min-width: 0; }
.network-value small, .card-metrics small { overflow-wrap: anywhere; }
.card-metrics small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.5; }

/* Producer decisions lead; supporting evidence stays available on demand. */
.brief-status { display:flex; justify-content:space-between; gap:20px; padding:14px 18px; border-left:3px solid var(--warning); background:#f2eee5; font-size:14px; }
.brief-status a { flex-shrink:0; }
.producer-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.producer-card { padding:28px; display:flex; flex-direction:column; }
.producer-card h2,.producer-card h3 { font-size:27px; line-height:1.2; letter-spacing:-.7px; margin:6px 0 16px; max-width:24ch; }
.producer-card > p:not(.eyebrow) { color:var(--muted); margin:0 0 18px; max-width:62ch; }
.next-decision { border-top:1px solid var(--line); padding:18px 0; margin-top:auto; }
.next-decision > span { font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:650; color:var(--green); }
.next-decision p { margin:7px 0 0; max-width:68ch; }
.producer-card .textlink { font-size:14px; }
.brief-evidence { border-top:1px solid var(--line); padding-top:16px; color:var(--muted); }
.brief-evidence summary { color:var(--ink); cursor:pointer; font-weight:600; }
.brief-evidence p { max-width:78ch; }
.ranking-select { display:flex; flex-direction:column; gap:4px; color:var(--muted); font-size:12px; min-width:0; }
.ranking-select select { min-height:44px; padding:8px 12px; border:1px solid var(--line); border-radius:6px; background:white; max-width:100%; color:var(--ink); }
.ranking-scope { padding:0 24px; color:var(--muted); font-size:13px; }
.ranking-list { list-style:none; counter-reset:rank; margin:0; padding:0 24px; }
.ranking-list li { display:grid; grid-template-columns:24px minmax(0,1fr) auto; align-items:center; gap:16px; padding:17px 0; border-bottom:1px solid var(--line); counter-increment:rank; }
.ranking-list li:before { content:counter(rank,decimal-leading-zero); font-size:12px; color:var(--muted); }
.ranking-list a { font-weight:600; text-decoration:none; }
.ranking-list strong { font-size:21px; font-variant-numeric:tabular-nums; }
.ranking-footer { padding-top:12px; }
.ranking-footer details { margin-top:12px; font-size:13px; }
.ranking-footer summary { cursor:pointer; }
.brief-footer { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-top:24px; }
.show-takeaway { font-size:19px; line-height:1.4; max-width:30ch; margin:14px 0 24px; }
.supporting > summary { padding:18px 24px; cursor:pointer; font-weight:600; }
.showlinks { margin:20px 0; }
.showlinks .linkrow { margin:0; }
@media(max-width:800px) {
 .producer-grid { grid-template-columns:minmax(0,1fr); }
 .brief-status,.brief-footer { flex-direction:column; gap:8px; align-items:flex-start; }
 .ranking-select { width:100%; }
 .producer-card { padding:22px; }
 .producer-card h2,.producer-card h3 { font-size:25px; }
 .ranking-list { padding:0 18px; }
 .ranking-list li { gap:10px; grid-template-columns:20px minmax(0,1fr) auto; }
 .ranking-list strong { font-size:18px; }
 .ranking-list a { overflow-wrap:anywhere; }
}
