:root {
  --ink: #07080b;
  --ink-soft: #101219;
  --panel: #171923;
  --paper: #f3f0e8;
  --card: #ffffff;
  --text: #262833;
  --muted: #626775;
  --line: #ddd6c7;
  --mint: #00ffad;
  --mint-dark: #00c98a;
  --violet: #a700ff;
  --violet-dark: #7500b5;
  --cobalt: #167db1;
  --cobalt-dark: #0a4f75;
  --scarlet: #b08b3b;
  --scarlet-dark: #715921;
  --terracotta: #8b7b39;
  --terracotta-dark: #5d5225;
  --limestone: #e8e1d2;
  --marble-line: rgba(22, 125, 177, 0.085);
  --danger: #d23f57;
  --shadow: 0 7px 22px rgba(15, 16, 25, 0.12);
  --radius: 6px;
  --content-gap: 20px;
  --cta-width: 180px;
  --cta-height: 44px;
  --asset-version: "20260818-12";
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, transparent 0 31px, var(--marble-line) 31px 32px, transparent 32px 64px) 0 0 / 100% 64px,
    linear-gradient(118deg, transparent 0 76%, rgba(176, 139, 59, 0.045) 76% 77%, transparent 77% 100%) 0 0 / 94px 94px,
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.82), transparent 24%),
    var(--paper);
  color: var(--text);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 75px;
  background: #020304;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link img {
  width: 135px;
  height: 34px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 8px;
}

.primary-nav a,
.footer-nav a,
.article-nav a {
  position: relative;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav a::before,
.primary-nav a::after,
.footer-nav a::before,
.footer-nav a::after,
.article-nav a::before,
.article-nav a::after,
.content-section::before,
.content-section::after {
  position: absolute;
  width: 19px;
  height: 3px;
  border: 0;
  border-radius: 100% 0 100% 0;
  content: "";
  opacity: 0;
  transition: opacity 160ms ease, transform 180ms ease, background 160ms ease;
}

.primary-nav a::before,
.footer-nav a::before,
.article-nav a::before {
  bottom: 7px;
  left: 9px;
  background: var(--cobalt);
  transform: translateX(-7px) scaleX(0.4);
}

.primary-nav a::after,
.footer-nav a::after,
.article-nav a::after {
  right: 9px;
  bottom: 7px;
  background: var(--scarlet);
  transform: translateX(7px) scaleX(0.4);
}

.primary-nav a:hover::before,
.primary-nav a:hover::after,
.primary-nav a:focus-visible::before,
.primary-nav a:focus-visible::after,
.footer-nav a:hover::before,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::before,
.footer-nav a:focus-visible::after,
.article-nav a:hover::before,
.article-nav a:hover::after,
.article-nav a:focus-visible::before,
.article-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.primary-nav a[aria-current="page"] {
  color: var(--mint);
}

.header-spacer {
  flex: 1 1 auto;
}

.geo-switch {
  position: relative;
  z-index: 150;
  flex: 0 0 auto;
}

.geo-toggle {
  display: inline-flex;
  width: 72px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--mint);
  border-radius: 8px;
  padding: 5px 8px;
  background: #111318;
  color: var(--mint);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.geo-toggle:hover,
.geo-toggle:focus-visible,
.geo-toggle[aria-expanded="true"] {
  border-color: #4affc7;
  background: #191c23;
}

.geo-flag {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.34);
}

