.wordmark {
  display: block;
  width: 132px;
  height: auto;
}

.hero {
  padding: 82px 0 84px;
  min-height: 780px;
  background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(249,249,255,.48) 48%, rgba(244,243,255,.2) 100%);
}

.hero-mountains {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: .7;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 18%, #000 54%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 18%, #000 54%, #000 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -54px -66px;
  border-radius: 48px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 76%);
  filter: blur(8px);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 78px);
}

.app-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 660px;
  isolation: isolate;
}

.app-screen {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 370px);
  border: 1px solid rgba(91, 87, 246, .12);
  border-radius: 46px;
  box-shadow: 0 38px 90px rgba(28, 31, 83, .22), 0 10px 28px rgba(91, 87, 246, .13);
}

.glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(6px);
}

.glow-one {
  width: 420px;
  height: 420px;
  top: 60px;
  background: radial-gradient(circle, rgba(119, 116, 255, .25), rgba(119, 116, 255, 0) 68%);
}

.glow-two {
  width: 360px;
  height: 360px;
  bottom: 10px;
  right: -60px;
  background: radial-gradient(circle, rgba(233, 179, 255, .2), rgba(233, 179, 255, 0) 70%);
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy::before {
    inset: -34px -18px;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .app-showcase {
    min-height: auto;
  }

  .app-screen {
    width: min(76vw, 390px);
  }
}

@media (max-width: 760px) {
  .wordmark {
    width: 124px;
  }

  .hero {
    padding: 56px 0 68px;
    min-height: auto;
  }

  .hero-mountains {
    object-position: center 76%;
    opacity: .62;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .app-screen {
    width: min(84vw, 360px);
    border-radius: 38px;
  }
}
