/* Question Pilot — holding / coming-soon page.
   Dark deal-grade direction (the locked marketing aesthetic; tokens mirror
   --qp-drench / --qp-on-dark / --qp-accent-mint). Self-contained: no external
   fonts, no inline styles, so the strict CSP in _headers stays unchanged. */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #f9fffe;
  background-color: #14302d;
  background-image: radial-gradient(120% 120% at 50% 0%, #1a3b37 0%, #14302d 44%, #0f221f 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.holding {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

.holding-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 38rem;
}

.wordmark {
  margin: 0 0 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f9fffe;
}

.wordmark span {
  color: #6ecfcb;
}

.headline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f9fffe;
}

.subhead {
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(249, 255, 254, 0.78);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(244, 249, 248, 0.18);
  border-radius: 999px;
  background: rgba(244, 249, 248, 0.04);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(249, 255, 254, 0.78);
}

.status .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #6ecfcb;
  box-shadow: 0 0 0 3px rgba(110, 207, 203, 0.18);
}

.holding-footer {
  flex: 0 0 auto;
  padding-top: 2.5rem;
  font-size: 0.8125rem;
  color: rgba(249, 255, 254, 0.5);
}

@media (max-width: 30rem) {
  .wordmark {
    margin-bottom: 2rem;
  }

  .subhead {
    margin-bottom: 2rem;
  }
}
