:root {
  --ink: #17131a;
  --ink-2: #221c27;
  --ink-3: #0d0a10;
  --paper: #ffffff;
  --paper-2: #f7f4f0;
  --paper-3: #fbfaf7;
  --line: #e8e1d9;
  --line-2: #f0ebe4;
  --red: #c42839;
  --red-dp: #8e1220;
  --red-lt: #e2495a;
  --red-soft: #fbecee;
  --red-edge: rgba(196, 40, 57, .32);
  --gold: #b3852c;
  --pos: #157a52;
  --pos-soft: #e9f6f0;
  --pos-edge: rgba(21, 122, 82, .28);
  --neg: #ad2e42;
  --neg-soft: #fbecef;
  --neg-edge: rgba(173, 46, 66, .26);
  --copy: #453f42;
  --title: #1c1720;
  --dim: #857b7d;
  --dim-2: #aba19f;
  --doc-w: 740px;
  --round: 14px;
  --round-sm: 9px;
  --bar-h: 61px;
  --shadow: 0 1px 2px rgba(23, 19, 26, .05), 0 10px 28px rgba(23, 19, 26, .07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.74;
  color: var(--copy);
  background: var(--paper-2);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color .18s ease;
}

a:hover {
  color: var(--red-dp);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 5px;
}

ul, ol {
  padding-left: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  max-width: calc(var(--doc-w) + 96px);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand img {
  width: 116px;
  height: 34px;
  object-fit: contain;
}

.toc-bar {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.toc-bar::-webkit-scrollbar {
  display: none;
}

.toc-bar li {
  flex: none;
  display: flex;
  align-items: center;
}

.toc-pill {
  display: block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: #b6acae;
  padding: 6px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.toc-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.toc-pill.is-live {
  color: #fff;
  background: var(--red);
  border-color: var(--red-lt);
}

.toc-pill-caret {
  flex: none;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
  color: #cfc5c7;
  cursor: pointer;
  transition: transform .22s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.toc-pill-caret::before {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.toc-pill-caret[aria-expanded='true'] {
  color: #fff;
  border-color: var(--red-lt);
  background: var(--red);
  transform: rotate(180deg);
}

.toc-sub-panel {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.toc-sub-panel.is-open {
  max-height: 320px;
  overflow-y: auto;
}

.toc-sub-panel-inner {
  padding: 12px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.toc-sub-panel a {
  font-size: 12.2px;
  font-weight: 700;
  color: var(--title);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-3);
}

.toc-sub-panel a:hover {
  color: var(--red);
  border-color: var(--red-edge);
}

.trail {
  padding: 14px 0 0;
}

.trail ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trail li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.6px;
  font-weight: 700;
  color: var(--dim);
}

.trail li + li::before {
  content: '\203A';
  color: var(--dim-2);
  font-size: 13px;
}

.trail a {
  color: var(--dim);
}

.trail a:hover {
  color: var(--red);
}

.trail [aria-current='page'] {
  color: var(--title);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13.4px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 12px 24px;
  border-radius: var(--round-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.cta.is-solid {
  color: #fff;
  background: linear-gradient(180deg, var(--red-lt) 0%, var(--red) 55%, var(--red-dp) 100%);
  box-shadow: 0 6px 16px rgba(196, 40, 57, .3);
}

.cta.is-solid:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(196, 40, 57, .38);
}

.cta.is-wide {
  width: 100%;
}

main {
  display: block;
  padding: 26px 0 8px;
}

.doc {
  padding: 0 0 10px;
  min-width: 0;
}

.layout {
  display: block;
}

.promo-rail {
  margin: 0 0 30px;
}

.promo-card {
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-body {
  padding: 18px 18px 20px;
}

.promo-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 8px;
}

.promo-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--title);
  line-height: 1.32;
  margin: 0 0 8px;
}

.promo-txt {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
  margin: 0 0 16px;
}

@media (min-width: 1100px) {
  .wrap.layout {
    max-width: calc(var(--doc-w) + 96px + 340px);
  }

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

  .promo-rail {
    margin: 0;
    position: sticky;
    top: calc(var(--bar-h) + 20px);
  }
}

.block {
  border-top: 1px solid var(--line-2);
  padding: 26px 0 4px;
  scroll-margin-top: calc(var(--bar-h) + 16px);
}

.block.is-lead {
  border-top: 0;
  padding-top: 2px;
}

h1 {
  font-size: 28px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--title);
  margin: 0 0 14px;
}

h2 {
  font-size: 20px;
  line-height: 1.34;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--title);
  margin: 0 0 13px;
  padding-left: 16px;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--red-lt), var(--red));
}

h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--title);
  margin: 22px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  line-height: 1.5;
}

