:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-soft: #f9faf8;
  --ink: #17211e;
  --muted: #6f7c77;
  --faint: #98a39f;
  --line: #dfe4e1;
  --line-strong: #cfd7d3;
  --green: #23865f;
  --green-soft: #e8f5ef;
  --blue: #477e9d;
  --blue-soft: #ebf3f8;
  --amber: #b4761e;
  --amber-soft: #fbf1dd;
  --red: #b54c45;
  --red-soft: #f9e9e7;
  --shadow: 0 12px 32px rgba(31, 45, 40, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 14px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(30, 55, 47, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 55, 47, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 max(24px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid rgba(207, 215, 211, 0.88);
  background: rgba(250, 251, 248, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand strong,
.brand small {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.brand strong {
  font-size: 11px;
}

.brand small {
  color: var(--muted);
  font-size: 8px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.poll-label {
  color: var(--muted);
  font: 9px "DM Mono", monospace;
  letter-spacing: 0.04em;
}

.poll-label i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.poll-label b {
  color: var(--ink);
  font-weight: 500;
}

.icon-button,
.person-button {
  height: 36px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  cursor: pointer;
}

.icon-button {
  width: 36px;
  font-size: 18px;
}

.icon-button:hover,
.person-button:hover {
  border-color: #abb9b3;
}

.icon-button.loading {
  animation: spin 0.8s linear infinite;
}

.person-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px 0 5px;
  font-size: 10px;
  font-weight: 600;
}

.person-button > span:first-child {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #e5ebe8;
  color: #53615c;
  font: 500 8px "DM Mono", monospace;
}

main {
  max-width: 1380px;
  margin: auto;
  padding: 60px 28px 84px;
}

.intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 8px 0 46px;
}

.eyebrow {
  color: var(--green);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.18em;
}

h1 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.intro p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.monitor-state {
  min-width: 285px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.monitor-state-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.monitor-state strong {
  font-size: 11px;
}

.monitor-state small {
  display: block;
  margin: 7px 0 0 17px;
  color: var(--muted);
  font: 8.5px "DM Mono", monospace;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.status-dot.muted {
  background: var(--faint);
  box-shadow: 0 0 0 4px #edf0ee;
}

.status-dot.local {
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.status-dot.bad {
  background: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-soft);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.summary-card {
  min-height: 138px;
  padding: 23px;
  border-right: 1px solid var(--line);
}

.summary-card:last-child {
  border-right: 0;
}

.summary-card > span,
.provider-top span {
  display: block;
  color: var(--faint);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.12em;
}

.summary-card > strong {
  display: block;
  margin-top: 20px;
  font: 500 28px "DM Mono", monospace;
  letter-spacing: -0.05em;
}

.summary-card > small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}

.source-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #cbdce5;
  background: var(--blue-soft);
}

.source-notice[hidden] {
  display: none;
}

.notice-icon {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #d8e9f2;
  color: var(--blue);
  font: 500 10px "DM Mono", monospace;
}

.source-notice strong {
  display: block;
  color: #385e73;
  font-size: 10px;
}

.source-notice p {
  margin: 3px 0 0;
  color: #577487;
  font-size: 9px;
  line-height: 1.55;
}

.deployments-section,
.providers-section {
  margin-top: 48px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.section-title > div:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}

.section-number {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--faint);
  font: 500 8px "DM Mono", monospace;
}

.section-title h2 {
  margin: 0;
  font-size: 13px;
}

.section-title p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.filters {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.filters button {
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 500 8.5px "DM Mono", monospace;
  cursor: pointer;
}

.filters button.active {
  background: var(--ink);
  color: white;
}

.deployment-table {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.table-head,
.deployment-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr) minmax(260px, 1.45fr) minmax(180px, 1fr) minmax(150px, 0.85fr);
}

.table-head {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: #f3f5f2;
  color: var(--faint);
  font: 500 7.5px "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deployment-row {
  min-height: 154px;
  border-bottom: 1px solid var(--line);
}

.deployment-row:last-child {
  border-bottom: 0;
}

.deployment-row:hover {
  background: #fbfcfa;
}

.deployment-row > div {
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid #edf0ee;
}

.deployment-row > div:last-child {
  border-right: 0;
}

.deployment-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.deployment-title {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.deployment-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--faint);
}

.deployment-dot.healthy {
  background: var(--green);
}

.deployment-dot.working {
  background: var(--blue);
}

.deployment-dot.attention {
  background: var(--amber);
}

.deployment-title strong {
  display: block;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.deployment-title small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font: 8px "DM Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.state-label {
  padding: 4px 7px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-soft);
  font: 500 7.5px "DM Mono", monospace;
  text-transform: uppercase;
}

.state-label.healthy {
  border-color: #bedccc;
  color: var(--green);
  background: var(--green-soft);
}

.state-label.working {
  border-color: #c6d9e4;
  color: var(--blue);
  background: var(--blue-soft);
}

.state-label.attention {
  border-color: #ead4aa;
  color: var(--amber);
  background: var(--amber-soft);
}

.infrastructure-cell {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
}

.component-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 25px;
  padding: 0 8px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  font: 500 7.5px "DM Mono", monospace;
}

.component-chip i,
.provider-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.component-chip.operational,
.provider-status.operational {
  border-color: #bedccc;
  background: var(--green-soft);
  color: var(--green);
}

.component-chip.degraded,
.provider-status.degraded {
  border-color: #ead4aa;
  background: var(--amber-soft);
  color: var(--amber);
}

.component-chip.down,
.provider-status.down {
  border-color: #e7c5c2;
  background: var(--red-soft);
  color: var(--red);
}

.source-cell {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.repo-line,
.commit-line {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
}

.repo-line a,
.repo-line > strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.branch-chip {
  padding: 2px 5px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #f4f6f3;
  font: 7px "DM Mono", monospace;
}

.commit-line {
  color: #52605b;
  font-size: 9px;
}

.commit-line > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commit-link {
  flex: 0 0 auto;
  color: var(--blue);
  font: 500 8px "DM Mono", monospace;
  text-decoration: none;
}

.source-cell > small {
  color: var(--muted);
  font: 8px "DM Mono", monospace;
}

.version-line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.version-line span {
  padding: 3px 5px;
  border: 1px solid #e5e9e7;
  color: var(--faint);
  background: #fafbfa;
  font: 7px "DM Mono", monospace;
}

.ownership-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.person-chip {
  display: flex;
  align-items: center;
  gap: 7px;
}

.person-chip > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font: 500 7px "DM Mono", monospace;
}

.person-chip strong {
  display: block;
  max-width: 120px;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person-chip small {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font: 7px "DM Mono", monospace;
}

.empty-label,
.device-line {
  color: var(--muted);
  font-size: 8.5px;
}

.device-line b {
  color: var(--faint);
  font-weight: 500;
}

.work-button {
  margin-top: auto;
  padding: 6px 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: #53615c;
  font: 500 7.5px "DM Mono", monospace;
  cursor: pointer;
}

.work-button:hover {
  border-color: #9eada6;
  color: var(--ink);
}

.work-button.done {
  border-color: #c6d9e4;
  background: var(--blue-soft);
  color: var(--blue);
}

.clickhouse-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.provider-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  font: 500 7px "DM Mono", monospace;
  text-transform: uppercase;
}

.clickhouse-cell small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.provider-card,
.skeleton {
  min-height: 168px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.provider-card {
  padding: 19px;
}

.provider-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.provider-top strong {
  display: block;
  margin-top: 5px;
  font-size: 11px;
}

.provider-metric {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 30px;
}

.provider-metric strong {
  font: 500 24px "DM Mono", monospace;
  letter-spacing: -0.05em;
}

.provider-metric span {
  color: var(--muted);
  font: 8px "DM Mono", monospace;
}

.provider-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 8.5px;
}

.empty-state {
  padding: 54px 24px;
  color: var(--muted);
  text-align: center;
  font: 9px "DM Mono", monospace;
}

.skeleton {
  background: linear-gradient(90deg, #f8faf8, #eef2ef, #f8faf8);
  background-size: 200%;
  animation: shimmer 1.5s infinite;
}

footer {
  display: flex;
  justify-content: space-between;
  max-width: 1380px;
  margin: auto;
  padding: 18px 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font: 7.5px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

dialog {
  width: min(410px, calc(100% - 32px));
  padding: 26px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(19, 31, 27, 0.18);
}

dialog::backdrop {
  background: rgba(28, 39, 35, 0.34);
  backdrop-filter: blur(3px);
}

dialog h3 {
  margin: 13px 0 7px;
  font-size: 17px;
}

dialog p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.dialog-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--green);
  font: 600 10px "DM Mono", monospace;
}

label {
  display: block;
  margin-top: 13px;
  color: #53615c;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

label small {
  color: var(--faint);
}

input {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 7px;
  padding: 0 11px;
  outline: none;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 10px;
}

input:focus {
  border-color: #93a69d;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 23px;
}

.dialog-actions button {
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
}

.dialog-actions .secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--muted);
}

#toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  padding: 11px 14px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-size: 9px;
  opacity: 0;
  transform: translateY(80px);
  transition: 0.25s;
}

#toast.show {
  opacity: 1;
  transform: none;
}

@keyframes shimmer {
  to {
    background-position: -200%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .deployment-table {
    overflow-x: auto;
  }

  .table-head,
  .deployment-row {
    min-width: 1120px;
  }
}

@media (max-width: 800px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-card:nth-child(2) {
    border-right: 0;
  }

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

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

  .intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .monitor-state {
    width: 100%;
  }
}

@media (max-width: 560px) {
  main {
    padding: 42px 16px 64px;
  }

  .topbar {
    padding: 0 14px;
  }

  .poll-label,
  .person-button #personLabel {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

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

  .summary-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-card:last-child {
    border-bottom: 0;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* ===================================================================
   ENG-2137 — states for the stack-primary contract.
   The prototype's sheet knew only operational/degraded/down. The new
   model needs stopped, unknown and not_applicable to be visually
   distinct from each other and from failure: a parked dev stack, an
   unmeasured component, and an absent database are three different
   things and none of them is an alarm.
   =================================================================== */

.summary-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.deployment-table .table-head,
.deployment-row {
  grid-template-columns: 1.5fr 0.9fr 1.6fr 1.1fr 1.4fr;
}

/* Row status dots */
.deployment-dot.stopped { background: #9aa0a6; box-shadow: 0 0 0 3px rgba(154,160,166,.18); }
.deployment-dot.unknown { background: #c9a227; box-shadow: 0 0 0 3px rgba(201,162,39,.18); }

/* Row status labels */
.state-label.stopped { background: rgba(154,160,166,.14); color: #5f6368; }
.state-label.unknown { background: rgba(201,162,39,.14); color: #8a6d0b; }

/* Component chips */
.component-chip.healthy i { background: #1f9d55; }
.component-chip.attention i,
.component-chip.inaccessible i { background: #c5372c; }
.component-chip.stopped i { background: #9aa0a6; }
.component-chip.unknown i { background: #c9a227; }
/* Not-applicable is deliberately muted and dashed: it is information, not a
   status, and must never read as either healthy or broken. */
.component-chip.not_applicable {
  opacity: .5;
  border-style: dashed;
}
.component-chip.not_applicable i { background: transparent; border: 1px solid #9aa0a6; }

.cfn-status {
  display: block; margin-top: 6px;
  font-family: "DM Mono", monospace; font-size: 10px;
  letter-spacing: .04em; color: #8a8f98;
}

/* Deployed source */
.image-line {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px; font-size: 12px;
}
.role-chip {
  font-family: "DM Mono", monospace; font-size: 9px; text-transform: uppercase;
  letter-spacing: .06em; padding: 2px 6px; border-radius: 4px;
  background: rgba(0,0,0,.06); color: #5f6368;
}
.role-chip.core { background: rgba(63,81,181,.12); color: #3f51b5; }
.role-chip.application { background: rgba(31,157,85,.12); color: #1f9d55; }
.repo-name { font-weight: 600; }
.image-ref code, .core-line code, .drift-badge code {
  font-family: "DM Mono", monospace; font-size: 11px;
  background: rgba(0,0,0,.05); padding: 1px 5px; border-radius: 3px;
}
.core-line { margin-top: 6px; font-size: 12px; color: #5f6368; }

/* Drift is a first-class signal: the declared pin and the running image
   disagree on two stabilis stacks today. */
.drift-badge {
  margin-top: 6px; padding: 6px 8px; border-radius: 6px;
  background: rgba(197,55,44,.08); border: 1px solid rgba(197,55,44,.25);
  font-size: 11px; color: #a3291f; line-height: 1.5;
}

/* Services */
.services-cell { display: flex; flex-wrap: wrap; gap: 4px; align-content: flex-start; }
.service-pill {
  font-family: "DM Mono", monospace; font-size: 10px;
  padding: 3px 7px; border-radius: 4px;
  background: rgba(0,0,0,.05); color: #3c4043;
}
.service-pill.idle { opacity: .55; text-decoration: line-through; }

/* Mapping and freshness */
.mapping-cell { font-size: 12px; line-height: 1.6; }
.mapping-cell a { color: #1a73e8; text-decoration: none; }
.mapping-cell a:hover { text-decoration: underline; }
.gap-label { color: #8a6d0b; background: rgba(201,162,39,.12); padding: 2px 6px; border-radius: 4px; font-size: 11px; }
.timestamps {
  display: block; margin-top: 6px;
  font-family: "DM Mono", monospace; font-size: 10px; color: #8a8f98;
}

/* Stack names are identifiers, not prose. The inherited `capitalize` rule
   rendered `core-surface-dev` as `Core-Surface-Dev`, which is not the name of
   anything in AWS and cannot be copy-pasted into a CLI command. */
.deployment-title strong {
  text-transform: none;
  font-family: "DM Mono", monospace;
  font-size: 12.5px;
  letter-spacing: -0.01em;
}
.deployment-title small { text-transform: none; }

/* A failed CloudFormation deploy is not inferable from ECS or RDS state, so it
   gets its own badge rather than only tinting the row dot. royalty-pharma-staging
   sat in ROLLBACK_COMPLETE reading as merely "unknown". */
.cfn-failed {
  display: inline-block; margin-top: 6px; padding: 3px 7px; border-radius: 4px;
  background: rgba(197,55,44,.1); border: 1px solid rgba(197,55,44,.3);
  font-family: "DM Mono", monospace; font-size: 9.5px; letter-spacing: .04em;
  color: #a3291f;
}

/* Clicking a deployment name opens that stack's public front door. The URL comes
   from a strict output-key allowlist, so a stack that publishes no front door
   renders as plain text rather than a dead link. */
.stack-link {
  display: inline-flex; align-items: baseline; gap: 5px;
  text-decoration: none; color: inherit;
}
.stack-link strong { border-bottom: 1px solid rgba(26,115,232,.35); }
.stack-link:hover strong { border-bottom-color: #1a73e8; color: #1a73e8; }
.stack-link .ext { font-size: 9px; color: #9aa0a6; }
.stack-link:hover .ext { color: #1a73e8; }
