.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.5rem;
  text-transform: uppercase;
}

.tagline .word {
  display: inline-block;
  letter-spacing: 0.3rem;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.tagline .dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}

/* 👇 Mobile view: stack vertically */
@media (max-width: 768px) {
  .tagline {
    flex-direction: column;
  }
}