@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300 700;
  src: url("media/fonts/oswald-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300 700;
  src: url("media/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #c93e3b;
  --black: #050505;
  --soft-black: #0e0e0e;
  --muted: #858585;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: #ffffff;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.visual-hero {
  position: relative;
  min-height: 450px;
  height: 45vh;
  overflow: hidden;
  background: #000000;
}

.visual-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2040px;
  max-width: none;
  min-width: 160%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.visual-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.visual-hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177px;
  max-height: 62%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.offer {
  background: #ffffff;
  padding: 38px 24px 48px;
}

.offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  align-items: center;
  gap: 58px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.offer__title {
  margin: 0;
  color: #000000;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
}

.offer__title span,
.offer__title b {
  color: var(--red);
  font-style: normal;
}

.offer__title b,
.offer__title em {
  font-weight: 300;
}

.offer__title em {
  color: #000000;
  font-style: normal;
}

.offer__actions {
  display: grid;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  width: 100%;
  border: 3px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #ffffff;
  background: var(--red);
}

.button--primary:hover {
  color: #000000;
  border-color: #000000;
  background: #ffffff;
}

.button--secondary {
  color: var(--red);
  border-color: var(--red);
  background: #ffffff;
}

.button--secondary:hover {
  color: #ffffff;
  background: var(--red);
}

.steps {
  background: #ffffff;
  padding: 58px 24px 28px;
}

.steps__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.steps__title {
  margin: 0 0 50px;
  color: var(--red);
  text-align: center;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 36px;
}

.step {
  min-width: 0;
  text-align: center;
}

.step img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 8px;
}

.steps__controls {
  display: none;
}

.steps__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(180, 63, 90, 0.22);
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.steps__control::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateX(var(--arrow-shift, 0)) rotate(var(--arrow-rotate, -45deg));
}

.steps__control[data-carousel-prev],
.steps__control[data-status-carousel-prev] {
  --arrow-rotate: 135deg;
  --arrow-shift: 2px;
}

.steps__control[data-carousel-next],
.steps__control[data-status-carousel-next] {
  --arrow-rotate: -45deg;
  --arrow-shift: -2px;
}

.steps__control:hover {
  transform: translateY(-1px);
}

.steps__control:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.video-section {
  padding: 30px 24px 68px;
  background: #ffffff;
}

.video-section__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.video-section__title {
  margin: 0 0 28px;
  color: var(--red);
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.video-section__frame {
  display: flex;
  justify-content: center;
}

.video-section__frame iframe {
  width: min(100%, 380px);
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 8px;
  background: #000000;
}

.social {
  padding: 74px 24px 78px;
  text-align: center;
  color: #ffffff;
  background: var(--soft-black);
}

.social__title {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 300;
}

.social__title span {
  color: var(--red);
  font-weight: 700;
}

.social__links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social__links a {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social__links svg {
  display: block;
  width: 64px;
  height: 64px;
  color: currentColor;
  fill: currentColor;
}

.social__links a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.ticker {
  height: 70px;
  overflow: hidden;
  color: var(--muted);
  background: #000000;
}

.ticker__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: ticker 24s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}

.ticker__group span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-size: 20px;
}

.ticker__group span::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

@keyframes ticker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.status-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.status-card {
  width: min(100%, 430px);
  padding: 46px 54px;
  border: 1px solid #333333;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
}

.status-card.is-instructions {
  width: min(100%, 920px);
  padding: 36px 36px 30px;
  text-align: left;
  max-height: 92vh;
  overflow-y: auto;
}

.status-card.is-instructions .status-card__title {
  text-align: center;
  margin-bottom: 22px;
  font-size: 24px;
}

.status-instr__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.status-instr__step {
  margin: 0;
}

.status-instr__step img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.status-instr__controls {
  display: none;
}

.status-instr__video {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.status-instr__video iframe {
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  border: 0;
  border-radius: 8px;
  background: #000;
}

@media (max-width: 640px) {
  .status-card.is-instructions {
    padding: 24px 18px 22px;
  }

  .status-instr__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin: 0 -18px 0;
    padding: 0 18px 18px;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .status-instr__grid::-webkit-scrollbar {
    display: none;
  }

  .status-instr__step {
    flex: 0 0 min(78vw, 320px);
    scroll-snap-align: center;
  }

  .status-instr__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }
}

