.coming-soon-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 88px);
  padding: 0 var(--space-md);
  background-color: #f5f5f7;
}

.coming-soon-content {
  text-align: center;
  max-width: 550px;
}

.coming-soon-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 var(--space-sm) 0;
}

.coming-soon-content p {
  font-size: 1.25rem;
  color: #86868b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 743px) {
  .coming-soon-content h1 {
    font-size: 2.5rem;
  }
  .coming-soon-content p {
    font-size: 1.125rem;
  }
}