:root {
  --color-primary: #0F766E;
  --color-primary-hover: #0B5D56;
  --color-primary-light: #DDF4F0;
  --color-accent: #D97706;
  --color-accent-light: #FEF3C7;
  --color-danger: #B91C1C;
  --color-success: #15803D;
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-border: #DDE7E4;
  --color-bg: #F7FAF9;
  --color-surface: #FFFFFF;
  --color-surface-soft: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 24px 70px rgba(15, 61, 56, 0.10);
  --shadow-panel: 0 14px 36px rgba(15, 61, 56, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.72) 0%, rgba(247, 250, 249, 0.92) 38%, rgba(254, 243, 199, 0.34) 100%),
    var(--color-bg);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-container {
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0 8px;
}

.nav-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(15, 61, 56, 0.08);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.16);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name,
.brand-note {
  display: block;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 760;
}

.brand-note {
  margin-top: -1px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(247, 250, 249, 0.62);
}

.nav a,
.nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 640;
  white-space: nowrap;
  cursor: pointer;
}

.nav-icon {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav a:hover,
.nav a.is-active,
.nav-dropdown[open] summary,
.nav-dropdown.is-active summary,
.nav summary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-hover);
  box-shadow: 0 6px 18px rgba(15, 61, 56, 0.07);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

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

.nav-dropdown summary::after {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 61, 56, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.nav-dropdown[open] .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 36px;
  gap: 9px;
}

.nav-feedback {
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(221, 244, 240, 0.7);
  color: var(--color-primary-hover) !important;
}

.nav-feedback:hover,
.nav-feedback.is-active {
  background: var(--color-primary) !important;
  color: #FFFFFF !important;
}

.site-main {
  min-height: calc(100vh - 210px);
}

.site-footer {
  margin-top: 72px;
  padding: 36px 0 34px;
  color: var(--color-text-muted);
}

.footer-frame {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(300px, 1fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 26px 0 24px;
  border-top: 1px solid rgba(221, 231, 228, 0.86);
  border-bottom: 1px solid rgba(221, 231, 228, 0.74);
}

.footer-block {
  min-width: 0;
}

.footer-copyright {
  justify-self: center;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.footer-copyright-line {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 760;
}

.footer-copyright-team {
  margin-top: 5px;
  color: var(--color-primary-hover);
  font-size: 15px;
  font-weight: 760;
}

.footer-copyright address {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.footer-meta {
  margin-top: 10px;
  color: rgba(78, 94, 91, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.footer-heading {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 760;
}

.footer-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, max-content));
  align-items: start;
  gap: 8px;
}

.footer-link-list a,
.footer-link-pending {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 10px 0 8px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(55, 65, 81, 0.86);
  font-size: 12px;
  font-weight: 640;
}

.footer-link-list img,
.footer-link-fallback {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 4px;
}

.footer-link-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 118, 110, 0.12);
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 780;
}

.footer-link-list a:hover {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(221, 244, 240, 0.62);
  color: var(--color-primary-hover);
}

.footer-link-pending {
  color: rgba(78, 94, 91, 0.54);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 13px;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.56);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 720;
}

.footer-actions a:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 0 4px;
  color: rgba(78, 94, 91, 0.68);
  font-size: 12px;
}

.footer-access-widget {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  color: rgba(78, 94, 91, 0.72);
}

.access-globe {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(15, 118, 110, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 36%, rgba(217, 119, 6, 0.28), transparent 0 11%, transparent 12%),
    linear-gradient(90deg, transparent 46%, rgba(15, 118, 110, 0.28) 47%, rgba(15, 118, 110, 0.28) 53%, transparent 54%),
    linear-gradient(rgba(15, 118, 110, 0.22), rgba(15, 118, 110, 0.22)) center / 100% 1px no-repeat,
    rgba(221, 244, 240, 0.72);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.38);
}

.access-globe::before,
.access-globe::after {
  position: absolute;
  inset: 3px 6px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
  content: "";
}

.access-globe::after {
  inset: 6px 3px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-left: 0;
  border-right: 0;
}

.access-globe-dot {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.16);
}

.access-text {
  overflow: hidden;
  max-width: min(52vw, 420px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-main {
  margin-top: -86px;
}

.home-hero {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding: 156px 0 46px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.94) 0%, rgba(247, 250, 249, 0.84) 46%, rgba(247, 250, 249, 0.82) 100%),
    url("../img/index_bg.jpg") center center / cover no-repeat;
  box-shadow: inset 0 -1px 0 rgba(221, 231, 228, 0.7), 0 18px 54px rgba(15, 61, 56, 0.08);
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 112px;
  content: "";
  background: linear-gradient(to bottom, rgba(247, 250, 249, 0), rgba(247, 250, 249, 0.86));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.76);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 720;
}

.hero-copy h1 {
  max-width: 980px;
  margin: 0;
  font-size: 62px;
  line-height: 1.03;
  font-weight: 780;
  letter-spacing: 0;
  text-shadow: 0 1px 22px rgba(255, 255, 255, 0.74);
}

.hero-lead {
  max-width: 780px;
  margin: 22px auto 0;
  color: #374151;
  font-size: 18px;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.7);
}

.hero-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 690px);
  min-height: 64px;
  margin: 30px auto 0;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(15, 61, 56, 0.12);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.hero-search:focus-within {
  border-color: rgba(15, 118, 110, 0.58);
  box-shadow: 0 24px 64px rgba(15, 61, 56, 0.16), 0 0 0 4px rgba(221, 244, 240, 0.88);
}

.hero-search-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-text);
  font-size: 16px;
}

.hero-search input:focus {
  border: 0;
  box-shadow: none;
}

.hero-search button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 740;
}

.hero-search button:hover {
  background: var(--color-primary-hover);
}

.hero-search-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.hero-search-examples a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-primary-hover);
  font-weight: 680;
}

.hero-search-examples a:hover {
  border-color: rgba(15, 118, 110, 0.24);
  background: var(--color-primary-light);
}

