/* ============================================
   FIT QUIZ — additions on top of start.css
   ============================================
   The quiz page (fit.html + quiz-engine.js) reuses the voice-
   application design system wholesale: .screen, .card /
   .card-question, .btn-primary / .btn-ghost, .app-progress /
   .app-step, .choice-list / .choice-row, .input-group /
   .contact-input. Everything here is quiz-specific. */

/* Copy fields may carry admin-authored line breaks. */
.fit-prewrap {
  white-space: pre-line;
}

.fit-loading {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--t3);
  text-align: center;
}

.fit-home-link {
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
}

.fit-q-inner {
  display: flex;
  flex-direction: column;
}

/* Helper line under the question text. */
.fit-helper {
  font-family: var(--f-ui, "Inter", sans-serif);
  font-size: 13px;
  line-height: 1.5;
  color: var(--t3);
  text-align: center;
  margin: -22px auto 24px;
  max-width: 420px;
}
.fit-helper:empty {
  display: none;
}

/* ---- Results ---- */
.fit-completion {
  font-family: var(--f-ui, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.65;
  color: var(--t2);
  margin: 0 0 26px;
}

.fit-tier-label {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: var(--gold);
  margin: 0 0 14px;
}
.fit-tier-label:empty {
  display: none;
}

.fit-feedback {
  font-family: var(--f-ui, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--t1);
  margin: 0 0 8px;
}

.fit-cta {
  display: inline-block;
  text-decoration: none;
  margin-top: 18px;
}

.fit-detail {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--f-ui, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.65;
  color: var(--t2);
  text-align: left;
}

/* ---- Email gate ---- */
.fit-email-gate {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* When the full-gate intro is visible (#results-body sits between
   the two blocks, so `~`, not `+`), drop the email gate's divider. */
.fit-gate-full:not(.hidden) ~ .fit-email-gate {
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
}

.fit-email-lead {
  font-family: var(--f-ui, "Inter", sans-serif);
  font-size: 13px;
  line-height: 1.55;
  color: var(--t3);
  margin: 0 0 14px;
}

.fit-email-done {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-soft, #d4a843);
}

@media (max-width: 600px) {
  .fit-tier-label {
    font-size: 26px;
  }
}
