.home-page { overflow: hidden; }
.home-hero {
  position: relative;
  min-height: min(44rem, calc(100dvh - 5rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 11vw, 9rem);
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 12%; right: -11rem;
  width: min(45vw, 32rem); aspect-ratio: 1;
  border: 1px solid var(--color-border);
  border-radius: 45% 55% 62% 38% / 45% 40% 60% 55%;
  background: var(--color-accent-soft);
  opacity: 0.7;
}
.home-hero h1 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.25rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}
.home-hero h1 em { color: var(--color-accent); font-style: normal; }
.home-hero__lead { max-width: 37rem; margin: 1.75rem 0 0; color: var(--color-text-muted); font-size: clamp(1rem, 2vw, 1.25rem); }
.home-hero .dictionary-search { width: min(100%, 34rem); margin-top: 2.25rem; }
.home-hero__note { margin: 0.8rem 0 0; color: var(--color-text-muted); font-size: 0.84rem; }
@media (max-width: 40rem) { .home-hero::after { right: -15rem; top: 10%; width: 28rem; } }