.hero-tags {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(221, 231, 228, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #374151;
  font-size: 13px;
  font-weight: 660;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-visual,
.glass-panel,
.panel {
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.hero-visual {
  min-height: 500px;
  padding: 18px;
  overflow: hidden;
}

.hero-evidence-card {
  position: relative;
}

.hero-evidence-card::before {
  position: absolute;
  right: 28px;
  top: 70px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(221, 244, 240, 0.92), rgba(221, 244, 240, 0));
  pointer-events: none;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 2px 16px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 680;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 12px;
}

.signal-map {
  position: relative;
  height: 270px;
  border: 1px solid rgba(221, 231, 228, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 118, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.52);
  background-size: 30px 30px;
  overflow: hidden;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.visual-metrics div {
  min-width: 0;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.visual-metrics strong,
.visual-metrics span {
  display: block;
}

.visual-metrics strong {
  color: var(--color-primary-hover);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 780;
}

.visual-metrics span {
  margin-top: 5px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.signal-map::before {
  position: absolute;
  inset: 34px 24px;
  content: "";
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
}

.signal-point {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 3px solid #FFFFFF;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.24);
}

.point-a {
  left: 21%;
  top: 54%;
}

.point-b {
  left: 59%;
  top: 35%;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
}

.point-c {
  left: 76%;
  top: 66%;
}

.signal-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.18), rgba(217, 119, 6, 0.74));
}

.line-a {
  left: 22%;
  top: 56%;
  width: 40%;
  transform: rotate(-21deg);
}

.line-b {
  left: 60%;
  top: 39%;
  width: 22%;
  transform: rotate(36deg);
}

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

.visual-row {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(221, 231, 228, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.row-key {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.row-value {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-stats {
  margin-top: 26px;
}

.home-stats-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.section-kicker {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.home-stats-heading h2 {
  margin: 7px 0 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-stat-card {
  position: relative;
  min-width: 0;
  min-height: 126px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.home-stat-link {
  color: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-stat-link:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 44px rgba(15, 61, 56, 0.12);
  transform: translateY(-2px);
}

.home-stat-link:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.24);
  outline-offset: 3px;
}

.home-stat-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), rgba(217, 119, 6, 0.82));
}

.home-stat-label,
.home-stat-value,
.home-stat-secondary,
.home-stat-date,
.home-stat-delta {
  display: block;
}

.home-stat-label {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.home-stat-link .home-stat-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.home-stat-link .home-stat-label .icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.home-stat-value {
  margin-top: 12px;
  color: var(--color-text);
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.home-stat-link .home-stat-value {
  text-align: center;
}

.home-stat-secondary {
  width: fit-content;
  max-width: 100%;
  margin: 9px auto 0;
  padding: 4px 9px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.48);
  color: rgba(11, 93, 86, 0.82);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.home-stat-secondary[hidden] {
  display: none;
}

.home-stat-date {
  margin-top: 12px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 500;
}

.home-stat-delta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 640;
}

.home-stat-link .home-stat-delta {
  justify-content: center;
}

.home-stat-trend-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.home-stat-delta.is-positive {
  color: var(--color-primary-hover);
}

.home-stat-card-date {
  background:
    linear-gradient(145deg, rgba(221, 244, 240, 0.68), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.7);
}

.home-stat-card.is-error::before {
  background: var(--color-danger);
}

.home-stat-card.is-error .home-stat-delta {
  color: var(--color-danger);
}

.home-insights {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.home-insight-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-insight-panel {
  min-width: 0;
  min-height: 310px;
  padding: 18px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.home-insight-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-insight-heading h2 {
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.home-insight-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.64);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.home-insight-heading a:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.home-loading,
.home-empty {
  min-height: 52px;
  padding: 14px;
  border: 1px solid rgba(221, 231, 228, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-text-muted);
  font-size: 13px;
}

.network-preview,
.geo-preview,
.featured-list {
  display: grid;
  gap: 10px;
}

.network-chart-wrap {
  display: grid;
  gap: 10px;
}

.geo-chart-wrap {
  display: grid;
  gap: 6px;
}

.network-wheel-chart {
  width: 100%;
  min-height: 362px;
}

.geo-map-chart {
  width: 100%;
  min-height: 346px;
}

.network-caption {
  margin-top: 8px;
  color: rgba(78, 94, 91, 0.68);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.geo-caption {
  margin-top: 2px;
  color: rgba(78, 94, 91, 0.68);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.network-edge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(221, 231, 228, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.network-node {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.network-node.host {
  text-align: right;
}

.network-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 740;
}

.geo-country-row,
.featured-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(221, 231, 228, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.geo-country-main,
.featured-main {
  min-width: 0;
}

.geo-country-title,
.featured-title {
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 740;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.geo-country-meta,
.featured-meta {
  margin-top: 3px;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.geo-country-count,
.featured-count {
  color: var(--color-primary-hover);
  font-size: 18px;
  line-height: 1;
  font-weight: 560;
}

.geo-bar {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(221, 231, 228, 0.82);
}

.geo-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), rgba(217, 119, 6, 0.82));
}

.home-outbreak-section {
  margin-top: 16px;
}

.home-outbreak-panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 250, 0.76)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.home-outbreak-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.home-outbreak-title-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #005EB8;
  stroke-width: 2;
}

.who-signal-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.who-signal-timeline-panel {
  align-self: start;
  min-width: 0;
  padding: 14px 12px 12px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.who-signal-timeline-heading {
  margin: 0 0 8px;
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.who-signal-timeline-chart {
  height: 100%;
  min-height: 0;
}

.who-timeline-date,
.who-timeline-title {
  display: block;
  width: 230px;
  white-space: normal;
}

.who-timeline-date {
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.who-timeline-title {
  margin-top: 2px;
  color: var(--color-text);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.26;
}

.who-timeline-fallback {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 8px 2px 4px;
  list-style: none;
}

.who-timeline-fallback li {
  position: relative;
  min-height: var(--who-timeline-item-min-height, 92px);
  padding: 8px 8px 8px 20px;
  color: var(--color-primary-hover);
  font-size: 12px;
}

.who-timeline-fallback li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(221, 244, 240, 0.95);
  content: "";
}

.who-timeline-fallback li:not(:last-child)::after {
  position: absolute;
  top: 28px;
  bottom: -12px;
  left: 5px;
  width: 2px;
  background: rgba(15, 118, 110, 0.16);
  content: "";
}

.who-timeline-fallback span,
.who-timeline-fallback strong {
  display: block;
}

.who-timeline-fallback span {
  font-size: 11px;
  font-weight: 820;
}

.who-timeline-fallback strong {
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.32;
}

.who-signal-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(15, 61, 56, 0.07);
}

.who-signal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.who-signal-table th,
.who-signal-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(221, 231, 228, 0.70);
  vertical-align: middle;
}

.who-signal-table th {
  background: rgba(247, 252, 250, 0.94);
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.who-signal-table th:nth-child(1) {
  width: 126px;
}

.who-signal-table th:nth-child(2) {
  width: auto;
}

.who-signal-table th:nth-child(3) {
  width: 178px;
}

.who-signal-table tbody tr:last-child td,
.who-signal-detail-row:last-child td {
  border-bottom: 0;
}

.who-signal-row {
  transition: background 160ms ease;
}

.who-signal-row.is-expanded {
  background: rgba(221, 244, 240, 0.24);
}

.who-signal-date-cell {
  width: 126px;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.who-signal-title-cell {
  width: auto;
}

.who-signal-cell-toggle,
.who-signal-title-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.who-signal-cell-toggle {
  color: inherit;
}

.who-signal-title-button {
  display: block;
  width: 100%;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.36;
  text-align: left;
}

.who-signal-title-button:hover {
  color: var(--color-text);
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.who-signal-title-button:focus,
.who-signal-title-button:active,
.who-signal-title-button:visited {
  color: var(--color-text);
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.who-signal-cell-toggle:hover,
.who-signal-cell-toggle:focus,
.who-signal-cell-toggle:active {
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.who-signal-title-button:focus-visible,
.who-signal-cell-toggle:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.30);
  outline-offset: 3px;
}

.who-signal-date-button {
  display: grid;
  gap: 6px;
  justify-items: start;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
}

.who-signal-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
  padding: 1px 0 1px 6px;
  border-left: 2px solid rgba(185, 28, 28, 0.72);
  border-radius: 0;
  background: transparent;
  color: #A31616;
  font-size: 10px;
  font-weight: 880;
  letter-spacing: 0.06em;
  line-height: 1;
}

.who-signal-new-badge .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.who-table-entity {
  display: grid;
  gap: 3px;
  min-width: 140px;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.24;
}

.who-table-entity.host {
  color: #9A5A05;
}

.who-table-entity small {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 650;
}

.who-table-entity.is-unlinked {
  color: var(--color-text-muted);
}

.who-table-empty {
  color: rgba(78, 94, 91, 0.66);
  font-size: 12px;
  font-weight: 650;
}

.who-signal-detail-row[hidden] {
  display: none;
}

.who-signal-detail-row td {
  padding: 0 14px 16px;
  background: rgba(247, 252, 250, 0.84);
}

.who-signal-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  padding: 15px;
  border: 1px solid rgba(221, 231, 228, 0.70);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 250, 0.78)),
    rgba(255, 255, 255, 0.74);
}

.who-signal-detail-summary {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.who-signal-detail strong {
  display: block;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 820;
}

.who-signal-detail-subhead {
  margin-top: 14px;
}

.who-signal-detail p {
  margin: 6px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.52;
}

.who-report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 13px;
  border: 1px solid rgba(0, 94, 184, 0.18);
  border-radius: 7px;
  background: #0093D5;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 94, 184, 0.18);
}

.who-report-button:hover,
.who-report-button:focus-visible {
  background: #005EB8;
  color: #FFFFFF;
  box-shadow: 0 12px 26px rgba(0, 94, 184, 0.22);
}

.who-signal-detail-map-panel {
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr);
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.who-signal-map-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.who-signal-map-heading span {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 720;
  white-space: nowrap;
}

.who-signal-country-map {
  min-height: 260px;
  overflow: hidden;
}

.who-signal-country-map .home-loading {
  min-height: 220px;
}

.who-signal-map-fallback {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 18px;
  border: 1px dashed rgba(0, 94, 184, 0.22);
  border-radius: 8px;
  background: rgba(247, 252, 250, 0.72);
}

.who-signal-map-fallback p {
  margin: 6px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.48;
}

.who-signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.who-signal-host-detail {
  margin-top: 8px;
}

.who-signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-height: 28px;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.62);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.who-signal-chip.host {
  border-color: rgba(217, 119, 6, 0.16);
  background: rgba(255, 247, 237, 0.68);
  color: #9A5A05;
}

.who-signal-chip.is-extracted {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-text-muted);
}

.who-signal-chip.is-muted {
  background: rgba(255, 255, 255, 0.70);
}

.who-signal-chip span {
  color: inherit;
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
}

.who-signal-disclaimer {
  margin: 12px 0 0;
  color: rgba(78, 94, 91, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.notice-board {
  display: grid;
  gap: 14px;
}

.notice-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(221, 231, 228, 0.78);
}

.notice-date {
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.notice-title {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 760;
}

.notice-item p {
  margin: 4px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.related-literature {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.related-literature-heading {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 760;
}

.literature-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  border-bottom: 1px solid rgba(221, 231, 228, 0.68);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 650;
}

.literature-link-row span:last-child {
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.literature-link-row.is-muted {
  color: var(--color-text-muted);
}

.literature-link-row.is-muted span:last-child {
  color: var(--color-text-muted);
}

.app-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.68);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.app-preview-panel {
  overflow: hidden;
}

.app-preview-figure {
  margin: 0;
}

.device-preview-image {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 61, 56, 0.10);
}

.app-preview-figure figcaption {
  margin-top: 8px;
  color: rgba(78, 94, 91, 0.72);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.search-hero {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 28px 0 14px;
}

.search-hero-copy {
  max-width: 760px;
}

.search-hero-copy h1 {
  margin: 8px 0 0;
  color: var(--color-text);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}

.search-hero-copy p:last-child {
  margin: 12px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.55;
}

.global-search-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-top: 24px;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(15, 61, 56, 0.1);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.global-search-form:focus-within {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 20px 50px rgba(15, 61, 56, 0.14), 0 0 0 4px rgba(221, 244, 240, 0.9);
}

.global-search-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.global-search-form input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-text);
  font-size: 16px;
}

.global-search-form input:focus {
  border: 0;
  box-shadow: none;
}

.global-search-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 740;
}

.global-search-form button:hover {
  background: var(--color-primary-hover);
}

.global-search-form button.is-prompted {
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(254, 243, 199, 0.95), 0 14px 30px rgba(217, 119, 6, 0.24);
  animation: searchPromptPulse 1500ms ease-in-out 2;
}

.search-scope-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.search-scope-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  width: auto;
  min-height: 36px;
  padding: 0 8px 0 13px;
  border: 1px solid rgba(221, 231, 228, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(55, 65, 81, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.search-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(221, 231, 228, 0.72);
  color: rgba(55, 65, 81, 0.82);
  font-size: 11px;
  font-weight: 760;
}

.search-scope-tabs button.is-active,
.search-scope-tabs button:hover {
  border-color: rgba(15, 118, 110, 0.22);
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.search-scope-tabs button.is-active .search-tab-count,
.search-scope-tabs button:hover .search-tab-count {
  background: rgba(15, 118, 110, 0.12);
  color: var(--color-primary-hover);
}

.search-scope-tabs button.is-empty:not(.is-active) {
  color: rgba(78, 94, 91, 0.52);
}

.search-results-shell {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.search-summary {
  min-height: 40px;
  padding: 11px 14px;
  border: 1px solid rgba(221, 231, 228, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--color-text-muted);
  font-size: 13px;
}

.search-summary strong {
  color: var(--color-text);
  font-weight: 760;
}

.search-result-grid {
  display: grid;
  gap: 18px;
}

.search-section {
  min-width: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(221, 231, 228, 0.78);
}

.search-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.search-section-heading h2 {
  margin: 5px 0 0;
  color: var(--color-text);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.search-section-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.search-section-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.search-section-meta span {
  color: var(--color-primary-hover);
}

.search-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.56);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 740;
}

.search-section-link .icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.search-section-link:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.search-list {
  display: grid;
  gap: 8px;
}

.search-empty-state {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-panel);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.82fr);
  gap: 18px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(15, 61, 56, 0.05);
}

.search-row-evidence {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.96fr);
}

.search-row-link {
  color: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.search-row-link:hover {
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 16px 38px rgba(15, 61, 56, 0.09);
  transform: translateY(-2px);
}

.search-row-main {
  min-width: 0;
}

.search-row-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 690;
}

.search-row-id {
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 720;
}

.search-evidence-badge,
.search-type-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--badge-border, rgba(15, 118, 110, 0.16));
  border-radius: 8px;
  background: var(--badge-bg, var(--color-primary-light));
  color: var(--badge-color, var(--color-primary-hover));
  font-size: 11px;
  font-weight: 760;
}

.search-type-pill {
  --badge-bg: var(--color-primary-light);
  --badge-color: var(--color-primary-hover);
  --badge-border: rgba(15, 118, 110, 0.16);
}

.search-row h3,
.search-empty-state h2 {
  margin: 11px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.search-row p,
.search-empty-state p,
.search-section-empty {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.48;
}

.search-row-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.search-row-meta-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  min-width: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.38;
}

.search-row-meta-item span {
  padding-top: 4px;
  color: rgba(78, 94, 91, 0.74);
  font-size: 12px;
  font-weight: 720;
}

.search-row-meta-item strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(17, 24, 39, 0.86);
  font-size: 14px;
  font-weight: 700;
  white-space: normal;
}

.search-row-meta-wide > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.search-entity-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  min-height: 31px;
  padding: 6px 10px 6px 24px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.7);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.search-entity-tag::before {
  position: absolute;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.search-entity-tag.is-virus {
  border-color: rgba(14, 116, 144, 0.2);
  background: linear-gradient(135deg, rgba(223, 246, 251, 0.98), rgba(237, 253, 252, 0.92));
  color: #0E7490;
}

.search-entity-tag.is-host {
  border-color: rgba(15, 118, 110, 0.2);
  background: linear-gradient(135deg, rgba(221, 244, 240, 0.98), rgba(240, 253, 250, 0.92));
  color: var(--color-primary-hover);
}

.search-entity-tag:hover {
  transform: translateY(-1px);
  border-color: currentColor;
  box-shadow: 0 10px 22px rgba(15, 61, 56, 0.1);
}

.search-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 680;
}

.search-pagination button {
  width: auto;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 740;
}

.search-pagination button:hover:not(:disabled) {
  background: var(--color-primary);
  color: #FFFFFF;
}

.search-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.search-pagination strong {
  color: var(--color-text);
  font-weight: 760;
}

