.landing-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 84svh;
  padding: clamp(2.5rem, 8vh, 6rem) clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1.5px solid var(--rule);
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 82.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3vw, 2.25rem);
}

.hero-mark {
  width: clamp(3.75rem, 14vw, 10.25rem);
  height: auto;
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--font-mono);
  font-size: clamp(1.65rem, 6.6vw, 5.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.identity {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 16svh;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem) 2.125rem;
  background: rgba(251, 247, 238, 0.64);
}

.identity p {
  width: min(100%, 82.5rem);
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 46rem) {
  .hero {
    min-height: 82svh;
  }

  .hero-panel {
    gap: 1rem;
  }

  h1 {
    font-size: clamp(1.65rem, 7vw, 3.125rem);
  }

}

@media (max-width: 25rem) {
  .hero-panel {
    gap: 0.75rem;
    text-align: center;
  }

  .identity p {
    text-align: center;
    font-size: 0.78rem;
  }
}
