:root {
  --bg: #061116;
  --bg-deep: #030a0e;
  --panel: #08171d;
  --panel-2: #0b1b21;
  --line: rgba(255,255,255,.09);
  --text: #f4f7f8;
  --muted: #8d9ba1;
  --green: #00ef75;
  --green-soft: #13c86d;
  --green-dark: #007a43;
  --accent-rgb: 0, 239, 117;
  --blue: #1688ff;
  --red: #ff3b2f;
  --yellow: #ffc934;
  --shadow-green: 0 0 28px rgba(var(--accent-rgb), .28);
  --radius: 14px;
  --container: 1180px;
}
html[data-theme="green"] {
  --green: #00ef75;
  --green-soft: #13c86d;
  --green-dark: #007a43;
  --accent-rgb: 0, 239, 117;
}
html[data-theme="red"] {
  --green: #ff443a;
  --green-soft: #e83b34;
  --green-dark: #8d1e1a;
  --accent-rgb: 255, 68, 58;
}
html[data-theme="blue"] {
  --green: #1688ff;
  --green-soft: #247ee0;
  --green-dark: #0a477f;
  --accent-rgb: 22, 136, 255;
}
.theme-switcher {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.theme-switcher__button {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #071014;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  cursor: pointer;
  opacity: 1;
  transition: border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.theme-switcher__button img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  pointer-events: none;
}
.theme-switcher__button:hover {
  background: #071014;
  border-color: rgba(255, 255, 255, .24);
  transform: translateX(-2px);
}
.theme-switcher__button--active {
  background: #071014;
  border-color: rgba(var(--accent-rgb), .95);
  box-shadow: 0 0 7px rgba(var(--accent-rgb), .35),
    0 0 15px rgba(var(--accent-rgb), .12),
    0 6px 18px rgba(0, 0, 0, .35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background-color: #03090d;
  background-image: linear-gradient(
      rgba(3, 9, 14, 0.30),
      rgba(3, 9, 14, 0.30)
    ),
    url("assets/images/back.webp");
  background-repeat: no-repeat,
    repeat-y;
  background-position: center top,
    center top;
  background-size: 100% 100%,
    100% auto;
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .06;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.06) 0,
      rgba(255,255,255,.06) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
}
.step__icon img {
  display: block;
  width: 102px;
  height: 102px;
  object-fit: contain;
}
a {
  color: inherit;
  text-decoration: none;
}
.hero__title {
  transform: rotate(-2deg)
        skewX(-3deg)
        scaleX(1.08);
}
.hero__title {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 4.7vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  width: max-content;
  white-space: nowrap;
}
.hero__title-line--white {
  color: #ffffff;
}
.hero__title-line--green {
  color: var(--green);
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
.ws-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: -0.125em;
  pointer-events: none;
}
.site-shell {
  width: 100%;
  overflow: hidden;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.header {
  position: absolute;
  z-index: 100;
  padding: 27px 10px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.header__inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
}
.brand {
  position: relative;
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: .72;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  letter-spacing: -.04em;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.6));
}
.nav__mobile-head {
  display: none;
}
.nav__close {
  display: none;
}
.brand::before,
.brand::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  transform: rotate(45deg);
  border: 2px solid rgba(255,53,48,.55);
  z-index: -1;
}
.brand::after {
  width: 43px;
  height: 43px;
  border-color: rgba(255,53,48,.25);
}
.brand__war {
  font-size: 26px;
  color: #f8f8f8;
  text-shadow: 0 2px 0 #7c858b, 0 4px 10px #000;
}
.brand__strike {
  font-size: 31px;
  color: #cbd1d4;
  text-shadow: 0 2px 0 #6e777c, 0 4px 10px #000;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  justify-self: center;
  padding: 12px 10px;
  background: rgba(3, 9, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 7px;
  transition: color .2s ease,
    background .2s ease;
}
.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav__link--active {
  color: var(--green);
}
.nav__link--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 18px;
  transform: translateX(-50%);
  background: var(--green);
  box-shadow: var(--shadow-green);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease,
    background-color .2s ease,
    box-shadow .2s ease;
}
.btn:hover,
.appstore-button:hover {
  transform: translateY(-2px);
}
.btn--download {
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(
      180deg,
      rgba(var(--accent-rgb), 1) 0%,
      var(--green-soft) 100%
    );
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), .24);
}
.btn--small {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 12px;
}
.btn__apple {
  font-size: 18px;
}
.langs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.langs__item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #7e8c91;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}
.langs__item--active {
  color: var(--green);
}
.burger {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.burger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}
.hero {
  position: relative;
  padding: 135px 0 10px 0;
  isolation: isolate;
  background: linear-gradient(
    90deg,
    rgba(2, 11, 15, 0.62) 0%,
    rgba(2, 11, 15, 0.42) 30%,
    rgba(2, 11, 15, 0.22) 58%,
    rgba(2, 11, 15, 0.10) 100%
  ),
  url("../assets/images/maps.webp") center center / 100% auto no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  pointer-events: none;
  background: linear-gradient(
    180deg,

    rgba(3, 9, 14, 0) 0%,
    rgba(3, 9, 14, 0.30) 12%,
    rgba(3, 9, 14, 0.65) 25%,
    rgba(3, 9, 14, 0.90) 38%,

    #03090e 52%,
    #000000 100%
  );
}
.hero__map {
  display: none;
}
.hero__glow {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .16;
  z-index: -1;
}
.stat-row__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.stat-row__head span {
  margin: 0;
}
.stat-row__head b {
  margin: 0;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.equipment-card__name {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.hero__glow--left {
  left: -180px;
  top: 180px;
  background: var(--blue);
}
.hero__glow--right {
  right: -140px;
  top: 130px;
  background: var(--green);
}
.hero__inner {
  min-height: 570px;
  display: grid;
  grid-template-columns: .9fr 1.15fr;
  align-items: center;
  gap: 44px;
}
.hero__content {
  position: relative;
  z-index: 4;
  padding-top: 40px;
  padding-bottom: 30px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}
.hero__text {
  max-width: 520px;
  margin: 28px 0;
  color: #d1dadc;
  font-size: 17px;
  line-height: 1.52;
}
.appstore-button {
  width: fit-content;
  min-height: 65px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(
      180deg,
      rgba(var(--accent-rgb), 1) 0%,
      var(--green-soft) 100%
    );
  box-shadow: 0 10px 36px rgba(var(--accent-rgb), .18);
  transition: transform .2s ease,
    box-shadow .2s ease;
}
.appstore-button:hover {
  box-shadow: 0 14px 44px rgba(var(--accent-rgb), .28);
}
.appstore-button__icon {
  font-size: 44px;
  line-height: 1;
}
.appstore-button span:last-child {
  display: flex;
  flex-direction: column;
}
.appstore-button small {
  font-size: 14px;
  font-weight: 700;
}
.appstore-button strong {
  font-size: 24px;
  line-height: 1;
}
.hero__visual {
  position: relative;
  min-height: 560px;
}
.hero__phone {
  position: absolute;
  z-index: 5;
  top: -80px;
  left: 50%;
  width: 460px;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero__phone-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .55))
    drop-shadow(0 0 25px rgba(0, 239, 117, .08));
}
.progress {
  height: 5px;
  margin: 10px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #15282e;
}
.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  box-shadow: 0 0 10px rgba(0,239,117,.4);
}
.hero__benefits {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  padding: 20px 0 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.benefit {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 4px 14px;
  border-right: 1px solid rgba(255, 255, 255, .055);
  text-align: center;
}
.benefit:last-child {
  border-right: 0;
}
.benefit__icon {
  color: var(--green);
  font-size: 40px;
  line-height: 0.7;
  text-shadow: 0 0 15px rgba(0,239,117,.45);
}
.benefit strong {
  margin-top: 15px;
  display: block;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}
.benefit span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
}
.section {
  position: relative;
}
.section--dark {
  background: linear-gradient(
      180deg,
      rgba(4, 6, 8, 0.35),
      rgba(4, 6, 8, 0.18)
    );
}
.section--panel {
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  margin-top: 50px;
}
.section-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.section-heading--compact {
  align-items: flex-start;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}