.search-suggestion-panel {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 42px rgba(15, 61, 56, 0.06);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.search-suggestion-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 760;
  letter-spacing: 0;
}

.search-suggestion-heading h2 .icon {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  color: currentColor;
  stroke-width: 2.2;
}

.search-suggestion-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  align-items: flex-start;
  min-width: 0;
}

.search-suggestion-cloud.is-floating {
  padding: 8px 0 10px;
}

.search-suggestion-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: auto;
  max-width: min(100%, 380px);
  min-height: 36px;
  margin-top: var(--hang-offset, 0px);
  padding: 7px 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(15, 61, 56, 0.06);
  animation: searchBubbleFloat 5.2s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  overflow: visible;
  text-align: left;
  white-space: normal;
}

.search-suggestion-bubble::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, rgba(15, 118, 110, 0), rgba(15, 118, 110, 0.24));
  content: "";
}

.search-suggestion-bubble:hover {
  border-color: rgba(15, 118, 110, 0.38);
  background: rgba(221, 244, 240, 0.86);
  color: var(--color-primary-hover);
}

.search-suggestion-bubble.is-virus {
  border-color: rgba(14, 116, 144, 0.2);
  background: rgba(223, 246, 251, 0.82);
  color: #0E7490;
}

.search-suggestion-bubble.is-family {
  border-color: rgba(67, 56, 202, 0.18);
  background: rgba(234, 234, 254, 0.8);
  color: #4338CA;
}

.search-suggestion-bubble.is-host {
  border-color: rgba(15, 118, 110, 0.2);
  background: rgba(221, 244, 240, 0.84);
  color: var(--color-primary-hover);
}

.search-suggestion-bubble.is-literature {
  border-color: rgba(217, 119, 6, 0.22);
  background: rgba(254, 243, 199, 0.72);
  color: #92400E;
}

.search-suggestion-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.search-suggestion-muted {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.search-suggestion-cloud.is-loading span {
  width: 118px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(221, 231, 228, 0.54), rgba(255, 255, 255, 0.82), rgba(221, 231, 228, 0.54));
  background-size: 220% 100%;
  animation: shimmer 1300ms ease-in-out infinite;
}

@keyframes searchBubbleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(calc(-1 * var(--float-distance, 4px)));
  }
}

@keyframes searchPromptPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

.search-empty-state {
  max-width: 680px;
}

.search-empty-state.is-error {
  border-color: rgba(185, 28, 28, 0.2);
}

.panel h2 {
  margin: 12px 0 10px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0;
}

.page {
  width: min(var(--container), calc(100vw - 48px));
  margin: 38px auto 0;
}

.page-header {
  margin-bottom: 20px;
}

.page-header h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 760;
  letter-spacing: 0;
}

.page-header p,
.muted {
  color: var(--color-text-muted);
}

.panel {
  padding: 20px;
}

.docs-page {
  margin-top: -86px;
}

.docs-visual-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 58vw, 760px);
  padding: 158px 0 118px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.985) 0%, rgba(247, 250, 249, 0.93) 28%, rgba(247, 250, 249, 0.50) 58%, rgba(247, 250, 249, 0.34) 100%),
    url("../img/omnivira_help_xuanchuan.png") center top / cover no-repeat;
  box-shadow: inset 0 -1px 0 rgba(221, 231, 228, 0.7), 0 20px 58px rgba(15, 61, 56, 0.08);
}

.docs-visual-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 152px;
  content: "";
  background: linear-gradient(to bottom, rgba(247, 250, 249, 0), rgba(247, 250, 249, 0.94));
  pointer-events: none;
}

.docs-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.docs-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 10px 26px rgba(15, 61, 56, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.docs-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #0F172A;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 1px 22px rgba(255, 255, 255, 0.86);
}

.docs-hero-copy > p:not(.docs-eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(31, 41, 55, 0.9);
  font-size: 17px;
  line-height: 1.62;
  text-shadow: 0 1px 20px rgba(255, 255, 255, 0.82);
}

.docs-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.docs-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(31, 41, 55, 0.86);
  font-size: 13px;
  font-weight: 690;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.docs-faq-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
  margin-top: -70px;
}

.docs-guide-panel,
.docs-faq-item {
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 52px rgba(15, 61, 56, 0.10);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.docs-guide-panel {
  position: sticky;
  top: 112px;
  min-width: 0;
  padding: 20px;
}

.docs-guide-panel h2 {
  margin: 2px 0 10px;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.docs-guide-panel > p:not(.section-kicker) {
  margin: 0;
  color: rgba(55, 65, 81, 0.86);
  font-size: 14px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.docs-guide-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.docs-guide-links a,
.docs-action-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.58);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 730;
}

.docs-guide-links a:hover,
.docs-action-row a:hover {
  border-color: rgba(15, 118, 110, 0.32);
  background: var(--color-primary);
  color: #FFFFFF;
}

.docs-faq-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.docs-faq-item {
  min-width: 0;
  overflow: hidden;
}

.docs-faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 18px;
  list-style: none;
  cursor: pointer;
}

.docs-faq-item summary::-webkit-details-marker {
  display: none;
}

.docs-faq-item summary:hover {
  background: rgba(221, 244, 240, 0.38);
}

.docs-faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.68);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 780;
}

.docs-faq-title {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.docs-faq-title strong {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.docs-faq-title small {
  color: rgba(78, 94, 91, 0.78);
  font-size: 13px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.docs-faq-icon {
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-right: 2px solid var(--color-primary-hover);
  border-bottom: 2px solid var(--color-primary-hover);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.docs-faq-item[open] .docs-faq-icon {
  transform: rotate(-135deg);
}

.docs-faq-body {
  padding: 0 18px 18px 74px;
  border-top: 1px solid rgba(221, 231, 228, 0.68);
}

.docs-faq-body p {
  max-width: 920px;
  margin: 14px 0 0;
  color: rgba(55, 65, 81, 0.9);
  font-size: 15px;
  line-height: 1.64;
  overflow-wrap: anywhere;
}

.docs-evidence-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.docs-evidence-type-grid div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(221, 244, 240, 0.38)),
    rgba(255, 255, 255, 0.78);
}

.docs-evidence-type-grid strong {
  color: var(--color-primary-hover);
  font-size: 13px;
  line-height: 1.25;
}

.docs-evidence-type-grid span {
  color: rgba(55, 65, 81, 0.86);
  font-size: 13px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.docs-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 960px) {
  .docs-visual-hero {
    min-height: 560px;
    padding: 142px 0 104px;
    background-position: center top;
  }

  .docs-faq-shell {
    grid-template-columns: 1fr;
    margin-top: -54px;
  }

  .docs-guide-panel {
    position: relative;
    top: auto;
  }

  .docs-guide-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .docs-page {
    margin-top: -76px;
  }

  .docs-visual-hero {
    min-height: 520px;
    padding: 128px 0 82px;
    background:
      linear-gradient(180deg, rgba(247, 250, 249, 0.985) 0%, rgba(247, 250, 249, 0.93) 44%, rgba(247, 250, 249, 0.64) 100%),
      url("../img/omnivira_help_xuanchuan.png") center top / cover no-repeat;
  }

  .docs-hero-copy h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .site-container.docs-hero-copy {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .docs-hero-copy > p:not(.docs-eyebrow) {
    width: min(100%, 310px);
    max-width: 310px;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  aside.docs-guide-panel > p:not(.section-kicker) {
    width: min(100%, 260px);
    max-width: 260px;
  }

  .docs-hero-tags,
  .docs-guide-links,
  .docs-action-row {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .docs-hero-tags span,
  .docs-action-row a {
    justify-content: center;
  }

  .site-container.docs-faq-shell {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    margin-top: -34px;
  }

  .docs-guide-panel {
    width: 100%;
    padding: 16px;
    overflow: hidden;
  }

  .docs-faq-item summary {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    min-height: 74px;
    padding: 14px;
  }

  .docs-faq-icon {
    grid-column: 2;
    justify-self: end;
    margin-top: -22px;
  }

  .docs-faq-number {
    width: 38px;
    height: 38px;
  }

  .docs-faq-title strong {
    padding-right: 18px;
    font-size: 15px;
  }

  .docs-faq-title small {
    font-size: 12px;
  }

  .docs-faq-body {
    padding: 0 14px 16px;
  }

  .docs-faq-body p {
    font-size: 14px;
  }

  .docs-evidence-type-grid {
    grid-template-columns: 1fr;
  }
}

.feedback-hero {
  max-width: 900px;
}

.feedback-hero p:last-child {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.58;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 16px;
  align-items: start;
}

.feedback-form-panel,
.feedback-info-card {
  min-width: 0;
}

.feedback-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.feedback-panel-heading h2,
.feedback-info-card h2 {
  margin: 3px 0 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 780;
}

.feedback-panel-heading > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.58);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.feedback-form {
  display: grid;
  gap: 16px;
}

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

.feedback-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.feedback-field-wide {
  grid-column: 1 / -1;
}

.feedback-field span,
.feedback-followup span {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 760;
}

.feedback-field b {
  color: #B91C1C;
}

.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  font-size: 13px;
  outline: none;
}

.feedback-field input,
.feedback-field select {
  min-height: 40px;
  padding: 0 11px;
}

.feedback-field textarea {
  min-height: 156px;
  padding: 11px;
  line-height: 1.5;
  resize: vertical;
}

.feedback-field input:focus,
.feedback-field select:focus,
.feedback-field textarea:focus {
  border-color: rgba(15, 118, 110, 0.64);
  box-shadow: 0 0 0 3px rgba(221, 244, 240, 0.9);
}

.feedback-followup {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
}

.feedback-followup input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--color-primary);
}

.feedback-submit-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.feedback-submit-row p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.feedback-status {
  margin-bottom: 14px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
}

.feedback-status.is-info {
  border: 1px solid rgba(14, 116, 144, 0.2);
  background: rgba(223, 246, 251, 0.72);
  color: #0E7490;
}

.feedback-status.is-error {
  border: 1px solid rgba(185, 28, 28, 0.2);
  background: rgba(254, 226, 226, 0.72);
  color: #991B1B;
}

.feedback-success-card {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.84), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.76);
}

.feedback-success-card[hidden],
.feedback-status[hidden],
.feedback-form[hidden] {
  display: none;
}

.feedback-success-card h2,
.feedback-success-card p {
  margin: 0;
}

.feedback-success-card p {
  color: rgba(55, 65, 81, 0.88);
  font-size: 14px;
  line-height: 1.52;
}

.feedback-success-card strong {
  color: var(--color-primary-hover);
}

.feedback-side-stack {
  display: grid;
  gap: 16px;
}

.feedback-info-list,
.feedback-process {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}

.feedback-info-list div,
.feedback-process li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.feedback-process {
  list-style: none;
  counter-reset: feedback-step;
}

.feedback-process li {
  position: relative;
  padding-left: 46px;
}

.feedback-process li::before {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #FFFFFF;
  content: counter(feedback-step);
  counter-increment: feedback-step;
  font-size: 12px;
  font-weight: 780;
}

.feedback-info-list strong,
.feedback-process strong {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.3;
}

.feedback-info-list span,
.feedback-process span {
  color: rgba(55, 65, 81, 0.84);
  font-size: 12px;
  line-height: 1.45;
}

.feedback-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

input,
button {
  min-height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
}

input {
  min-width: 220px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-text);
}

