*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background-color: #000000;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

.landing {
  width: 100%;
}

.landing__hero {
  display: grid;
  grid-template-areas: "stage";
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.landing__bg {
  grid-area: stage;
  display: block;
  width: 100%;
  line-height: 0;
}

.landing__bg-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.landing__body {
  grid-area: stage;
  z-index: 1;
  align-self: start;
  width: 100%;
  padding: 114px 0 130px 112px;
  pointer-events: none;
}

.landing__body * {
  pointer-events: auto;
}

.landing__content {
  max-width: 578px;
}

.landing__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.landing__title {
  display: block;
  width: 100%;
  height: auto;
}

.landing__title--main {
  max-width: 753px;
  margin-left: 8px;
}

.landing__title--sub {
  max-width: 943px;
  margin: -13px 0 0 8px;
}

.landing__brush {
  display: block;
  width: 100%;
  max-width: 889px;
  height: auto;
  margin-top: -10px;
}

.landing__text {
  margin: 48px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
  color: #ffffff;
}

.landing__btn {
  margin-top: 55px;
}

.btn {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  color: #ffffff;
}

.btn__glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #c5124a;
  filter: blur(32.6px);
  z-index: 0;
}

.btn__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 32px 24px;
  border: 2px solid #ef3f76;
  border-radius: 16px;
  background: linear-gradient(90deg, #a00d3b 0%, #f4185d 100%);
}

.btn__icon {
  display: block;
  width: 63px;
  height: auto;
  flex-shrink: 0;
}

.btn__text {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  white-space: nowrap;
}

.socials {
  margin-top: 46px;
  max-width: 406px;
}

.socials__title {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  background: linear-gradient(180deg, #d31450 0%, #f35486 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.socials__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials__item {
  flex: 1;
  max-width: 119px;
}

.socials__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: #ffffff;
}

.socials__link:hover {
  opacity: 0.85;
}

.socials__icon {
  display: block;
  width: 55px;
  height: auto;
}

.socials__icon--youtube {
  width: 71px;
}

.socials__handle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}

.footer {
  grid-area: stage;
  z-index: 2;
  align-self: end;
  background: transparent;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 82px;
  min-height: 94px;
  padding: 16px 24px;
}

.footer__item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  text-decoration: none;
  color: #ffffff;
}

.footer__item--subscribe {
  cursor: default;
}

a.footer__item:hover {
  opacity: 0.85;
}

.footer__icon {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.footer__text {
  font-size: 22px;
  font-weight: 400;
  line-height: 42px;
  white-space: nowrap;
}

.footer__accent {
  font-weight: 600;
  background: linear-gradient(180deg, #d31450 0%, #f35486 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__divider {
  width: 2px;
  height: 35px;
  background-color: #d71552;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .landing__body {
    padding-left: 48px;
  }

  .landing__text {
    font-size: 20px;
    line-height: 36px;
  }

  .btn__text {
    font-size: 26px;
    line-height: 34px;
  }

  .btn__inner {
    gap: 20px;
    padding: 24px 20px;
  }

  .btn__icon {
    width: 48px;
  }
}

@media (max-width: 900px) {
  
  .landing__hero {
    grid-template-areas:
      "stage"
      "footer";
    max-width: 414px;
    background-color: #000000;
  }

  .landing__body {
    padding: 40px 16px 24px;
  }

  .landing__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 414px;
    width: 100%;
    margin: 0 auto;
  }

  .landing__header {
    align-items: center;
    width: 100%;
    margin-bottom: 90px;
  }

  .landing__title--main {
    max-width: 235px;
    margin-left: 0;
  }

  .landing__title--sub {
    max-width: 295px;
    margin: 6px 0 0;
  }

  .landing__brush {
    max-width: 278px;
    margin-top: 0;
  }

  .landing__text {
    margin-top: 200px;
    max-width: 271px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .landing__btn {
    margin-top: 34px;
  }

  .btn__glow {
    border-radius: 8px;
    filter: blur(15.3px);
  }

  .btn__inner {
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    min-height: 60px;
  }

  .btn__icon {
    width: 30px;
  }

  .btn__text {
    font-size: 18px;
    line-height: 20px;
    white-space: normal;
  }

  .socials {
    margin-top: 34px;
    max-width: 348px;
    width: 100%;
  }

  .socials__title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .socials__list {
    justify-content: center;
    gap: 24px;
  }

  .socials__item {
    max-width: 100px;
  }

  .socials__link {
    gap: 7px;
  }

  .socials__icon {
    width: 29px;
  }

  .socials__icon--youtube {
    width: 37px;
  }

  .socials__handle {
    font-size: 14px;
    line-height: 20px;
  }

  .footer {
    grid-area: footer;
    align-self: auto;
    background: rgba(0, 0, 0, 0.77);
    border-top: 2px solid transparent;
    border-image: linear-gradient(
        90deg,
        rgba(225, 21, 85, 0) 0%,
        rgba(225, 21, 85, 1) 50%,
        rgba(225, 21, 85, 0) 100%
      )
      1;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 24px 16px;
  }

  .footer__divider {
    width: 35px;
    height: 1px;
  }

  .footer__icon {
    width: 24px;
    height: 24px;
  }

  .footer__text {
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .landing__text {
    margin-top: 160px;
  }

  .socials__list {
    gap: 12px;
  }

  .socials__item {
    max-width: 90px;
  }

  .socials__handle {
    font-size: 12px;
  }
}