h3::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--red);
  flex: none;
  transform: translateY(-1px);
}

p { margin: 0 0 13px; }

strong {
  color: var(--title);
  font-weight: 800;
}

.lead-text {
  font-size: 15px;
  color: var(--copy);
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
}

.facts li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-3);
  padding: 11px 13px;
}

.facts b {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--red-dp);
  margin-bottom: 2px;
}

.facts span {
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 4px 0 22px;
}

.hero-media {
  width: 100%;
  height: auto;
  display: block;
}

.hero-body {
  padding: 20px 24px 24px;
  text-align: center;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
}

.hero-top span {
  font-size: 10.4px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-top strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-edge);
  border-radius: 999px;
  padding: 2px 9px;
}

.hero-big {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--red);
}

.hero-sub {
  margin: 8px 0 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--title);
}

.hero .cta {
  max-width: 320px;
  margin: 0 auto;
}

.hero-list {
  list-style: none;
  margin: 18px auto 0;
  padding: 15px 0 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 8px;
  text-align: left;
  max-width: 420px;
}

.hero-list li {
  font-size: 12.8px;
  font-weight: 600;
  color: var(--copy);
  line-height: 1.55;
}

.offer-note {
  margin: 14px 0 0;
  font-size: 10.6px;
  line-height: 1.55;
  color: var(--dim);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.score {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  margin: 0 0 22px;
}

.score-top {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #33141b 100%);
  padding: 22px 24px;
}

.score-dial {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--red) 0 var(--fill, 90%), rgba(255, 255, 255, .14) var(--fill, 90%) 100%);
}

.score-dial::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--ink-3);
}

.score-num {
  position: relative;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
}

.score-max {
  position: relative;
  font-size: 10.4px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin-top: 5px;
}

.score-cap {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-lt);
  margin: 0 0 7px;
}

.score-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0 0 7px;
}

.score-lede {
  font-size: 12.4px;
  color: #c6bcbf;
  margin: 0;
  line-height: 1.65;
}

.stars {
  display: inline-flex;
  gap: 3px;
  line-height: 1;
  margin-top: 8px;
}

.stars i {
  width: 14px;
  height: 14px;
  display: block;
  background: currentColor;
  color: var(--gold);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.8-5.1 4.7 1.4 6.8L12 17.3 5.9 20.6l1.4-6.8L2.2 9.1l6.9-.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.8-5.1 4.7 1.4 6.8L12 17.3 5.9 20.6l1.4-6.8L2.2 9.1l6.9-.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stars i.is-off {
  color: rgba(190, 178, 181, .38);
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 28px;
  padding: 20px 24px 22px;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
}

.score-label {
  font-size: 12.2px;
  font-weight: 700;
  color: var(--title);
  margin: 0 0 5px;
}

.score-track {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: var(--line-2);
  overflow: hidden;
}

.score-fill {
  display: block;
  height: 100%;
  width: var(--fill);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-lt), var(--red));
}

.score-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--red-dp);
  text-align: right;
}

.score-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line-2);
  background: var(--paper-3);
  padding: 14px 24px;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 13px 16px 13px 52px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper-3);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 13px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--red-lt), var(--red-dp));
  color: #fff;
  font-size: 12.4px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  color: var(--red-dp);
}

.tbl-wrap {
  border: 1px solid var(--line);
  border-radius: var(--round);
  overflow: hidden;
  margin: 0 0 18px;
  background: var(--paper);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.2px;
}