input:focus {
  border-color: rgba(15, 118, 110, 0.74);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

button {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  background: var(--color-primary-hover);
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-item {
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.result-title {
  margin: 0 0 6px;
  font-weight: 730;
}

.result-meta {
  color: var(--color-text-muted);
  font-size: 13px;
}

.browse-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.browse-hero h1 {
  margin: 6px 0 0;
  color: var(--color-text);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
}

.browse-hero p:last-child {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.browse-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.browse-filter-panel,
.browse-results-panel {
  min-width: 0;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(15, 61, 56, 0.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.browse-filter-panel {
  position: sticky;
  top: 92px;
  padding: 16px;
}

.browse-results-panel {
  padding: 16px;
}

.browse-filter-heading,
.browse-results-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.browse-filter-heading h2,
.browse-results-toolbar h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0;
}

.browse-filter-form {
  display: grid;
  gap: 12px;
}

.browse-filter-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 720;
}

.browse-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 10px;
}

.browse-filter-row-sort {
  grid-template-columns: minmax(0, 1.35fr) minmax(86px, 0.65fr);
}

.browse-filter-form input,
.browse-filter-form select {
  width: 100%;
  min-width: 0;
  min-height: 39px;
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  font-size: 13px;
}

.browse-filter-form select {
  padding: 0 10px;
  outline: none;
}

.browse-filter-form input:focus,
.browse-filter-form select:focus {
  border-color: rgba(15, 118, 110, 0.64);
  box-shadow: 0 0 0 3px rgba(221, 244, 240, 0.9);
}

.browse-check-row {
  display: flex !important;
  align-items: center;
  grid-template-columns: none !important;
  gap: 9px !important;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.68);
  cursor: pointer;
}

.browse-check-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: 16px;
  accent-color: var(--color-primary);
}

.browse-check-row span {
  color: rgba(55, 65, 81, 0.82);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.browse-year-filter {
  display: grid;
  gap: 8px;
  padding: 11px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
}

.browse-year-heading,
.browse-year-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.browse-year-heading span,
.browse-year-scale span {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 720;
}

.browse-year-heading strong {
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 760;
}

.browse-year-slider {
  position: relative;
  height: 28px;
}

.browse-year-slider::before {
  position: absolute;
  top: 13px;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.24), rgba(217, 119, 6, 0.22));
  content: "";
}

.browse-year-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.browse-year-slider input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(15, 61, 56, 0.2);
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}

.browse-year-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(15, 61, 56, 0.2);
  pointer-events: auto;
}

.browse-autocomplete {
  position: relative;
}

.browse-suggest-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 25;
  display: grid;
  gap: 5px;
  width: 100%;
  max-height: 260px;
  padding: 6px;
  overflow: auto;
  border: 1px solid rgba(221, 231, 228, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(15, 61, 56, 0.12);
}

.browse-suggest-menu[hidden] {
  display: none;
}

.browse-suggest-menu button {
  display: grid;
  gap: 2px;
  width: 100%;
  min-height: auto;
  padding: 8px 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--color-text);
  text-align: left;
}

.browse-suggest-menu button:hover {
  background: rgba(221, 244, 240, 0.72);
}

.browse-suggest-menu strong {
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.browse-suggest-menu span {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
}

.browse-primary-button,
.browse-ghost-button {
  min-height: 38px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 760;
}

.browse-primary-button {
  width: 100%;
  border: 0;
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.16);
}

.browse-ghost-button {
  width: auto;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(221, 244, 240, 0.46);
  color: var(--color-primary-hover);
}

.browse-result-summary {
  align-self: center;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 680;
  text-align: right;
}

.browse-result-summary strong {
  color: var(--color-primary-hover);
  font-weight: 780;
}

.browse-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -2px 0 12px;
}

.browse-active-filters[hidden] {
  display: none;
}

.browse-active-filters button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: auto;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.58);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 720;
}

.browse-active-filters span {
  color: rgba(11, 93, 86, 0.68);
  font-size: 15px;
}

.browse-result-list {
  display: grid;
  gap: 9px;
}

.browse-evidence-row {
  background: rgba(255, 255, 255, 0.76);
}

.virus-browse-row {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.88fr);
  grid-template-areas: "main taxonomy";
  gap: 12px 16px;
  background: rgba(255, 255, 255, 0.78);
}

.virus-browse-row:hover .virus-taxonomy-node {
  border-color: rgba(15, 118, 110, 0.2);
  background: rgba(221, 244, 240, 0.46);
}

.virus-level-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(14, 116, 144, 0.16);
  border-radius: 999px;
  background: rgba(223, 246, 251, 0.72);
  color: #0E7490;
  font-size: 12px;
  font-weight: 760;
  text-transform: capitalize;
}

.virus-level-pill small {
  color: rgba(14, 116, 144, 0.72);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.virus-browse-row .search-row-main {
  grid-area: main;
}

.virus-common-line {
  color: rgba(55, 65, 81, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.virus-taxonomy-panel {
  position: relative;
  grid-area: taxonomy;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 10px 11px 10px 14px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.48), rgba(255, 255, 255, 0.88) 58%, rgba(223, 246, 251, 0.42)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 3px 0 0 rgba(15, 118, 110, 0.28);
}

.virus-taxonomy-panel > span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

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

.virus-taxonomy-node {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  padding: 6px 8px 6px 11px;
  border: 1px solid rgba(221, 231, 228, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 160ms ease, background 160ms ease;
}

.virus-taxonomy-node::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 2px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.28);
  content: "";
}

.virus-taxonomy-node small {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 780;
  line-height: 1.1;
  text-transform: uppercase;
}

.virus-taxonomy-node strong {
  color: rgba(17, 24, 39, 0.86);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.virus-metric-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  width: min(100%, 430px);
  margin-top: 14px;
}

.virus-metric-bar {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
}

.virus-metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.virus-metric-label span {
  color: rgba(78, 94, 91, 0.78);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.virus-metric-label strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 760;
}

.virus-metric-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(221, 231, 228, 0.72);
}

.virus-metric-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.92), rgba(20, 184, 166, 0.72));
}

.virus-metric-bar.is-literature .virus-metric-track span {
  background: linear-gradient(90deg, rgba(14, 116, 144, 0.88), rgba(56, 189, 248, 0.68));
}

.host-browse-row {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.88fr);
  grid-template-areas: "main taxonomy";
  gap: 12px 16px;
  background: rgba(255, 255, 255, 0.78);
}

.host-browse-row .search-row-main {
  grid-area: main;
}

.host-browse-row:hover .host-taxonomy-node {
  border-color: rgba(14, 116, 144, 0.22);
  background: rgba(223, 246, 251, 0.48);
}

.host-rank-pill,
.host-cell-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.host-rank-pill {
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(221, 244, 240, 0.74);
  color: var(--color-primary-hover);
  text-transform: capitalize;
}

.host-rank-pill small {
  color: rgba(15, 118, 110, 0.68);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.host-cell-pill {
  border: 1px solid rgba(217, 119, 6, 0.2);
  background: rgba(255, 247, 237, 0.84);
  color: #A16207;
}

.host-taxon-line,
.host-cell-line {
  color: rgba(55, 65, 81, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.host-taxonomy-panel {
  position: relative;
  grid-area: taxonomy;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 10px 11px 10px 14px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 246, 251, 0.5), rgba(255, 255, 255, 0.88) 58%, rgba(221, 244, 240, 0.44)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 3px 0 0 rgba(14, 116, 144, 0.26);
}

.host-taxonomy-panel > span {
  display: block;
  margin-bottom: 7px;
  color: #0E7490;
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

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

.host-taxonomy-node {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  padding: 6px 8px 6px 11px;
  border: 1px solid rgba(221, 231, 228, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 160ms ease, background 160ms ease;
}

.host-taxonomy-node::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 2px;
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.28);
  content: "";
}

.host-taxonomy-node small {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 780;
  line-height: 1.1;
  text-transform: uppercase;
}

.host-taxonomy-node strong {
  color: rgba(17, 24, 39, 0.86);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.host-metric-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  width: min(100%, 430px);
  margin-top: 14px;
}

.host-metric-bar {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
}

.host-metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.host-metric-label span {
  color: rgba(78, 94, 91, 0.78);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.host-metric-label strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 760;
}

.host-metric-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(221, 231, 228, 0.72);
}

.host-metric-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.9), rgba(34, 197, 94, 0.62));
}

.host-metric-bar.is-literature .host-metric-track span {
  background: linear-gradient(90deg, rgba(14, 116, 144, 0.88), rgba(56, 189, 248, 0.68));
}

.article-browse-row {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 14px 18px;
  background: rgba(255, 255, 255, 0.78);
}

.article-row-main {
  min-width: 0;
}

.article-browse-row h3 {
  margin: 12px 0 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 760;
  letter-spacing: 0;
}

.article-browse-row p {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 620;
}

.article-flag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(14, 116, 144, 0.16);
  border-radius: 999px;
  background: rgba(223, 246, 251, 0.72);
  color: #0E7490;
  font-size: 12px;
  font-weight: 760;
}

.article-flag-pill.is-alert {
  border-color: rgba(190, 18, 60, 0.18);
  background: rgba(255, 241, 242, 0.86);
  color: #BE123C;
}

.article-coverage-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.44), rgba(255, 255, 255, 0.9) 58%, rgba(255, 247, 237, 0.42)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 3px 0 0 rgba(15, 118, 110, 0.24);
}

.article-coverage-panel > span {
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.article-evidence-bar {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.74);
}

.article-evidence-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.article-evidence-label span {
  color: rgba(78, 94, 91, 0.78);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.article-evidence-label strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 760;
}

.article-evidence-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(221, 231, 228, 0.72);
}

.article-evidence-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.9), rgba(217, 119, 6, 0.62));
}

.article-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 760px;
  margin-top: 12px;
}

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

.article-stat-cell {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 7px 8px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.article-stat-cell span {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 780;
  text-transform: uppercase;
}

.article-stat-cell strong {
  color: rgba(17, 24, 39, 0.88);
  font-size: 15px;
  font-weight: 760;
}

.article-tag-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.article-tag-group > span {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-tag-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 23px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 228, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(17, 24, 39, 0.82);
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-tag-type {
  border-color: var(--tag-border);
  background: var(--tag-bg);
  color: var(--tag-color);
}

.article-tag.is-virus {
  border-color: rgba(14, 116, 144, 0.18);
  background: rgba(223, 246, 251, 0.76);
  color: #0E7490;
}

.article-tag.is-host {
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(221, 244, 240, 0.76);
  color: var(--color-primary-hover);
}

.search-row-year {
  color: rgba(78, 94, 91, 0.72);
  font-size: 12px;
  font-weight: 720;
}

.browse-finding span,
.browse-evidence-supporting > span {
  display: inline-flex;
  margin-right: 7px;
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.browse-evidence-details {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 0;
}

.browse-evidence-details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.48);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 730;
  list-style: none;
  cursor: pointer;
}

.browse-evidence-details summary::-webkit-details-marker {
  display: none;
}

.browse-toggle-icon {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.browse-evidence-details[open] .browse-toggle-icon {
  transform: rotate(90deg);
}

.browse-evidence-details .browse-evidence-supporting {
  width: 100%;
  margin: 10px 0 0;
  padding: 12px 13px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.72), rgba(255, 255, 255, 0.86) 52%, rgba(254, 243, 199, 0.32)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.browse-evidence-supporting > span {
  display: block;
  margin: 0 0 5px;
}

.browse-evidence-supporting strong {
  display: block;
  color: rgba(17, 24, 39, 0.82);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.browse-evidence-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 10px 0 0;
}

.browse-evidence-details div {
  min-width: 0;
}

.browse-evidence-details dt {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 740;
}

.browse-evidence-details dd {
  margin: 2px 0 0;
  color: rgba(17, 24, 39, 0.86);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.browse-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 680;
}

.browse-pagination button {
  width: auto;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 740;
}

.browse-pagination button:hover:not(:disabled) {
  background: var(--color-primary);
  color: #FFFFFF;
}

.browse-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.browse-pagination strong {
  color: var(--color-text);
}

.browse-loading-list {
  display: grid;
  gap: 9px;
}

.browse-loading-list span {
  height: 112px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(221, 231, 228, 0.48), rgba(255, 255, 255, 0.86), rgba(221, 231, 228, 0.48));
  background-size: 220% 100%;
  animation: shimmer 1300ms ease-in-out infinite;
}

.entity-detail-header .section-kicker {
  margin-bottom: 8px;
}

.entity-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 16px;
  margin-bottom: 16px;
}

