/* ============================================================
   FPA Quiz Funnel — reusable Typeform-style shell
   Use with /js/fpa-quiz-funnel.js and a page-specific config.
   ============================================================ */

.fpa-qf-page {
  --qf-bg: #faf9f6;
  --qf-bg-2: #f3f1ec;
  --qf-ink: #111111;
  --qf-muted: #5f5f5f;
  --qf-line: #e8e6e1;
  --qf-card: #ffffff;
  --qf-accent: #ff5a36;
  --qf-accent-soft: #fff1ec;
  --qf-ok: #111111;
  --qf-ok-text: #ffffff;
  --qf-radius: 20px;
  --qf-max: 40rem;
  --qf-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --qf-display: "Sora", var(--qf-font);

  margin: 0;
  background: var(--qf-bg);
  color: var(--qf-ink);
  font-family: var(--qf-font);
  -webkit-font-smoothing: antialiased;
}

/* Full-screen quiz UX: keep site nav in the HTML source for crawlers,
   but do not show it over the Typeform stage. Footer stays below the SEO block. */
.fpa-qf-page > #fpa-site-nav-mount {
  display: none;
}

.fpa-qf-page :where(h1, h2, h3, h4, p, ul, ol) {
  margin: 0;
}

/* —— Stage (one question, viewport-centered) —— */

.fpa-qf {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.fpa-qf.fpa-qf--ready {
  min-height: 100dvh;
}

.fpa-qf__interactive {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: 100%;
}

.fpa-qf__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4px;
  background: rgb(17 17 17 / 0.08);
}

.fpa-qf__topbar .fpa-qf__progress {
  height: 4px;
  width: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.fpa-qf__topbar .fpa-qf__progress-bar {
  height: 100%;
  background: var(--qf-ink);
  border-radius: 0;
  transition: width 0.35s ease;
}

.fpa-qf__chrome {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem 0.5rem;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  pointer-events: none;
}

.fpa-qf__chrome a {
  pointer-events: auto;
}

.fpa-qf__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--qf-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.fpa-qf__brand img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.fpa-qf__brand-text {
  display: none;
}

@media (min-width: 640px) {
  .fpa-qf__brand-text {
    display: inline;
  }
}

.fpa-qf__progress-label {
  display: none !important;
}

.fpa-qf__exit {
  font-size: 0.875rem;
  color: var(--qf-muted);
  text-decoration: none;
}

.fpa-qf__exit:hover {
  color: var(--qf-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fpa-qf__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: 100%;
  box-sizing: border-box;
  padding: 5.5rem 1.25rem 5rem;
  overflow-y: auto;
}

.fpa-qf__panel {
  width: 100%;
  max-width: 40rem;
  margin: auto;
}

.fpa-qf__nav {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  background: #2a2a2a;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.18);
}

.fpa-qf__nav-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1;
}

.fpa-qf__nav-btn + .fpa-qf__nav-btn {
  border-left: 1px solid rgb(255 255 255 / 0.18);
}

.fpa-qf__nav-btn:hover {
  background: rgb(255 255 255 / 0.1);
}

.fpa-qf__qhead {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.fpa-qf__qnum {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--qf-ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
}

.fpa-qf__qcopy {
  flex: 1;
  min-width: 0;
}

.fpa-qf__question {
  font-family: var(--qf-font);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
}

.fpa-qf__help {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--qf-muted);
  margin: 0.65rem 0 0;
  max-width: 36rem;
}

.fpa-qf__options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fpa-qf__option {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.85rem;
  background: #f3f3f3;
  color: var(--qf-ink);
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
  box-shadow: none;
}

.fpa-qf__option:hover {
  background: #ebebeb;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.fpa-qf__option:focus-visible {
  outline: 2px solid var(--qf-ink);
  outline-offset: 2px;
}

.fpa-qf__option.is-selected {
  border-color: var(--qf-ink);
  background: #fff;
}

.fpa-qf__option-key {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid #cfcfcf;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--qf-ink);
}

.fpa-qf__option.is-selected .fpa-qf__option-key {
  border-color: var(--qf-ink);
  background: var(--qf-ink);
  color: #fff;
}

.fpa-qf__option-label {
  flex: 1;
  padding-top: 0;
}

.fpa-qf__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.9rem;
  margin-top: 1.15rem;
}

.fpa-qf__ok {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  background: var(--qf-ok);
  color: var(--qf-ok-text);
  border: none;
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.fpa-qf__ok--lg {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 1.05rem;
}

.fpa-qf__ok:hover:not(:disabled) {
  background: #2a2a2a;
  transform: none;
}

.fpa-qf__ok:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.fpa-qf__enter-hint {
  font-size: 0.8125rem;
  color: var(--qf-muted);
}

.fpa-qf__enter-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #e2ddd4;
  border-bottom-width: 2px;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--qf-muted);
}

.fpa-qf__back {
  appearance: none;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--qf-muted);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
}

.fpa-qf__back:hover {
  color: var(--qf-ink);
  text-decoration-color: currentColor;
}

