.l4e-landing-root {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--l4e-color-cream);
}

.l4e-landing-body {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--l4e-color-cream);
}

.l4e-splash {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  place-items: center;
  background: var(--l4e-color-cream);
}

.l4e-splash__background-frame {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.l4e-splash__title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l4e-splash__background {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.l4e-splash__lockup {
  display: grid;
  align-items: center;
  justify-items: center;
  width: min(82vw, 21rem);
  padding: 0;
  filter: drop-shadow(0 1.25rem 2.5rem rgb(36 59 90 / 0.16));
  transform: translateY(-1vh);
}

.l4e-splash__logo-link {
  display: block;
  width: 100%;
  max-width: min(64vw, 15rem);
  border-radius: 0.5rem;
  transform: translateX(-1.1%);
}

.l4e-splash__logo-link:focus-visible {
  outline: 3px solid var(--l4e-color-sky);
  outline-offset: 0.4rem;
}

.l4e-splash__logo-frame {
  display: block;
  width: 100%;
}

.l4e-splash__logo {
  width: 100%;
  height: auto;
}

.l4e-splash__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 0.7rem;
  width: min(74%, 14rem);
  margin-top: 0.95rem;
}

.l4e-splash__divider-line {
  height: 2px;
  border-radius: 999px;
  background: var(--l4e-color-sky);
}

.l4e-splash__divider-heart {
  position: relative;
  width: clamp(0.62rem, 1.8vw, 0.9rem);
  aspect-ratio: 1;
  transform: translateY(-0.03rem) rotate(-45deg);
  background: var(--l4e-color-rose);
}

.l4e-splash__divider-heart::before,
.l4e-splash__divider-heart::after {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: inherit;
}

.l4e-splash__divider-heart::before {
  top: -50%;
  left: 0;
}

.l4e-splash__divider-heart::after {
  top: 0;
  left: 50%;
}

.l4e-splash__tagline {
  width: max-content;
  max-width: 96vw;
  margin-top: 0.74rem;
  color: var(--l4e-color-navy);
  font-size: clamp(0.52rem, 2.05vw, 0.68rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-shadow:
    0 1px 0 rgb(255 255 255 / 0.8),
    0 0 0.45rem rgb(255 255 255 / 0.7);
}

@media (min-width: 768px) {
  .l4e-splash__lockup {
    width: min(68vw, 36rem);
    padding: clamp(0.75rem, 2vw, 1.25rem);
    transform: none;
  }

  .l4e-splash__logo-link {
    max-width: clamp(19rem, 36vw, 31rem);
  }

  .l4e-splash__divider {
    column-gap: clamp(0.55rem, 2.2vw, 1rem);
    width: min(86%, 28rem);
    margin-top: clamp(0.2rem, 1vw, 0.6rem);
  }

  .l4e-splash__tagline {
    margin-top: clamp(0.72rem, 2vw, 1.1rem);
    font-size: clamp(0.5rem, 2vw, 0.9rem);
  }
}
