/* landing5 — screen 1: centered lockup + title, flex-stacked, full phone below */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  padding: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  min-height: 100svh;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: clamp(2.5rem, 6vh, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(1.6rem, 4vh, 2.5rem);
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--ink-2);
}

.hero__brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.hero__line {
  display: block;
}

.hero__line--lead {
  margin-bottom: 0;
}

.hero__line--flux {
  font-size: calc(1em * var(--flux-scale, 1));
  white-space: nowrap;
  transition: font-size 0.3s var(--ease-out);
}

.hero__flux-art {
  display: inline;
}

.hero__flux-word {
  display: inline-block;
  vertical-align: baseline;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), width 0.6s var(--ease-out);
}

.hero__flux-word.is-out {
  opacity: 0;
  transform: translateY(-0.12em);
}

@media (prefers-reduced-motion: reduce) {
  .hero__flux-word { transition: none; }
}

.hero__sub {
  margin-top: clamp(1.3rem, 3vh, 1.85rem);
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: var(--lh-body);
  max-width: 38rem;
  margin-inline: auto;
}

.hero__actions {
  margin-top: clamp(1.75rem, 4vh, 2.25rem);
  justify-content: center;
}

@media (max-height: 720px) {
  .hero__inner {
    padding-block: clamp(1.5rem, 4vh, 2.25rem);
  }
  .hero__brand {
    margin-bottom: clamp(1rem, 3vh, 1.5rem);
  }
}
