/* #region HEADER */
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding-top: 40px;
  z-index: 100;
  transition: padding 0.4s;
  color: #000;

  &.header--compact {
    padding-top: 10px;
  }

  &.header--dark {
    color: #efe8d5;

    .header__menu-btn span {
      background: #efe8d5;
    }

    .header__menu-nav {
      color: #efe8d5;

      a::before {
        background: #efe8d5;
      }
    }
  }

  &.header--light {
    color: #000;

    .header__menu-btn span {
      background: #000;
    }

    .header__menu-nav {
      color: #000;

      a::before {
        background: #000;
      }
    }
  }
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  transform: translateX(-60px);
  opacity: 0;
  svg {
    will-change: transform;
    transform-origin: center;
    display: block;
  }
}
.header__logo-text {
  text-align: center;
  font-size: 32px;
  letter-spacing: 6.4px;
  text-transform: uppercase;
  transform: translateY(-20px);
  opacity: 0;
}

.header__menu {
  position: relative;

  &.active {
    .header__menu-btn {
      span {
        &:first-child {
          top: 21px;
          transform: rotate(45deg);
        }
        &:last-child {
          top: 21px;
          transform: rotate(-45deg);
          width: 100%;
        }
      }
    }

    .header__menu-nav {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .header__menu-overlay {
      opacity: 1;
      visibility: visible;
    }
  }
}

.header__menu-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 1;
  display: none;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  width: 44px;
  height: 44px;
  position: relative;
  background: transparent;
  cursor: pointer;
  z-index: 2;

  span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: 0.35s ease;

    &:first-child {
      top: 17px;
    }

    &:last-child {
      top: 27px;
      right: 0;
      width: 32px;
    }
  }
}

.header__menu-nav {
  position: absolute;
  top: 50px;
  right: 0;
  opacity: 0;
  z-index: 1;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.35s ease;
  color: currentColor;

  .header__menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
    font-family: var(--ff-satoshi);
    font-size: 22px;
    line-height: 100%;
    padding-block: 10px;

    a {
      position: relative;

      &::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: currentColor;
        transition: 0.35s ease;
      }

      &:hover {
        &::before {
          width: 100%;
        }
      }

      &.active::before {
        width: 100%;
      }
    }
  }
}
.header__menu-list-title {
  display: none;
  font-family: var(--ff-caveat);
  font-size: 20px;
  line-height: 1;
  color: #efe8d5;
}

.header__menu-footer {
  display: none;
  color: #efe8d5;
}
@media (width <= 1440px) {
  .header {
    padding-top: 32px;
  }
}

@media (width <= 768px) {
  .header {
    padding-top: 16px;

    :has(.header__menu.active) {
      .header__logo,
      .header__logo-text {
        display: block;
        color: #efe8d5;
        z-index: 2;
      }
    }
  }

  .header__logo {
    svg {
      width: 54px;
      height: 54px;
    }
  }

  .header__logo-text {
    display: none;
    font-size: 22px;
    letter-spacing: 4.4px;
    z-index: 2;
  }

  .header__menu {
    &.active {
      .header__menu-btn {
        span {
          background: #efe8d5;
        }
      }
    }
  }
  .header__menu-overlay {
    display: block;
  }
  .header__menu-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 102px 16px 16px;
    color: #efe8d5;

    .header__menu-list {
      align-items: flex-start;
      gap: 16px;
      font-size: 32px;
      padding: 0;

      a {
        color: #efe8d5;

        &::before {
          background: #efe8d5;
        }
      }
    }
  }

  .header__menu-list-title {
    display: block;
  }
  .header__menu-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;

    .header__menu-footer-title {
      font-family: var(--ff-caveat);
      font-size: 20px;
      line-height: 1;
    }

    a {
      font-family: var(--ff-satoshi);
      font-size: 26px;
      color: #efe8d5;
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: 6%;
      text-underline-offset: 0;
      text-underline-position: from-font;
    }

    .header__menu-footer-copyright {
      font-family: var(--ff-satoshi);
      font-size: 16px;
      line-height: 1.2;
      text-transform: uppercase;
      margin-top: 16px;
    }
  }
}

