/* Landing page layout */

.landing-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  transition: background-color 0.25s ease;
}

.landing-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.landing-page #hero {
  align-items: center;
  min-height: auto;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px))
    max(var(--page-gutter), env(safe-area-inset-right, 0px));
  padding-bottom: 0;
}

.landing-page .landing-hero {
  position: relative;
  box-sizing: border-box;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: clamp(4rem, 10vh, 5.5rem);
  padding-bottom: 0;
}

.landing-page .landing-hero .landing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.landing-page #hero .landing-content {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.landing-page .landing-bento {
  flex-shrink: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  display: flex;
  justify-content: center;
}

.landing-page .landing-bento .landing-content {
  max-width: var(--layout-max);
  margin-inline: auto;
}

.landing-page .hero-eyebrow {
  font-size: 0.8125rem;
  margin-bottom: 0.9375rem;
}

.landing-page .hero-name {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.landing-page .hero-sub,
.landing-page .hero-sub.landing-detail {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.65;
}

.landing-page .landing-cta {
  margin-top: 1.125rem;
}

.landing-page .landing-cta .btn {
  padding: 0.625rem 1.4rem;
  font-size: 0.8125rem;
}

.landing-page .hero-scroll,
.landing-page .hero-cta {
  display: none;
}

.landing-page .landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: up 0.7s 0.65s forwards;
}

.landing-page footer {
  display: none;
}

@media (max-width: 768px) {
  .landing-page #hero {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    padding-bottom: 0;
  }

  .landing-page .hero-name {
    font-size: clamp(2.0625rem, 7vw, 2.875rem);
  }
}
