@font-face { font-family: Montserrat; src: url('../fonts/montserrat-400.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: Montserrat; src: url('../fonts/montserrat-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: Montserrat; src: url('../fonts/montserrat-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: Montserrat; src: url('../fonts/montserrat-700.ttf') format('truetype'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: Montserrat; src: url('../fonts/montserrat-800.ttf') format('truetype'); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --ink: #050608;
  --ink-soft: #15131d;
  --paper: #ffffff;
  --paper-warm: #f5f1e9;
  --field: #edefF2;
  --text: #3e4049;
  --muted: #6d707a;
  --mint: #06e5a0;
  --mint-dark: #02b87f;
  --violet: #9e01ff;
  --red: #dc143c;
  --line: #d9dce2;
  --shadow: 0 2px 8px rgba(5, 6, 8, .12);
  --radius: 6px;
  --section-gap: 20px;
  --header-height: 75px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background:
    repeating-linear-gradient(90deg, rgba(5, 6, 8, .018) 0 1px, transparent 1px 38px),
    var(--field);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p, ul, ol { margin: 0; }
h1, h2, h3 { color: var(--ink); width: 100%; max-width: none; text-wrap: wrap; }
h1 { font-size: 32px; line-height: 1.14; font-weight: 800; letter-spacing: -.035em; text-transform: uppercase; }
h2 { font-size: 28px; line-height: 1.28; font-weight: 700; letter-spacing: -.025em; }
h3 { font-size: 20px; line-height: 1.6; font-weight: 700; text-transform: uppercase; }
p, li { word-break: normal; overflow-wrap: normal; hyphens: none; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  font-weight: 700;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: #fff;
  background: var(--ink);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--mint) 0 52%, var(--paper-warm) 52% 72%, var(--red) 72% 86%, var(--violet) 86%) 1;
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.brand { display: inline-flex; width: max-content; }
.brand img { width: 135px; height: 34px; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  height: 100%;
}

.desktop-nav a,
.mobile-menu nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a::before,
.desktop-nav a::after,
.mobile-menu nav a::before,
.mobile-menu nav a::after {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  content: "";
  transition: transform .18s ease, opacity .18s ease;
}

.desktop-nav a::before,
.mobile-menu nav a::before {
  top: 18px;
  left: 7px;
  border-top: 2px solid var(--paper-warm);
  border-left: 2px solid var(--red);
  transform: translate(-4px, -3px);
}

.desktop-nav a::after,
.mobile-menu nav a::after {
  right: 7px;
  bottom: 18px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--violet);
  transform: translate(4px, 3px);
}

.desktop-nav a:hover::before,
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::before,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::before,
.desktop-nav a[aria-current="page"]::after,
.mobile-menu nav a:hover::before,
.mobile-menu nav a:hover::after,
.mobile-menu nav a:focus-visible::before,
.mobile-menu nav a:focus-visible::after,
.mobile-menu nav a[aria-current="page"]::before,
.mobile-menu nav a[aria-current="page"]::after {
  opacity: 1;
  transform: none;
}

.desktop-nav a[aria-current="page"] { color: var(--mint); }
.desktop-nav img { width: 18px; height: 18px; object-fit: contain; }

.header-side,
.desktop-actions,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 10px;
  color: #fff;
  background: #202228;
  border: 1px solid #3a3d45;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.locale:hover,
.locale:focus-visible,
.locale[aria-expanded="true"] { color: var(--mint); border-color: var(--mint); }
.locale-picker { position: relative; }
.locale-flag {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}
.locale-chevron {
  width: 7px;
  height: 7px;
  margin: -3px 1px 0 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.locale[aria-expanded="true"] .locale-chevron { margin-top: 3px; transform: rotate(225deg); }
.locale-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1100;
  display: grid;
  width: 270px;
  max-width: calc(100vw - 32px);
  max-height: min(70vh, 600px);
  padding: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: #15171b;
  border: 1px solid #3b3e46;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .42);
}
.locale-menu[hidden] { display: none; }
.locale-menu .locale-option {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 9px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}
.locale-menu .locale-option[aria-current="page"] { color: var(--ink); background: var(--mint); }
.locale-menu a.locale-option { cursor: pointer; }
.locale-menu a.locale-option:hover,
.locale-menu a.locale-option:focus-visible { color: #fff; background: #34373d; outline: none; }
.locale-code,
.footer-locale-code { display: none; }

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 22px;
  color: var(--ink);
  background: var(--mint);
  border: 0;
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .18);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .14s ease, background-color .14s ease, box-shadow .14s ease;
}

