.page {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  min-height: 100svh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  background-color: #896CFF;
  color: #FFFFFF;
  display: grid;
  grid-template-rows: min-content;
}

.main {
  padding: 45px 27px 0;
}

.banner {
  display: flex;
  flex-direction: column;
}

.banner__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.banner__title {
  font-weight: 600;
  margin: 0;
  font-size: 40px;
  line-height: 92%;
}

.banner__text {
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  margin: 35px 0 0;
}

.banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0 0;
}

.banner__link {
  width: 100%;
}

.banner__link-icon {
  width: 100%;
  overflow: hidden;
  display: block;
  transition: transform .12s ease, filter .12s ease;
  will-change: transform, filter;
  transform-origin: center;
}

.banner__link:hover .banner__link-icon,
.banner__link:active .banner__link-icon {
  transform: scale(1.02);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1));
}

.installs {
  display: none;
}

.page__bg {
  background-image: image-set(url('/img/new-landing/bg-mobile.webp') 1x,
      url('/img/new-landing/bg-mobile@2x.webp') 2x);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 200px;
  height: auto;
  position: relative;
  margin: 29px auto 0;
}


@media (min-width: 540px) {
  .main {
    padding: 70px 56px 0;
  }

  .banner__title {
    font-size: 66px;
  }

  .banner__text {
    font-size: 23px;
    font-weight: 500;
    margin: 19px 0 0;
  }

  .banner__actions {
    gap: 20px;
    margin: 33px 0 0;
  }

  .banner__logo {
    display: none;
  }

  .page__bg {
    background-image: image-set(url('/img/new-landing/bg-tablet.webp') 1x,
        url('/img/new-landing/bg-tablet@2x.webp') 2x);
    background-size: cover;
  }
}

@media (min-width: 800px) {
  .page {
    background: linear-gradient(11.33deg, #896CFF 47.95%, #E29AFF 94.18%);
    display: block;
    position: relative;
  }

  .main {
    padding: 0;
    margin: 0 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .banner__title {
    margin-top: 20vh;
    font-size: 80px;
  }

  .banner__text {
    width: 576px;
  }

  .banner__actions {
    gap: 15px;
    margin: 40px 0 0;
    width: 410px;
  }

  .installs {
    display: block;
    margin: 20px 0 77px;
  }

  .page__bg {
    background-image: image-set(url('/img/new-landing/bg-desktop.webp') 1x,
        url('/img/new-landing/bg-desktop@2x.webp') 2x);
    width: 80%;
    height: 90%;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    background-position: left;
  }
}