:root {
  --bg: #f3f7f5;
  --surface: #fff;
  --text: #172033;
  --muted: #667085;
  --line: #e4e7ec;
  --blue: #0b6b4a;
  --blue-soft: #eaf6f0;
  --code: #111827;
  --sidebar: 250px;
  --toc: 230px;
  --content-max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.75 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.layout {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr) var(--toc);
  min-height: 100vh;
}
.sidebar,
.toc {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  background: var(--surface);
}
.sidebar { border-right: 1px solid var(--line); padding: 24px 16px; }
.brand { display: flex; align-items: center; gap: 11px; padding: 0 8px 22px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0b6b4a, #22a06b);
  color: #fff;
  font-weight: 800;
}
.brand strong,
.brand small { display: block; }
.brand small { color: var(--muted); font-size: 11px; }
.doc-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin: 3px 0;
  border-radius: 9px;
  color: #344054;
  text-decoration: none;
  line-height: 1.35;
}
.doc-link:hover { background: #f2f4f7; }
.doc-link.active { background: var(--blue-soft); color: #07543a; font-weight: 650; }
.doc-link small { font-size: 10px; color: var(--blue); white-space: nowrap; }
.sidebar-note {
  margin-top: 22px;
  padding: 12px;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
}

.main { min-width: 0; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 251, .9);
  backdrop-filter: blur(10px);
}
.topbar span { font-weight: 650; }
.topbar small { color: var(--muted); }
.topbar a { color: var(--blue); text-decoration: none; font-weight: 650; }
.markdown-body {
  width: calc(100% - 48px);
  max-width: var(--content-max);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  padding: 42px clamp(36px, 3.2vw, 68px) 80px;
  border-radius: 0 0 16px 16px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(16, 24, 40, .025), 0 14px 36px rgba(16, 24, 40, .035);
}

h1 { margin: 0 0 24px; font-size: 34px; line-height: 1.25; }
h2 {
  margin: 54px 0 18px;
  padding-top: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
}
h3 { margin: 34px 0 12px; font-size: 19px; }
h4 { margin: 28px 0 10px; font-size: 16px; }
h2,
h3,
h4 { position: relative; }
.heading-link { margin-left: 8px; color: #b5bdca; text-decoration: none; font-weight: 400; opacity: 0; }
.markdown-body h2:hover .heading-link,
.markdown-body h3:hover .heading-link { opacity: 1; }
p { margin: 10px 0 16px; }
a { color: #087652; }
blockquote {
  margin: 18px 0;
  padding: 10px 18px;
  border-left: 4px solid #47b881;
  background: #effaf5;
  color: #344054;
}

table {
  display: table;
  width: 100%;
  max-width: 100%;
  margin: 18px 0 28px;
  border-collapse: collapse;
  table-layout: auto;
  font-size: 14px;
}
th,
td {
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}
th { background: #f8fafc; font-weight: 650; }
tr:nth-child(even) td { background: #fcfcfd; }
table p { margin: 0 0 6px; }
table p:last-child { margin-bottom: 0; }
table code { white-space: normal; overflow-wrap: anywhere; word-break: break-word; }

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #eef2f6;
  font: 13px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
}
pre { overflow: auto; padding: 17px 19px; border-radius: 10px; background: var(--code); color: #e5e7eb; }
pre code { padding: 0; background: transparent; color: inherit; }
img { max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; }
hr { margin: 40px 0; border: 0; border-top: 1px solid var(--line); }
ul,
ol { padding-left: 24px; }

.toc { border-left: 1px solid var(--line); padding: 28px 18px; }
.toc-title {
  margin: 0 8px 12px;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.toc-link {
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  color: #667085;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.45;
}
.toc-link.level-3 { padding-left: 20px; }
.toc-link:hover,
.toc-link.active { background: var(--blue-soft); color: #07543a; }
.toc-empty { color: var(--muted); font-size: 12px; }
footer {
  width: calc(100% - 48px);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 25px clamp(36px, 3.2vw, 68px) 45px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.gallery-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 2px 8px rgba(16, 24, 40, .05);
}
.gallery-card:hover { border-color: #93c5fd; box-shadow: 0 8px 22px rgba(37, 99, 235, .12); }
.gallery-card img { display: block; width: 100%; height: 260px; border: 0; border-radius: 0; background: #f8fafc; object-fit: contain; }
.gallery-card span { display: block; padding: 10px 12px; color: #475467; font-size: 12px; overflow-wrap: anywhere; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  background: rgba(8, 15, 30, .92);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(95vw, 1500px); max-height: 86vh; border: 0; border-radius: 8px; background: #fff; }
.lightbox-caption { margin-top: 10px; color: #fff; font-size: 13px; }
.lightbox-close { position: absolute; top: 14px; right: 20px; border: 0; background: transparent; color: #fff; font-size: 42px; cursor: pointer; }
.mobile-header,
.back-top { display: none; }

body[data-page="tidyvo-notification-testing.html"] .markdown-body { max-width: 1900px; overflow-x: auto; }
.testing-controls {
  position: sticky;
  top: 68px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 28px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
  backdrop-filter: blur(10px);
}
.testing-progress strong,
.testing-progress span { display: block; }
.testing-progress span { margin-top: 2px; color: var(--muted); font-size: 12px; }
.testing-filters { display: flex; gap: 10px; }
.testing-filters label { color: var(--muted); font-size: 12px; }
.testing-filters select,
.testing-filters input,
.test-status {
  display: block;
  min-height: 36px;
  margin-top: 3px;
  padding: 6px 9px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.testing-filters input { width: 240px; }
.testing-table { min-width: 980px; font-size: 13px; line-height: 1.55; }
.testing-table th { position: sticky; top: 140px; z-index: 3; }
.testing-table th:nth-last-child(-n+2),
.testing-table td:nth-last-child(-n+2) { min-width: 130px; }
.test-status[data-value="通过"] { border-color: #86efac; background: #f0fdf4; color: #166534; }
.test-status[data-value="不通过"] { border-color: #fca5a5; background: #fef2f2; color: #991b1b; }
.test-status[data-value="阻塞"] { border-color: #fcd34d; background: #fffbeb; color: #92400e; }
.test-feedback-preview { display: block; max-width: 210px; max-height: 72px; overflow: hidden; color: #475467; }
.test-feedback-button {
  margin-top: 7px;
  padding: 5px 9px;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  background: var(--blue-soft);
  color: #1d4ed8;
  cursor: pointer;
}
.feedback-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(15,23,42,.42); }
.feedback-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  z-index: 80;
  width: min(440px, 94vw);
  height: 100vh;
  padding: 24px;
  background: #fff;
  box-shadow: -16px 0 40px rgba(15,23,42,.18);
  transition: right .2s ease;
}
.feedback-drawer.open { right: 0; }
.feedback-drawer header { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.feedback-drawer header h2 { margin: 2px 0 20px; padding: 0; border: 0; font-size: 22px; }
.feedback-drawer header small { color: var(--blue); font-weight: 700; }
.feedback-drawer header button { border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.feedback-drawer label { color: #475467; font-weight: 650; }
.feedback-drawer textarea { width: 100%; margin-top: 8px; padding: 12px; border: 1px solid #d0d5dd; border-radius: 9px; resize: vertical; font: inherit; }
.feedback-drawer form div { display: flex; justify-content: flex-end; gap: 10px; margin-top: 12px; }
.feedback-drawer form button { padding: 8px 13px; border: 1px solid #bfdbfe; border-radius: 8px; background: #fff; color: #1d4ed8; cursor: pointer; }
.feedback-drawer form button[type="submit"] { border-color: var(--blue); background: var(--blue); color: #fff; }

@media (max-width: 1680px) {
  .layout { grid-template-columns: var(--sidebar) minmax(0, 1fr); }
  .toc { display: none; }
}

@media (max-width: 1320px) {
  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
  }
  .mobile-header button { border: 0; background: transparent; color: var(--blue); font-size: 14px; }
  .mobile-header-spacer { width: 28px; }
  .layout { display: block; }
  .sidebar {
    position: fixed;
    left: -290px;
    z-index: 30;
    width: 270px;
    transition: left .2s;
    box-shadow: 10px 0 30px rgba(0, 0, 0, .12);
  }
  .sidebar.open { left: 0; }
  .toc {
    position: fixed;
    right: -280px;
    z-index: 30;
    display: block;
    width: 260px;
    transition: right .2s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .12);
  }
  .toc.open { right: 0; }
  .topbar { display: none; }
  .markdown-body { width: calc(100% - 40px); }
  .back-top {
    position: fixed;
    right: 16px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #0b6b4a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
  }
}

.nav-group { margin: 0 0 17px; }
.nav-group-title,
.nav-archive summary {
  padding: 0 12px 5px;
  color: #84918b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav-archive { margin-top: 6px; border-top: 1px solid var(--line); padding-top: 14px; }
.nav-archive summary { cursor: pointer; list-style: none; }
.nav-archive summary::-webkit-details-marker { display: none; }
.nav-archive summary::after { content: "＋"; float: right; color: #98a2b3; font-size: 13px; }
.nav-archive[open] summary::after { content: "−"; }

.home-body { padding: 0; overflow: hidden; background: transparent; box-shadow: none; }
.hub-home { padding-bottom: 70px; }
.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 40px;
  align-items: center;
  min-height: 320px;
  padding: 62px clamp(36px, 5vw, 84px);
  border-radius: 0 0 24px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(94, 234, 180, .2), transparent 28%),
    linear-gradient(135deg, #063f2d 0%, #0b6b4a 58%, #14845d 100%);
}
.hub-hero h1 { margin: 10px 0 12px; font-size: clamp(40px, 5vw, 68px); letter-spacing: -.035em; }
.hub-hero p { max-width: 720px; margin: 0; color: #d9f3e8; font-size: 18px; }
.eyebrow { color: #8ae4bd; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.hub-version { display: flex; flex-direction: column; justify-content: center; min-height: 165px; padding: 25px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.hub-version small { color: #c7eadc; }
.hub-version strong { margin: 3px 0; font-size: 42px; line-height: 1.1; }
.hub-version span { color: #e3f6ed; }
.hub-status-grid,
.quick-grid,
.map-grid { display: grid; gap: 16px; }
.hub-status-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: -30px clamp(24px, 4vw, 64px) 0; position: relative; z-index: 1; }
.status-card { min-height: 166px; padding: 23px; border: 1px solid #dfe9e4; border-radius: 16px; background: #fff; box-shadow: 0 12px 30px rgba(14, 73, 52, .08); }
.status-card > span { color: var(--muted); font-size: 12px; }
.status-card strong { display: block; margin: 3px 0 8px; color: #0b6b4a; font-size: 30px; line-height: 1.2; }
.status-card p { margin: 0 0 10px; color: #596b63; font-size: 13px; line-height: 1.6; }
.status-card a { font-size: 13px; font-weight: 700; text-decoration: none; }
.hub-section { margin: 60px clamp(24px, 4vw, 64px) 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.section-heading h2 { margin: 3px 0 0; padding: 0; border: 0; font-size: 27px; }
.section-heading > p { color: var(--muted); font-size: 13px; }
.hub-section .eyebrow { color: #15815b; }
.quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quick-card { position: relative; min-height: 210px; padding: 22px; border: 1px solid #dfe9e4; border-radius: 16px; background: #fff; color: var(--text); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.quick-card:hover { transform: translateY(-3px); border-color: #8dc8ac; box-shadow: 0 14px 30px rgba(14, 73, 52, .09); }
.quick-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 24px; border-radius: 14px; color: #0b6b4a; background: #eaf6f0; font-size: 11px; font-weight: 850; }
.quick-card strong { display: block; font-size: 17px; }
.quick-card p { margin: 8px 0 24px; color: #66756e; font-size: 13px; line-height: 1.65; }
.quick-card em { position: absolute; left: 22px; bottom: 19px; color: #0b6b4a; font-size: 12px; font-style: normal; font-weight: 750; }
.map-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.map-grid > div { padding: 24px; border-top: 3px solid #159466; background: #edf7f2; }
.map-grid span { color: #159466; font-size: 12px; font-weight: 800; }
.map-grid strong { display: block; margin: 8px 0 7px; font-size: 17px; }
.map-grid p { margin: 0; color: #5c6c65; font-size: 13px; line-height: 1.65; }
.hub-note { display: flex; gap: 14px; margin: 42px clamp(24px, 4vw, 64px) 0; padding: 18px 20px; border: 1px solid #b9d9c9; border-radius: 13px; color: #365e4f; background: #f0f9f5; font-size: 13px; }
.hub-note strong { white-space: nowrap; color: #0b6b4a; }
.release-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border: 1px solid #b9d9c9;
  border-radius: 18px;
  color: var(--text);
  background: linear-gradient(120deg, #ffffff 0%, #edf8f3 100%);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.release-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14, 73, 52, .09); }
.release-card strong { display: block; margin: 5px 0; color: #0b6b4a; font-size: 30px; }
.release-card p { margin: 0; color: #61736a; }
.release-badge { color: #15815b; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.release-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.release-meta span { color: #6b7d74; font-size: 12px; }
.release-meta em { color: #0b6b4a; font-size: 13px; font-style: normal; font-weight: 750; }

.version-release { padding-bottom: 70px; }
.version-hero { padding: 52px clamp(36px, 5vw, 84px); border-radius: 0 0 24px 24px; color: #fff; background: linear-gradient(135deg, #063f2d, #0b6b4a 65%, #159466); }
.version-hero > a { color: #a8ead0; text-decoration: none; font-weight: 700; }
.version-hero > span { color: #d5eee3; }
.version-title { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 32px; align-items: end; margin-top: 52px; }
.version-title h1 { margin: 8px 0 10px; font-size: clamp(42px, 5vw, 68px); letter-spacing: -.035em; }
.version-title p { max-width: 760px; margin: 0; color: #d9f3e8; font-size: 16px; }
.version-stamp { display: flex; flex-direction: column; padding: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 17px; background: rgba(255,255,255,.1); }
.version-stamp small { color: #a8ead0; font-weight: 800; }
.version-stamp strong { margin: 2px 0; font-size: 42px; line-height: 1.1; }
.version-stamp span { color: #d9f3e8; }
.version-section { margin: 54px clamp(24px, 4vw, 64px) 0; }
.version-delivery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.delivery-primary,
.delivery-stat { min-height: 220px; padding: 25px; border: 1px solid #dfe9e4; border-radius: 17px; background: #fff; }
.delivery-primary { position: relative; color: var(--text); text-decoration: none; }
.delivery-primary > span { color: #15815b; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.delivery-primary strong { display: block; margin: 16px 0 7px; font-size: 23px; }
.delivery-primary p { max-width: 570px; margin: 0; color: #63746c; }
.delivery-primary em { position: absolute; left: 25px; bottom: 23px; color: #0b6b4a; font-style: normal; font-weight: 750; }
.delivery-stat > span { color: #788a82; font-size: 12px; }
.delivery-stat strong { display: block; margin: 18px 0 8px; color: #0b6b4a; font-size: 30px; }
.delivery-stat p { margin: 0; color: #63746c; font-size: 13px; }

.competitor-page { padding-bottom: 22px; }
.competitor-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 12px;
}
.competitor-breadcrumb a { color: #0b6b4a; text-decoration: none; font-weight: 700; }
.competitor-breadcrumb span { color: #a0aaa5; }
.competitor-breadcrumb strong { color: #43554d; }
.competitor-hero {
  overflow: hidden;
  padding: 44px clamp(24px, 4vw, 58px);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(94, 234, 180, .24), transparent 30%),
    linear-gradient(135deg, #063f2d 0%, #0b6b4a 58%, #159466 100%);
}
.competitor-hero h1 { margin: 8px 0 10px; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.035em; }
.competitor-hero > p { max-width: 760px; margin: 0; color: #d9f3e8; font-size: 16px; }
.competitor-stats { display: flex; gap: 36px; margin-top: 34px; }
.competitor-stats div { min-width: 82px; }
.competitor-stats strong,
.competitor-stats span { display: block; }
.competitor-stats strong { font-size: 30px; line-height: 1.1; }
.competitor-stats span { margin-top: 5px; color: #bce8d4; font-size: 11px; letter-spacing: .08em; }
.competitor-title {
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--line);
}
.competitor-title h1 { margin: 7px 0 8px; }
.competitor-title p { color: var(--muted); }
.competitor-section { margin-top: 42px; }
.competitor-section .section-heading h2 { margin: 3px 0 0; padding: 0; border: 0; }
.category-grid,
.product-grid { display: grid; gap: 16px; }
.category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-card,
.product-card,
.report-row {
  position: relative;
  border: 1px solid #dfe9e4;
  border-radius: 16px;
  color: var(--text);
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-card:hover,
.product-card:hover,
.report-row:hover {
  transform: translateY(-2px);
  border-color: #8dc8ac;
  box-shadow: 0 12px 28px rgba(14, 73, 52, .09);
}
.category-card { min-height: 210px; padding: 24px; }
.category-card > span,
.product-card small,
.report-row small { color: #15815b; font-size: 10px; font-weight: 850; letter-spacing: .11em; }
.category-card strong,
.product-card strong,
.report-row strong { display: block; }
.category-card strong { margin-top: 26px; font-size: 21px; }
.category-card p,
.product-card p { color: var(--muted); font-size: 13px; }
.category-card em,
.product-card em { position: absolute; right: 22px; bottom: 20px; color: #0b6b4a; font-size: 12px; font-style: normal; font-weight: 750; }
.product-card { min-height: 205px; padding: 23px 23px 54px; }
.product-card strong { margin-top: 10px; font-size: 18px; }
.report-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.report-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #376251;
  background: #eef8f3;
  font-size: 10px;
}
.report-list { display: grid; gap: 12px; }
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
}
.report-row strong { margin-top: 5px; font-size: 16px; }
.report-row em { flex: 0 0 auto; color: #0b6b4a; font-size: 12px; font-style: normal; font-weight: 750; }
.report-evidence-note {
  display: flex;
  gap: 12px;
  margin: -6px 0 30px;
  padding: 13px 15px;
  border: 1px solid #b9d9c9;
  border-radius: 11px;
  color: #43665a;
  background: #f0f9f5;
  font-size: 12px;
}
.report-evidence-note strong { flex: 0 0 auto; color: #0b6b4a; }
body[data-page^="competitors/"] .markdown-body table { display: block; overflow-x: auto; }
body[data-page^="competitors/"] .markdown-body h1 { overflow-wrap: anywhere; }

@media (max-width: 1050px) {
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .version-delivery-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .home-body { padding: 0; }
  .hub-hero { grid-template-columns: 1fr; min-height: auto; padding: 42px 22px 66px; }
  .hub-hero h1 { font-size: 40px; }
  .hub-version { min-height: auto; }
  .hub-status-grid { grid-template-columns: 1fr; margin: -32px 16px 0; }
  .hub-section { margin: 46px 16px 0; }
  .quick-grid,
  .map-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .hub-note { align-items: flex-start; flex-direction: column; margin: 32px 16px 0; }
  .release-card { align-items: flex-start; flex-direction: column; }
  .release-meta { align-items: flex-start; }
  .version-hero { padding: 36px 22px 48px; }
  .version-title { grid-template-columns: 1fr; margin-top: 34px; }
  .version-stamp { max-width: 220px; }
  .version-section { margin: 42px 16px 0; }
  .version-delivery-grid { grid-template-columns: 1fr; }
  .delivery-primary { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .competitor-stats { gap: 22px; }
  .report-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .report-evidence-note { flex-direction: column; }
}

@media (max-width: 800px) {
  .mobile-header strong {
    max-width: calc(100vw - 130px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .markdown-body {
    width: 100%;
    padding: 28px 16px 60px;
    border-radius: 0;
  }
  .markdown-body.home-body { padding: 0; }
  h1 { font-size: 27px; }
  h2 { margin-top: 42px; font-size: 22px; }
  table { font-size: 12px; line-height: 1.5; }
  th,
  td { padding: 7px 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img { height: auto; max-height: 420px; }
  footer { width: 100%; padding: 20px 16px; }
  .testing-controls { top: 60px; align-items: stretch; flex-direction: column; }
  .testing-filters { flex-direction: column; }
  .testing-filters input { width: 100%; }
  .testing-table { min-width: 920px; }
  .testing-table th { top: 208px; }
}