.cta::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px dashed transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.cta:hover,
.cta:focus-visible { background: #25f4b6; transform: translateY(-1px); }
.cta--register { color: #fff; background: var(--violet); }
.cta--register:hover,
.cta--register:focus-visible { background: #b536ff; }
.cta.is-pressed { transform: translateY(2px) scale(.985); box-shadow: inset 0 2px 0 rgba(0, 0, 0, .22); }
.cta.is-pressed::after { border-color: var(--red); animation: punch-ring .26s ease-out both; }

@keyframes punch-ring {
  from { opacity: .9; transform: scale(.96); }
  to { opacity: 0; transform: scale(1.06); }
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 4px;
  line-height: 0;
  overflow: hidden;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  content: "";
  pointer-events: none;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease, width .2s ease;
}

.menu-toggle span:nth-child(1) { transform: translate(-50%, -8px); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; transform: translate(-50%, -50%) scaleX(0); }
.menu-toggle[aria-expanded="true"]::before { opacity: 1; transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { opacity: 1; transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu { display: none; }

.page-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1020px) 240px;
  gap: 20px;
  width: min(100%, 1600px);
  margin: 20px auto 0;
  padding: 0 30px;
  align-items: start;
}

.page-shell > main { min-width: 0; }

.left-sidebar,
.right-sidebar {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 20px;
  min-width: 0;
  max-height: calc(100vh - 115px);
  overflow: auto;
  scrollbar-width: thin;
}

.side-card,
.mobile-note {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.side-card > h2 {
  padding: 9px 14px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.sidebar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 39px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  transition: background-color .16s ease, padding-left .16s ease;
}

.sidebar-row:last-child { border-bottom: 0; }
.sidebar-row img { flex: 0 0 auto; width: 20px; height: 20px; object-fit: contain; }
.scoretape-row::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--paper-warm) 55%, var(--red));
  content: "";
  transition: width .18s ease;
}
.scoretape-row:hover,
.scoretape-row:focus-visible { padding-left: 16px; background: #f7f4ed; }
.scoretape-row:hover::after,
.scoretape-row:focus-visible::after { width: 100%; }

.article-nav nav { display: grid; }
.article-nav a {
  position: relative;
  padding: 8px 12px 8px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.35;
}
.article-nav a::before {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 5px;
  height: 5px;
  background: var(--violet);
  content: "";
  transform: rotate(45deg);
}
.article-nav a.is-active { color: var(--ink); background: var(--paper-warm); font-weight: 700; }
.article-nav a.is-active::before { background: var(--red); }

.mobile-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
}
.mobile-note img { width: 24px; height: 24px; }
.mobile-note div { display: grid; gap: 2px; }
.mobile-note strong { color: var(--ink); font-size: 12px; }
.mobile-note a { color: var(--violet); font-size: 11px; font-weight: 700; }

.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; }
.game-thumb { position: relative; overflow: hidden; min-width: 0; border-radius: 4px; }
.game-thumb img { width: 100%; aspect-ratio: 1.36; object-fit: cover; transition: transform .2s ease; }
.game-thumb span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 6px 5px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
}
.game-thumb:hover img,
.game-thumb:focus-visible img { transform: scale(1.05); }

.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 381px;
  margin-bottom: var(--section-gap);
  background-image:
    linear-gradient(90deg, rgba(5, 6, 8, .96) 0, rgba(5, 6, 8, .84) 42%, rgba(5, 6, 8, .18) 72%, rgba(5, 6, 8, .05)),
    var(--hero-image);
  background-position: center, var(--focus);
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 73%, rgba(245, 241, 233, .16) 73% 74%, transparent 74%),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, .025) 9px 10px);
  content: "";
}

.hero-preload {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: .001;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 62%;
  min-height: 381px;
  padding: 44px 30px 26px;
  color: #fff;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--paper-warm);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
}