.step {
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: 28px 22px 25px;
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      transparent 55%
    ),
    rgba(7, 20, 25, 0.78);
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.025),
    inset 0 0 12px rgba(255, 255, 255, 0.015);
  transition: transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      transparent 55%
    ),
    rgba(7, 20, 25, 0.92);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.10),
    0 0 24px rgba(255, 255, 255, 0.055),
    inset 0 0 15px rgba(255, 255, 255, 0.025);
}
.step__top {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.step__icon {
  color: var(--green);
  font-size: 42px;
  text-shadow: 0 0 20px rgba(0,239,117,.35);
}
.step:nth-child(2) .step__icon {
  color: #1989ff;
}
.step:nth-child(3) .step__icon {
  color: #ff443a;
}
.step:nth-child(4) .step__icon {
  color: #4b9cff;
}
.step:nth-child(5) .step__icon {
  color: #ffc735;
}
.step h3 {
  min-height: 50px;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.teams {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background-image: url("assets/images/commands.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  box-shadow: none;
}
.teams__inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 55px;
  padding-bottom: 55px;
}
.teams__content {
  width: 52%;
  max-width: 650px;
  margin-left: auto;
}
.character {
  position: absolute;
  bottom: 0;
  width: 190px;
  height: 390px;
  border-radius: 90px 90px 35px 35px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.55));
}
.character::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -65px;
  width: 125px;
  height: 125px;
  transform: translateX(-50%);
  border-radius: 45% 45% 40% 40%;
  background: inherit;
}
.character::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 74px;
  height: 35px;
  transform: translateX(-50%);
  border: 8px solid rgba(7,13,16,.95);
  border-radius: 20px;
  background: #121b20;
  box-shadow: inset 0 0 18px rgba(255,255,255,.1);
}
.teams__content {
  padding: 70px 0 70px 40px;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 155px);
  gap: 14px;
}
.team-card {
  min-height: 178px;
  padding: 22px 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  text-align: center;
  background: rgba(3,13,17,.72);
  box-shadow: inset 0 0 24px rgba(255,255,255,.02);
}
.team-card__emblem img {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 12px;
  font-size: 28px;
}
.team-card strong,
.team-card span,
.team-card small {
  display: block;
  text-transform: uppercase;
}
.team-card strong {
  font-size: 19px;
}
.team-card span {
  margin-top: 5px;
  font-size: 10px;
}
.team-card small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}
.team-card--blue {
  border-color: rgba(22,136,255,.45);
  box-shadow: inset 0 0 36px rgba(22,136,255,.07), 0 0 20px rgba(22,136,255,.06);
}
.team-card--blue .team-card__emblem,
.team-card--blue strong {
  color: var(--blue);
}
.team-card--red {
  border-color: rgba(255,59,47,.45);
  box-shadow: inset 0 0 36px rgba(255,59,47,.07), 0 0 20px rgba(255,59,47,.06);
}
.team-card--red .team-card__emblem,
.team-card--red strong {
  color: var(--red);
}
.team-card--green {
  border-color: rgba(0,239,117,.45);
  box-shadow: inset 0 0 36px rgba(0,239,117,.07), 0 0 20px rgba(0,239,117,.06);
}
.team-card--green .team-card__emblem,
.team-card--green strong {
  color: #00ef75;
}
.teams__quote {
  margin: 24px 0 0;
  color: #bac5c8;
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}
.screenshots__slider {
  position: relative;
}
.screenshots__viewport {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}
.screenshots__track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.game-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  border: 0.5px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: #09171c;
  transition: border-color .2s ease,
    box-shadow .2s ease;
}
.game-card:hover {
  transform: none;
}
.game-card__image {
  position: relative;
  width: 100%;
  height: 235px;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  background: #071317;
}
.game-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.game-card__content {
  background: #09171c;
  border-radius: 0 0 12px 12px;
}
.slider-arrow {
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-50%);
  transition: color .2s ease,
    transform .2s ease,
    text-shadow .2s ease;
}
.slider-arrow:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255,255,255,.30);
}
.slider-arrow:disabled {
  opacity: .20;
  cursor: default;
}
.slider-dots {
  align-items: center;
}
.slider-dot {
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: width .2s ease,
    border-radius .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}