.entity-overview-panel,
.entity-side-panel,
.entity-evidence-panel {
  border: 1px solid rgba(221, 231, 228, 0.82);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(15, 61, 56, 0.05);
}

.entity-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.entity-metric-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.48);
}

.entity-metric-grid span,
.entity-summary-list span,
.entity-evidence-list span {
  display: block;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 720;
}

.entity-metric-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.entity-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 0;
}

.entity-field-grid div {
  min-width: 0;
}

.entity-field-grid dt {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 720;
}

.entity-field-grid dd {
  margin: 4px 0 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 690;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.entity-side-panel h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.entity-side-panel h2:not(:first-child) {
  margin-top: 18px;
}

.entity-summary-list,
.entity-tag-list,
.entity-evidence-list {
  display: grid;
  gap: 8px;
}

.entity-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.86);
}

.entity-summary-list div[style] {
  border-color: var(--tag-border, rgba(221, 231, 228, 0.86));
  background: var(--tag-bg, rgba(248, 250, 252, 0.86));
}

.entity-summary-list div[style] span,
.entity-summary-list div[style] strong {
  color: var(--tag-color, var(--color-primary-hover));
}

.entity-summary-list strong {
  color: var(--color-primary-hover);
  font-size: 14px;
}

.entity-tag-list {
  display: flex;
  flex-wrap: wrap;
}

.entity-tag-list span {
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(221, 231, 228, 0.92);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.88);
  color: rgba(17, 24, 39, 0.82);
  font-size: 12px;
  font-weight: 680;
  overflow-wrap: anywhere;
}

.entity-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.entity-section-heading h2 {
  margin: 4px 0 0;
}

.entity-section-heading > span {
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.entity-evidence-list a {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: inherit;
}

.entity-evidence-list a:hover {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 12px 24px rgba(15, 61, 56, 0.07);
}

.entity-evidence-list strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 740;
  line-height: 1.35;
}

.entity-evidence-list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.entity-evidence-list small {
  color: rgba(78, 94, 91, 0.74);
  font-size: 12px;
  font-weight: 680;
}

.virus-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.74), rgba(255, 255, 255, 0.82) 56%, rgba(254, 243, 199, 0.34)),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-panel);
}

.host-detail-hero {
  grid-template-columns: minmax(240px, 1fr) minmax(370px, 444px) auto;
  align-items: center;
}

.virus-detail-hero-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.host-hero-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.host-hero-copy {
  min-width: 0;
}

.host-hero-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  min-width: 0;
}

.host-hero-images {
  display: grid;
  grid-template-columns: repeat(5, 82px);
  gap: 8px;
  flex: 0 0 auto;
  justify-content: center;
  justify-self: center;
  align-self: center;
}

.host-hero-images[hidden] {
  display: none;
}

.host-detail-hero .host-hero-images[hidden] {
  display: grid;
  visibility: hidden;
  pointer-events: none;
}

.host-hero-image-button {
  display: block;
  width: 82px;
  height: 82px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 61, 56, 0.10);
  cursor: zoom-in;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.host-hero-image-button:hover,
.host-hero-image-button:focus-visible {
  border-color: rgba(15, 118, 110, 0.46);
  box-shadow: 0 16px 32px rgba(15, 61, 56, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.host-hero-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 24, 28, 0.76);
  backdrop-filter: blur(12px);
}

body.is-host-image-viewer-open {
  overflow: hidden;
}

.host-image-viewer[hidden] {
  display: none;
}

.host-image-viewer-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  width: min(1120px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(221, 244, 240, 0.38);
  border-radius: 8px;
  background: rgba(249, 252, 251, 0.98);
  box-shadow: 0 30px 80px rgba(4, 18, 23, 0.38);
}

.host-image-viewer-media {
  position: relative;
  display: flex;
  min-height: min(68vh, 620px);
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 24, 29, 0.96), rgba(15, 61, 56, 0.92));
}

.host-image-viewer-media img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 124px);
  object-fit: contain;
}

.host-image-viewer-nav,
.host-image-viewer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 244, 240, 0.28);
  border-radius: 999px;
  color: #F8FAFC;
  background: rgba(15, 23, 42, 0.46);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.host-image-viewer-nav:hover,
.host-image-viewer-nav:focus-visible,
.host-image-viewer-close:hover,
.host-image-viewer-close:focus-visible {
  border-color: rgba(221, 244, 240, 0.64);
  background: rgba(15, 23, 42, 0.72);
  outline: none;
}

.host-image-viewer-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.host-image-viewer-nav:hover,
.host-image-viewer-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.host-image-viewer-prev {
  left: 16px;
}

.host-image-viewer-next {
  right: 16px;
}

.host-image-viewer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
}

.host-image-viewer-meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 24px;
  color: var(--color-text);
}

.host-image-viewer-kicker {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.host-image-viewer-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 800;
}

.host-image-viewer-description {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.host-image-viewer-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-top: 4px;
}

.host-image-viewer-facts div {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.34);
}

.host-image-viewer-facts dt {
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.host-image-viewer-facts dd {
  margin: 0;
  color: var(--color-text);
  font-size: 0.84rem;
  line-height: 1.4;
  font-weight: 700;
}

.host-image-viewer-facts a {
  color: var(--color-primary);
  text-decoration: none;
}

.host-image-viewer-facts a:hover {
  text-decoration: underline;
}

.host-image-viewer-note {
  margin: auto 0 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.virus-detail-hero h1 {
  max-width: 980px;
  margin: 5px 0 8px;
  color: var(--color-text);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.virus-detail-id-row,
.virus-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.virus-detail-alias {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  max-width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(55, 65, 81, 0.82);
  font-size: 12px;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.virus-detail-alias[href] {
  text-decoration: none;
}

.virus-detail-alias[href]:hover {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(221, 244, 240, 0.68);
  color: var(--color-primary-hover);
}

.virus-detail-actions {
  justify-content: flex-end;
}

.virus-detail-hero-meta {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-width: 0;
}

.virus-taxonomy-rail {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(221, 244, 240, 0.54)),
    rgba(255, 255, 255, 0.72);
}

.virus-taxonomy-rail::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 10px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.2), rgba(14, 116, 144, 0.58), rgba(67, 56, 202, 0.26));
  content: "";
}

.virus-taxonomy-rail div {
  position: relative;
  min-width: 0;
  padding: 7px 8px 7px 10px;
  border: 1px solid rgba(221, 231, 228, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.virus-taxonomy-rail div::before {
  position: absolute;
  top: 14px;
  left: -15px;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.16);
  content: "";
}

.virus-taxonomy-rail dt {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.virus-taxonomy-rail dd {
  margin: 3px 0 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.virus-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.58);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 760;
}

.virus-detail-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.virus-detail-metrics article {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(15, 61, 56, 0.05);
}

.virus-detail-metrics span {
  display: block;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.virus-detail-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 680;
  overflow-wrap: anywhere;
}

.virus-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.38fr);
  align-items: stretch;
  gap: 16px;
  margin-bottom: 16px;
}

.virus-detail-overview,
.virus-detail-side,
.virus-detail-taxonomy-panel,
.virus-viz-panel,
.virus-recent-panel,
.virus-linked-evidence-panel {
  border: 1px solid rgba(221, 231, 228, 0.82);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(15, 61, 56, 0.05);
}

.virus-detail-side {
  align-self: stretch;
}

.virus-detail-right-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 16px;
  min-width: 0;
}

.virus-detail-right-stack > .panel {
  width: 100%;
  min-width: 0;
}

.virus-detail-taxonomy-panel .virus-detail-section-heading {
  margin-bottom: 10px;
}

.virus-detail-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.virus-detail-section-heading h2 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.15;
}

.virus-detail-section-heading > span {
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.virus-detail-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.virus-detail-field-grid div {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
}

.virus-detail-field-grid dt {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.virus-detail-field-grid dd {
  margin: 5px 0 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.virus-detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.virus-detail-side h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.virus-evidence-summary-list {
  display: grid;
  gap: 8px;
}

.virus-detail-side .virus-evidence-summary-list {
  grid-template-columns: 1fr;
  gap: 7px;
}

.virus-evidence-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid var(--tag-border, rgba(221, 231, 228, 0.86));
  border-radius: 8px;
  background: var(--tag-bg, rgba(248, 250, 252, 0.86));
  color: var(--tag-color, var(--color-primary-hover));
}

.virus-evidence-summary-list span {
  min-width: 0;
  font-size: 12px;
  font-weight: 730;
  overflow-wrap: anywhere;
}

.virus-detail-side .virus-evidence-summary-list div {
  align-items: center;
  padding: 8px 10px;
}

.virus-detail-side .virus-evidence-summary-list span {
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

.virus-evidence-summary-list strong {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 780;
}

.virus-detail-side .entity-tag-list {
  max-height: 138px;
  overflow-y: auto;
  padding-right: 2px;
}

.virus-ai-stack-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.virus-ai-window-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.virus-ai-window-tabs button {
  width: auto;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.84);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.virus-ai-window-tabs button.is-active {
  border-color: rgba(15, 118, 110, 0.24);
  background: rgba(221, 244, 240, 0.72);
  color: var(--color-primary-hover);
  box-shadow: 0 8px 18px rgba(15, 61, 56, 0.08);
}

.virus-ai-stack {
  position: relative;
  flex: 1 1 auto;
  min-height: 520px;
}

.virus-ai-stack-card {
  position: relative;
  z-index: 1;
  display: none;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(221, 244, 240, 0.56) 64%, rgba(223, 246, 251, 0.34)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(15, 61, 56, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.virus-ai-stack-card.is-active {
  display: flex;
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.virus-ai-stack-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.virus-ai-stack-card header > span {
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 820;
}

.virus-ai-brief-title {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.virus-ai-brief-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(14, 116, 144, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.32) 34%, transparent 35%),
    linear-gradient(135deg, rgba(243, 232, 255, 0.82), rgba(223, 246, 251, 0.88));
  box-shadow: 0 9px 20px rgba(14, 116, 144, 0.12);
}

.virus-ai-brief-icon svg {
  display: block;
  width: 21px;
  height: 21px;
}

.virus-ai-brief-copy {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  max-width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.78), rgba(255, 255, 255, 0.82) 58%, rgba(243, 232, 255, 0.46)),
    rgba(255, 255, 255, 0.72);
  color: var(--color-primary-hover);
  font-size: 14px;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 61, 56, 0.07);
}

.virus-ai-stack-card header strong {
  color: var(--color-text);
  font-size: 32px;
  line-height: 0.95;
  font-weight: 680;
}

.virus-ai-generated-box {
  --ai-border-angle: 0deg;
  position: relative;
  isolation: isolate;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(15, 61, 56, 0.07);
  overflow: hidden;
}

.virus-ai-generated-box::before,
.virus-ai-generated-box::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    conic-gradient(
      from var(--ai-border-angle),
      rgba(15, 118, 110, 0.22),
      rgba(14, 116, 144, 0.52),
      rgba(109, 40, 217, 0.38),
      rgba(217, 119, 6, 0.22),
      rgba(15, 118, 110, 0.22)
    );
  content: "";
  pointer-events: none;
}

.virus-ai-generated-box::before {
  z-index: 0;
  padding: 1px;
  animation: aiBorderSpin 8s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.virus-ai-generated-box::after {
  z-index: 0;
  opacity: 0.28;
  filter: blur(18px);
  transform: scale(1.05);
  animation: aiBorderSpin 10s linear infinite reverse;
}

.virus-ai-generated-box > * {
  position: relative;
  z-index: 1;
}

.virus-ai-generated-box p {
  margin: 0;
  color: rgba(55, 65, 81, 0.9);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.52;
}

.virus-ai-generated-box.is-loading p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-primary-hover);
}