.hero h1 { color: var(--mint); }
.hero-lead { margin-top: 16px; color: #fff; font-size: 14px; line-height: 1.45; }
.hero .hero-cta,
.hero .store-pair { margin-top: 16px; }

.store-pair { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  width: 190px;
  min-height: 56px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--paper-warm);
  border: 2px solid var(--mint);
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(220, 20, 60, .75);
  transition: transform .14s ease, box-shadow .14s ease;
}
.store-button img { width: 28px; height: 28px; filter: invert(1); }
.store-copy { display: grid; gap: 1px; min-width: 0; }
.store-copy span,
.store-copy strong { white-space: nowrap; }
.store-copy span { font-size: 9px; line-height: 1.2; font-weight: 600; }
.store-copy strong { font-size: 14px; line-height: 1.2; }
.store-button:hover,
.store-button:focus-visible { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(220, 20, 60, .9); }

.bonus-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.bonus-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(6, 229, 160, .09), transparent 42%),
    var(--paper-warm);
  border: 1px solid var(--line);
  border-top: 4px solid var(--mint);
  border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(5, 6, 8, .08);
}

.bonus-card:nth-child(even) { border-top-color: var(--violet); }
.bonus-card--wide { grid-column: 1 / -1; border-top-color: var(--red); }
.bonus-card h3 { font-size: 16px; line-height: 1.35; }
.bonus-card p { margin-top: 12px; font-size: 13px; line-height: 1.58; }

.content-section {
  position: relative;
  width: 100%;
  margin-bottom: var(--section-gap);
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-section > h2 {
  margin-bottom: 20px;
  padding: 0;
}

.section-body {
  display: grid;
  align-content: start;
  gap: 20px;
  width: 100%;
  max-width: none;
}

.section-body > * { width: 100%; max-width: none; }
.section-body h3 { margin: 0; }

.author-meta {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid var(--ink);
  border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(5, 6, 8, .1);
}

.author-meta::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 28%, var(--paper-warm) 28% 48%, var(--mint) 48% 73%, var(--violet) 73%);
  content: "";
}

.author-meta__row {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border-left: 1px solid var(--line);
}

.author-meta__row:first-child { border-left: 0; }
.author-meta__row--wide {
  grid-column: 1 / -1;
  padding-top: 16px;
  background: #fff;
  border-top: 1px solid var(--ink);
  border-left: 0;
}

.author-meta__label {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.author-meta__row:nth-child(2) .author-meta__label { color: var(--violet); }
.author-meta__row:nth-child(3) .author-meta__label { color: var(--mint-dark); }
.author-meta__value { font-weight: 600; line-height: 1.45; }
.author-meta__row--wide .author-meta__value { font-weight: 500; }

.source-list {
  display: grid;
  gap: 10px;
  padding-left: 25px;
}

.source-list li { padding-left: 6px; }
.source-list li::marker { color: var(--violet); font-weight: 800; }

.table-wrap {
  width: 100%;
  max-width: none;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--ink);
  border-radius: 4px;
  scrollbar-width: thin;
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
}

