/* ---------- Coming Soon (Results / Insights) ----------
   Reuses --navy-*, --green-*, --mist, --line, --font-display, --font-body
   variables already defined in css/style.css. No new palette introduced. */

.coming-soon {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  padding: 5rem 1.5rem;
}

.coming-soon-inner {
  max-width: 640px;
  text-align: center;
}

.cs-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green-600);
  margin: 0 0 1rem;
}

.cs-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  margin: 0 0 1.25rem;
}

.cs-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-500);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cs-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cs-actions .btn {
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
}

@media (max-width: 480px) {
  .coming-soon { padding: 3.5rem 1.25rem; }
  .cs-actions { flex-direction: column; width: 100%; }
  .cs-actions .btn { width: 100%; }
}