.slider-dot--active {
  width: 22px;
  border-radius: 10px;
}
.game-card__content {
  padding: 18px 18px 22px;
}
.game-card__content h3 {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
}
.game-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.slider-arrow {
  position: absolute;
  top: 102px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 44px;
}
.slider-arrow--left {
  left: -58px;
}
.slider-arrow--right {
  right: -58px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #536167;
}
.slider-dot--active {
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,239,117,.55);
}
.equipment {
  padding-bottom: 62px;
}
.equipment-card {
  width: 100%;
  min-width: 0;
  min-height: 130px;
  padding: 17px;
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      transparent
    ),
    #071419;
  transition: border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.equipment-card {
  position: relative;
}
.equipment-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.13),
    0 0 26px rgba(255, 255, 255, 0.07),
    inset 0 0 16px rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.equipment-card__body {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.equipment-card__item {
  width: 76px;
  min-width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e8f96;
  font-size: 58px;
  line-height: 1;
  text-shadow: 0 8px 14px #000;
}
.equipment-card__item img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.equipment-card__stats {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
  margin: 0;
}
.stat-row__icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  align-self: center;
}
.stat-row__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-row__content span {
  display: block;
  margin: 0;
  color: #a5b0b4;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.stat-row__content i {
  position: relative;
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #193038;
  box-shadow: inset 0 0 5px rgba(0,0,0,.35);
}
.stat-row__content i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--value);
  border-radius: inherit;
  background: var(--green);
  box-shadow: 0 0 7px rgba(0,239,117,.25);
}
.download {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background: rgba(2, 6, 9, 0.36);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.download::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0) 65%,
    rgba(0, 0, 0, 0.16) 100%
  );
}
.download__inner {
  z-index: 1;
}
.download__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}
.download__title {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  line-height: .95;
  text-transform: uppercase;
  transform: rotate(-5deg);
}
.download__title strong {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 60px;
  font-style: normal;
}
.download__features {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}
.download__features div {
  text-align: center;
}
.download__features b,
.download__features span {
  display: block;
}
.download__features b {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 44px;
}
.download__features span {
  color: #d5dcde;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}
.footer {
  position: relative;
  padding: 30px 0 20px;
  background: #03090d;
}
.footer__inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand--footer {
  transform: scale(.82);
  transform-origin: left center;
}
.footer__brand small {
  display: block;
  margin-top: 30px;
  color: #ffffff;
  font-size: 10px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__nav a {
  color: #ffffff;
  font-size: 10px;
  transition: color .2s ease;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__tagline {
  margin-top: 16px;
  color: var(--green);
  font-size: 15px;
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 1120px) {
  .nav {
    gap: 18px;
  }
  .nav__link {
    font-size: 11px;
  }
  .hero__inner {
    grid-template-columns: .9fr 1fr;
  }
  .phone {
    left: 51%;
    width: 300px;
    height: 590px;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .step {
    border-bottom: 1px solid var(--line);
  }
  .slider-arrow {
    display: none;
  }
}
@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .header__inner {
    min-height: 66px;
    grid-template-columns: 120px 1fr;
  }
  .header__actions {
    justify-self: end;
  }
  .header .btn--download,
  .langs {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(3,13,18,.98);
    box-shadow: 0 15px 35px rgba(0,0,0,.4);
  }
  .nav--open {
    display: flex;
  }
  .nav__link {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav__link--active::after {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 50px;
  }
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__content {
    padding-bottom: 0;
  }
  .hero__text {
    max-width: 620px;
  }
  .hero__visual {
    min-height: 570px;
  }
  .phone {
    left: 50%;
  }
  .hero__benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }
  .benefit {
    border-bottom: 1px solid var(--line);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .teams__inner {
    grid-template-columns: 1fr;
  }
  .teams__content {
    padding: 20px 0 60px;
  }
  .screenshots__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }
  .game-card {
    min-width: 82%;
    scroll-snap-align: center;
  }
  .download__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .download__features {
    justify-content: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
  }
  .brand--footer {
    transform-origin: center;
  }
  .footer__tagline {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .brand__war {
    font-size: 20px;
  }
  .brand__strike {
    font-size: 24px;
  }
  .brand::before {
    width: 47px;
    height: 47px;
  }
  .brand::after {
    width: 35px;
    height: 35px;
  }
  .hero {
    padding-top: 38px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .hero__title {
    font-size: clamp(44px, 14vw, 65px);
  }
  .hero__text {
    margin: 20px 0 24px;
    font-size: 15px;
  }
  .appstore-button {
    min-width: 200px;
    min-height: 64px;
    padding: 0 20px;
  }
  .appstore-button__icon {
    font-size: 30px;
  }
  .appstore-button strong {
    font-size: 21px;
  }
  .hero__visual {
    min-height: 500px;
    margin-top: 8px;
  }
  .phone {
    top: 18px;
    width: 245px;
    height: 484px;
  }
  .hero__benefits {
    grid-template-columns: 1fr 1fr;
  }
  .benefit {
    min-height: 90px;
    padding: 12px 8px;
    justify-content: flex-start;
  }
  .benefit__icon {
    font-size: 25px;
  }
  .benefit strong {
    font-size: 9px;
  }
  .benefit span {
    font-size: 9px;
  }
  .section {
    padding: 50px 0;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    min-height: auto;
    padding: 24px 10px;
    border-right: 0;
  }
  .step__top {
    min-height: auto;
  }
  .step h3 {
    min-height: auto;
  }
  .character {
    width: 120px;
    height: 255px;
  }
  .character::before {
    top: -46px;
    width: 82px;
    height: 82px;
  }
  .character::after {
    top: -17px;
    width: 48px;
    height: 22px;
    border-width: 5px;
  }
  .team-cards {
    gap: 7px;
  }
  .team-card {
    min-height: 150px;
    padding: 16px 7px;
  }
  .team-card__emblem {
    width: 66px;
    height: 66px;
  }
  .team-card strong {
    font-size: 15px;
  }
  .game-card {
    min-width: 91%;
  }
  .game-card__image {
    height: 205px;
  }
  .equipment-card {
    min-height: 130px;
  }
  .download__title {
    font-size: 24px;
  }
  .download__title strong {
    font-size: 34px;
  }
  .download__features {
    gap: 22px;
  }
  .footer__nav {
    gap: 12px 18px;
  }
}
.ws-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.025),
    0 12px 32px rgba(0, 0, 0, 0.16),
    inset 0 0 12px rgba(255, 255, 255, 0.015);
  transition: transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}
.ws-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5px;
  left: -5px;
  width: 58%;
  height: 58%;
  pointer-events: none;
  border-radius: 16px;
  border: 0;
  background: radial-gradient(
      ellipse at 0% 0%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.075) 24%,
      rgba(255, 255, 255, 0.025) 43%,
      transparent 68%
    );
  opacity: .18;
  filter: blur(5px);
  transition: opacity .22s ease,
    filter .22s ease,
    transform .22s ease;
}
.ws-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.10),
    0 0 25px rgba(255, 255, 255, 0.055),
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 0 16px rgba(255, 255, 255, 0.035);
}
.ws-card:hover::before {
  opacity: .95;
  filter: blur(7px);
  transform: scale(1.035);
}
.team-card--blue,
.team-card--red,
.team-card--green {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.025),
    0 12px 32px rgba(0, 0, 0, 0.16),
    inset 0 0 12px rgba(255, 255, 255, 0.015);
}
.equipment-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto;
  top: -5px;
  left: -5px;
  right: auto;
  bottom: auto;
  width: 58%;
  height: 58%;
  pointer-events: none;
  border: 0;
  border-radius: 16px;
  background: radial-gradient(
      ellipse at 0% 0%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.075) 24%,
      rgba(255, 255, 255, 0.025) 43%,
      transparent 68%
    );
  opacity: .18;
  filter: blur(5px);
  transition: opacity .22s ease,
    filter .22s ease,
    transform .22s ease;
}
.equipment-card:hover::before {
  opacity: .95;
  filter: blur(7px);
  transform: scale(1.035);
}
.screenshots__viewport {
  padding-top: 8px;
}
.game-card {
  position: relative;
  isolation: isolate;
}
.game-card.ws-card::before {
  display: none;
}
.game-card::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: -35px;
  left: -35px;
  width: 110px;
  height: 110px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 255, 255, 0.025) 48%,
    transparent 70%
  );
  opacity: 0;
  filter: blur(4px);
  transition: opacity .22s ease;
}
.game-card:hover::after {
  opacity: 1;
}
.game-card.ws-card::before,
.game-card.ws-card::after {
  display: none !important;
}
.game-card {
  box-shadow: 0 14px 40px rgba(0, 0, 0, .16);
}
.game-card:hover {
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .20);
}
#about.section--dark {
  position: relative;
  overflow: hidden;
  background: transparent;
}
#about::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #000000 0%,
    #000000 22%,
    rgba(0, 0, 0, 0.92) 38%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.38) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}