th, td {
  position: relative;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th:last-child, td:last-child { border-right: 0; }
tr:last-child td { border-bottom: 0; }
th { color: #fff; background: var(--ink); font-weight: 700; }
th:first-child { color: var(--ink); background: var(--paper-warm); border-right-color: var(--red); }
td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  color: var(--ink);
  background: var(--paper-warm);
  border-right: 2px solid var(--red);
  font-weight: 700;
}
tbody tr:nth-child(odd) td:not(:first-child) { background: #f8f8fb; }
tr:hover td:not(:first-child) { background: rgba(6, 229, 160, .12); }
tr:hover td:first-child::after {
  position: absolute;
  top: 7px;
  right: -2px;
  bottom: 7px;
  width: 4px;
  background: linear-gradient(var(--mint), var(--violet), var(--red));
  content: "";
}

.compare-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.compare-card,
.review-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.compare-card--pros { border-top: 4px solid var(--mint); }
.compare-card--cons { border-top: 4px solid var(--red); }
.compare-card h3 { font-size: 18px; }
.compare-card .source-list { gap: 9px; }

.poster-frame::before,
.poster-frame::after {
  position: absolute;
  width: 13px;
  height: 13px;
  opacity: .62;
  content: "";
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}
.poster-frame::before { top: -1px; left: -1px; border-top: 3px solid var(--red); border-left: 3px solid var(--paper-warm); }
.poster-frame::after { right: -1px; bottom: -1px; border-right: 3px solid var(--mint); border-bottom: 3px solid var(--violet); }
.poster-frame:hover::before,
.poster-frame:focus-within::before { opacity: 1; transform: translate(-3px, -3px); }
.poster-frame:hover::after,
.poster-frame:focus-within::after { opacity: 1; transform: translate(3px, 3px); }

.review-section .rating-summary {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-warm);
  border-left: 4px solid var(--red);
}
.rating-summary strong { font-size: 22px; }
.rating-summary span { font-size: 12px; font-weight: 600; }
.review-meta { color: var(--ink); font-size: 13px; font-weight: 800; }
.review-body { padding-top: 12px; border-top: 1px solid var(--line); font-style: italic; }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 4px 4px 0 var(--paper-warm), 7px 7px 0 rgba(220, 20, 60, .25);
}
.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 12px;
  left: 6px;
  width: 12px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform .16s ease;
}
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item[open] { border-left: 4px solid var(--mint); }
.faq-answer { display: grid; gap: 12px; padding: 0 14px 16px; }
.faq-item:hover { transform: translateY(-1px); }

.responsible-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: var(--ink);
  border-left: 5px solid var(--red);
  border-radius: 4px;
}
.responsible-card h3 { color: var(--mint); }
.responsible-card li::marker { color: var(--paper-warm); }

.section-cta { width: fit-content; min-width: 0; }

.promo-banner {
  min-height: 260px;
  margin-bottom: var(--section-gap);
  background-image:
    linear-gradient(90deg, rgba(5, 6, 8, .94), rgba(5, 6, 8, .72) 44%, rgba(5, 6, 8, .12) 70%),
    var(--promo-image);
  background-position: center, var(--focus);
  background-size: cover;
}
.promo-banner--copy-right {
  background-image:
    linear-gradient(270deg, rgba(5, 6, 8, .94), rgba(5, 6, 8, .72) 44%, rgba(5, 6, 8, .12) 70%),
    var(--promo-image);
}
.promo-banner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 255, 255, .025) 10px 11px);
  content: "";
}
.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 56%;
  min-height: 260px;
  padding: 28px;
  color: #fff;
}
.promo-banner--copy-right .promo-copy { margin-left: auto; align-items: flex-start; }
.promo-copy h2 { color: var(--mint); }
.promo-copy p { margin-top: 10px; font-size: 14px; line-height: 1.45; }
.promo-copy .cta { margin-top: 14px; }

.risograph-seam::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0 18%, transparent 18% 23%, var(--paper-warm) 23% 47%, transparent 47% 52%, var(--mint) 52% 75%, transparent 75% 80%, var(--violet) 80%);
  content: "";
  transform: scaleX(.12);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}
.risograph-seam.is-revealed::after { transform: scaleX(1); }