.geo-chevron {
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.geo-toggle[aria-expanded="true"] .geo-chevron {
  transform: translateY(2px) rotate(-135deg);
}

.geo-panel {
  position: fixed;
  z-index: 160;
  top: 82px;
  left: 50%;
  display: grid;
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 98px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow-y: auto;
  border: 1px solid #393d47;
  border-radius: 12px;
  padding: 16px;
  background: #101217;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

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

.geo-option,
.footer-locale {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #f6f7fa;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.geo-option {
  min-height: 44px;
  border: 1px solid #444852;
  border-radius: 9px;
  padding: 7px 10px;
  background: #30333a;
}

.geo-option:hover,
.geo-option:focus-visible,
.footer-locale:hover,
.footer-locale:focus-visible {
  border-color: var(--mint);
  background: #3a3e46;
}

.geo-option[aria-current="page"],
.footer-locale[aria-current="page"] {
  border-color: var(--mint);
  background: var(--mint);
  color: #050609;
}

.geo-country {
  min-width: 0;
}

.geo-code {
  display: none;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.locale-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.gr-flag {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  background: repeating-linear-gradient(180deg, #0d5eaf 0 1.67px, #fff 1.67px 3.34px);
}

.gr-flag::before,
.gr-flag::after {
  position: absolute;
  top: 0;
  left: 0;
  background: #0d5eaf;
  content: "";
}

.gr-flag::before {
  width: 9px;
  height: 8.35px;
}

.gr-flag::after {
  width: 9px;
  height: 8.35px;
  background:
    linear-gradient(180deg, transparent 0 3px, #fff 3px 4.8px, transparent 4.8px),
    linear-gradient(90deg, transparent 0 3.6px, #fff 3.6px 5.4px, transparent 5.4px);
}

.header-actions,
.mobile-actions,
.store-pair {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-pair {
  flex-flow: row nowrap;
  align-items: center;
}

.cta {
  position: relative;
  display: inline-flex;
  width: var(--cta-width);
  min-width: var(--cta-width);
  height: var(--cta-height);
  min-height: var(--cta-height);
  flex: 0 0 var(--cta-width);
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 5px 15px 5px 15px;
  padding: 8px 12px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 0 rgba(0, 139, 95, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease, clip-path 120ms ease;
}

.cta::before {
  position: absolute;
  inset: -30% auto -30% -38px;
  width: 22px;
  background: linear-gradient(90deg, var(--cobalt) 0 34%, rgba(255, 255, 255, 0.95) 34% 66%, var(--scarlet) 66% 100%);
  content: "";
  opacity: 0.2;
  pointer-events: none;
  transform: skewX(-18deg) translateX(0);
  transition: transform 220ms ease, opacity 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #4affc7;
}

.cta:hover::before,
.cta:focus-visible::before {
  opacity: 0.55;
  transform: skewX(-18deg) translateX(230px);
}

.cta:active,
.cta.is-pressing {
  transform: translateY(4px) scale(0.975) rotate(-0.35deg);
  box-shadow: 0 1px 0 rgba(0, 139, 95, 0.55);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.cta-bonus {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 5px 0 rgba(82, 0, 126, 0.75);
}

.cta-bonus:hover,
.cta-bonus:focus-visible {
  background: #bb2cff;
}

.cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.cta-ghost:hover,
.cta-ghost:focus-visible {
  border-color: var(--mint);
  background: rgba(0, 255, 173, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, width 180ms ease, top 180ms ease, opacity 140ms ease;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 7px; }
.menu-icon span:nth-child(3) { top: 14px; }

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  top: 7px;
  width: 17px;
  transform: rotate(45deg);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  width: 22px;
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  top: 7px;
  width: 17px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.mobile-panel,
.menu-scrim {
  display: none;
}

.layout-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;
}

.main-column {
  min-width: 0;
}

.side-rail {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 20px;
  max-height: calc(100vh - 115px);
  overflow: auto;
  scrollbar-width: thin;
}

.rail-card {
  overflow: hidden;
  border: 1px solid rgba(22, 125, 177, 0.13);
  border-radius: 3px 12px 3px 12px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.rail-title {
  margin: 0;
  padding: 10px 14px;
  background:
    linear-gradient(90deg, transparent 0 7px, rgba(255, 255, 255, 0.34) 7px 9px, transparent 9px 15px) 0 100% / 18px 3px repeat-x,
    linear-gradient(90deg, var(--violet), #8e16c4);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-links,
.article-nav,
.game-links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-links li,
.article-nav li {
  border-bottom: 1px solid var(--line);
}

.quick-links li:last-child,
.article-nav li:last-child {
  border-bottom: 0;
}

.quick-links a,
.article-nav a {
  display: grid;
  min-height: 44px;
  align-items: center;
  color: #505462;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quick-links a {
  min-height: 36px;
  grid-template-columns: 19px minmax(0, 1fr) 4px;
  gap: 7px;
  padding: 5px 11px;
  font-size: 12px;
  line-height: 1.2;
}

.quick-links img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.quick-links a:hover,
.quick-links a:focus-visible,
.article-nav a:hover,
.article-nav a:focus-visible,
.article-nav a.is-active {
  background: rgba(0, 255, 173, 0.08);
  color: #151721;
}

.quick-links a:hover,
.quick-links a:focus-visible,
.article-nav a:hover,
.article-nav a:focus-visible {
  transform: translateX(2px);
}

.quick-links a::after {
  width: 18px;
  height: 8px;
  justify-self: end;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, var(--cobalt) 0 4px, transparent 4px 7px, var(--scarlet) 7px 11px, transparent 11px 14px, var(--cobalt) 14px 18px);
  content: "";
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.quick-links a:hover::after,
.quick-links a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.article-nav a {
  padding: 10px 15px;
  font-size: 13px;
  line-height: 1.3;
}

.article-nav a.is-active {
  box-shadow: inset 4px 0 var(--mint);
  font-weight: 800;
}

.app-rail {
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(0, 255, 173, 0.16), transparent 50%),
    #090b10;
  color: #fff;
}

.app-rail h2 {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 18px;
  line-height: 1.25;
}

.app-rail p {
  margin: 0 0 14px;
  color: #d7d8de;
  font-size: 13px;
}

.platform-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.platform-icons span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.platform-icons img {
  width: 22px;
  height: 22px;
}

.platform-icons img[src*="platform-android"],
.store-button img[src*="platform-android"] {
  filter: invert(1);
}

.game-links {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.game-links li:last-child {
  grid-column: 1 / -1;
}

.game-link {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 105px;
  border-radius: 6px;
  background: var(--ink-soft);
}

.game-link img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  transition: transform 200ms ease;
}

.game-link span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 8px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.game-link:hover img,
.game-link:focus-visible img {
  transform: scale(1.045);
}

.hero {
  position: relative;
  display: flex;
  min-height: 381px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px 4px 14px 4px;
  background-color: var(--ink);
  background-image: var(--hero-image);
  background-position: var(--focus-x, 70%) var(--focus-y, 50%);
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.98) 0%, rgba(2, 3, 6, 0.93) 34%, rgba(2, 3, 6, 0.48) 59%, rgba(2, 3, 6, 0.08) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 9px;
  background:
    repeating-linear-gradient(90deg, var(--cobalt) 0 16px, #fff 16px 20px, var(--cobalt) 20px 32px, transparent 32px 38px),
    var(--scarlet);
  content: "";
  opacity: 0.9;
  clip-path: polygon(0 72%, 7% 25%, 88% 25%, 94% 0, 100% 50%, 94% 100%, 88% 72%);
}

.hero-copy {
  width: min(64%, 670px);
  padding: 65px 30px;
  color: #fff;
}

.hero h1 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--mint);
  font-size: clamp(30px, 2.3vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero-lead {
  width: 100%;
  margin: 16px 0 0;
  color: #f1f2f5;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.content-flow {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.content-section,
.service-section,
.not-found-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 125, 177, 0.12);
  border-radius: 3px 14px 3px 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.section-inner,
.service-inner,
.not-found-inner {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.content-section::before {
  top: 0;
  right: 0;
  width: 54px;
  height: 28px;
  border-top: 3px solid var(--cobalt);
  border-right: 3px solid var(--cobalt);
  border-radius: 0 13px 0 0;
  background: transparent;
  transform: translate(9px, -9px) scale(0.72);
}

.content-section::after {
  top: 9px;
  right: 9px;
  bottom: auto;
  width: 34px;
  height: 18px;
  border-top: 2px solid var(--scarlet);
  border-right: 2px solid var(--scarlet);
  border-radius: 0 8px 0 0;
  background: transparent;
  transform: translate(7px, -7px) scale(0.72);
}

.content-section:hover::before,
.content-section:hover::after,
.content-section:focus-within::before,
.content-section:focus-within::after {
  opacity: 1;
  transform: translate(0) scale(1);
}

.section-title {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 20px;
  color: #141620;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.2;
  text-wrap: wrap;
}

.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(100%, 270px);
  height: 10px;
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, var(--cobalt) 0 14px, transparent 14px 18px, var(--cobalt) 18px 23px, transparent 23px 30px) 0 1px / auto 3px no-repeat,
    linear-gradient(90deg, var(--scarlet), rgba(176, 139, 59, 0.12)) 0 8px / 100% 2px no-repeat;
  content: "";
  transform: translateX(-16px) scaleX(0.18);
  transform-origin: left;
  transition: transform 460ms cubic-bezier(.2,.75,.2,1);
}

.content-section.is-visible .section-title::after {
  transform: translateX(0) scaleX(1);
}

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

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

.section-body > .cta {
  width: var(--cta-width);
  max-width: var(--cta-width);
  justify-self: start;
}

.section-body p,
.service-answer p,
.faq-answer p,
.review-card p {
  margin: 0;
}

.section-body h3 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #1a1c26;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-body ul,
.section-body ol,
.service-answer ul,
.service-answer ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 26px;
}

.section-body li,
.service-answer li {
  padding-left: 5px;
}

.section-body li::marker,
.service-answer li::marker {
  color: var(--violet);
  font-weight: 900;
}

.step-list {
  position: relative;
  counter-reset: step;
  list-style: none;
  padding-left: 0 !important;
}

.step-list::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--cobalt) 0 8px, var(--scarlet) 8px 10px, var(--cobalt) 10px 18px);
  content: "";
}

.step-list li {
  position: relative;
  min-height: 38px;
  padding: 7px 0 7px 50px;
  counter-increment: step;
}

.step-list li::before {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--cobalt);
  border-radius: 50% 50% 42% 42%;
  background: #10131b;
  color: #fff;
  content: counter(step);
  font-size: 13px;
  font-weight: 900;
}

.table-frame {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 8px;
}

.table-scroll-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5d6371;
  font-size: 12px;
  font-weight: 700;
}

.table-scroll-hint span:last-child {
  color: var(--cobalt);
  font-size: 17px;
  line-height: 1;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #254a60;
  border-radius: 3px 13px 3px 13px;
  box-shadow: 0 5px 0 rgba(22, 125, 177, 0.12);
  scrollbar-color: var(--cobalt) #e8e9ee;
  scrollbar-width: thin;
}

.table-wrap:focus-visible {
  outline: 3px solid rgba(22, 125, 177, 0.34);
  outline-offset: 3px;
}

.table-wrap.is-scrollable:not(.is-at-end) {
  border-right-color: var(--cobalt);
}

.table-wrap.is-scrollable:not(.is-at-start) {
  border-left-color: var(--violet);
}

table {
  width: 100%;
  min-width: max(100%, var(--table-min-width, 720px));
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

th,
td {
  min-width: 128px;
  padding: 13px 14px;
  border-right: 1px solid #dfe1e7;
  border-bottom: 1px solid #dfe1e7;
  text-align: left;
  vertical-align: middle;
}

th {
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.65) 18px 20px, transparent 20px 28px) 0 100% / auto 4px no-repeat,
    #141720;
  color: #fff;
  font-weight: 800;
}

.table-frame.is-compact table {
  table-layout: fixed;
}

.table-frame.is-compact th,
.table-frame.is-compact td {
  min-width: 0;
}

.table-frame.is-compact th:first-child,
.table-frame.is-compact td:first-child {
  width: 38%;
}

.table-frame.is-medium th:first-child,
.table-frame.is-medium td:first-child {
  min-width: 160px;
}

.table-frame.is-wide th:first-child,
.table-frame.is-wide td:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
  min-width: clamp(132px, 18vw, 180px);
}

th:first-child {
  color: var(--mint);
}

.table-frame.is-wide th:first-child {
  z-index: 3;
}

td:first-child {
  background: #eef6f8;
  color: #171923;
  font-weight: 750;
  box-shadow: inset 4px 0 var(--cobalt);
}

.table-frame.is-wide td:first-child {
  box-shadow: inset 4px 0 var(--cobalt), 5px 0 10px rgba(20, 23, 32, 0.08);
}

tbody tr:nth-child(even) td:not(:first-child) {
  background: linear-gradient(90deg, rgba(22, 125, 177, 0.045), rgba(176, 139, 59, 0.045));
}

tbody tr:hover td {
  background-color: rgba(22, 125, 177, 0.1);
}

tbody tr:hover td:first-child {
  background: #e4f0f3;
  box-shadow: inset 7px 0 var(--cobalt);
}

.table-frame.is-wide tbody tr:hover td:first-child {
  box-shadow: inset 7px 0 var(--cobalt), 5px 0 10px rgba(20, 23, 32, 0.08);
}

.pros-cons-section .section-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.pros-cons-section .section-body > p {
  grid-column: 1 / -1;
}

.compare-card {
  display: grid;
  align-content: start;
  gap: 14px;
  height: 100%;
  padding: 18px;
  border-left: 4px solid var(--mint);
  border-radius: 6px;
  background: #f5fbf9;
}

.compare-card.is-cons {
  border-left-color: var(--danger);
  background: #fff6f7;
}

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

.bonus-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #dfe1e8;
  border-top: 4px solid var(--mint-dark);
  border-radius: 6px;
  background: linear-gradient(145deg, #fff 0%, #f4fbf8 100%);
  box-shadow: 0 5px 15px rgba(18, 20, 29, 0.08);
}

.bonus-card:nth-child(even) {
  border-top-color: var(--violet);
  background: linear-gradient(145deg, #fff 0%, #faf5ff 100%);
}

.bonus-card:nth-child(3n) {
  border-top-color: var(--terracotta);
}

.bonus-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.bonus-card h3 {
  color: #171923;
  font-size: 17px;
  line-height: 1.35;
}

.bonus-card p {
  color: #555a68;
  font-size: 14px;
  line-height: 1.55;
}

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

.review-summary {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #d9dbe3;
  border-left: 4px solid var(--mint-dark);
  border-radius: 10px;
  background: linear-gradient(135deg, #f4fbf8 0%, #fff 72%);
  color: #555a68;
  font-size: 13px;
}

.review-summary-score {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 2px;
  color: #151822;
  font-size: 26px;
  line-height: 1;
}

.review-summary-score small {
  color: #606574;
  font-size: 14px;
}

.review-summary-copy {
  display: grid;
  gap: 3px;
}

.review-summary-copy strong {
  color: #171923;
  font-size: 14px;
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e0e1e7;
  border-top: 4px solid var(--mint-dark);
  border-radius: 10px;
  background: linear-gradient(145deg, #fff 0%, #f8fbfa 100%);
  box-shadow: 0 6px 18px rgba(18, 20, 29, 0.08);
}

.review-card:nth-child(even) {
  border-top-color: var(--violet);
  background: linear-gradient(145deg, #fff 0%, #fbf7ff 100%);
}

.review-card:nth-child(3n) {
  border-top-color: var(--terracotta);
}

.review-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.review-card-header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(215, 218, 226, 0.8);
  background: rgba(255, 255, 255, 0.72);
}

.review-card-header strong {
  color: #171923;
  font-size: 15px;
  line-height: 1.3;
}

.review-author {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 2px solid rgba(0, 255, 173, 0.55);
  border-radius: 50%;
  background: #11141c;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.review-author-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.review-location {
  color: #696e7b;
  font-size: 13px;
}

.review-rating {
  flex: 0 0 auto;
  border: 1px solid rgba(0, 201, 138, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
  background: #151822;
  color: var(--mint);
  font-weight: 900;
  white-space: nowrap;
}

.review-rating small {
  color: #cbd0d8;
  font-size: 11px;
}

.review-quote {
  align-self: stretch;
  padding: 18px 20px 20px;
  color: #4a4e5b;
  font-size: 14px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #dadce4;
  border-radius: 4px 14px 4px 14px;
  background: #fff;
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 14px;
  min-height: 58px;
  align-items: center;
  padding: 13px 16px;
  color: #171923;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 28px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--cobalt);
  border-top-width: 4px;
  border-radius: 48% 48% 42% 42%;
  background:
    linear-gradient(90deg, transparent 0 43%, var(--scarlet) 43% 57%, transparent 57%),
    linear-gradient(180deg, transparent 0 47%, var(--cobalt) 47% 57%, transparent 57%),
    #f8f5ed;
  color: transparent;
  content: "";
  line-height: 1;
  transition: transform 190ms ease, filter 180ms ease;
}

.faq-item[open] summary {
  background: linear-gradient(90deg, rgba(22, 125, 177, 0.09), rgba(176, 139, 59, 0.09));
}

.faq-item[open] summary::after {
  content: "";
  filter: brightness(1.2) saturate(1.15);
  transform: rotate(90deg) translateY(-1px);
}

.faq-answer {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid #e2e3e9;
}

.responsible-box,
.author-card,
.schema-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 6px;
  background: #faf7ec;
}

.responsible-box h3,
.author-card h3 {
  color: var(--terracotta-dark);
}

.author-card {
  border-left-color: var(--violet);
  background: #f9f5fc;
}

.promo-banner {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  overflow: hidden;
  border-radius: 16px 4px 16px 4px;
  background-color: #0a0b10;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.promo-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--promo-focus-x, 70%) var(--promo-focus-y, 50%);
}

.promo-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.92) 38%, rgba(2, 3, 5, 0.3) 67%, rgba(2, 3, 5, 0.06) 100%);
  content: "";
}

.promo-banner::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--cobalt) 0 18px, rgba(255, 255, 255, 0.92) 18px 22px, var(--cobalt) 22px 34px, var(--scarlet) 34px 38px);
  content: "";
  opacity: 0.9;
  pointer-events: none;
}

