.slogan-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.slogan-mini {
  display: flex;
  justify-content: center;
}

.slogan-mini span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.82rem 0.34rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f9fafb;
  color: #111827;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  animation: slogan-float 4.8s ease-in-out infinite;
}

.slogan-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.slogan-line span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1.2rem 0.62rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  animation: slogan-float 4.8s ease-in-out infinite;
}

.slogan-line span:nth-child(2) {
  animation-delay: 0.45s;
}

.slogan-line span:nth-child(3) {
  animation-delay: 0.9s;
}

.slogan-line span::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.45), transparent);
  animation: slogan-glow 2.8s ease-in-out infinite;
}

@keyframes slogan-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes slogan-glow {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

@media (max-width: 640px) {
  .slogan-line {
    gap: 0.6rem;
  }

  .slogan-mini span {
    padding: 0.24rem 0.7rem 0.3rem;
  }

  .slogan-line span {
    padding: 0.34rem 0.96rem 0.5rem;
  }
}