#about > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  body {
    background-size: 100% 100%,
      auto 760px;
  }
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .header {
    padding: 14px 0;
  }
  .header__inner {
    min-height: 54px;
    grid-template-columns: 96px 1fr;
    column-gap: 12px;
  }
  .brand__war {
    font-size: 19px;
  }
  .brand__strike {
    font-size: 23px;
  }
  .brand::before {
    width: 43px;
    height: 43px;
  }
  .brand::after {
    width: 32px;
    height: 32px;
  }
  .header__actions {
    gap: 10px;
  }
  .header .btn--download {
    display: none;
  }
  .langs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    background: rgba(3,13,18,.68);
  }
  .langs__item {
    min-width: 30px;
    min-height: 28px;
    border-radius: 6px;
    font-size: 9px;
  }
  .langs__item--active {
    background: rgba(var(--accent-rgb), .12);
  }
  .burger {
    display: block;
    width: 38px;
    height: 38px;
    padding: 8px;
  }
  .nav {
    top: 64px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    gap: 0;
    padding: 8px;
    border-radius: 12px;
    background: rgba(3, 13, 18, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
  .nav__link {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 12px;
  }
  .theme-switcher {
    position: fixed;
    z-index: 90;
    top: 50%;
    right: 7px;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .theme-switcher__button {
    background: #071014;
    border: 1px solid rgba(255, 255, 255, .10);
  }
  .theme-switcher__button--active {
    border-color: rgba(var(--accent-rgb), .95);
    box-shadow: 0 0 6px rgba(var(--accent-rgb), .32),
      0 0 12px rgba(var(--accent-rgb), .10);
  }
  .theme-switcher__button {
    width: 38px;
    height: 38px;
    padding: 5px;
    border-radius: 8px;
  }
  .theme-switcher__button img {
    width: 22px;
    height: 22px;
  }
  .theme-switcher__button:hover {
    transform: none;
  }
  .hero {
    min-height: auto;
    padding: 92px 0 0;
    background: linear-gradient(
        180deg,
        rgba(2,11,15,.50) 0%,
        rgba(2,11,15,.62) 44%,
        rgba(2,11,15,.92) 82%,
        #03090e 100%
      ),
      url("../assets/images/maps.webp") 58% top / auto 510px no-repeat;
  }
  .hero::after {
    height: 130px;
  }
  .hero__inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero__content {
    width: 100%;
    padding: 28px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: .18em;
  }
  .hero__title {
    max-width: 100%;
    transform: rotate(-1deg) skewX(-2deg);
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .hero__title-line {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
  .hero__text {
    max-width: 520px;
    margin: 18px 0 20px;
    color: rgba(231,238,240,.88);
    font-size: 14px;
    line-height: 1.55;
  }
  .appstore-button {
    min-width: 0;
    min-height: 48px;
    gap: 10px;
    padding: 0 12px;
    border-radius: 10px;
  }
  .appstore-button__icon {
    font-size: 29px;
  }
  .appstore-button small {
    font-size: 10px;
  }
  .appstore-button strong {
    font-size: 19px;
  }
  .hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    margin-top: 28px;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.055);
  }
  .benefit {
    min-height: 86px;
    gap: 5px;
    padding: 13px 8px 11px;
    border-right: 1px solid rgba(255,255,255,.055);
    border-bottom: 1px solid rgba(255,255,255,.055);
  }
  .benefit:nth-child(2n) {
    border-right: 0;
  }
  .benefit__icon {
    font-size: 27px;
    line-height: 1;
  }
  .benefit strong {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.2;
  }
  .benefit span {
    margin-top: 2px;
    font-size: 12px;
  }
  .hero__visual {
    width: 100%;
    min-height: 390px;
    margin-top: -2px;
  }
  .hero__phone {
    top: 10px;
    width: min(74vw, 300px);
  }
  .section-heading {
    margin-top: 34px;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.02;
  }
  #about.section--dark {
    padding-top: 6px;
  }
  #about::before {
    height: 240px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step {
    min-height: 0;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    grid-template-areas: "icon title"
      "icon text";
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 16px 16px;
  }
  .step__top {
    grid-area: icon;
    min-height: 0;
    margin: 0;
  }
  .step__icon img {
    width: 70px;
    height: 70px;
  }
  .step h3 {
    grid-area: title;
    min-height: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.15;
  }
  .step p {
    grid-area: text;
    font-size: 12px;
    line-height: 1.45;
  }
  .teams {
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background-color: #03090d;
    background-position: 29% top;
    background-size: auto 330px;
  }
  .teams::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(3,9,13,0) 0,
        rgba(3,9,13,.08) 160px,
        rgba(3,9,13,.72) 270px,
        #03090d 355px,
        #03090d 100%
      );
  }
  .teams__inner {
    min-height: 0;
    display: block;
    padding-top: 300px;
    padding-bottom: 42px;
  }
  .teams__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .teams .section-heading {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .teams .section-heading h2 {
    font-size: clamp(26px, 7.8vw, 34px);
    line-height: 1.02;
  }
  .team-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .team-card {
    min-width: 0;
    min-height: 136px;
    padding: 12px 6px;
    border-radius: 10px;
    background: rgba(4,14,18,.88);
  }
  .team-card__emblem img {
    width: 56px;
    height: 56px;
    margin: 0 auto 7px;
  }
  .team-card strong {
    font-size: 13px;
  }
  .team-card span {
    margin-top: 4px;
    font-size: 8px;
  }
  .team-card small {
    margin-top: 5px;
    font-size: 8px;
  }
  .teams__quote {
    max-width: 330px;
    margin: 18px auto 0;
    font-size: 12px;
    text-align: center;
  }
  .screenshots .section-heading {
    margin-top: 34px;
  }
  .screenshots__viewport {
    overflow: hidden;
  }
  .screenshots__track {
    gap: 12px;
  }
  .game-card {
    flex: 0 0 86%;
    min-width: 86%;
    scroll-snap-align: center;
  }
  .game-card__image {
    height: min(62vw, 245px);
  }
  .game-card__content {
    min-height: 85px;
    padding: 15px 15px 17px;
  }
  .game-card__content h3 {
    font-size: 14px;
  }
  .game-card__content p {
    font-size: 11px;
    line-height: 1.45;
  }
  .slider-dots {
    margin-top: 16px;
  }
  .equipment {
    padding-bottom: 44px;
  }
  .equipment .section-heading {
    margin-bottom: 20px;
  }
  body .equipment-row__heading h3 {
    font-size: 18px;
  }
  body .equipment-row__viewport {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  body .equipment-row .equipment-card {
    flex-basis: 86%;
    min-height: 110px;
  }
  .equipment-card {
    padding: 14px;
  }
  .equipment-card__body {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }
  .equipment-card__item,
  .equipment-card__item img {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }
  .equipment-card__name {
    font-size: 12px;
  }
  .equipment-card__stats {
    gap: 7px;
  }
  .download {
    padding: 42px 0;
  }
  .download__inner {
    gap: 28px;
  }
  .download__title {
    font-size: 22px;
    transform: rotate(-3deg);
  }
  .download__title strong {
    font-size: 36px;
  }
  .download__features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .download__features b {
    font-size: 30px;
  }
  .download__features span {
    font-size: 10px;
  }
  .footer {
    padding-bottom: 86px;
  }
  .footer__brand small {
    margin-top: 24px;
  }
  .footer__nav {
    gap: 10px 14px;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 44px), var(--container));
  }
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header__inner {
    min-height: 48px;
    grid-template-columns: 86px 1fr;
  }
  .langs {
    padding: 3px;
  }
  .langs__item {
    min-width: 27px;
    min-height: 26px;
    font-size: 8px;
  }
  .burger {
    width: 35px;
    height: 35px;
  }
  .nav {
    top: 57px;
    left: 12px;
    right: 12px;
  }
  .hero {
    padding-top: 76px;
    background-size: auto 445px;
    background-position: 58% top;
  }
  .hero__content {
    padding-top: 20px;
  }
  .hero__title {
    font-size: clamp(31px, 9.5vw, 36px);
  }
  .hero__text {
    max-width: 360px;
    margin: 15px 0 18px;
    font-size: 13px;
  }
  .hero__visual {
    display: none;
  }
  .hero__phone {
    top: 4px;
    width: min(76vw, 270px);
  }
  .hero__benefits {
    margin-top: 24px;
  }
  .benefit {
    min-height: 80px;
  }
  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .section-heading {
    margin-top: 24px;
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: clamp(25px, 7.5vw, 31px);
  }
  .step {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 13px;
    padding: 13px;
  }
  .step__icon img {
    width: 70px;
    height: 70px;
  }
  .step h3 {
    font-size: 16px;
  }
  .step p {
    font-size: 14px;
  }
  .teams {
    background-size: auto 286px;
    background-position: 28% top;
  }
  .teams__inner {
    padding-top: 260px;
    padding-bottom: 0px;
  }
  .teams::after {
    background: linear-gradient(
        180deg,
        rgba(3,9,13,0) 0,
        rgba(3,9,13,.08) 125px,
        rgba(3,9,13,.72) 230px,
        #03090d 305px,
        #03090d 100%
      );
  }
  .teams .section-heading h2 {
    font-size: clamp(24px, 7.1vw, 29px);
  }
  .team-cards {
    gap: 6px;
  }
  .team-card {
    min-height: 124px;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .team-card__emblem img {
    width: 68px;
    height: 68px;
  }
  .team-card strong {
    font-size: 11px;
    padding-top: 12px;
  }
  .team-card span,
  .team-card small {
    font-size: 7px;
  }
  .teams__quote {
    font-size: 11px;
  }
  .game-card {
    flex-basis: 90%;
    min-width: 90%;
  }
  .game-card__image {
    height: min(66vw, 200px);
  }
  body .equipment-row .equipment-card {
    flex-basis: 73%;
  }
  .download__features {
    gap: 5px;
  }
  .footer__nav a {
    font-size: 9px;
  }
  .theme-switcher__button {
    width: 35px;
    height: 35px;
  }
  .theme-switcher__button img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 390px) {
  .container {
    width: calc(100% - 20px);
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__text {
    font-size: 12px;
  }
  .team-card {
    min-height: 118px;
  }
  .team-card__emblem img {
    width: 44px;
    height: 44px;
  }
  .team-card strong {
    font-size: 10px;
  }
  .download__features span {
    font-size: 9px;
  }
}
.hero__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.hero__actions .appstore-button {
  min-width: 205px;
}
.telegram-button {
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(
      180deg,
      #343b3f 0%,
      #20272b 100%
    );
  box-shadow: 0 10px 36px rgba(0, 0, 0, .28);
}
.telegram-button:hover {
  background: linear-gradient(
      180deg,
      #3d454a 0%,
      #272f33 100%
    );
  box-shadow: 0 14px 44px rgba(0, 0, 0, .38);
}
@media (max-width: 560px) {
  .hero__actions {
    width: 84%;
    gap: 14px;
  }
  .hero__actions .appstore-button {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
  }
  .hero__actions .appstore-button__icon {
    font-size: 25px;
  }
  .hero__actions .appstore-button small {
    font-size: 9px;
  }
  .hero__actions .appstore-button strong {
    font-size: 16px;
  }
}
@media (max-width: 860px) {
  .hero {
    min-height: 100svh;
    display: flex;
    padding-top: 76px;
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(
      180deg,
      rgba(2, 11, 15, .18) 0%,
      rgba(2, 11, 15, .22) 55%,
      rgba(2, 11, 15, .35) 78%,
      rgba(2, 11, 15, .62) 92%,
      rgba(2, 11, 15, .82) 100%
    ),
    url("../assets/images/maps.webp") 14% center / auto 100% no-repeat;
  }
  .hero__inner {
    width: 100%;
    min-height: calc(100svh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .hero__content {
    width: min(calc(100% - 44px));
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    align-items: flex-start;
  }
  .eyebrow {
    margin-bottom: 12px;
  }
  .hero__title {
    margin-bottom: 0;
  }
  .hero__text {
    margin-top: 22px;
    margin-bottom: 24px;
  }
  .hero__actions {
    margin-top: 0;
  }
  .hero__benefits {
    margin-top: auto;
  }
  .hero__visual {
    display: none;
  }
  .hero::after {
    height: 110px;
    background: linear-gradient(
    180deg,
    rgba(3, 9, 14, 0) 0%,
    rgba(3, 9, 14, .12) 35%,
    rgba(3, 9, 14, .42) 75%,
    #03090e 100%
  );
  }
}
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 10px;
    left: auto;
    right: 6px;
    width: 250px;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    background: rgba(3, 13, 18, .96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .48),
      0 0 20px rgba(0, 0, 0, .20);
    transform: none;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  .nav--open {
    display: flex;
  }
  .nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 2px 7px 10px 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .nav__mobile-head span {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  .nav__close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
    font-size: 17px;
    transition: color .2s ease,
      background .2s ease;
  }
  .nav__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, .10);
  }
  .nav__link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    border-radius: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
  }
  .nav__link:last-child {
    border-bottom: 0;
  }
  .nav__link--active {
    color: var(--green);
    background: rgba(var(--accent-rgb), .07);
  }
  .nav__link--active::after {
    display: none;
  }
}
@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 860px) {
  .langs__item {
    width: 44px;
    height: 44px;
  }
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
  }
  .footer__nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 10px;
  }
}
.equipment-catalog {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.equipment-row {
  min-width: 0;
}
.equipment-row__heading {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.equipment-row__heading h3 {
  margin: 0;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.equipment-row__slider {
  position: relative;
}
.equipment-row__viewport {
  width: 100%;
  overflow: hidden;
  padding-top: 14px;
  padding-bottom: 14px;
}
.equipment-row__track {
  display: flex;
  gap: 16px;
  transition: transform .38s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.equipment-row .equipment-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  min-height: 130px;
}
.equipment-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 38px;
  height: 64px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 56px;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-50%);
  transition: color .2s ease,
    text-shadow .2s ease,
    opacity .2s ease;
}
.equipment-arrow:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, .30);
}
.equipment-arrow--left {
  left: -48px;
}
.equipment-arrow--right {
  right: -48px;
}
.equipment-arrow:disabled {
  opacity: .16;
  cursor: default;
  text-shadow: none;
}
@media (max-width: 1120px) {
  .equipment-row .equipment-card {
    flex-basis: calc((100% - 16px) / 2);
  }
  .equipment-arrow--left {
    left: -34px;
  }
  .equipment-arrow--right {
    right: -34px;
  }
}
@media (max-width: 860px) {
  .equipment-arrow {
    display: none;
  }
  .equipment-row__viewport {
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .equipment-row__viewport::-webkit-scrollbar {
    display: none;
  }
  .equipment-row__track {
    transform: none !important;
  }
  .equipment-row .equipment-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
}
@media (max-width: 560px) {
  .equipment-catalog {
    gap: 15px;
  }
  .equipment-row__heading h3 {
    font-size: 21px;
  }
  .equipment-row .equipment-card {
    flex-basis: 91%;
  }
}