.status-card__spinner {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 4px solid #333333;
  border-top-color: #e63946;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.status-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.status-card__text {
  margin: 0;
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.5;
}

.status-card.is-ok .status-card__spinner,
.status-card.is-error .status-card__spinner {
  animation: none;
}

.status-card.is-ok .status-card__spinner {
  border-color: #2a9d4f;
}

.status-card.is-error .status-card__spinner {
  border-color: #e63946;
}

.status-card.is-ok .status-card__spinner::after,
.status-card.is-error .status-card__spinner::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.status-card.is-ok .status-card__spinner::after {
  content: "✓";
  color: #2a9d4f;
}

.status-card.is-error .status-card__spinner::after {
  content: "!";
  color: #e63946;
}

.status-card__notice {
  margin: 18px 0 22px;
  padding: 16px 18px;
  border: 1px solid #2a2a2a;
  border-left: 3px solid #229ED9;
  border-radius: 10px;
  background: #141414;
  text-align: left;
}

.status-card__notice-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #d5d5d5;
}

.status-card__notice-line + .status-card__notice-line {
  margin-top: 8px;
}

.status-card__notice b {
  color: #ffffff;
  font-weight: 700;
}

.status-card__timer {
  margin: 18px 0 22px;
  font-size: 17px;
  font-weight: 600;
  color: #ffd166;
  font-variant-numeric: tabular-nums;
}

.status-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.status-card__actions .button {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-card__actions .button--primary {
  background: var(--red);
  color: #ffffff;
}

.status-card__actions .button--secondary {
  background: #2a2a2a;
  color: #ffffff;
  border: 1px solid #3a3a3a;
}

.status-card__actions .button--tg {
  background: #229ED9;
  color: #ffffff;
}

.status-card__actions .button--tg:hover {
  background: #1d8bbf;
}

.status-card__actions .button--ok {
  background: #2a9d4f;
  color: #ffffff;
}

.status-card__actions .button--ok:hover {
  background: #248a45;
}

.status-card__actions .button--ghost {
  background: #2a2a2a;
  color: #ffffff;
  border: 1px solid #3a3a3a;
}

.status-card__actions .button--ghost:hover {
  background: #353535;
}

.status-card__hint {
  margin: 12px 0 0;
  color: #2a9d4f;
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .offer__inner {
    grid-template-columns: minmax(0, 1fr) 302px;
    gap: 40px;
  }

  .offer__title {
    font-size: 50px;
  }

  .button {
    font-size: 18px;
  }
}

@media (max-width: 959px) {
  .offer {
    padding-top: 44px;
  }

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

  .offer__actions {
    width: min(100%, 340px);
  }

  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .visual-hero__video {
    width: 1440px;
    min-width: 230%;
  }

  .offer__title {
    font-size: 30px;
    line-height: 1.32;
  }

  .button {
    min-height: 50px;
    font-size: 15px;
  }

  .steps {
    padding: 44px 0 28px;
  }

  .steps__title {
    margin-bottom: 36px;
    padding: 0 24px;
    font-size: 30px;
  }

  .steps__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 24px 20px;
    scroll-padding: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .steps__grid::-webkit-scrollbar {
    display: none;
  }

  .step {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: center;
  }

  .step img {
    max-width: none;
  }

  .steps__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 16px 24px 0;
  }

  .video-section {
    padding: 24px 18px 54px;
  }

  .video-section__title {
    font-size: 30px;
  }

  .social__title {
    font-size: 30px;
  }
}

@media (max-width: 479px) {
  .visual-hero {
    min-height: 600px;
    height: 65vh;
  }

  .visual-hero__video {
    width: 1268px;
    min-width: 360%;
  }

  .visual-hero__mark {
    width: 104px;
  }

  .offer {
    padding: 36px 28px 46px;
  }

  .offer__actions {
    width: 100%;
  }

  .status-card {
    padding: 38px 28px;
  }
}
