/* Google Fonts moved to HTML <link> tag for non-blocking load */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1c1c1c;
  font-family: "Atkinson Hyperlegible", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #fff;
}

main {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
  position: relative;
}

.mainbg {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  max-width: 896px;
  min-height: 100vh;
}
.mainbg video {
  width: 100%;
  height: 57vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainbg::after {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 896px;
  background: rgba(0, 0, 0, 0) url(../img/grad.webp) top center no-repeat;
  background-size: contain;
}

.content {
  position: fixed;
  z-index: 3;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 896px;
  padding-top: 40vw;
  /* Изначально скрываем контент ниже экрана */
  transform: translateY(200vh);
  /* Плавный переход для анимации выезжания */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.content__title {
  text-align: center;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
}
.content__list {
  padding: 0;
  margin: 0;
  max-width: 208px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
  margin-top: 8px;
  list-style: none;
}
.content__list li {
  font-size: 16px;
  display: flex;
  margin-bottom: 8px;
  align-items: center;
}
.content__list li svg {
  margin-right: 8px;
}
.content__trial {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 22px;
}
.content__price {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  margin-top: 8px;
  font-size: 22px;
  color: #0df028;
  margin-bottom: 8px;
}
.content__defprice {
  opacity: 0.5;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  margin-bottom: 16px;
}
.content__pay {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #20FF2F;
  text-decoration: none;
  color: #003B00;
}
.content__nottoday {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 12px;
}
.content__nottoday svg {
  margin-right: 8px;
  display: block;
}
.content__descr {
  color: #494949;
  font-size: 12px;
  text-align: justify;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
}
.content__descr a {
  color: #7d7d7d;
}

@media (min-width: 767px) {
  .mainbg::after {
    background-size: cover;
  }
  .mainbg {
    overflow: hidden;
  }
  .content {
    padding-top: 20vw;
  }
  .mainbg video {
    width: 139%;
  }
}