.fpa-qf__back[hidden],
.fpa-qf__ok[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .fpa-qf__ok:not(.fpa-qf__ok--lg):not(.fpa-qf__ok--capture) {
    min-width: 100%;
    justify-content: center;
    padding: 0.95rem 1.1rem;
  }

  .fpa-qf__actions:not(.fpa-qf__actions--capture) {
    width: 100%;
  }
}

/* —— Welcome / result panels —— */

.fpa-qf__hero {
  max-width: 36rem;
}

.fpa-qf__kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--qf-muted);
  margin: 0 0 0.85rem;
}

.fpa-qf__welcome-title,
.fpa-qf__result-title {
  font-family: var(--qf-font);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.fpa-qf__welcome-body,
.fpa-qf__result-body {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--qf-muted);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.fpa-qf__welcome-meta {
  font-size: 0.9375rem;
  color: var(--qf-muted);
  margin: 1rem 0 0;
}

.fpa-qf__welcome-foot {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--qf-muted);
  max-width: 28rem;
}

.fpa-qf__welcome-foot-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--qf-muted);
}

/* —— Capture / Intro Lead gate —— */

.fpa-qf__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fpa-qf__capture-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36rem;
  margin-top: 0;
}

.fpa-qf__capture-head {
  margin-bottom: 1.5rem;
}

.fpa-qf__capture-title {
  font-family: var(--qf-font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--qf-ink);
}

.fpa-qf__capture-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--qf-muted);
  margin: 0;
  max-width: 34rem;
}

.fpa-qf__field-label--state {
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--qf-muted);
}

.fpa-qf__capture-error {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff1ec;
  color: #9a3412;
  font-size: 0.95rem;
}

.fpa-qf__capture-field .fpa-qf__actions {
  margin-top: 1.15rem;
}

.fpa-qf__capture-field .fpa-qf__welcome-foot {
  margin-top: 1.25rem;
}

.fpa-qf__capture {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
}

.fpa-qf__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fpa-qf__field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--qf-ink);
}

.fpa-qf__input {
  appearance: none;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--qf-line);
  border-radius: 14px;
  background: var(--qf-card);
  color: var(--qf-ink);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.3;
}

.fpa-qf__input:focus {
  outline: 2px solid var(--qf-accent);
  outline-offset: 2px;
  border-color: transparent;
}

.fpa-qf__input:disabled {
  opacity: 0.45;
  background: var(--qf-bg-2);
}

/* Line inputs (FES-style) — must follow .fpa-qf__input so underline wins */
.fpa-qf__input.fpa-qf__input--line {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 0 14px;
  border: none;
  border-bottom: 2px solid #e2ddd4;
  border-radius: 0;
  background: transparent;
  font-family: var(--qf-font);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--qf-ink);
  line-height: 1.3;
  transition: border-color 0.15s ease;
}

.fpa-qf__input.fpa-qf__input--line:focus {
  outline: none;
  border-bottom-color: var(--qf-ink);
  background: transparent;
}

.fpa-qf__input.fpa-qf__input--line:-webkit-autofill,
.fpa-qf__input.fpa-qf__input--line:-webkit-autofill:hover,
.fpa-qf__input.fpa-qf__input--line:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--qf-bg) inset;
  -webkit-text-fill-color: var(--qf-ink);
  box-shadow: 0 0 0 1000px var(--qf-bg) inset;
}

.fpa-qf__input.fpa-qf__input--line::placeholder {
  color: #b0aaa0;
}

.fpa-qf__input.fpa-qf__input--line:disabled {
  opacity: 0.45;
  background: transparent;
}

.fpa-qf__input.fpa-qf__select--line {
  cursor: pointer;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  padding-top: 0.5rem;
}

.fpa-qf__actions--capture {
  gap: 14px;
  margin-top: 1.25rem;
}

.fpa-qf__ok--capture {
  padding: 14px 24px;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 10px;
  min-width: 108px;
  justify-content: center;
  box-shadow: 0 8px 18px rgb(17 17 17 / 0.18);
}

.fpa-qf__ok--capture:hover:not(:disabled) {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.fpa-qf__ok-icon {
  flex-shrink: 0;
}

.fpa-qf__select {
  cursor: pointer;
}

.fpa-qf__optin {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  background: var(--qf-card);
  border: 1.5px solid var(--qf-line);
  border-radius: var(--qf-radius);
  cursor: pointer;
}

.fpa-qf__checkbox {
  margin-top: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--qf-ink);
  flex-shrink: 0;
}

.fpa-qf__optin-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1rem;
  line-height: 1.4;
}

.fpa-qf__optin-copy strong {
  font-weight: 600;
}

.fpa-qf__optin-hint {
  font-size: 0.9rem;
  color: var(--qf-muted);
  font-weight: 400;
}

.fpa-qf__capture-error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff1ec;
  color: #9a3412;
  font-size: 0.95rem;
}

.fpa-qf__capture .fpa-qf__actions {
  margin-top: 0.5rem;
}

.fpa-qf__capture .fpa-qf__welcome-foot {
  margin-top: 0.25rem;
}

.fpa-qf__result-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fpa-qf__result-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.45;
}