.promo-banner.is-copy-right {
  justify-content: flex-end;
}

.promo-banner.is-copy-right .promo-copy {
  justify-items: end;
  text-align: right;
}

.promo-banner.is-copy-right.is-mirrored .promo-image {
  transform: scaleX(-1);
}

.promo-banner.is-copy-right::before {
  background: linear-gradient(270deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.92) 38%, rgba(2, 3, 5, 0.3) 67%, rgba(2, 3, 5, 0.06) 100%);
}

.promo-copy {
  display: grid;
  gap: 12px;
  width: min(58%, 560px);
  padding: 28px;
  color: #fff;
}

.promo-copy .promo-heading {
  width: 100%;
  margin: 0;
  color: var(--mint);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.promo-copy p {
  width: 100%;
  margin: 0;
  color: #f0f1f4;
  font-weight: 600;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  width: 220px;
  min-height: 56px;
  align-items: center;
  column-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px 14px 4px 14px;
  padding: 8px 13px;
  background: #11141c;
  color: #fff;
  box-shadow: 0 4px 0 #000;
  transition: transform 120ms ease, border-color 160ms ease, box-shadow 120ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: var(--mint);
}

.store-button:active,
.store-button.is-pressing {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #000;
}

.store-button img {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.store-button small {
  align-self: end;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.05;
  white-space: nowrap;
}

.store-button strong {
  align-self: start;
  font-size: 15px;
  line-height: 1.05;
}

.site-footer {
  margin-top: 20px;
  background: #050609;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px) repeat(2, minmax(180px, 220px));
  gap: 32px;
  width: min(100%, 1600px);
  justify-content: center;
  margin: 0 auto;
  padding: 34px 30px;
  text-align: center;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 135px;
  height: 34px;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: #bfc2ca;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 4px 12px;
  color: #e8e9ed;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.payment-strip img {
  width: auto;
  max-width: 76px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.65);
  opacity: 0.78;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: min(100%, 1600px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 20px 30px;
  color: #aeb1bb;
  font-size: 13px;
  text-align: center;
}

.footer-locales {
  width: min(100%, 1600px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 28px 30px;
}

.footer-locale-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px 12px;
}

.footer-locale {
  min-height: 58px;
  border: 1px solid #474b55;
  border-radius: 9px;
  padding: 9px 12px;
  background: #33363d;
}

.responsible-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.responsible-mark img {
  width: 44px;
  height: 44px;
}

.service-main,
.not-found-main {
  width: min(100%, 1040px);
  margin: 20px auto 0;
  padding: 0 30px;
}

.service-eyebrow {
  margin: 0;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-section h1,
.not-found-card h1 {
  width: 100%;
  margin: 0;
  color: #151721;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
}

.service-qa {
  display: grid;
  gap: 18px;
}

.service-answer {
  display: grid;
  gap: 8px;
  border-top: 1px solid #e0e2e8;
  padding-top: 18px;
}

.service-answer h2 {
  margin: 0;
  color: #181a23;
  font-size: 19px;
  line-height: 1.35;
}

.not-found-card {
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(0, 255, 173, 0.1), transparent 42%),
    linear-gradient(315deg, rgba(167, 0, 255, 0.13), transparent 45%),
    #fff;
}

.not-found-inner {
  min-height: 460px;
  align-content: center;
  justify-items: start;
}

.not-found-code {
  margin: 0;
  color: var(--terracotta);
  font-size: 80px;
  font-weight: 900;
  line-height: 0.85;
}

@media (max-width: 1359px) {
  .layout-shell {
    display: block;
    width: min(100%, 1080px);
  }

  .side-rail {
    display: none;
  }
}

@media (max-width: 1100px) {
  body {
    padding-top: 75px;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

.mobile-panel {
    position: fixed;
    z-index: 120;
    top: 75px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 75px);
    gap: 14px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 18px 30px 24px;
    background: #08090d;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
    color: #fff;
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }

  .mobile-panel.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 220ms ease;
  }

  .mobile-nav {
    display: grid;
    gap: 5px;
  }

  .mobile-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 2px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-nav a[aria-current="page"] {
    color: var(--mint);
  }

  .mobile-locale {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d4d6dd;
    font-weight: 800;
  }

  .mobile-actions {
    margin-top: 2px;
  }

  .mobile-actions .cta {
    flex: 0 0 var(--cta-width);
  }

  .menu-scrim {
    position: fixed;
    z-index: 110;
    inset: 75px 0 0;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .menu-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(180px, 260px));
    justify-content: center;
  }

  .footer-locale-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 721px) and (max-width: 840px) {
  .hero .store-pair {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-top: 60px;
  }

  .site-header {
    height: 60px;
  }

  .header-inner {
    gap: 8px;
    padding: 0 12px;
  }

  .brand-link img {
    width: 119px;
    height: 30px;
  }

  .geo-toggle {
    width: 66px;
    height: 42px;
    gap: 7px;
  }

  .geo-panel {
    top: 68px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 80px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
  }

  .geo-option {
    min-height: 44px;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px;
  }

  .geo-option .geo-flag,
  .footer-locale .geo-flag {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .geo-country {
    display: none;
  }

  .geo-code {
    display: inline;
  }

  .mobile-panel {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 16px 16px 22px;
  }

  .menu-scrim {
    inset: 60px 0 0;
  }

  .layout-shell,
  .service-main,
  .not-found-main {
    width: 100%;
    margin-top: 16px;
    padding: 0 16px;
  }

  .hero {
    min-height: 440px;
    align-items: flex-end;
    background-position: var(--mobile-focus-x, 72%) var(--mobile-focus-y, 48%);
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 3, 6, 0.98) 0%, rgba(2, 3, 6, 0.88) 47%, rgba(2, 3, 6, 0.3) 78%, rgba(2, 3, 6, 0.12) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 26px 20px 30px;
  }

  .hero h1 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.13;
  }

  .hero-lead {
    font-size: 15px;
  }

  .content-flow {
    margin-top: 16px;
    gap: 16px;
  }

  .section-inner,
  .service-inner,
  .not-found-inner {
    gap: 16px;
    padding: 18px 16px;
  }

  .section-title {
    padding-bottom: 16px;
    font-size: 25px;
    line-height: 1.22;
  }

  .section-body {
    gap: 16px;
  }

  .section-body h3 {
    font-size: 18px;
    line-height: 1.45;
  }

  .pros-cons-section .section-body,
  .bonus-card-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .promo-banner,
  .promo-banner.is-copy-right {
    min-height: 360px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .promo-image,
  .promo-banner.is-copy-right.is-mirrored .promo-image {
    object-position: var(--promo-mobile-focus-x, 72%) var(--promo-mobile-focus-y, 46%);
  }

  .promo-banner::before,
  .promo-banner.is-copy-right::before {
    background: linear-gradient(0deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.9) 48%, rgba(2, 3, 5, 0.26) 79%, rgba(2, 3, 5, 0.08) 100%);
  }

  .promo-copy {
    width: 100%;
    padding: 22px 18px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-copy .promo-heading {
    font-size: 24px;
  }

  .store-pair {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 520px);
    gap: 24px;
    justify-content: center;
    padding: 30px 16px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
  }

  .footer-locales {
    padding: 22px 12px;
  }

  .footer-locale-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .footer-locale {
    min-height: 44px;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px;
  }

  table {
    font-size: 13px;
  }

  th,
  td {
    padding: 11px 12px;
  }

  .table-frame.is-scrollable .table-scroll-hint {
    display: flex;
  }

  .table-frame.is-wide th,
  .table-frame.is-wide td {
    min-width: 118px;
  }

  .table-frame.is-wide th:first-child,
  .table-frame.is-wide td:first-child {
    min-width: 132px;
  }
}

@media (max-width: 390px) {
  .brand-link img {
    width: 108px;
    height: auto;
  }

  .geo-toggle {
    width: 62px;
    padding: 5px 6px;
  }

  .geo-option,
  .footer-locale {
    gap: 4px;
    padding: 5px;
  }

  .geo-option .geo-flag,
  .footer-locale .geo-flag {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .geo-code {
    font-size: 12px;
  }

  .mobile-actions {
    flex-direction: column;
    align-items: center;
  }

  .mobile-actions .cta,
  .hero-actions .cta {
    width: var(--cta-width);
  }

  .mobile-actions .cta {
    height: var(--cta-height);
    min-height: var(--cta-height);
    flex: 0 0 var(--cta-height);
  }

  .review-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-frame.is-wide th:first-child,
  .table-frame.is-wide td:first-child {
    min-width: 120px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .section-title::after {
    transform: scaleX(1);
  }
}
