:root {
  color-scheme: dark;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

* { box-sizing: border-box; }

body {
  background: #07111f;
  color: #e8edf5;
  margin: 0;
}

a { color: #70b7ff; }

.report-topbar {
  background: #101b2c;
  border-bottom: 1px solid #27364b;
}

.report-topbar > div,
.report-main {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
}

.report-topbar > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 68px;
}

.report-brand {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.report-topbar nav { display: flex; gap: 22px; }
.report-topbar nav a { font-weight: 700; text-decoration: none; }
.report-topbar nav a:hover { text-decoration: underline; }

.report-main { padding-bottom: 64px; padding-top: 42px; }

.report-heading { max-width: 780px; }
.report-heading > p:first-child {
  color: #6ee7b7;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.report-heading h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.report-heading h1 + p { color: #b8c4d6; margin: 14px 0 0; }

.report-summary {
  border-bottom: 1px solid #2b3a50;
  border-top: 1px solid #2b3a50;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.report-summary div { padding: 18px 20px 18px 0; }
.report-summary span { color: #93a4ba; display: block; font-size: 13px; }
.report-summary strong { display: block; font-size: 18px; margin-top: 3px; overflow-wrap: anywhere; }

.report-section { margin-top: 42px; }
.report-section h2,
.report-scope h2 { font-size: 23px; margin: 0 0 14px; }
.report-context { color: #aebbd0; margin: -4px 0 14px; max-width: 820px; }

.report-table-wrap {
  border: 1px solid #2b3a50;
  border-radius: 8px;
  overflow-x: auto;
}

table { border-collapse: collapse; min-width: 800px; width: 100%; }
th, td { border-bottom: 1px solid #26354a; padding: 13px 15px; text-align: left; vertical-align: top; }
thead th { background: #111e31; color: #aebbd0; font-size: 12px; text-transform: uppercase; }
tbody th { color: #fff; }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

.report-result { font-weight: 750; }
.report-result.is-ok { color: #67e8a9; }
.report-result.is-warn { color: #facc6b; }
.report-result.is-bad { color: #ff8b8b; }

.report-scope {
  border-left: 3px solid #2dd4bf;
  margin-top: 42px;
  max-width: 900px;
  padding: 2px 0 2px 20px;
}
.report-scope p { color: #bdc8d8; }

@media (max-width: 720px) {
  .report-topbar > div { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 15px; padding-top: 15px; }
  .report-topbar nav { flex-wrap: wrap; gap: 10px 18px; }
  .report-main { padding-bottom: 42px; padding-top: 30px; }
  .report-topbar > div,
  .report-main { padding-left: 16px; padding-right: 16px; }
  .report-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-summary div { padding-right: 12px; }
}