/* #endregion HEADER */

/* #region HERO SECTION */
.hero {
  padding-block: 200px 100px;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 110px;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero__title {
  position: relative;
  font-size: clamp(
    84px,
    calc(84px + (238 - 84) * ((100vw - 390px) / (1920 - 390))),
    238px
  );
  font-weight: 300;
  line-height: 0.8;
  text-transform: uppercase;

  .hero__title-unlock {
    display: inline-flex;
    position: relative;

    &::before {
      content: '';
      position: absolute;
      background-image: url('../img/star.svg');
      background-size: contain;
      background-repeat: no-repeat;
      width: 51px;
      height: 51px;
      top: 115%;
      right: 0;
      translate: -50% -50%;
    }
  }
  .hero__text-more {
    font-style: italic;
    display: inline-flex;

    span {
      position: relative;
    }
  }
}

.hero__title-man {
  position: absolute;
  top: 64%;
  left: 60%;
  translate: -50% -50%;
  z-index: -1;
  max-width: 150px;
  width: 64%;
  height: auto;
  pointer-events: none;
}

.hero__subtitle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  max-width: 714px;
  font-size: clamp(
    16px,
    calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 390))),
    26px
  );

  span {
    max-width: 564px;
    text-align: center;
    font-family: var(--ff-satoshi);
  }
  .hero__subtitle-quote {
    rotate: 180deg;
  }
}
.hero__btn-wrapper {
  position: relative;
  max-width: 334px;
  width: 100%;

  img {
    position: absolute;
    bottom: calc(100% + -30px);
    right: -58px;
    transform: translateX(-50%) translateY(10px);
    width: 117px;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
  }

  &:hover {
    img {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .hero__btn {
      box-shadow: 0px 0px 20px 0px #000;
    }
  }
}

@media (width < 1920px) {
  .hero {
    padding-block: 175px 100px;
  }
  .hero__wrapper {
    gap: 70px;
  }
}

@media (width < 1440px) {
  .hero {
    padding-block: 150px 100px;
  }
  .hero__wrapper {
    gap: 60px;
  }
}

@media (width <= 992px) {
  .hero__title {
    .hero__title-unlock {
      &::before {
        width: 25px;
        height: 25px;
      }
    }
  }
}

@media (width <= 768px) {
  .hero {
    padding-top: 162px;
  }
  .hero__wrapper {
    gap: 0;
  }
  .hero__title {
    margin-bottom: 58px;
  }
  .hero__subtitle {
    margin-bottom: 180px;
  }
}

@media (width <= 564px) {
  .hero__subtitle {
    img {
      width: 20px;
    }
  }
}

/* #endregion HERO SECTION */

/* #region WAY SECTION */
.way {
  position: relative;
  border-radius: 64px;
}

.parallax-mask {
  position: relative;
  width: 130%;
  margin-left: -8%;
  aspect-ratio: 1921 / 3092;
}

.parallax {
  position: absolute;
  inset: 0;
}

.layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  width: 100%;
}

.layer-1 {
  z-index: 1;
  border-radius: 0 0 64px 64px;
}
.layer-2 {
  z-index: 2;
}
.layer-3 {
  z-index: 3;
}
.layer-4 {
  z-index: 4;
  border-radius: 0 0 64px 64px;
}
.layer-5 {
  z-index: 5;
}

.way__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding-inline: 16px;
  z-index: 6;
}

.way__cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 460px;
  height: 596px;
  padding: 20px;
  border-radius: 16px;
  background: #000;
  color: #efe8d5;
  font-family: var(--ff-satoshi);
}
.way__card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.way__card-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.way__card-num {
  font-size: 32px;
}