thead th {
  text-align: left;
  font-size: 10.4px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 12px 16px;
  white-space: nowrap;
}

tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--title);
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
  width: 38%;
  background: var(--paper-3);
}

tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
  line-height: 1.6;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) td {
  background: var(--paper-3);
}

tbody tr:nth-child(even) th {
  background: var(--paper-2);
}

.tbl-wrap.is-specs tbody td {
  font-size: 12.6px;
}

.tbl-wrap.is-verdict thead th {
  width: 50%;
}

.tbl-wrap.is-verdict thead th:first-child {
  background: var(--pos);
}

.tbl-wrap.is-verdict thead th:last-child {
  background: var(--neg);
}

.tbl-wrap.is-verdict td {
  padding: 16px 18px;
  vertical-align: top;
  background: var(--paper);
  border-bottom: 0;
}

.tbl-wrap.is-verdict td:first-child {
  border-right: 1px solid var(--line-2);
}

.verdict-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.verdict-list li {
  position: relative;
  padding-left: 25px;
  font-size: 12.8px;
  line-height: 1.6;
}

.verdict-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.verdict-list.is-pos li::before {
  content: '\2713';
  color: var(--pos);
  background: var(--pos-soft);
}

.verdict-list.is-neg li::before {
  content: '\2715';
  color: var(--neg);
  background: var(--neg-soft);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tags li {
  font-size: 11.6px;
  font-weight: 700;
  color: var(--copy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}

.figure {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: var(--round);
  border: 1px solid var(--line);
}

.figure img {
  width: 100%;
  height: auto;
}

.float-img {
  float: left;
  width: 260px;
  margin: 4px 22px 14px 0;
  border-radius: var(--round);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.float-img img {
  width: 100%;
  height: auto;
}

.float-img figcaption {
  padding: 8px 13px;
  font-size: 10.6px;
  color: var(--dim);
  background: var(--paper-3);
  border-top: 1px solid var(--line-2);
}

.clear { clear: both; }

.split-figure {
  margin: 4px 0 18px;
  display: block;
  border-radius: var(--round);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 18px;
}

.bonus-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--red-edge);
  box-shadow: var(--shadow);
}

.bonus-card img {
  width: 100%;
  height: auto;
  display: block;
}

.slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 18px;
}

.slot {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.slot:hover {
  transform: translateY(-3px);
  border-color: var(--red-edge);
  box-shadow: 0 10px 22px rgba(23, 19, 26, .12);
}

.slot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.slot figcaption {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.4px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--title);
  text-align: center;
  padding: 7px 6px 8px;
  border-top: 1px solid var(--line-2);
}

.faq {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
}

.drop {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  overflow: hidden;
}

.drop.is-open {
  border-color: var(--red-edge);
}

.drop-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  font-family: inherit;
  font-size: 13.2px;
  font-weight: 800;
  color: var(--title);
  text-align: left;
  background: var(--paper-3);
  border: 0;
  cursor: pointer;
  padding: 14px 16px;
  line-height: 1.45;
  transition: background .2s ease, color .2s ease;
}

.drop-q:hover {
  color: var(--red);
  background: var(--red-soft);
}

.drop-q::after {
  content: '';
  width: 9px;
  height: 9px;
  flex: none;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .24s ease;
}

.drop.is-open .drop-q::after {
  transform: rotate(225deg) translateY(-2px);
}

.drop-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.drop.is-open .drop-body {
  max-height: 420px;
}

.drop-inner {
  border-top: 1px solid var(--line);
  padding: 15px 16px;
}

.drop-inner p {
  margin: 0;
  font-size: 13px;
}

.author {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 16px;
  background: linear-gradient(120deg, var(--paper-3), var(--paper));
  box-shadow: var(--shadow);
  padding: 22px 24px;
  margin: 24px 0 0;
}

.author-shot {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--red-edge);
}

.author-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-cap {
  font-size: 9.8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-dp);
  margin: 0 0 5px;
}

.author-name {
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--title);
  margin: 0 0 3px;
}

.author-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  margin: 0 0 12px;
}