.virus-ai-generated-box.is-loading p::before {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(15, 118, 110, 0.22);
  border-top-color: rgba(15, 118, 110, 0.82);
  border-radius: 999px;
  content: "";
  animation: aiSummarySpin 760ms linear infinite;
}

.virus-ai-generated-box.is-error {
  background: rgba(254, 242, 242, 0.9);
  box-shadow: 0 12px 24px rgba(185, 28, 28, 0.06);
}

.virus-ai-generated-box.is-error p {
  color: rgba(127, 29, 29, 0.9);
}

.virus-ai-generated-box small {
  display: block;
  margin-top: 8px;
  color: rgba(78, 94, 91, 0.72);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.virus-ai-generated-note {
  margin-top: 11px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  color: rgba(78, 94, 91, 0.66);
  font-size: 10.5px;
  font-weight: 650;
}

@property --ai-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes aiBorderSpin {
  to {
    --ai-border-angle: 360deg;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .virus-ai-generated-box::before,
  .virus-ai-generated-box::after,
  .virus-ai-generated-box.is-loading p::before {
    animation: none;
  }
}

.virus-ai-stack-card .virus-recent-mini-metrics {
  margin: 0;
}

.virus-ai-evidence-table-wrap {
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.virus-ai-evidence-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.virus-ai-evidence-table th,
.virus-ai-evidence-table td {
  padding: 10px 11px;
  border-bottom: 1px solid rgba(221, 231, 228, 0.72);
  text-align: left;
  vertical-align: top;
}

.virus-ai-evidence-table th {
  position: relative;
  background: rgba(248, 250, 252, 0.94);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
}

.virus-ai-evidence-table th[data-sort] {
  padding-right: 24px;
}

.virus-ai-evidence-table th[data-sort]::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: rgba(78, 94, 91, 0.58);
  font-size: 11px;
  line-height: 1;
  transform: translateY(-50%);
  content: "↕";
}

.virus-ai-evidence-table th:hover {
  background: rgba(248, 250, 252, 0.94);
  color: var(--color-text-muted);
}

.virus-ai-evidence-table th.is-sorted {
  color: var(--color-primary-hover);
}

.virus-ai-evidence-table th[aria-sort="ascending"]::after {
  color: var(--color-primary-hover);
  content: "↑";
}

.virus-ai-evidence-table th[aria-sort="descending"]::after {
  color: var(--color-primary-hover);
  content: "↓";
}

.virus-ai-evidence-table td {
  color: rgba(17, 24, 39, 0.86);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.36;
}

.virus-ai-evidence-table td:nth-child(1),
.virus-ai-evidence-table td:nth-child(4) {
  white-space: nowrap;
}

.virus-ai-evidence-table td:nth-child(3) {
  min-width: 280px;
}

.virus-ai-evidence-table tr:last-child td {
  border-bottom: 0;
}

.virus-ai-evidence-table td > span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid var(--tag-border, rgba(221, 231, 228, 0.88));
  border-radius: 999px;
  background: var(--tag-bg, rgba(248, 250, 252, 0.86));
  color: var(--tag-color, var(--color-primary-hover));
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.virus-ai-evidence-table a {
  color: var(--color-primary-hover);
  font-weight: 800;
}

.virus-ai-table-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 9px;
}

.virus-ai-table-pager button,
.virus-ai-table-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 740;
}

.virus-ai-table-pager button {
  cursor: pointer;
}

.virus-ai-table-pager button.is-active {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(221, 244, 240, 0.72);
  color: var(--color-primary-hover);
}

.virus-ai-table-pager button:disabled {
  opacity: 0.45;
  cursor: default;
}

.virus-viz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.virus-viz-panel-wide {
  grid-column: 1 / -1;
}

.virus-taxonomy-tree-panel {
  min-width: 0;
  overflow: hidden;
}

.virus-taxonomy-tree-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.virus-tree-toggle {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.72);
  color: var(--color-primary-hover);
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 8px 18px rgba(15, 61, 56, 0.06);
}

.virus-tree-toggle:hover {
  border-color: rgba(15, 118, 110, 0.34);
  background: rgba(201, 238, 233, 0.9);
}

.virus-taxonomy-tree-summary {
  margin-top: 10px;
  padding: 13px 14px;
  border: 1px dashed rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.3);
  color: rgba(55, 65, 81, 0.78);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.virus-taxonomy-tree-content {
  margin-top: 14px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.virus-taxonomy-tree-content[hidden],
.virus-taxonomy-tree-panel.is-expanded .virus-taxonomy-tree-summary,
.virus-taxonomy-tree-panel:not(.is-expanded) .virus-taxonomy-tree-content {
  display: none;
}

.virus-taxonomy-tree-scroll {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 28px;
  overscroll-behavior-x: contain;
}

.virus-taxonomy-tree-chart {
  min-height: 640px;
}

.virus-taxonomy-tree-chart .highcharts-scrolling {
  border-radius: 8px;
}

.virus-chart {
  width: 100%;
  min-height: 338px;
}

.virus-sunburst-chart,
.virus-map-chart {
  min-height: 358px;
}

.virus-chart-fallback {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px dashed rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.3);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.virus-chart-fallback[hidden] {
  display: none;
}

.virus-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.virus-recent-window {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.42), rgba(255, 255, 255, 0.9) 62%, rgba(223, 246, 251, 0.3)),
    rgba(255, 255, 255, 0.78);
}

.virus-recent-window header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.virus-recent-window header span {
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 800;
}

.virus-recent-window header strong {
  color: var(--color-text);
  font-size: 28px;
  line-height: 1;
  font-weight: 680;
}

.virus-ai-summary {
  min-height: 126px;
  padding: 11px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.virus-ai-summary span {
  display: block;
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 840;
  text-transform: uppercase;
}

.virus-ai-summary p {
  margin: 6px 0 0;
  color: rgba(55, 65, 81, 0.86);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.45;
}

.virus-recent-mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.virus-recent-mini-metrics span {
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.82);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 720;
}

.virus-recent-evidence-list {
  display: grid;
  gap: 7px;
}

.virus-recent-evidence-list a {
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.virus-recent-evidence-list a > span,
.entity-evidence-list a > span[style] {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 23px;
  padding: 0 8px;
  border: 1px solid var(--tag-border, rgba(221, 231, 228, 0.88));
  border-radius: 999px;
  background: var(--tag-bg, rgba(248, 250, 252, 0.86));
  color: var(--tag-color, var(--color-primary-hover));
  font-size: 11px;
  font-weight: 760;
}

.virus-recent-evidence-list strong {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 730;
  line-height: 1.34;
}

.virus-recent-evidence-list small {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 680;
}

.article-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.article-detail-hero h1 {
  max-width: 980px;
  margin: 8px 0 10px;
  color: var(--color-text);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
}

.article-author-line {
  max-width: 920px;
  margin: 0 0 13px;
  color: rgba(78, 94, 91, 0.88);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 620;
}

.article-paper-author-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  max-width: 980px;
  margin: 0 0 10px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 13px;
  font-weight: 660;
  line-height: 1.45;
}

.article-paper-author-list span {
  display: inline;
}

.article-paper-author-list sup {
  position: relative;
  top: -0.35em;
  margin-left: 2px;
  color: var(--color-primary-hover);
  font-size: 9px;
  font-weight: 820;
  line-height: 0;
}

.article-affiliation-details {
  max-width: 980px;
  margin: 0 0 13px;
}

.article-affiliation-details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.48);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

.article-affiliation-details summary::-webkit-details-marker {
  display: none;
}

.article-affiliation-details[open] .browse-toggle-icon {
  transform: rotate(90deg);
}

.article-affiliation-details summary strong {
  color: rgba(78, 94, 91, 0.82);
  font-size: 11px;
  font-weight: 760;
}

.article-affiliation-details ol {
  display: grid;
  gap: 6px;
  margin: 9px 0 0;
  padding: 11px 14px 11px 30px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(17, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 590;
  line-height: 1.45;
}

.article-detail-meta,
.article-detail-actions,
.article-term-list,
.article-link-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.article-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(17, 24, 39, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.article-detail-actions {
  justify-content: flex-end;
}

.article-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.64);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 740;
}

.article-detail-actions a:hover {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(221, 244, 240, 0.86);
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 16px;
  align-items: start;
}

.article-detail-main,
.article-detail-sidebar {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.article-detail-sidebar {
  position: sticky;
  top: 92px;
}

.article-abstract-panel,
.article-evidence-panel,
.article-side-panel {
  border: 1px solid rgba(221, 231, 228, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.68)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(15, 61, 56, 0.05);
}

.article-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.article-section-heading h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.article-section-heading > span {
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.article-section-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.68);
}

.article-section-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(17, 24, 39, 0.72);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
  cursor: pointer;
}

.article-section-tabs button.is-active,
.article-section-tabs button:hover {
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(221, 244, 240, 0.72);
  color: var(--color-primary-hover);
}

.article-tab-panel {
  scroll-margin-top: 100px;
}

.article-tab-panel[hidden] {
  display: none;
}

.article-abstract-text {
  max-width: 980px;
  margin: 0;
  color: rgba(17, 24, 39, 0.78);
  font-size: 15px;
  line-height: 1.68;
}

.article-term-list {
  margin-top: 16px;
}

.article-term-list span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.78);
  color: rgba(78, 94, 91, 0.9);
  font-size: 12px;
  font-weight: 660;
}

.article-evidence-group {
  display: grid;
  gap: 10px;
  scroll-margin-top: 100px;
}

.article-evidence-group:not(:first-of-type) {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(221, 231, 228, 0.78);
}

.article-evidence-group-heading,
.article-evidence-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.article-evidence-group-heading strong {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 760;
}

.article-evidence-card-list {
  display: grid;
  gap: 10px;
}

.article-evidence-card {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.34), rgba(255, 255, 255, 0.82) 44%, rgba(255, 247, 237, 0.28)),
    rgba(255, 255, 255, 0.76);
}

