:root {
  color-scheme: dark;
  --navy: #05233d;
  --deep: #031526;
  --panel: #062b49;
  --cyan: #19b8e8;
  --gold: #ffc34a;
  --cream: #fff0cb;
  --text: #edf4ff;
  --muted: #b6cce0;
  --font-body: "Golos Text", Arial, sans-serif;
  --font-title: "Russo One", "Arial Black", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--deep);
  color: var(--text);
  font: 400 16px/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
button,
a,
input {
  touch-action: manipulation;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  outline-offset: 5px;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
}
h1,
h2,
p {
  margin: 0;
}
h1,
h2,
.card-title {
  font-family: var(--font-title);
  font-weight: 400;
}
button svg,
a svg {
  pointer-events: none;
}
.container {
  width: min(1400px, calc(100% - 64px));
  margin-inline: auto;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 14px 20px;
  background: var(--cream);
  color: var(--deep);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #083856f5, #04213af5);
  border-bottom: 1px solid #1b8ab294;
  box-shadow: 0 3px 20px #00142180;
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
  width: 180px;
  height: 88px;
}
.brand img {
  width: 180px;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 4px 2px #0007);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
}
.main-nav a {
  padding: 15px 22px;
  font-weight: 600;
  transition:
    color 0.18s,
    background 0.18s;
}
.main-nav a:hover {
  color: var(--gold);
  background: #0c4c713d;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 23px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 5px 13px 5px 13px;
  transition:
    transform 0.18s,
    filter 0.18s;
}
.button-gold {
  color: #18243a;
  background: linear-gradient(180deg, #ffe397, #ffcc57 45%, #ec9d25);
  border-color: #ffe49c;
  box-shadow:
    inset 0 0 0 2px #ffc958,
    0 3px 0 #9b5c17,
    0 0 20px #edaa3124;
}
.button-blue {
  background: linear-gradient(180deg, #0b527b, #053252);
  border-color: #20afde;
  box-shadow:
    inset 0 0 0 2px #0a4567,
    0 3px 0 #001c35;
}
.button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.icon-button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #17709d;
  border-radius: 7px;
  background: linear-gradient(180deg, #083752, #05223d);
  line-height: 1;
  font-weight: 600;
}
.icon-button:hover {
  border-color: var(--cyan);
  background: #0c4160;
}
.language-button {
  padding: 0 10px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  height: 2px;
  width: 20px;
  background: currentColor;
  border-radius: 2px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  background: #0c3850;
}
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #031c35ed,
      #031c35c7 17%,
      #031c3575 32%,
      transparent 57%
    ),
    linear-gradient(0deg, #031c35, transparent 18%);
}
.hero-inner {
  min-height: 590px;
  display: flex;
  align-items: center;
  padding-block: 38px 70px;
}
.hero-copy {
  width: 43%;
  max-width: 520px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: #e5bd6e;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.11em;
  color: #e6cf9b;
  margin-bottom: 19px;
}
.hero-eyebrow > span:first-child {
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex: none;
}
h1 {
  font-size: clamp(42px, 4.45vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow:
    0 3px #ad763a,
    0 6px #062033,
    3px 6px #062033;
  margin: 0 0 25px;
}
h1 > span,
h1 > strong {
  display: block;
}
h1 > strong {
  font: inherit;
  color: #ffcf52;
  text-shadow:
    0 3px #bd7524,
    0 6px #062033,
    3px 6px #062033;
}
html[lang="ru"] h1 {
  font-size: clamp(36px, 3.8vw, 63px);
}
.hero-description {
  max-width: 450px;
  color: #e4eef9;
  font-size: 17px;
  line-height: 1.6;
  text-shadow: 0 1px 2px #001a2e;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-actions .button {
  padding-inline: 20px;
  gap: 18px;
}
.hero-note {
  color: #b6cfe0;
  font-size: 13px;
  margin-top: 19px;
}
.content-shell {
  position: relative;
  margin-top: -32px;
  z-index: 1;
  background: linear-gradient(150deg, #06324ef5, #052740 50%, #04213bef);
  border: 1px solid #136e92;
  border-radius: 18px 18px 0 0;
  padding: 16px 24px 26px;
  box-shadow:
    0 -3px 30px #082d4660,
    inset 0 1px #36cdf366;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px 16px;
  border: 1px solid #14688c;
  border-radius: 8px;
  background: linear-gradient(110deg, #073a59, #04253f);
  box-shadow: inset 0 1px #20a1c920;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: none;
  border: 1px solid #18a2d5;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #061f37;
  background: #032641;
  color: #f4cf7b;
}
.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.6;
}
.feature h2 {
  text-transform: uppercase;
  font-size: 19px;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 7px;
}
.feature p {
  font-size: 16px;
  line-height: 1.45;
  color: #c4d6e9;
}
.section {
  padding-top: 34px;
  scroll-margin-top: 20px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.section-heading .eyebrow {
  margin-bottom: 5px;
}
.section-heading h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px #12364b;
  letter-spacing: 0.015em;
}
.text-link {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 9px;
  padding: 8px 0 8px 10px;
  color: #b5daef;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.text-link:hover {
  color: var(--gold);
}
.text-link .icon {
  width: 16px;
}
.section-tag {
  flex: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #287298;
  background: #083653;
  border-radius: 4px;
  padding: 6px 10px;
  color: #b8dced;
  margin-bottom: 4px;
}
.gold-tag {
  border-color: #c59a416e;
  color: #f2cc7a;
  background: #644d282e;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.hero-card {
  --accent: #29b8ff;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--accent);
  border-radius: 9px;
  background: #05223b;
  text-align: left;
  box-shadow: 0 3px var(--accent);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero-card.guardian {
  --accent: #ff7740;
}
.hero-card.sniper {
  --accent: #a374ff;
}
.hero-card.alchemist {
  --accent: #ed67b3;
}
.hero-card.keeper {
  --accent: #0fdaa4;
}
.hero-card.mirage {
  --accent: #31bcfb;
}
.portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1.15;
  overflow: hidden;
  background: #c5b8a8;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 0.3s;
}
.card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  width: 100%;
  padding: 14px 12px 18px;
  border-top: 2px solid var(--accent);
  background: linear-gradient(145deg, #083c58, #051f38);
}
.role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-title {
  display: block;
  color: #f8f1dd;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: break-word;
}
.card-copy .card-title {
  min-height: 2.4em;
  padding-right: 3px;
}
.card-subtitle {
  font-size: 13px;
  color: #b7ccdd;
  line-height: 1.35;
  margin-top: 8px;
  padding-right: 18px;
}
.card-arrow {
  display: grid;
  place-items: center;
  border: 1px solid #3182a6;
  border-radius: 50%;
  height: 27px;
  width: 27px;
  font: 400 21px/1 var(--font-body);
  color: #d4efff;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.hero-card .card-arrow {
  width: 20px;
  height: 20px;
  border: 0;
  font-size: 20px;
  right: 6px;
  bottom: 12px;
  color: var(--accent);
}
.hero-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 6px var(--accent),
    0 10px 25px #00122080;
}
.hero-card:hover .portrait img {
  transform: scale(1.04);
}
.arena-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.arena-card {
  position: relative;
  text-align: left;
  overflow: hidden;
  border: 1px solid #419ec3;
  border-radius: 8px;
  background: #062c47;
  padding: 0;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.arena-card > img {
  width: 100%;
  aspect-ratio: 2.8;
  object-fit: cover;
}
.arena-copy {
  display: block;
  position: relative;
  padding: 15px 42px 17px 16px;
  border-top: 1px solid #298ba4;
  background: linear-gradient(110deg, #062f49, #04203a);
}
.arena-copy .card-title {
  font-size: 20px;
  margin-bottom: 6px;
}
.arena-copy > span:nth-child(2) {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #bfd2e3;
}
.arena-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f3ec;
  color: #16314c;
  text-align: left;
  border: 1px solid #c4d6df;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.product-art {
  display: grid;
  place-items: center;
  width: 100%;
  height: 160px;
  background: #efeee9;
  padding: 12px;
}
.product-art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 13px 38px 15px 14px;
  border-top: 1px solid #d8dedf;
}
.product-title {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}
.product-status {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #537182;
  margin-top: 8px;
}
.product-arrow {
  position: absolute;
  bottom: 13px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #ffce59;
  color: #29344b;
  border-radius: 4px;
  font-size: 20px;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px #0018296e;
}
.store-note {
  margin-top: 14px;
  color: #aac5d7;
  font-size: 13px;
}
.site-footer {
  border-top: 1px solid #1b769d;
  background: linear-gradient(#052740, #031829);
  padding-bottom: max(18px, env(safe-area-inset-bottom));
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 110px;
}
.footer-brand {
  flex: none;
}
.footer-brand img {
  width: 140px;
  height: 100px;
  object-fit: contain;
}
.footer-inner > .eyebrow {
  font-size: 11px;
}
.footer-inner nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
}
.footer-inner nav a {
  padding-block: 12px;
}
.footer-inner nav a:hover,
.telegram-link:hover {
  color: var(--gold);
}
.telegram-link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  min-height: 44px;
}
.footer-bottom {
  border-top: 1px solid #29617b66;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7c9ab2;
  font-size: 11px;
}
.footer-bottom > span:last-child {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
dialog {
  background: linear-gradient(140deg, #0a3956, #041e36);
  color: var(--text);
  border: 1px solid #39a5cc;
  border-radius: 16px;
  width: min(880px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  box-shadow: 0 30px 100px #0009;
}
dialog::backdrop {
  background: #001121cf;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: sticky;
  top: 12px;
  margin: 12px 12px 0 auto;
  display: flex;
  z-index: 1;
  font-size: 30px;
  box-shadow: 0 2px 14px #041e36;
}
#dialog-content {
  padding: 4px 28px 28px;
}
#dialog-content h2 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cream);
  margin: 7px 0 18px;
}
#dialog-content p {
  margin: 12px 0;
  overflow-wrap: break-word;
}
.dialog-art {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 9px;
  margin-block: 16px;
}
.dialog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: start;
}
.dialog-hero-grid > .dialog-art {
  margin: 4px 0;
}
.dialog-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.dialog-muted {
  color: var(--muted);
  font-size: 14px;
}
.dialog-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-block: 20px;
}
.dialog-stats > div {
  background: #0c436357;
  border: 1px solid #28749480;
  border-radius: 6px;
  padding: 10px;
}
.dialog-stats dt {
  font-size: 12px;
  color: var(--muted);
}
.dialog-stats dd {
  margin: 5px 0 0;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.dialog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.dialog-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
  padding: 11px 15px;
  border-radius: 6px;
  border: 1px solid #378db2;
  background: #0b4668;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.dialog-action:hover {
  background: #115d80;
}
.noscript-message {
  padding: 16px;
  background: #0a3d57;
  text-align: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1800px) {
  .hero-scene img {
    object-position: center 56%;
  }
  .hero,
  .hero-inner {
    min-height: 650px;
  }
}
@media (max-width: 1199px) {
  .header-inner {
    gap: 16px;
    min-height: 80px;
  }
  .brand {
    width: 160px;
    height: 80px;
  }
  .brand img {
    width: 160px;
    height: 100px;
  }
  .main-nav {
    position: absolute;
    left: 32px;
    right: 32px;
    top: calc(100% - 1px);
    padding: 14px;
    background: #05263ff7;
    border: 1px solid #217da4;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 15px 25px #00142199;
    display: none;
    align-items: stretch;
  }
  .main-nav.is-open {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .main-nav a {
    text-align: center;
    padding: 16px 8px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero,
  .hero-inner {
    min-height: 550px;
  }
  .hero-copy {
    width: 48%;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding-inline: 15px;
    gap: 8px;
  }
  .hero-description {
    font-size: 16px;
  }
  .feature {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  .feature h2 {
    font-size: 18px;
  }
  .hero-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .portrait {
    aspect-ratio: 1.35;
  }
  .card-copy .card-title {
    min-height: 0;
  }
  .card-copy {
    padding: 15px 16px 18px;
  }
  .card-title {
    font-size: 21px;
  }
  .card-subtitle {
    font-size: 14px;
  }
  .card-copy .card-arrow {
    right: 14px;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-art {
    height: 180px;
  }
  .arena-copy .card-title {
    font-size: 17px;
  }
  .arena-copy {
    padding: 14px 30px 17px 12px;
  }
  .arena-copy .card-arrow {
    width: 22px;
    height: 22px;
    right: 6px;
    bottom: 8px;
  }
  .footer-inner {
    flex-wrap: wrap;
    padding-block: 10px 20px;
    gap: 12px 24px;
  }
  .footer-inner nav {
    margin-left: auto;
  }
  .footer-inner > .eyebrow {
    display: none;
  }
}
@media (max-width: 767px) {
  :root {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    position: sticky;
    top: 0;
    padding-top: env(safe-area-inset-top);
  }
  .header-inner {
    min-height: 68px;
    gap: 8px;
  }
  .brand {
    width: 118px;
    height: 68px;
  }
  .brand img {
    width: 118px;
    height: 82px;
  }
  .header-actions {
    gap: 6px;
  }
  .header-play,
  .profile-button,
  .store-button {
    display: none;
  }
  .language-button {
    padding: 0 7px;
  }
  .main-nav {
    left: 16px;
    right: 16px;
  }
  .main-nav.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-nav a {
    font-size: 16px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #05243e;
  }
  .hero-scene {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    aspect-ratio: 1.9;
    overflow: hidden;
    order: 0;
  }
  .hero-scene img {
    height: 100%;
    object-fit: cover;
    object-position: center 67%;
  }
  .hero::after {
    display: none;
  }
  .hero-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #05243e, transparent 27%);
  }
  .hero-inner {
    min-height: 0;
    display: block;
    padding-block: 16px 52px;
    order: 1;
  }
  .hero-copy {
    max-width: 620px;
    width: 100%;
  }
  .hero-eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: clamp(40px, 8.1vw, 60px);
    line-height: 1.04;
    margin-bottom: 20px;
  }
  .hero h1 > span {
    display: inline;
  }
  .hero h1 > span:first-child::after {
    content: " ";
  }
  .hero h1 > strong {
    display: block;
  }
  html[lang="ru"] .hero h1 {
    font-size: clamp(35px, 7.6vw, 57px);
  }
  .hero-description {
    max-width: 580px;
    font-size: 16px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 16px;
    min-height: 50px;
    flex: 1;
    padding-inline: 12px;
  }
  .hero-note {
    font-size: 12px;
    margin-top: 16px;
  }
  .content-shell {
    margin-top: 0;
    width: 100%;
    border-inline: 0;
    border-radius: 0;
    padding: 22px 16px 28px;
    border-top: 1px solid #246b8c;
    background: linear-gradient(140deg, #07324e, #05243d);
  }
  .features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 18px;
  }
  .feature-icon {
    width: 58px;
    height: 58px;
  }
  .feature-icon svg {
    width: 32px;
    height: 32px;
  }
  .feature h2 {
    font-size: 18px;
  }
  .feature p {
    font-size: 16px;
  }
  .section {
    padding-top: 32px;
  }
  .section-heading {
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  .text-link {
    font-size: 13px;
    padding: 0;
    justify-content: flex-start;
    min-height: 44px;
  }
  .section-tag {
    font-size: 10px;
    margin: 0;
  }
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .arena-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .arena-card > img {
    aspect-ratio: 3.2;
  }
  .arena-copy {
    padding: 16px 48px 18px 16px;
  }
  .arena-copy .card-title {
    font-size: 21px;
  }
  .arena-copy > span:nth-child(2) {
    font-size: 16px;
  }
  .arena-copy .card-arrow {
    right: 14px;
    bottom: 18px;
    width: 27px;
    height: 27px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-title {
    font-size: 16px;
  }
  .product-art {
    height: 180px;
  }
  .product-copy {
    padding: 16px 40px 16px 16px;
  }
  .store-note {
    font-size: 13px;
    line-height: 1.5;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: start;
  }
  .footer-brand img {
    width: 132px;
    height: 90px;
  }
  .footer-inner nav {
    grid-column: 1/-1;
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .telegram-link {
    justify-self: end;
  }
  .footer-bottom {
    font-size: 10px;
    flex-wrap: wrap;
    gap: 9px;
  }
  .footer-bottom > span:last-child {
    letter-spacing: 0.1em;
  }
  .dialog-hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dialog-hero-grid > .dialog-art {
    width: min(260px, 100%);
    justify-self: center;
    max-height: 260px;
  }
  #dialog-content {
    padding: 0 20px 24px;
  }
  .dialog-list {
    gap: 8px;
  }
  .dialog-action {
    font-size: 14px;
    flex-grow: 1;
  }
  .dialog-stats {
    gap: 8px;
  }
  .dialog-art {
    max-height: 300px;
  }
}
@media (max-width: 479px) {
  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    flex-direction: row;
    align-items: stretch;
  }
  .portrait {
    width: 42%;
    aspect-ratio: auto;
    flex: none;
    min-height: 168px;
  }
  .portrait img {
    object-position: center;
    object-fit: cover;
  }
  .card-copy {
    border-top: 0;
    border-left: 2px solid var(--accent);
    justify-content: center;
    padding: 16px 16px 20px;
  }
  .card-copy .card-title {
    font-size: 20px;
  }
  .role {
    font-size: 11px;
  }
  .card-subtitle {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 40px;
  }
  html[lang="ru"] .hero h1 {
    font-size: 35px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
    flex: auto;
    justify-content: space-between;
    padding-inline: 20px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-note {
    max-width: 265px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.07em;
  }
  .hero-scene {
    aspect-ratio: 1.65;
  }
  .product-card {
    flex-direction: row;
    min-height: 150px;
  }
  .product-art {
    width: 42%;
    height: 150px;
    flex: none;
    padding: 12px;
  }
  .product-copy {
    border-top: 0;
    border-left: 1px solid #d8dedf;
    justify-content: center;
    padding: 16px 35px 16px 14px;
  }
  .product-title {
    font-size: 16px;
  }
  .product-status {
    font-size: 12px;
  }
  .feature {
    gap: 14px;
    padding: 16px 12px;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
  }
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  .feature h2 {
    font-size: 17px;
  }
  .feature p {
    font-size: 16px;
  }
  .section-heading h2 {
    font-size: 24px;
  }
  .section-heading {
    gap: 6px;
  }
  .arena-card > img {
    aspect-ratio: 2.7;
  }
  .arena-copy .card-title {
    font-size: 19px;
  }
  dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 10px;
  }
  #dialog-content {
    padding: 0 15px 20px;
  }
  .dialog-stats dd {
    font-size: 15px;
  }
  .dialog-list .dialog-action {
    flex-basis: 100%;
  }
  .dialog-close {
    top: 8px;
    margin: 8px 8px 0 auto;
  }
  .footer-bottom > span {
    display: block;
  }
  .footer-inner nav {
    gap: 7px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Keep intrinsic artwork sizes inside their layout tracks. */
.product-art {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-art img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}
.card-copy,
.product-copy,
.hero-copy,
.feature > div {
  min-width: 0;
}
h1,
.feature h2,
.product-title {
  overflow-wrap: anywhere;
}
.hero-scene img {
  object-position: center 42%;
}
.button {
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: drop-shadow(0 3px 1px #00172a66);
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  clip-path: polygon(
    9px 0,
    calc(100% - 9px) 0,
    100% 9px,
    100% calc(100% - 9px),
    calc(100% - 9px) 100%,
    9px 100%,
    0 calc(100% - 9px),
    0 9px
  );
}
.button::after {
  inset: 2px;
  z-index: -1;
}
.button-gold::before {
  background: #ffe8a6;
}
.button-gold::after {
  background: linear-gradient(#ffe095, #ffcb53 45%, #eba02a);
}
.button-blue::before {
  background: #1fb0e3;
}
.button-blue::after {
  background: linear-gradient(#0b527b, #052d4b);
}
.button:hover {
  filter: brightness(1.12) drop-shadow(0 3px 1px #00172a66);
}
html:not(.js) .menu-toggle {
  display: none;
}
@media (max-width: 1199px) {
  html:not(.js) .header-inner {
    flex-wrap: wrap;
  }
  html:not(.js) .main-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    order: 3;
    width: 100%;
    box-shadow: none;
  }
  html:not(.js) .main-nav a {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .hero-scene img {
    object-position: center 67%;
  }
}
.card-copy > span,
.product-copy > span {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.card-arrow .icon,
.product-arrow .icon {
  width: 14px;
  height: 14px;
}
.footer-inner nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.main-nav .mobile-profile {
  display: none;
}
@media (max-width: 767px) {
  .main-nav .mobile-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1/-1;
    border-top: 1px solid #277497;
    margin-top: 5px;
  }
}
.container {
  width: min(
    1400px,
    calc(
      100% - max(32px, env(safe-area-inset-left)) -
        max(32px, env(safe-area-inset-right))
    )
  );
}
@media (max-width: 767px) {
  .container {
    width: calc(
      100% - max(16px, env(safe-area-inset-left)) -
        max(16px, env(safe-area-inset-right))
    );
  }
  .content-shell {
    width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}
.section-heading > div {
  min-width: 0;
  max-width: 100%;
}
.section-heading h2,
.feature p {
  overflow-wrap: anywhere;
}
.main-nav a {
  min-width: 0;
  overflow-wrap: anywhere;
}
.main-nav a > span {
  min-width: 0;
  max-width: 100%;
}
