/* =========================================
   Upcoming project page
========================================= */

.coming-soon-container {
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(91, 174, 183, 0.19), transparent 18rem),
    radial-gradient(circle at 85% 15%, rgba(44, 80, 177, 0.2), transparent 22rem),
    linear-gradient(145deg, #f7faff, #edf3fb);
  border-radius: 17px;
}

.coming-soon-content {
  position: relative;
  width: min(680px, 100%);
  padding: clamp(2rem, 5vw, 3.4rem);
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(14px);
}

.coming-soon-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-700), #55b8c1);
}

.icon-wrapper {
  margin-bottom: 1.35rem;
}

.icon-circle {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-700), var(--brand-950));
  border-radius: 22px;
  box-shadow: var(--shadow-brand);
  transform: rotate(-4deg);
}

.icon-circle svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.coming-soon-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--brand-700);
  font-family: Figtree, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-title {
  margin: 0;
  color: var(--brand-950);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.coming-soon-subtitle {
  margin: 0.65rem 0 0;
  color: var(--slate-800);
  font-family: Figtree, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.coming-soon-description {
  max-width: 540px;
  margin: 1rem auto 0;
  color: var(--slate-500);
  line-height: 1.75;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.dot {
  width: 9px;
  height: 9px;
  background: var(--brand-700);
  border-radius: 50%;
  animation: upcomingPulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.18s;
}

.dot:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes upcomingPulse {
  0%, 80%, 100% {
    transform: scale(0.72);
    opacity: 0.35;
  }
  40% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .coming-soon-container {
    min-height: calc(100vh - 6rem);
    padding: 0.75rem;
  }

  .coming-soon-content {
    padding: 1.6rem 1.1rem;
    border-radius: 17px;
  }

  .icon-circle {
    width: 72px;
    height: 72px;
  }
}