.article-confidence-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 999px;
  background: rgba(254, 243, 199, 0.7);
  color: #92400E;
  font-size: 11px;
  font-weight: 760;
}

.article-finding,
.article-supporting-text {
  display: grid;
  gap: 5px;
}

.article-finding span,
.article-supporting-text span,
.article-evidence-entity-grid > div > span {
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-finding p,
.article-supporting-text p {
  margin: 0;
  color: rgba(17, 24, 39, 0.86);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.56;
}

.article-supporting-text {
  padding: 12px 13px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 244, 240, 0.66), rgba(255, 255, 255, 0.88) 58%, rgba(254, 243, 199, 0.26)),
    rgba(255, 255, 255, 0.74);
}

.article-supporting-text summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  list-style: none;
  cursor: pointer;
}

.article-supporting-text summary::-webkit-details-marker {
  display: none;
}

.article-supporting-text[open] .browse-toggle-icon {
  transform: rotate(90deg);
}

.article-supporting-text p {
  margin-top: 8px;
}

.article-evidence-entity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.article-evidence-entity-grid > div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(221, 231, 228, 0.78);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.62);
}

.article-link-tag-list {
  min-width: 0;
}

a.article-tag {
  text-decoration: none;
}

a.article-tag:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.article-tag.is-geo {
  border-color: rgba(180, 83, 9, 0.18);
  background: rgba(254, 243, 199, 0.68);
  color: #92400E;
}

.article-evidence-field-grid,
.article-metadata-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0;
}

.article-evidence-field-grid div,
.article-metadata-list div {
  min-width: 0;
}

.article-evidence-field-grid dt,
.article-metadata-list dt {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 770;
  text-transform: uppercase;
}

.article-evidence-field-grid dd,
.article-metadata-list dd {
  margin: 3px 0 0;
  color: rgba(17, 24, 39, 0.82);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-side-panel h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.article-side-panel h3 {
  margin: 0 0 8px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.article-detail-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.article-detail-metrics div {
  padding: 11px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.46);
}

.article-detail-metrics span {
  display: block;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 760;
}

.article-detail-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 760;
}

.article-side-section {
  margin-top: 16px;
}

.article-side-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.article-side-type-list .article-tag {
  min-height: 26px;
  text-decoration: none;
}

.article-side-type-list strong {
  margin-left: 4px;
  font-weight: 820;
}

.article-author-detail-list,
.article-reference-list {
  display: grid;
  gap: 10px;
}

.article-author-card,
.article-reference-list li {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.article-author-card-head,
.article-reference-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.article-author-card-head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 760;
}

.article-author-card-head strong span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.82);
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 820;
}

.article-author-card-head a,
.article-reference-head a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.58);
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 760;
}

.article-author-card ol {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding-left: 20px;
  color: rgba(17, 24, 39, 0.74);
  font-size: 13px;
  font-weight: 590;
  line-height: 1.48;
}

.article-reference-network-panel {
  display: grid;
  gap: 11px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(221, 231, 228, 0.84);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(15, 118, 110, 0.1), transparent 34%),
    radial-gradient(circle at 76% 78%, rgba(109, 40, 217, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(221, 244, 240, 0.5), rgba(255, 255, 255, 0.84) 54%, rgba(223, 246, 251, 0.38)),
    rgba(255, 255, 255, 0.7);
}

.article-reference-network-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.article-reference-network-heading h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 760;
}

.article-reference-network-heading p {
  margin: 4px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.4;
}

.article-reference-network-heading > span {
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.article-reference-network-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.article-reference-network-tools button {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  cursor: pointer;
}

.article-reference-network-tools button:hover {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(221, 244, 240, 0.76);
}

.article-reference-network-tools span {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 650;
}

.article-reference-network-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
}

.article-reference-network {
  min-width: 0;
  height: 640px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(221, 244, 240, 0.48), transparent 58%),
    linear-gradient(rgba(15, 118, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.034) 1px, transparent 1px),
    rgba(255, 255, 255, 0.76);
  background-size: auto, 30px 30px, 30px 30px, auto;
  overflow: hidden;
}

