/* ============================================
   COMING-SOON.CSS
   ============================================ */

main {
  padding-top: var(--header-height);
  background: var(--bg-2);
}

.coming-soon {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;

}

.coming-soon__inner {
  max-width: 520px;
}

.coming-soon__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(14, 159, 110, 0.09);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.coming-soon p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 32px;
}