.fpa-qf__result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--qf-accent);
}

.fpa-qf__result-note {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--qf-muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.fpa-qf__result-disclaimer {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--qf-muted);
  margin: 1.5rem 0 0;
  max-width: 36rem;
}

.fpa-qf__limit {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--qf-muted);
  padding: 1rem 1.1rem;
  background: rgb(17 17 17 / 0.04);
  border-radius: 14px;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.fpa-qf__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fpa-qf__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.fpa-qf__cta--primary {
  background: var(--qf-ok);
  color: var(--qf-ok-text);
}

.fpa-qf__cta--primary:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.fpa-qf__cta--secondary {
  background: transparent;
  color: var(--qf-ink);
  border: 1.5px solid var(--qf-line);
}

.fpa-qf__cta--secondary:hover {
  border-color: var(--qf-ink);
}

.fpa-qf__restart {
  appearance: none;
  background: none;
  border: none;
  margin-top: 1.25rem;
  padding: 0;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--qf-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fpa-qf__restart:hover {
  color: var(--qf-ink);
}

/* Motion */

.fpa-qf__panel.is-entering {
  animation: fpa-qf-in 0.32s ease both;
}

@keyframes fpa-qf-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fpa-qf__panel.is-entering,
  .fpa-qf__progress-bar,
  .fpa-qf__option,
  .fpa-qf__ok,
  .fpa-qf__cta {
    animation: none;
    transition: none;
  }
}

/* —— Static SEO block below the quiz —— */

.fpa-qf-seo {
  background: var(--qf-card);
  border-top: 1px solid var(--qf-line);
  padding: 3.5rem 0 4.5rem;
}

.fpa-qf-seo__inner {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.fpa-qf-seo__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--qf-muted);
  margin-bottom: 1.5rem;
}

.fpa-qf-seo__breadcrumb a {
  color: var(--qf-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
}

.fpa-qf-seo__breadcrumb a:hover {
  color: var(--qf-ink);
  text-decoration-color: currentColor;
}

.fpa-qf-seo h1 {
  font-family: var(--qf-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.fpa-qf-seo .fpa-qf-seo__lede {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--qf-muted);
  margin-bottom: 2rem;
}

.fpa-qf-seo h2 {
  font-family: var(--qf-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.85rem;
}

.fpa-qf-seo h3 {
  font-family: var(--qf-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 1.5rem 0 0.65rem;
}

.fpa-qf-seo p,
.fpa-qf-seo li {
  font-size: 1.05rem;
  line-height: 1.6;
}

.fpa-qf-seo p + p {
  margin-top: 0.9rem;
}

.fpa-qf-seo ul + p,
.fpa-qf-seo ol + p {
  margin-top: 1rem;
}

.fpa-qf-seo ul,
.fpa-qf-seo ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.fpa-qf-seo__paths {
  list-style: none;
  padding-left: 0;
  margin: 0.65rem 0 0;
}

.fpa-qf-seo__paths li {
  position: relative;
  padding-left: 1.35rem;
}

.fpa-qf-seo__paths li::before {
  content: "↓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--qf-muted);
  font-weight: 600;
  line-height: 1.6;
}

/* Side-by-side compare table — reuse on quiz SEO landing pages */
.fpa-qf-seo__compare-wrap {
  margin: 0.85rem 0 0;
  border: 1px solid var(--qf-line);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--qf-card);
}

.fpa-qf-seo__compare-wrap:focus-visible {
  outline: 2px solid var(--qf-accent);
  outline-offset: 2px;
}

.fpa-qf-seo__compare {
  border-collapse: collapse;
  min-width: 36rem;
  width: 100%;
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: left;
}

.fpa-qf-seo__compare-caption {
  caption-side: top;
  padding: 0.85rem 1rem 0;
  color: var(--qf-muted);
  font-size: 0.875rem;
  text-align: left;
}

.fpa-qf-seo__compare th,
.fpa-qf-seo__compare td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--qf-line);
  vertical-align: top;
}

.fpa-qf-seo__compare thead th {
  background: var(--qf-bg-2);
  font-family: var(--qf-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fpa-qf-seo__compare tbody th {
  font-weight: 600;
  min-width: 7.5rem;
  width: 22%;
}

.fpa-qf-seo__compare tbody tr:last-child th,
.fpa-qf-seo__compare tbody tr:last-child td {
  border-bottom: 0;
}

.fpa-qf-seo a {
  color: var(--qf-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fpa-qf-seo__note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--qf-line);
  font-size: 0.95rem;
  color: var(--qf-muted);
}

/* No-JS: show static SEO quiz answers, hide interactive shell guts */
.fpa-qf:not(.fpa-qf--ready) .fpa-qf__interactive {
  display: none;
}

.fpa-qf.fpa-qf--ready .fpa-qf__fallback {
  display: none;
}

.fpa-qf__fallback {
  max-width: var(--qf-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.fpa-qf__fallback h2 {
  font-family: var(--qf-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.fpa-qf__fallback p {
  color: var(--qf-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.fpa-qf__fallback ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