.site-footer {
  margin-top: 32px;
  color: #fff;
  background: var(--ink);
  border-top: 4px solid var(--red);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .75fr .9fr 1.15fr;
  gap: 30px;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 34px 30px 20px;
}
.footer-brand,
.footer-responsible,
.site-footer nav { display: grid; align-content: start; gap: 9px; }
.footer-brand p,
.footer-responsible p { color: #c9cbd1; font-size: 12px; }
.site-footer nav strong,
.footer-responsible strong { color: var(--mint); font-size: 13px; text-transform: uppercase; }
.site-footer nav a { width: fit-content; color: #d8d9de; font-size: 12px; }
.site-footer nav a:hover,
.site-footer nav a:focus-visible { color: var(--paper-warm); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }
.footer-responsible img { width: 54px; height: 54px; }
.footer-locales {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 10px !important;
  padding: 18px 0;
  border-top: 1px solid #32343a;
}
.site-footer .footer-locale-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  color: #f3f4f6;
  background: #34373d;
  border: 1px solid #43464e;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.site-footer .footer-locale-link:hover,
.site-footer .footer-locale-link:focus-visible {
  color: #fff;
  background: #444850;
  border-color: var(--mint);
  text-decoration: none;
  transform: translateY(-1px);
}
.site-footer .footer-locale-link[aria-current="page"] { color: var(--ink); background: var(--mint); border-color: var(--mint); }
.payment-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #32343a;
  border-bottom: 1px solid #32343a;
}
.payment-row img { width: auto; max-width: 100px; height: 28px; filter: grayscale(1) brightness(2.6); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9da0a9;
  font-size: 11px;
}

.service-main,
.not-found {
  width: min(calc(100% - 60px), 1020px);
  margin: 20px auto 0;
}
.service-block {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-block > .eyebrow { margin: 0; color: var(--red); }
.service-block > h1 { margin-bottom: 4px; }
.service-qa { display: grid; gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.service-qa h2 { font-size: 20px; line-height: 1.35; }
.not-found { min-height: calc(100vh - 40px); display: grid; place-items: center; }
.not-found .service-block { width: min(100%, 620px); text-align: center; justify-items: center; }
.internal-cta { margin-top: 4px; }

@media (max-width: 1500px) {
  .header-inner,
  .page-shell,
  .footer-inner { padding-right: 24px; padding-left: 24px; }
  .desktop-nav a { padding-right: 10px; padding-left: 10px; }
}

@media (max-width: 1359px) {
  .page-shell {
    display: block;
    width: min(100%, 1080px);
  }
  .left-sidebar,
  .right-sidebar { display: none !important; }
  .header-inner { grid-template-columns: 160px 1fr auto; }
}

@media (max-width: 1040px) {
  .desktop-nav { gap: 0; }
  .desktop-nav a { font-size: 11px; }
  .desktop-actions .cta { min-width: 0; padding-right: 14px; padding-left: 14px; }
  .hero-copy { width: 68%; }
}

@media (max-width: 860px) {
  :root { --header-height: 60px; }
  html { scroll-padding-top: 80px; }
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
  }
  .header-inner { grid-template-columns: 1fr auto; padding: 0 16px; }
  .desktop-nav,
  .desktop-actions { display: none; }
  .header-side { gap: 12px; }
  .locale-menu {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: auto;
    left: 50vw;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: min(280px, calc(100vw - 24px));
    max-height: calc(100dvh - var(--header-height) - 16px);
    padding: 7px;
    transform: translateX(-50%);
  }
  .locale-menu .locale-option {
    display: flex;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    min-height: 36px;
    padding: 5px 6px;
  }
  .locale-menu .locale-name { display: none; }
  .locale-menu .locale-code {
    display: inline;
    font-size: 11px;
    letter-spacing: .04em;
  }
  .menu-toggle { display: grid; place-items: center; }
  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 999;
    display: grid;
    align-content: start;
    gap: 14px;
    width: 100%;
    max-height: calc(100dvh - var(--header-height));
    padding: 12px 16px 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    color: #fff;
    background: var(--ink);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .35);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a {
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-bottom: 1px solid #292b31;
    text-align: center;
  }
  .mobile-menu nav img { display: none; }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; gap: 10px; }
  .mobile-actions .cta { width: fit-content; min-width: 0; }
  .page-shell { width: 100%; margin-top: calc(var(--header-height) + 16px); padding: 0 16px; }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
  }
  .footer-brand,
  .footer-responsible,
  .site-footer nav {
    grid-column: 1;
    justify-items: center;
    width: 100%;
  }
  .footer-brand p,
  .footer-responsible p { max-width: 640px; }
  .site-footer nav a { margin-inline: auto; }
  .payment-row { grid-column: 1; justify-content: center; width: 100%; }
  .footer-locales {
    grid-column: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px !important;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }
  .site-footer .footer-locale-link {
    justify-content: center;
    gap: 6px;
    min-width: 0;
    min-height: 38px;
    padding: 6px 7px;
  }
  .footer-locale-name { display: none; }
  .footer-locale-code {
    display: inline;
    font-size: 11px;
    letter-spacing: .04em;
  }
  .footer-bottom { grid-column: 1; justify-content: center; width: 100%; text-align: center; }
  .service-main { width: calc(100% - 32px); margin-top: calc(var(--header-height) + 16px); }
  .not-found { width: calc(100% - 32px); margin-top: 16px; }
}

