/* ─── Coming Soon Section ─────────────────────────────────────────── */
.coming-soon {
  padding: 12rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  background: linear-gradient(135deg, #fff 0%, #fdf5f6 100%);
}

.coming-soon__icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  animation: pulse 2s infinite;
}

.coming-soon__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: #111;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.coming-soon__desc {
  font-size: 1.8rem;
  color: #666;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.coming-soon__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
