.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
  white-space: nowrap;
}

.landing-btn--loud {
  background-color: #4850e5;
  border-radius: 12px;
  color: #fff;
}

.landing-btn--loud:hover {
  background-color: #3d44c9;
}

.landing-btn--quiet {
  background: transparent;
  color: #282834;
  padding: 8px 16px;
}

.landing-btn--quiet:hover,
.landing-icon-btn:hover {
  background-color: rgba(40, 40, 52, 0.08);
}

.landing-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.new-landing-hero-section {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 344 / 696;
  margin: 8px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
  box-sizing: border-box;
  font-family: Inter, "Proxima Nova", sans-serif;
}

.new-landing-hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.new-landing-hero-section__bg-img {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.new-landing-hero-section__bg-img--mobile {
  display: block;
}

.new-landing-hero-section__bg-img--tablet-768,
.new-landing-hero-section__bg-img--tablet-1024,
.new-landing-hero-section__bg-img--1366,
.new-landing-hero-section__bg-img--1920 {
  display: none;
}

.new-landing-hero-section__navbar,
.new-landing-hero-section__nav,
.new-landing-hero-section__logo,
.new-landing-hero-section__nav-actions {
  display: none;
}

.new-landing-hero-section__logo {
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
}

.new-landing-hero-section__logo-icon {
  display: block;
  width: 32px;
  height: 32px;
}

.new-landing-hero-section__logo-wordmark {
  display: none;
  width: auto;
  height: 22px;
}

.new-landing-hero-section__nav-actions {
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
}

.new-landing-hero-section__hamburger svg {
  width: 24px;
  height: 24px;
}

.new-landing-hero-section__copy-group {
  position: relative;
  z-index: 5;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
}

.new-landing-hero-section__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 60px;
  padding-inline: 40px;
  text-align: left;
  box-sizing: border-box;
}

.new-landing-hero-section__pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}

.new-landing-hero-section__title {
  width: 623px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: "Proxima Nova Alt", "Proxima Nova", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -4px;
  text-align: left;
}

.new-landing-hero-section__subtitle {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
}

.new-landing-hero-section__cta-area {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 40px;
  box-sizing: border-box;
}

.landing-btn.new-landing-hero-section__cta-btn,
.andes-ui-button.new-landing-hero-section__cta-btn {
  width: auto;
  flex-shrink: 0;
}

.new-landing-hero-section__pricing {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  text-align: left;
}

[data-is-webview="true"] + .new-landing-hero-section .new-landing-hero-section__nav-actions,
[data-is-webview="true"] + .new-landing-hero-section .new-landing-hero-section__logo {
  display: none;
}

@media only screen and (min-width: 768px) {
  .new-landing-hero-section {
    aspect-ratio: unset;
    height: 634px;
  }

  .new-landing-hero-section__bg-img--mobile {
    display: none;
  }

  .new-landing-hero-section__bg-img--tablet-768 {
    display: block;
    object-position: center 0%;
    transform: scale(1.4);
    transform-origin: bottom;
  }
}

@media only screen and (min-width: 1024px) {
  .new-landing-hero-section__bg-img--tablet-768 {
    display: none;
  }

  .new-landing-hero-section__bg-img--tablet-1024 {
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
  .new-landing-hero-section {
    aspect-ratio: unset;
    height: clamp(528px, calc(100vh - 210px), 760px);
  }

  .new-landing-hero-section__content {
    position: absolute;
    top: calc(50% - 60px);
    left: 40px;
    width: 694px;
    padding-top: 0;
    padding-inline: 0;
    transform: translateY(-50%);
  }

  .new-landing-hero-section__cta-area {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 0;
  }

  .new-landing-hero-section__bg-img--tablet-768 {
    display: none;
  }
}

@media only screen and (min-width: 1366px) {
  .new-landing-hero-section__bg-img--tablet-1024 {
    display: none;
  }

  .new-landing-hero-section__bg-img--1366 {
    display: block;
  }
}

@media only screen and (min-width: 1920px) {
  .new-landing-hero-section {
    aspect-ratio: unset;
    height: clamp(528px, calc(100vh - 210px), 760px);
  }

  .new-landing-hero-section__bg-img--1366 {
    display: none;
  }

  .new-landing-hero-section__bg-img--1920 {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .new-landing-hero-section {
    aspect-ratio: auto;
    min-height: 640px;
    height: 624px;
    margin-top: 68px;
    justify-content: space-between;
  }

  .new-landing-hero-section__bg-img--mobile {
    object-position: center 90%;
  }

  .new-landing-hero-section__navbar {
    display: flex;
    position: relative;
    z-index: 3;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
  }

  .new-landing-hero-section__content {
    gap: 12px;
    margin-top: 0;
    padding-top: 40px;
    padding-inline: 24px;
  }

  .new-landing-hero-section__title {
    width: auto;
    max-width: 100%;
    font-size: 40px;
    letter-spacing: -1.6px;
  }

  .new-landing-hero-section__subtitle {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
  }

  .new-landing-hero-section__cta-area {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    margin-bottom: 24px;
    text-align: center;
  }

  .landing-btn.new-landing-hero-section__cta-btn,
  .andes-ui-button.new-landing-hero-section__cta-btn {
    width: 100%;
  }

  .new-landing-hero-section__pricing {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .new-landing-hero-section {
    min-height: 634px;
    height: 634px;
    margin-top: 68px;
  }

  .new-landing-hero-section__content {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 694px;
    max-width: calc(100% - 80px);
    gap: 24px;
    padding-top: 0;
    padding-inline: 0;
  }

  .new-landing-hero-section__title {
    width: 100%;
    max-width: 560px;
    font-size: 72px;
    letter-spacing: -4px;
  }

  .new-landing-hero-section__subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
  }

  .new-landing-hero-section__cta-area {
    position: absolute;
    bottom: 40px;
    left: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
  }

  .new-landing-hero-section__pricing {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
  }
}