@media (max-width: 820px) {
  .compare-grid,
  .review-grid,
  .bonus-card-grid { grid-template-columns: 1fr; }
  .bonus-card--wide { grid-column: auto; }
  .author-meta { grid-template-columns: 1fr; }
  .author-meta__row,
  .author-meta__row:first-child {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .author-meta__row:first-child { border-top: 0; }
  .author-meta__row--wide { grid-column: auto; border-top-color: var(--ink); }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(24px, 6.9vw, 27px); line-height: 1.16; }
  h2 { font-size: clamp(21px, 6vw, 24px); line-height: 1.3; }
  h3 { font-size: clamp(16px, 4.6vw, 18px); line-height: 1.45; }
  .hero {
    min-height: 480px;
    background-image:
      linear-gradient(0deg, rgba(5, 6, 8, .96) 0, rgba(5, 6, 8, .82) 53%, rgba(5, 6, 8, .22) 100%),
      var(--hero-image);
    background-position: center, var(--focus);
  }
  .hero-copy {
    justify-content: flex-end;
    width: 100%;
    min-height: 480px;
    padding: 140px 20px 22px;
  }
  .hero-lead { font-size: 13px; }
  .store-pair--hero { flex-direction: column; }
  .store-pair--hero .store-button { width: 100%; max-width: 320px; }
  .promo-banner,
  .promo-copy { min-height: 310px; }
  .promo-banner,
  .promo-banner--copy-right {
    background-image:
      linear-gradient(0deg, rgba(5, 6, 8, .96) 0, rgba(5, 6, 8, .74) 58%, rgba(5, 6, 8, .22) 100%),
      var(--promo-image);
    background-position: center, var(--focus);
  }
  .promo-copy,
  .promo-banner--copy-right .promo-copy {
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 130px 20px 20px;
  }
  .promo-copy p { font-size: 13px; }
  .store-pair--section { flex-direction: column; }
  .store-pair--section .store-button { width: min(100%, 320px); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-responsible,
  .site-footer nav,
  .payment-row,
  .footer-bottom { grid-column: 1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  :root { --section-gap: 16px; }
  body { font-size: 14px; }
  .locale { min-height: 36px; padding: 6px 8px; font-size: 11px; }
  .locale-flag { width: 20px; height: 20px; }
  .mobile-menu { padding-right: 12px; padding-left: 12px; }
  .mobile-actions { grid-template-columns: 1fr; }
  .page-shell { margin-top: calc(var(--header-height) + 12px); padding-right: 12px; padding-left: 12px; }
  .content-section { padding: 18px 16px; }
  .content-section > h2 { margin-bottom: 16px; }
  .section-body { gap: 16px; }
  .hero { min-height: 450px; }
  .hero-copy,
  .promo-copy,
  .promo-banner--copy-right .promo-copy { padding-right: 16px; padding-left: 16px; }
  .hero-copy { min-height: 450px; padding-top: 104px; padding-bottom: 18px; }
  .hero-lead { font-size: 12px; line-height: 1.42; }
  .promo-banner,
  .promo-copy { min-height: 290px; }
  .promo-copy,
  .promo-banner--copy-right .promo-copy { padding-top: 100px; padding-bottom: 18px; }
  .hero .cta,
  .promo-copy .cta { width: fit-content; }
  .store-pair { gap: 10px; }
  .store-button { min-height: 54px; }
  .bonus-card,
  .compare-card,
  .review-card { padding: 16px; }
  .author-meta__row { padding: 15px 16px; }
  .source-list { padding-left: 22px; }
  .faq-item summary { grid-template-columns: 1fr 28px; padding-right: 10px; padding-left: 12px; font-size: 13px; }
  .service-block { padding: 22px 18px; }
  .payment-row { gap: 12px; }
}

@media (max-width: 520px) {
  .locale-menu { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .locale-menu .locale-option {
    gap: 4px;
    min-height: 34px;
    padding: 4px 3px;
  }
  .locale-menu .locale-flag { width: 18px; height: 18px; }
  .locale-menu .locale-code { font-size: 10px; }
  .footer-locales { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .risograph-seam::after { transform: scaleX(1); }
}