.author p {
  font-size: 13px;
  margin: 0;
}

.site-footer {
  margin-top: 30px;
  background: var(--ink);
  color: #b8adb0;
}

.footer-top {
  padding: 36px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
}

.footer-brand {
  display: block;
  margin-left: -6px;
}

.footer-brand img {
  width: 118px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 12px;
  color: #a89ea0;
  line-height: 1.72;
  margin: 0 0 16px;
  max-width: 440px;
}

.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .92;
  transition: opacity .18s ease, transform .18s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social img {
  width: 22px;
  height: 22px;
}

.footer-cap {
  font-size: 9.8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #948a8c;
  margin: 0 0 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.footer-nav a {
  font-size: 12.4px;
  font-weight: 700;
  color: #d4c9cb;
}

.footer-nav a:hover {
  color: var(--red-lt);
}

.responsible {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
}

.responsible-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 22px;
}

.responsible-txt {
  flex: 1;
  min-width: 240px;
}

.responsible-txt p {
  margin: 0 0 8px;
  font-size: 11.6px;
  line-height: 1.7;
  color: #a89ea0;
  max-width: 620px;
}

.responsible-txt p:last-child {
  margin-bottom: 0;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.4px;
  font-weight: 800;
  color: #fff;
  border: 1px solid var(--red-lt);
  border-radius: 999px;
  padding: 5px 13px;
  background: rgba(196, 40, 57, .22);
  white-space: nowrap;
  margin: 0 0 10px;
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 20px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: none;
}

.badge-row li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.badge-row img {
  max-width: 100px;
  max-height: 54px;
  width: auto;
  height: auto;
  opacity: .88;
  filter: grayscale(.2) brightness(1.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.2px;
  color: #948a8c;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(23, 19, 26, .18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, border-color .2s ease;
}

.to-top.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  border-color: var(--red);
}

.to-top::before {
  content: '';
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--red);
  border-top: 2px solid var(--red);
  transform: rotate(45deg) translate(2px, 2px);
}

@media (min-width: 1401px) {
  :root {
    --doc-w: 840px;
  }

  body {
    font-size: 14.5px;
  }

  .doc {
    padding: 6px 0 14px;
  }
}

@media (min-width: 1900px) {
  :root {
    --doc-w: 920px;
  }

  body {
    background: radial-gradient(ellipse at top, var(--paper-2) 0%, #f1ece5 100%);
  }
}

@media (max-width: 900px) {
  .slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .score-top {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  :root {
    --bar-h: 54px;
  }

  .wrap {
    padding: 0 16px;
  }

  .brand img {
    width: 96px;
    height: 29px;
  }

  .header-top-row {
    height: 54px;
    gap: 10px;
  }

  .toc-bar {
    height: 54px;
  }

  .toc-pill {
    font-size: 11.4px;
    padding: 5px 11px;
  }

  .doc {
    padding: 0 0 10px;
  }

  h1 { font-size: 22px; }
  h2 { font-size: 17.5px; }

  .hero-big { font-size: 34px; }

  .float-img {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .author {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    text-align: center;
  }

  .author-shot {
    margin: 0 auto;
  }

  .score-top {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    padding: 20px 18px;
  }

  .score-grid {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 18px;
    padding-right: 18px;
  }

  .score-foot {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .responsible-row {
    flex-direction: column;
  }

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

  .to-top {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 460px) {
  .slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tbl-wrap.is-verdict table,
  .tbl-wrap.is-verdict tbody,
  .tbl-wrap.is-verdict tr,
  .tbl-wrap.is-verdict td {
    display: block;
    width: 100%;
  }

  .tbl-wrap.is-verdict thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .tbl-wrap.is-verdict td:first-child {
    border-right: 0;
  }

  .tbl-wrap.is-verdict td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 7px;
    padding: 6px 11px;
    margin: 0 0 12px;
  }

  .tbl-wrap.is-verdict td:first-child::before {
    background: var(--pos);
  }

  .tbl-wrap.is-verdict td:last-child::before {
    background: var(--neg);
  }
}