.way__card-tag-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;

  img {
    width: 32px;
    height: 32px;
  }
}
.way__card-title {
  font-family: var(--ff-base);
  font-size: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #efe8d5;
  margin-bottom: 20px;
}

.way__card-body {
  font-size: 22px;
}
.way__card-image {
  margin-top: auto;
  max-height: 194px;
  object-fit: fill;
}
.way__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.way__pagination {
  display: flex;
  gap: 4px;
}

.way__card-footer-text {
  place-content: end;
  font-family: var(--ff-caveat);
  font-size: 20px;
  line-height: 1;
}
.way__pagination-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8f8b80;

  &.active {
    color: #efe8d5;
  }
}
@media (width <= 768px) {
  .way {
    min-height: 100dvh;
  }
  .layer-4 {
    border-radius: 0 0 32px 32px;
  }

  .way__cards {
    max-width: 352px;
    max-height: 545px;
    gap: 32px;
  }
  .way__card-num {
    font-size: 22px;
  }
  .way__card-title {
    font-size: 26px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .way__card-body {
    font-size: 16px;
  }

  .way__card-footer-text {
    font-size: 18px;
  }
}

/* #endregion WAY SECTION */

/* #region VIEW SECTION */
.view {
  position: relative;
  padding-block: 0 150px;
  margin-top: -20dvh;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 10;
    mask-image: linear-gradient(
      to left,
      rgba(239, 232, 213, 0.1) 0%,
      rgba(239, 232, 213, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
      to left,
      rgba(239, 232, 213, 0.1) 0%,
      rgba(239, 232, 213, 1) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
  }

  &::before {
    left: 0;
  }

  &::after {
    right: 0;
    mask-image: linear-gradient(
      to right,
      rgba(239, 232, 213, 0.1) 0%,
      rgba(239, 232, 213, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      rgba(239, 232, 213, 0.1) 0%,
      rgba(239, 232, 213, 1) 100%
    );
  }
}

.view__wrapper {
  background-image: url('../img/wave.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* SWIPER */
.sl-root {
  width: 100%;
}

.sl-arc-stage {
  position: relative;
  width: 100%;
  height: 420px;
  flex-shrink: 0;
  cursor: grab;
  touch-action: none;
  overflow: visible;
  margin-left: -4%;

  &.dragging {
    cursor: grabbing;
  }
}

.sl-stack-stage {
  position: relative;
  width: 100%;
  height: 430px;
  cursor: grab;
  touch-action: none;

  &.dragging {
    cursor: grabbing;
  }
}

.arc-card {
  position: absolute;
  width: 304px;
  height: 378px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center bottom;
  will-change: transform, opacity;
  user-select: none;
  -webkit-user-select: none;
  transition:
    transform 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.52s cubic-bezier(0.4, 0, 0.2, 1);

  &.no-transition {
    transition: none !important;
  }
}

.stack-card {
  position: absolute;
  width: 100%;
  max-width: 304px;
  height: 378px;
  left: 50%;
  top: 50%;
  margin-top: -195px;
  transform-origin: center center;
  will-change: transform, opacity;
  user-select: none;
  -webkit-user-select: none;
}

.card-tape {
  width: 140px;
  height: 96px;
  background: url('../img/tape.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  pointer-events: none;
}

.card-sub {
  position: absolute;
  bottom: 4px;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  font-family: var(--ff-caveat);
  font-size: 18px;
  pointer-events: none;
}

.sl-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 64px;
}

.sl-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s;
  flex-shrink: 0;

  &:active {
    transform: scale(0.9);
  }

  &.sl-btn-next {
    &::before {
      rotate: 180deg;
    }
  }

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url(../img/circle.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.6);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  &:hover {
    &:before {
      opacity: 1;
      transform: scale(1);
    }
  }
}

.sl-pg {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  justify-content: center;
  color: #000;
  font-family: var(--ff-satoshi);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.sl-pg-cur {
  transition: opacity 0.2s;
}

.sl-arc-wrap {
  display: block;
}

.sl-stack-wrap {
  display: none;
}

/* SWIPER */

.view__content {
  max-width: 714px;
  width: 100%;
  margin-inline: auto;
  text-align: justify;
  font-size: 25px;

  h2 {
    font-size: clamp(
      42px,
      calc(42px + (82 - 42) * ((100vw - 390px) / (1920 - 390))),
      82px
    );
    text-align: center;
    margin-bottom: 32px;
  }

  p {
    font-family: var(--ff-satoshi);
  }
}

@media (max-width: 1440px) {
  .view {
    margin-top: -10dvh;
    padding-bottom: 120px;
  }
  .view__content {
    font-size: 22px;
  }
  .sl-nav {
    margin-top: 42px;
  }
}

@media (max-width: 1200px) {
  .view {
    &:before,
    &:after {
      width: 130px;
    }
  }
}

@media (max-width: 992px) {
  .view {
    margin-top: 0;

    &:before,
    &:after {
      top: 5%;
      width: 90px;
      height: 430px;
    }
  }
  .view__content {
    font-size: 18px;
  }
}

@media (width <= 768px) {
  .view {
    padding-top: 64px;
  }
  .view__content {
    padding-top: 64px;
    font-size: 16px;

    h2 {
      font-size: 42px;
      margin-bottom: 16px;
    }
  }
  .sl-arc-wrap {
    display: none;
  }
  .sl-stack-wrap {
    display: block;
  }
  .sl-pg {
    font-size: 24px;
  }
  .sl-nav {
    margin-top: 32px;
  }
}

/* #endregion VIEW SECTION */

/* #region TOOLS SECTION */
.tools {
  position: relative;
  border-radius: 64px;
  background: #000;
  color: #efe8d5;
  z-index: 1;
  overflow: hidden;
}
.tools__bg-wrap {
  position: absolute;
  height: 967px;
  top: 120px;
  max-width: 1920px;
  width: 100%;
  left: 50%;
  translate: -50% 0px;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../img/line.gif);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -1;
    min-width: 1920px;
  }

  &::after {
    content: '';
    position: absolute;
    background-image: url(../img/tools-man.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 540px;
    width: 100%;
    min-width: 1920px;
    translate: 20% 17%;
  }
}

.tools__bg {
  position: absolute;
  translate: 0 5%;
  width: 100%;
  height: 100%;
  min-width: 1920px;
}
.tools__wrapper {
  padding-bottom: 120px;
}
.tools__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 120px;
  height: 100dvh;
}

.tools__content-header {
  max-width: 800px;
  font-size: 32px;
  h2 {
    font-size: clamp(
      42px,
      calc(42px + (82 - 42) * ((100vw - 390px) / (1440 - 390))),
      82px
    );
  }

  p {
    max-width: 517px;
    font-family: var(--ff-satoshi);
    margin-block: 32px 64px;
  }
}

.tools__content-footer {
  max-width: 738px;
  align-self: end;
  margin-right: 126px;
  font-size: 25px;

  h3 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  p {
    font-family: var(--ff-satoshi);
  }
}

.tools__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.tools__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  border-radius: 16px;
  background: #efe8d5;
  color: #000;

  &:hover {
    .tools__card-arrow:before {
      opacity: 1;
      transform: scale(1);
    }
  }
}

.tools__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  line-height: 1.2;

  h3 {
    font-size: clamp(24px, 4vw, 48px);
    max-width: 520px;
    line-height: 1.2;
  }

  p {
    font-family: var(--ff-satoshi);
  }
}

.tools__card-arrow {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  img {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
  }

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url('../img/circle.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.6);
    transition:
      opacity 0.35s,
      transform 0.35s;
  }
}

@media (width <= 1440px) {
  .tools__bg-wrap {
    &::before {
      min-width: 1440px;
    }
    &::after {
      min-width: 1440px;
      translate: 12% 30%;
    }
  }

  .tools__bg {
    translate: -7.5% 10%;
    min-width: 1700px;
  }
}

@media (width <= 992px) {
  .tools {
    border-radius: 32px;
  }
  .tools__bg-wrap {
    &::before {
      min-width: 992px;
      background-size: 992px;
      background-position: center;
    }
    &::after {
      height: 375px;
      width: 316px;
      min-width: 992px;
      translate: 18% 65%;
    }
  }

  .tools__bg {
    translate: 0% 6%;
    min-width: 992px;
  }

  .tools__content {
    margin-bottom: 64px;
  }
  .tools__card {
    padding: 24px;
  }
  .tools__content-footer {
    margin-right: 0;
  }
}

@media (width <= 768px) {
  .tools__bg-wrap {
    min-width: 890px;
    height: 450px;
    top: 0;
    left: 50%;
    translate: -50% 50%;
    rotate: 350deg;

    &::before {
      min-width: 746px;
      background-size: cover;
      background-position: center;
    }

    &::after {
      height: 316px;
      width: 375px;
      min-width: 375px;
      translate: 100% 9%;
    }
  }

  .tools__bg {
    translate: 0% 11%;
    min-width: 744px;
  }

  .tools__content {
    padding-block: 64px 32px;
    margin-bottom: 32px;
  }

  .tools__content-header {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    font-size: 18px;
    height: 756px;

    p {
      max-width: 100%;
      margin-block: 16px 0;
    }

    .tools__content-btn {
      margin-top: auto;
    }
  }
  .tools__content-footer {
    margin-top: 64px;
    font-size: 18px;

    h3 {
      font-size: 32px;
    }
  }
  .tools__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tools__card {
    padding: 40px 20px;
    font-size: 18px;
  }
}

/* #endregion TOOLS SECTION */

/* #region FUTURE SECTION */
.future {
  position: relative;
  margin-top: -64px;
  padding-block: 382px;
  background: url('../img/future-bg.webp') no-repeat;
  background-size: cover;
  border-radius: 0 0 64px 64px;
}

.future__wrapper {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 937px;
  margin-inline: auto;
  text-align: center;
  color: #efe8d5;
}

.future__title {
  position: relative;
  font-size: clamp(
    64px,
    calc(64px + (102 - 64) * ((100vw - 390px) / (1440 - 390))),
    102px
  );
}

.future__line {
  position: absolute;
  translate: -50% -50%;

  &.future__line--1 {
    top: 155%;
    right: -750px;
  }

  &.future__line--2 {
    display: none;
  }
}

.future__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.future__btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
.future__btn-wrapper--sm {
  position: relative;
  max-width: 235px;

  img {
    position: absolute;
    right: -53%;
    translate: -50% -50%;
    top: 50%;
    width: 146px;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.5s,
      box-shadow 0.5s;
  }

  &:hover {
    img {
      opacity: 1;
    }
  }
}

.future__text {
  font-family: var(--ff-satoshi);
  font-size: 32px;
}
.future__description {
  font-family: var(--ff-caveat);
  font-size: 24px;
}

@media (width <= 1024px) {
  .future__line {
    position: absolute;
    translate: -50% -50%;

    &.future__line--1 {
      display: none;
    }

    &.future__line--2 {
      display: block;
      top: 66%;
      right: -10%;
    }
  }
}

@media (width <= 992px) {
  .future {
    background-position: center;
  }
}

@media (width <= 768px) {
  .future {
    padding-block: 96px;
    background-position: 35%;
    margin-top: -30px;
    border-radius: 0 0 32px 32px;
  }
  .future__wrapper {
    min-height: 590px;
    gap: 32px;
    justify-content: space-between;
  }
  .future__title {
    max-width: 361px;
  }
  .future__line {
    &.future__line--2 {
      top: 82%;
      right: -18%;
    }
  }
  .future__content {
    gap: 12px;
  }
  .future__text {
    font-size: 18px;
  }
  .future__btn-wrapper {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
  .future__btn-wrapper--sm {
    max-width: 334px;
    width: 100%;
    img {
      right: -38%;
    }
    .future__btn--white {
      justify-content: center;
    }
  }
  .future__description {
    font-size: 18px;
  }
}

/* #endregion FUTURE SECTION */

/* #region ACCESS SECTION */

.access__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
  margin-inline: auto;
  max-width: 1064px;
  background-image: url(../img/access-bg-man.webp);
  background-size: 518px auto;
  background-position: -30% 75%;
  background-repeat: no-repeat;
  padding-block: 323px;

  h2 {
    font-size: clamp(
      42px,
      calc(42px + (82 - 42) * ((100vw - 390px) / (1440 - 390))),
      82px
    );
  }
}

.access__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.access__text {
  font-family: var(--ff-satoshi);
  font-size: 32px;
}
.access__description {
  font-family: var(--ff-caveat);
  font-size: 24px;
}
.access__btn {
  overflow: hidden;

  svg {
    flex-shrink: 0;
    transition: none;
  }

  &:hover {
    svg {
      rotate: none;
      animation: wrapSlide 0.8s ease-in-out;
    }
  }
}

@keyframes wrapSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  45% {
    transform: translateX(18px);
    opacity: 0;
  }

  55% {
    transform: translateX(-18px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (width <= 1024px) {
}

@media (width <= 768px) {
  .access {
    padding-block: 96px 64px;
  }
  .access__wrapper {
    padding-block: 0;
    min-height: 667px;
    justify-content: space-between;
    background-size: 360px auto;
    background-position: center;
  }
  .access__content {
    gap: 12px;
  }
  .access__text {
    font-size: 18px;
  }
}

/* #endregion ACCESS SECTION */

/* #region FOOTER */

.footer {
  padding-block: 86px 64px;
  border-radius: 64px 64px 0 0;
  background: #000;
  color: #efe8d5;
  transform-origin: top center;
  will-change: transform, clip-path;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.footer__form {
  max-width: 450px;
  font-size: 25px;

  h2 {
    font-size: 64px;
    margin-bottom: 20px;
  }
}
.footer__form-description {
  font-family: var(--ff-satoshi);
}

.footer__form-privacy {
  font-size: 24px;
  font-family: var(--ff-caveat);

  a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
}

.footer__nav {
  max-width: 880px;
  width: 100%;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--ff-satoshi);
  font-size: 22px;
  line-height: 1;

  a {
    position: relative;

    &::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: currentColor;
      transition: 0.35s ease;
    }

    &:hover {
      &::before {
        width: 100%;
      }
    }
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 32px;
  font-family: var(--ff-satoshi);
  font-size: 16px;
  text-transform: uppercase;

  a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 6%;
    text-underline-offset: 20%;
    text-underline-position: from-font;
  }

  p {
    margin-left: auto;
  }
}

.footer__nav-bg {
  display: flex;
  justify-content: center;
  align-self: center;
}

@media (width <= 1024px) {
  .footer__content {
    align-items: center;
    flex-direction: column;
    gap: 64px;
  }
  .footer__form {
    text-align: center;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 100%;
  }
}

@media (width <= 768px) {
  .footer {
    padding-block: 64px 32px;
    border-radius: 32px 32px 0 0;
  }

  .footer__form {
    text-align: start;
    font-size: 18px;

    h2 {
      font-size: 42px;
    }

    .footer__form-privacy {
      text-align: center;
    }
  }

  .footer__links {
    justify-content: center;

    p {
      text-align: center;
      margin-left: 0;
      flex-basis: 100%;
    }
  }
}

/* #endregion FOOTER */