.article-reference-network-svg {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.article-reference-network-svg:active {
  cursor: grabbing;
}

.article-reference-link {
  stroke: rgba(15, 118, 110, 0.2);
  stroke-width: 1.05;
  stroke-linecap: round;
}

.article-reference-link.is-expanded {
  stroke: rgba(100, 116, 139, 0.16);
  stroke-width: 0.7;
}

.article-reference-link.is-faded {
  opacity: 0.08;
}

.article-reference-link.is-neighborhood {
  opacity: 0.92;
  stroke: rgba(15, 118, 110, 0.42);
}

.article-reference-node {
  cursor: pointer;
}

.article-reference-node circle {
  fill: rgba(248, 255, 255, 0.96);
  stroke: rgba(14, 116, 144, 0.44);
  stroke-width: 1.4;
  filter: drop-shadow(0 4px 8px rgba(15, 118, 110, 0.12));
}

.article-reference-node text {
  fill: #0E7490;
  font-size: 7.5px;
  font-weight: 800;
  pointer-events: none;
  text-anchor: middle;
  user-select: none;
}

.article-reference-node.is-source circle {
  fill: #0F766E;
  stroke: #0A5F59;
  stroke-width: 1.8;
  filter: drop-shadow(0 8px 14px rgba(15, 118, 110, 0.24));
}

.article-reference-node.is-source text {
  fill: #FFFFFF;
  font-size: 9.5px;
}

.article-reference-node.is-in-database:not(.is-source) circle {
  fill: rgba(243, 232, 255, 0.96);
  stroke: rgba(167, 139, 250, 0.94);
  filter: drop-shadow(0 6px 12px rgba(15, 118, 110, 0.16));
}

.article-reference-node.is-in-database:not(.is-source) text {
  fill: #075A5D;
  font-size: 7px;
}

.article-reference-node.is-secondary.is-external circle {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(14, 116, 144, 0.28);
}

.article-reference-node.is-faded {
  opacity: 0.13;
}

.article-reference-node.is-neighborhood {
  opacity: 1;
}

.article-reference-node.is-focus circle {
  stroke: #D97706;
  stroke-width: 3;
  filter: drop-shadow(0 8px 16px rgba(217, 119, 6, 0.28));
}

.article-reference-network-detail {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr) auto;
  align-content: start;
  align-items: start;
  gap: 7px 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(221, 231, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.article-reference-network-detail span {
  grid-column: 1;
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-reference-network-detail strong {
  grid-column: 1;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.article-reference-network-detail em {
  grid-column: 1;
  color: var(--color-text-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
}

.article-reference-network-detail small {
  grid-column: 2;
  grid-row: 1;
  color: rgba(15, 118, 110, 0.72);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.35;
}

.article-reference-network-detail p {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 0;
  color: rgba(17, 24, 39, 0.76);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.article-reference-network-detail a {
  grid-column: 3;
  grid-row: 1 / span 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(221, 244, 240, 0.66);
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 760;
}

.article-reference-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-reference-head span {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.article-reference-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(14, 116, 144, 0.18);
  border-radius: 999px;
  background: rgba(223, 246, 251, 0.72);
  color: #0E7490;
  font-size: 11px;
  font-weight: 780;
}

.article-reference-list p {
  margin: 9px 0 0;
  color: rgba(17, 24, 39, 0.78);
  font-size: 13px;
  font-weight: 610;
  line-height: 1.52;
  overflow-wrap: anywhere;
}

.article-reference-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(221, 231, 228, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.article-reference-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 13px;
}

.article-reference-table th,
.article-reference-table td {
  padding: 12px 13px;
  border-bottom: 1px solid rgba(221, 231, 228, 0.78);
  text-align: left;
  vertical-align: top;
}

.article-reference-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(236, 249, 247, 0.96);
  color: var(--color-primary-hover);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-reference-sort {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

.article-reference-table .article-reference-sort:hover {
  background: transparent;
  color: inherit;
}

.article-reference-sort::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.38;
  transform: rotate(45deg) translateY(-1px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.article-reference-sort.is-ascending::after,
.article-reference-sort.is-descending::after {
  opacity: 0.95;
}

.article-reference-sort.is-ascending::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.article-reference-sort.is-descending::after {
  transform: rotate(45deg) translateY(-1px);
}

.article-reference-sort:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.22);
  outline-offset: 4px;
  border-radius: 6px;
}

.article-reference-table tbody tr:hover {
  background: rgba(221, 244, 240, 0.34);
}

.article-reference-table tbody tr:last-child td {
  border-bottom: 0;
}

.article-reference-table th:nth-child(1),
.article-reference-table td:nth-child(1) {
  width: 150px;
  white-space: nowrap;
}

.article-reference-table th:nth-child(2),
.article-reference-table td:nth-child(2) {
  width: auto;
  min-width: 360px;
  line-height: 1.45;
}

.article-reference-table th:nth-child(3),
.article-reference-table td:nth-child(3) {
  width: 130px;
}

.article-reference-table th:nth-child(4),
.article-reference-table td:nth-child(4) {
  width: 82px;
  white-space: nowrap;
}

.article-reference-table a {
  color: var(--color-primary-hover);
  font-weight: 780;
}

.article-reference-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-top: 6px;
  padding: 0 7px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(221, 244, 240, 0.74);
  color: var(--color-primary-hover);
  font-size: 10px;
  font-weight: 780;
}

@media (max-width: 1180px) {
  .host-detail-hero {
    grid-template-columns: minmax(240px, 1fr) minmax(300px, 352px) auto;
  }

  .host-hero-images {
    grid-template-columns: repeat(4, 82px);
  }
}

@media (max-width: 980px) {
  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-search {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

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

  .home-stat-card-date {
    grid-column: span 3;
  }

  .home-insight-row {
    grid-template-columns: 1fr;
  }

  .browse-layout {
    grid-template-columns: 1fr;
  }

  .browse-filter-panel {
    position: static;
  }

  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .feedback-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entity-detail-layout {
    grid-template-columns: 1fr;
  }

  .virus-detail-hero,
  .virus-detail-layout,
  .virus-viz-grid {
    grid-template-columns: 1fr;
  }

  .virus-detail-actions {
    justify-content: flex-start;
  }

  .virus-recent-grid {
    grid-template-columns: 1fr;
  }

  .virus-viz-panel-wide {
    grid-column: auto;
  }

  .article-detail-hero,
  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-detail-actions {
    justify-content: flex-start;
  }

  .article-detail-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-container,
  .page {
    width: calc(100vw - 28px);
    max-width: var(--container);
  }

  .site-main.page {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
    overflow: hidden;
  }

  .docs-hero,
  .docs-hero p:last-child,
  .docs-quick-nav,
  .docs-section {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .docs-hero p:last-child {
    overflow-wrap: anywhere;
  }

  .feedback-hero,
  .feedback-hero p:last-child,
  .feedback-layout {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .feedback-form-grid,
  .feedback-side-stack,
  .feedback-submit-row {
    grid-template-columns: 1fr;
  }

  .feedback-panel-heading {
    display: grid;
  }

  .feedback-panel-heading > span {
    justify-self: start;
    white-space: normal;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-frame {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-width: 0;
    padding: 12px;
    overflow: hidden;
  }

  .brand {
    width: 100%;
  }

  .brand-note {
    white-space: normal;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .nav a,
  .nav summary {
    min-width: 0;
    width: 100%;
    gap: 5px;
    padding: 0 4px;
    font-size: 12px;
    overflow: hidden;
    white-space: normal;
  }

  .nav a > span,
  .nav summary > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav .icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
  }

  .nav-dropdown {
    min-width: 0;
    overflow: hidden;
  }

  .nav-dropdown summary {
    width: 100%;
  }

  .dropdown-menu {
    left: 0;
    right: 0;
    min-width: 100%;
    max-width: 100%;
    transform: translateY(-4px);
  }

  .nav-dropdown[open] .dropdown-menu {
    transform: translateY(0);
  }

  .home-main {
    margin-top: -190px;
  }

  .home-hero {
    margin-top: 0;
    padding-top: 224px;
    padding-bottom: 34px;
    background-position: center center;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-search {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px 12px 12px;
  }

  .hero-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-search-examples {
    align-items: stretch;
  }

  .hero-search-examples a {
    justify-content: center;
    flex: 1 1 76px;
  }

  .hero-tags span {
    width: 100%;
    justify-content: center;
  }

  .signal-map {
    height: 230px;
  }

  .visual-metrics {
    grid-template-columns: 1fr;
  }

  .visual-row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .home-stats-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .home-stat-card {
    min-height: 120px;
  }

  .home-stat-card-date {
    grid-column: span 2;
  }

  .home-insight-panel {
    min-height: auto;
    padding: 16px;
  }

  .home-insight-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .network-wheel-chart {
    min-height: 316px;
  }

  .geo-map-chart {
    min-height: 306px;
  }

  .home-outbreak-panel {
    padding: 16px;
  }

  .who-signal-layout {
    grid-template-columns: 1fr;
  }

  .who-signal-timeline-chart {
    min-height: 0;
  }

  .who-timeline-date,
  .who-timeline-title {
    width: 210px;
  }

  .who-signal-table {
    min-width: 680px;
  }

  .who-signal-detail {
    grid-template-columns: 1fr;
  }

  .who-signal-detail-map-panel {
    grid-template-rows: auto minmax(220px, 1fr);
  }

  .network-edge {
    grid-template-columns: 1fr;
  }

  .network-node.host {
    text-align: left;
  }

  .network-link {
    justify-self: flex-start;
  }

  .notice-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .literature-link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 8px;
  }

  .footer-frame {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-copyright {
    justify-self: stretch;
    text-align: left;
  }

  .footer-link-list {
    grid-template-columns: 1fr;
  }

  .search-hero {
    width: auto;
    max-width: none;
    margin-right: 24px;
    margin-left: 24px;
    padding-top: 20px;
  }

  .search-results-shell {
    width: auto;
    max-width: none;
    margin-right: 24px;
    margin-left: 24px;
  }

  .search-hero-copy {
    max-width: calc(100vw - 84px);
  }

  .search-hero-copy h1 {
    font-size: 34px;
  }

  .global-search-form {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px 12px 12px;
  }

  .global-search-form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .search-scope-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-scope-tabs button {
    justify-content: center;
    width: auto;
  }

  .search-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .search-section-meta {
    flex-wrap: wrap;
    white-space: normal;
  }

  .search-row {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    padding: 13px 48px 13px 13px;
    overflow: hidden;
  }

  .search-row-main,
  .search-row-meta,
  .search-row h3,
  .search-row p {
    min-width: 0;
    max-width: calc(100vw - 140px);
  }

  .search-row h3,
  .search-row p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .search-row-meta {
    gap: 6px;
  }

  .search-row-meta-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .search-row-meta-item span {
    padding-top: 0;
  }

  .search-row-meta-wide > div {
    max-width: calc(100vw - 140px);
  }

  .search-row-meta-item strong {
    max-width: calc(100vw - 140px);
  }

  .search-entity-tag {
    min-height: 30px;
    font-size: 12px;
  }

  .virus-browse-row,
  .host-browse-row,
  .article-browse-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "taxonomy";
    padding: 13px;
  }

  .virus-browse-row .search-row-main,
  .virus-browse-row h3,
  .virus-browse-row p,
  .virus-taxonomy-panel,
  .virus-metric-bars,
  .host-browse-row .search-row-main,
  .host-browse-row h3,
  .host-browse-row p,
  .host-taxonomy-panel,
  .host-metric-bars,
  .article-row-main,
  .article-browse-row h3,
  .article-browse-row p,
  .article-coverage-panel {
    max-width: 100%;
  }

  .virus-taxonomy-trail,
  .host-taxonomy-trail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .virus-metric-bars,
  .host-metric-bars {
    grid-template-columns: 1fr;
  }

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

  .search-pagination {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .search-pagination span {
    order: -1;
    width: 100%;
    text-align: center;
  }

  .browse-layout {
    gap: 12px;
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .browse-hero {
    margin-bottom: 14px;
  }

  .browse-hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .browse-hero p:last-child {
    max-width: 100%;
    font-size: 14px;
  }

  .browse-filter-panel,
  .browse-results-panel {
    width: 100%;
    max-width: calc(100vw - 28px);
    overflow: hidden;
    padding: 13px;
  }

  .browse-filter-heading,
  .browse-results-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .browse-filter-row {
    grid-template-columns: 1fr;
  }

  .browse-result-summary {
    align-self: flex-start;
    text-align: left;
  }

  .browse-evidence-row {
    width: 100%;
    max-width: 100%;
    padding: 13px;
  }

  .browse-evidence-row .search-row-main,
  .browse-evidence-row .search-row-meta,
  .browse-evidence-row h3,
  .browse-evidence-row p,
  .browse-evidence-row .search-row-meta-wide > div,
  .browse-evidence-row .search-row-meta-item strong {
    max-width: 100%;
  }

  .browse-evidence-details dl {
    grid-template-columns: 1fr;
  }

  .browse-suggest-menu {
    position: static;
    margin-top: 6px;
  }

  .browse-active-filters button,
  .browse-ghost-button,
  .browse-pagination button {
    width: auto;
  }

  .browse-pagination {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .browse-pagination span {
    order: -1;
    width: 100%;
    text-align: center;
  }

  .entity-metric-grid,
  .entity-field-grid {
    grid-template-columns: 1fr;
  }

  .entity-section-heading {
    flex-direction: column;
    gap: 6px;
  }

  .article-detail-hero h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .article-detail-actions a {
    flex: 1 1 120px;
  }

  .article-section-tabs {
    grid-template-columns: 1fr;
  }

  .article-section-tabs button {
    width: 100%;
  }

  .article-section-heading,
  .article-evidence-group-heading,
  .article-evidence-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-evidence-entity-grid,
  .article-evidence-field-grid,
  .article-metadata-list,
  .article-reference-network-body {
    grid-template-columns: 1fr;
  }

  .article-reference-network {
    height: 430px;
  }

  .article-reference-network-detail {
    grid-template-columns: 1fr;
  }

  .article-reference-network-detail span,
  .article-reference-network-detail strong,
  .article-reference-network-detail em,
  .article-reference-network-detail small,
  .article-reference-network-detail p,
  .article-reference-network-detail a {
    grid-column: 1;
    grid-row: auto;
  }

  .article-detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-grid,
  .docs-two-column,
  .docs-evidence-list,
  .docs-interpretation-grid {
    grid-template-columns: 1fr;
  }

  .docs-quick-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .docs-quick-nav a,
  .docs-actions a {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .virus-detail-hero {
    padding: 16px;
  }

  .host-hero-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .host-hero-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .host-hero-images {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 352px);
  }

  .host-hero-image-button {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .host-image-viewer {
    padding: 12px;
  }

  .host-image-viewer-panel {
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .host-image-viewer-media {
    min-height: min(56vh, 440px);
  }

  .host-image-viewer-media img {
    max-height: 56vh;
  }

  .host-image-viewer-meta {
    max-height: 36vh;
    padding: 18px;
  }

  .host-image-viewer-nav {
    width: 40px;
    height: 40px;
  }

  .virus-detail-hero h1 {
    font-size: 30px;
  }

  .virus-detail-field-grid {
    grid-template-columns: 1fr;
  }

  .virus-ai-stack {
    min-height: 286px;
  }

  .virus-detail-section-heading {
    flex-direction: column;
    gap: 6px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-access-widget {
    justify-content: flex-start;
    width: 100%;
  }

  .access-text {
    max-width: calc(100vw - 72px);
  }

  input {
    width: 100%;
    min-width: 0;
  }

  button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 32px;
  }

  .home-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-card-date {
    grid-column: span 1;
  }

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

  .nav a,
  .nav summary {
    font-size: 12px;
  }

  .virus-taxonomy-trail,
  .host-taxonomy-trail {
    grid-template-columns: 1fr;
  }

  .virus-chart {
    min-height: 300px;
  }

  .virus-ai-stack-card header {
    align-items: flex-start;
    flex-direction: column;
  }

  .virus-ai-brief-copy {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .home-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-card-date {
    grid-column: span 1;
  }
}

.stats-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats-header {
  max-width: 860px;
  margin-bottom: 4px;
}

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

.stats-metric-card {
  position: relative;
  min-width: 0;
  min-height: 122px;
  padding: 16px 15px 14px;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 228, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(15, 61, 56, 0.07);
}

.stats-metric-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--stats-card-accent, var(--color-primary));
}

.stats-metric-card span,
.stats-metric-card small,
.stats-metric-card strong {
  display: block;
}

.stats-metric-card span {
  min-height: 34px;
  color: #475569;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
}

.stats-metric-card strong {
  margin-top: 8px;
  color: #111827;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

.stats-metric-card small {
  margin-top: 9px;
  color: var(--color-text-muted);
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.35;
}

.stats-metric-card-evidence {
  --stats-card-accent: #0F766E;
}

.stats-metric-card-virus_families {
  --stats-card-accent: #0E7490;
}

.stats-metric-card-virus_species {
  --stats-card-accent: #4338CA;
}

.stats-metric-card-host_orders {
  --stats-card-accent: #166534;
}

.stats-metric-card-host_species {
  --stats-card-accent: #B45309;
}

.stats-metric-card-literature {
  --stats-card-accent: #9D174D;
}

.stats-panel {
  min-width: 0;
  overflow: hidden;
}

.stats-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.stats-panel-heading h2 {
  margin: 2px 0 0;
}

.stats-panel-heading > span,
.stats-taxonomy-panel .virus-taxonomy-tree-actions > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(221, 231, 228, 0.9);
  border-radius: 999px;
  background: rgba(247, 250, 249, 0.72);
  color: #475569;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.stats-chart {
  width: 100%;
  min-height: 340px;
}

.stats-heatmap-chart {
  min-height: 420px;
}

.stats-taxonomy-panel {
  margin-top: 0;
}

.stats-taxonomy-panel .virus-taxonomy-tree-content {
  margin-top: 12px;
}

.stats-taxonomy-panel .virus-taxonomy-tree-scroll {
  padding-top: 10px;
}

.stats-tree-chart {
  min-height: 700px;
}

.stats-tree-toggle {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .stats-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .stats-page {
    gap: 14px;
  }

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

  .stats-panel-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .stats-panel-heading > span,
  .stats-taxonomy-panel .virus-taxonomy-tree-actions > span {
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .stats-taxonomy-panel .virus-taxonomy-tree-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .stats-tree-toggle {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .stats-metric-grid {
    grid-template-columns: 1fr;
  }

  .stats-metric-card {
    min-height: 108px;
  }

  .stats-metric-card span {
    min-height: 0;
  }

  .stats-chart {
    min-height: 300px;
  }

  .stats-heatmap-chart {
    min-height: 380px;
  }
}
