.home-intro {
  position: relative;
  min-height: 654px;
  padding: 96px 0 48px;
  background: #f8fafc;
  overflow: hidden;
}

.home-intro__inner {
  width: min(1290px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  text-align: center;
}

.home-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(95, 168, 211, 0.75);
  border-radius: 60px;
  color: #dde5ec;
  background: rgba(21, 50, 75, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.012em;
  backdrop-filter: blur(4px);
}

.home-intro__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fa8d3;
}

.home-intro__title {
  margin: 0;
  max-width: 850px;
  color: #15324b;
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1;
  font-weight: 400;
}

.home-intro__body {
  margin: 0;
  max-width: 740px;
  color: #22313f;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.6;
}

.home-intro__tooth {
  display: block;
  width: 55px;
  height: 59px;
  margin: 0;
  color: #5fa8d3;
  aspect-ratio: 45 / 48;
  filter: drop-shadow(0 10px 18px rgba(95, 168, 211, 0.28));
  transform-origin: center;
  animation: home-intro-tooth-float 3.8s ease-in-out infinite;
}

@keyframes home-intro-tooth-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-7px) rotate(-4deg) scale(1.24);
  }
}

@media (max-width: 680px) {
  .home-intro {
    padding: 70px 0;
    min-height: 0;
  }

  .home-intro__inner {
    width: min(100% - 28px, 1290px);
  }

  .home-intro__tooth {
    width: 48px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro__tooth {
    animation: none;
  }
}
