/* GENERATED by scripts/gen-fc-quiz.mjs — DO NOT EDIT BY HAND.
   Source: src/quiz-v2.css + src/fc-quiz-embed.css
   Run `npm run gen:quiz` after changing the source. */
/* ==========================================================================
   /quiz — standalone quiz page styling.
   Light, premium "white + navy + gold" theme. Fully self-contained; shares no
   classes with the brand utility layer. Prefixed `.quiz-*` / `.q-*`.
   ========================================================================== */


.quiz-root {
  --bg: #fbf9f4; /* warm ivory canvas */
  --bg-2: #ffffff;
  --surface: #ffffff; /* cards */
  --surface-2: #fffdf9;
  --line: #e9e3d6; /* hairline */
  --line-strong: #d9bd78; /* gold-tinted hairline */
  --text: #0c1a2b; /* navy ink */
  --muted: #52616f;
  --faint: #7a8794;
  --gold: #b5893a;
  --gold-deep: #9a7324;
  --gold-soft: #fbf6ea;
  --gold-line: #e8d4a2;
  --accent-ink: #ffffff;
  --gold-grad: linear-gradient(135deg, #e6cf8e 0%, #d9bd78 35%, #9a7324 100%);
  --glow: rgba(181, 137, 58, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm:
    0 1px 2px rgba(12, 26, 43, 0.05), 0 6px 16px -10px rgba(12, 26, 43, 0.18);
  --shadow-md:
    0 2px 4px rgba(12, 26, 43, 0.05), 0 18px 40px -22px rgba(12, 26, 43, 0.26);
  --shadow-lg:
    0 4px 10px rgba(12, 26, 43, 0.06), 0 44px 80px -42px rgba(12, 26, 43, 0.36);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  color-scheme: light;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ---- Atmosphere: a single soft gold wash --------------------------------- */
.quiz-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}
.quiz-bg-glow {
  position: absolute;
  left: 50%;
  top: -220px;
  width: 1100px;
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(
    closest-side,
    rgba(181, 137, 58, 0.12),
    rgba(181, 137, 58, 0)
  );
  opacity: 0.9;
}

/* ---- Top progress rail --------------------------------------------------- */
.quiz-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(12, 26, 43, 0.06);
  z-index: 50;
}
.quiz-rail-fill {
  height: 100%;
  background: var(--gold-grad);
  box-shadow: 0 0 14px var(--glow);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Shell / generic wrap ------------------------------------------------ */
.quiz-shell {
  position: relative;
  z-index: 1;
}
.quiz-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Announcement bar (full-bleed, navy) --------------------------------- */
.quiz-announce {
  width: 100%;
  background: var(--text);
  color: #fbf9f4;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.45;
  letter-spacing: -0.003em;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(181, 137, 58, 0.45);
}
@media (min-width: 768px) {
  .quiz-announce {
    font-size: 0.98rem;
  }
}

/* ---- Hero: parallax city photo + faded white scrim ----------------------- */
.quiz-hero-wrap {
  position: relative;
  /* `clip` (not `hidden`) so the parallax bg is still clipped but the wrap is
     NOT a scroll container. With `hidden` the bg's 168px overflow made the wrap
     programmatically scrollable, so a "Check eligibility" scrollIntoView() (the
     quiz card lives inside this wrap) scrolled the social-proof badge out of the
     clipped box while window scrollY stayed 0 — the badge appeared to vanish. */
  overflow: clip;
  padding: 0 16px 8px;
}
.quiz-hero-bg {
  position: absolute;
  /* Covers the whole hero with parallax headroom. The image is intentionally
     kept very faint by the heavy ivory wash in ::after below, so it reads as a
     subtle backdrop rather than a feature. */
  inset: -10% 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  z-index: 0;
}
.quiz-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* lighten the photo + fade it into the ivory page toward the bottom */
  background: linear-gradient(
    180deg,
    rgba(251, 249, 244, 0.62) 0%,
    rgba(251, 249, 244, 0.8) 55%,
    rgba(251, 249, 244, 0.98) 100%
  );
}
/* Centered content column over the faded city — no boxed panel */
.quiz-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 28px; /* trimmed bottom — was 56, left a big empty gap */
  text-align: center;
}
@media (min-width: 640px) {
  .quiz-hero-inner {
    padding: 56px 32px 40px; /* trimmed bottom — was 72 */
  }
}

/* Social-proof box (overlapping faces + stars) */
.quiz-proof {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 auto 24px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 18px -12px rgba(12, 26, 43, 0.3);
}
.quiz-proof-avatars {
  display: flex;
}
.quiz-proof-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(12, 26, 43, 0.18);
  margin-left: -12px;
}
.quiz-proof-avatars img:first-child {
  margin-left: 0;
}
.quiz-proof-meta {
  text-align: left;
}
.quiz-proof-stars {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 2px;
  line-height: 1;
}
.quiz-proof-line {
  margin-top: 3px;
  max-width: 235px; /* keep it ~2 lines (a bit wider than the stars), not full-width */
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--muted);
}

/* Desktop / mobile variants: only one shows per breakpoint so each lays out
   correctly. Desktop is the default (base .quiz-proof = inline-flex). */
.quiz-proof--mobile {
  display: none;
}
@media (max-width: 640px) {
  .quiz-proof--desktop {
    display: none;
  }
  .quiz-proof--mobile {
    display: inline-flex;
  }
  /* On mobile, center the meta under/next to the avatars and keep the line tight. */
  .quiz-proof--mobile .quiz-proof-line {
    max-width: 200px;
  }
}

/* Audience pill — wide rounded band, bigger letters, one line on desktop */
.quiz-audience {
  display: block;
  max-width: 980px;
  margin: 0 auto 32px; /* more breathing room before the headline */
  /* Deeper gold so white text passes AA (the original light gold failed). */
  background: linear-gradient(135deg, #a07429 0%, #8a6520 60%, #6f5018 100%);
  color: #fff;
  border-radius: 16px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  line-height: 1.32;
  letter-spacing: -0.005em;
  box-shadow: 0 14px 32px -16px var(--glow);
}
/* Desktop: keep the whole sentence on one line, pill hugs the text. */
@media (min-width: 900px) {
  .quiz-audience {
    white-space: nowrap;
    width: fit-content;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
    font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  }
}
/* Hide the golden audience band on mobile (per request). */
@media (max-width: 640px) {
  .quiz-audience {
    display: none;
  }
}

.quiz-h1 {
  margin: 18px auto 0;
  max-width: 1000px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}
.quiz-h1 em {
  font-style: italic;
  color: var(--gold-deep);
}
/* Render "&" in a clean classic serif — Fraunces' default ampersand is too ornate. */
.quiz-amp {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}
.quiz-sub {
  margin: 30px auto 0;
  max-width: 56ch;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  font-weight: 500;
  color: #33414e; /* darker than --muted for AA contrast over the photo */
  text-shadow: 0 1px 2px rgba(251, 249, 244, 0.9); /* legibility halo */
}
.quiz-without {
  margin: 18px auto 0;
  max-width: 52ch;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted);
}
.quiz-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.quiz-microcopy {
  font-size: 0.82rem;
  color: var(--faint);
}
.quiz-microcopy-under {
  margin: 14px auto 0;
  text-align: center;
}

/* ---- Outcome stat cards (bottom of hero) -------------------------------- */
.quiz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 44px auto 0;
}
@media (max-width: 720px) {
  .quiz-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quiz-stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 10px 30px -22px rgba(12, 26, 43, 0.4);
}
.quiz-stat-value {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--gold-deep);
}
.quiz-stat-label {
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

/* ---- Buttons ------------------------------------------------------------- */
.q-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--accent-ink);
  background: var(--gold-grad);
  box-shadow: 0 12px 28px -12px var(--glow);
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease;
}
.q-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px -14px var(--glow);
}
.q-btn:active:not(:disabled) {
  transform: translateY(0);
}
.q-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.q-btn svg {
  transition: transform 0.2s ease;
}
.q-btn:hover:not(:disabled) svg {
  transform: translateX(3px);
}
.q-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--faint);
  transition: color 0.18s ease;
}
.q-back:hover {
  color: var(--text);
}

/* ---- Bank-logo marquee --------------------------------------------------- */
.quiz-banks {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  padding: 22px 0 6px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.quiz-banks-track {
  display: flex;
  align-items: center;
  /* No flex gap: spacing lives on the imgs (margin) so the half-track boundary
     aligns exactly and translateX(-50%) loops seamlessly. */
  width: max-content;
  animation: bankScroll 38s linear infinite;
}
.quiz-banks:hover .quiz-banks-track {
  animation-play-state: paused;
}
.quiz-banks-track img {
  height: 34px;
  width: auto;
  margin: 0 32px; /* symmetric spacing (replaces flex gap) for a seamless loop */
  opacity: 1; /* full-color real logos now — no longer ghosted */
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.quiz-banks-track img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---- Quiz card ----------------------------------------------------------- */
.quiz-card {
  position: relative;
  /* Above the stat cards' stacking contexts (they animate in after the card),
     so absolutely-positioned dropdowns overflowing the card — the /quizz
     country picker — never paint underneath them. */
  z-index: 5;
  width: 100%;
  max-width: 680px;
  margin: 36px auto 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 26px;
  box-shadow:
    0 1px 2px rgba(12, 26, 43, 0.04),
    0 40px 80px -40px rgba(12, 26, 43, 0.34);
}
@media (min-width: 640px) {
  .quiz-card {
    padding: 34px;
  }
}
.quiz-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.quiz-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.quiz-chip svg {
  color: var(--gold);
}
.quiz-stepcount {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--faint);
}
.quiz-stepcount b {
  color: var(--gold-deep);
  font-weight: 700;
}

.quiz-body {
  margin-top: 26px;
}
.q-question {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 1.95rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text);
}
.q-subline {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---- Option rows --------------------------------------------------------- */
.q-options {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.q-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--bg-2);
  padding: 16px 18px;
  color: var(--text);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.q-option:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 22px -16px rgba(12, 26, 43, 0.4);
  transform: translateX(3px);
}
.q-option.is-selected {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.q-option-icon {
  flex-shrink: 0;
  color: var(--faint);
  transition: color 0.18s ease;
}
.q-option:hover .q-option-icon,
.q-option.is-selected .q-option-icon {
  color: var(--gold-deep);
}
.q-option-text {
  flex: 1;
  min-width: 0;
}
.q-option-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.q-option-desc {
  margin-top: 2px;
  font-size: 0.84rem;
  color: var(--muted);
}
/* Separate the bold title from the description with a dash on every card. */
.q-option-desc::before {
  content: " - ";
  color: var(--faint);
}
.q-option-mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.18s ease;
}
.q-option.is-selected .q-option-mark {
  opacity: 1;
  transform: scale(1);
}

/* ---- Slider step --------------------------------------------------------- */
.q-slider {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  padding: 24px;
}
.q-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
}
.q-amount-cur {
  font-size: 1.8rem;
  color: var(--gold-deep);
}
.q-amount-val {
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.q-amount-plus {
  font-size: 2rem;
  color: var(--faint);
}
.q-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(12, 26, 43, 0.1);
  outline: none;
  cursor: pointer;
}
.q-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px var(--gold),
    0 2px 10px var(--glow);
  cursor: grab;
  transition: transform 0.15s ease;
}
.q-range::-webkit-slider-thumb:active {
  transform: scale(1.15);
  cursor: grabbing;
}
.q-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px var(--gold),
    0 2px 10px var(--glow);
  cursor: grab;
}
.q-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--faint);
}
.q-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.q-preset {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  padding: 7px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted);
  transition: all 0.16s ease;
}
.q-preset:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
.q-preset.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-deep);
}

/* ---- Inputs -------------------------------------------------------------- */
.q-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--bg-2);
  padding: 15px 17px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.q-field::placeholder {
  color: var(--faint);
}
.q-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 137, 58, 0.16);
}
.q-fields {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Contact-method toggle (Email / WhatsApp) --------------------------- */
.q-method {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}
.q-method-btn {
  flex: 1;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}
.q-method-btn:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
.q-method-btn.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.q-consent {
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--faint);
}
.q-textfield {
  margin-top: 26px;
}

/* ---- Spend step — typed $ field ----------------------------------------- */
.q-spend {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  padding: 22px 24px;
  cursor: text;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.q-spend:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 137, 58, 0.16);
}
.q-spend-cur {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-deep);
}
.q-spend-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.q-spend-input::placeholder {
  color: var(--faint);
}
.q-spend-suffix {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--faint);
}

/* ---- Nav row ------------------------------------------------------------- */
.q-nav {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ---- Result -------------------------------------------------------------- */
.q-result {
  text-align: center;
}
.q-result.is-left {
  text-align: left;
}
.q-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.q-badge.is-gold {
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.q-badge.is-muted {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
}
.q-result-icon {
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.q-result-h {
  margin-top: 16px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 1.95rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text);
}
.q-result-p {
  margin: 10px auto 0;
  max-width: 44ch;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--muted);
}
.q-resource {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 18px;
}
.q-resource-note {
  font-size: 0.92rem;
  color: var(--text);
}
.q-resource-row {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold-deep);
}
.q-cal {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.q-cal iframe {
  display: block;
  width: 100%;
  height: 580px;
  border: 0;
}

/* ---- Trust strip --------------------------------------------------------- */
.quiz-trust {
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 56px;
}
.quiz-flags {
  display: flex;
  gap: 8px;
  font-size: 1.5rem;
  filter: grayscale(0.2);
}
.quiz-trust-blurb {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--faint);
}

/* ---- Motion -------------------------------------------------------------- */
.q-animate {
  opacity: 0;
  animation: qFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes qFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bankScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .q-animate {
    animation: none;
    opacity: 1;
  }
  .quiz-banks-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM POLISH (phase 3) — depth, texture, refined type & motion.
   Declared last so these refinements win over the base rules above.
   ========================================================================== */

/* Film grain removed in v2 — it muddied the page and added to the washed-out,
   low-contrast feel. The page reads crisper without it. */

/* Heavy ivory wash so the skyline is BARELY visible — a faint premium backdrop
   covered by the page color, not a foreground photo. Fades to fully solid lower
   down so the quiz card and everything below sit on a clean background. Keeps
   all text completely legible. */
.quiz-hero-bg::after {
  background: linear-gradient(
    180deg,
    rgba(251, 249, 244, 0.86) 0%,
    rgba(251, 249, 244, 0.9) 45%,
    rgba(251, 249, 244, 0.98) 100%
  );
}

/* Tabular figures keep numbers aligned + premium */
.quiz-stat-value,
.q-amount-val,
.q-amount-cur,
.quiz-stepcount,
.q-range-labels {
  font-variant-numeric: tabular-nums;
}

/* Consistent layered depth */
.quiz-card {
  box-shadow: var(--shadow-lg);
}
.quiz-proof {
  box-shadow: var(--shadow-sm);
}
.quiz-stat {
  box-shadow: var(--shadow-md);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.quiz-stat:hover {
  border-color: var(--gold-line);
  box-shadow: var(--shadow-lg);
}

/* Headline: a touch tighter for editorial luxury + a soft ivory halo so the
   navy type stays crisp over the brighter top of the photo. */
.quiz-h1 {
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(251, 249, 244, 0.85);
}

/* Audience band: refined sheen + tracking (luxe, not loud) */
.quiz-audience {
  letter-spacing: 0.005em;
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Unified easing on the key interactions */
.q-btn {
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    filter 0.2s var(--ease);
}
.q-option {
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

/* Bank marquee, now at the bottom — set off with a divider + eyebrow */
.quiz-banks {
  margin-top: 4px;
  padding: 22px 0 14px; /* tighter so it sits closer under the stat cards */
  border-top: 1px solid var(--line);
}
.quiz-banks-eyebrow {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Accessible, on-brand keyboard focus rings */
.quiz-root :focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}
/* Text fields draw their own focus treatment (.q-spend:focus-within wraps the
   spend input; .q-field/.field restyle their border on :focus) — the generic
   gold ring above would double-box them, so suppress it there. */
.quiz-root .q-spend-input:focus-visible,
.quiz-root .plan-spend-input:focus-visible,
.quiz-root .q-field:focus-visible,
.quiz-root .field:focus-visible {
  outline: none;
}

/* ==========================================================================
   /quizz — compact hero (.quiz-compact on .quiz-root): the quiz card must be
   fully visible on load, so the hero copy is tighter and smaller than
   /credit's. Scoped by the extra class — /credit is untouched.
   ========================================================================== */
.quiz-compact .quiz-hero-inner {
  padding-top: 22px;
}
@media (min-width: 640px) {
  .quiz-compact .quiz-hero-inner {
    padding-top: 30px;
  }
}
.quiz-compact .quiz-audience {
  margin-bottom: 14px;
  padding: 10px 24px;
}
.quiz-compact .quiz-h1 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}
.quiz-compact .quiz-sub {
  margin-top: 12px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}
.quiz-compact .quiz-card {
  margin-top: 18px;
  padding: 22px 26px;
}
.quiz-compact .q-question {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

@media (prefers-reduced-motion: reduce) {
  .quiz-stat {
    transition: none;
  }
}

/* ==========================================================================
   V2 FIXES — calendar loading skeleton, mobile key chips
   ========================================================================== */

/* Booking calendar: show a skeleton until the iframe loads so qualified leads
   never stare at a blank white box. */
.q-cal-wrap {
  position: relative;
  min-height: 580px;
}
/* Tall FIXED fallback height so the GHL widget never scrolls inside the box;
   GHL's form_embed.js resizes the iframe to the widget's real height. */
.q-cal-wrap iframe {
  display: block;
  width: 100%;
  height: 1500px;
  border: 0;
}
.q-cal-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
}
.q-cal-skeleton-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--faint);
}
.q-cal-spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid var(--gold-line);
  border-top-color: var(--gold);
  animation: qSpin 0.8s linear infinite;
}
@keyframes qSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .q-cal-spinner {
    animation: none;
  }
}

/* ==========================================================================
   WHATSAPP — opt-in toggle, result buttons, floating click-to-chat
   ========================================================================== */
:root {
  --wa: #25d366;
  --wa-deep: #1da851;
}

/* Opt-in toggle on the WhatsApp step */
.q-wa-optin {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
  padding: 16px 18px;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}
.q-wa-optin:hover {
  border-color: var(--line-strong);
}
.q-wa-optin.is-on {
  border-color: var(--wa);
  background: #f0fbf4;
}
.q-wa-optin-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid var(--line);
  color: #fff;
  background: var(--bg-2);
  transition: all 0.18s ease;
}
.q-wa-optin.is-on .q-wa-optin-check {
  background: var(--wa);
  border-color: var(--wa);
}
.q-wa-optin-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.q-wa-optin-label svg {
  color: var(--wa);
}

/* Result-screen WhatsApp button (green) */
.q-wa-btn {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--wa);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, 0.6);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}
.q-wa-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}
.q-wa-or {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--faint);
}

/* Floating click-to-chat button */
.quiz-wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: block;
  width: 58px;
  height: 58px;
  line-height: 0;
  /* The official logo SVG carries its own bubble + white edge; add depth. */
  filter: drop-shadow(0 8px 18px rgba(12, 26, 43, 0.28));
  transition: transform 0.18s ease;
}
.quiz-wa-fab img {
  display: block;
  width: 100%;
  height: 100%;
}
.quiz-wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
}
@media (min-width: 640px) {
  .quiz-wa-fab {
    width: 64px;
    height: 64px;
    right: 24px;
    bottom: 24px;
  }
}

/* ==========================================================================
   SPLIT LAYOUT (variant C) — benefits checklist (left) + quiz (right)
   ========================================================================== */
.quiz-hero-inner--split {
  max-width: 1160px;
}
.quiz-split {
  display: grid;
  gap: 28px;
  align-items: start;
  text-align: left;
  margin-top: 36px;
}
@media (min-width: 900px) {
  .quiz-split {
    grid-template-columns: 1fr minmax(0, 560px);
    gap: 48px;
    align-items: start;
  }
}
.quiz-split-right .quiz-card {
  margin-top: 0;
}

/* Section heading above the benefits checklist */
.quiz-benefits-title {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Benefits checklist */
.quiz-benefits {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}
.quiz-benefit-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold-deep);
}

/* ==========================================================================
   Content sections: shared head (eyebrow + serif title + sub)
   Used by the proof gallery and the about-the-founder section.
   ========================================================================== */
.quiz-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 20px;
}
@media (min-width: 768px) {
  .quiz-section {
    padding: 80px 24px;
  }
}
.quiz-sec-head {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}
.quiz-eyebrow {
  display: block;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.quiz-sec-title {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.quiz-sec-sub {
  margin: 14px auto 0;
  max-width: 54ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- Proof gallery (grid + tap-to-enlarge) ------------------------------- */
.quiz-receipts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) {
  .quiz-receipts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.quiz-receipt {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 30px -22px rgba(12, 26, 43, 0.4);
  cursor: zoom-in;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.25s var(--ease);
}
.quiz-receipt:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px -26px rgba(12, 26, 43, 0.5);
}
.quiz-receipt img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--gold-soft);
}
.quiz-receipt-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 14px 12px;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 500;
  text-align: left;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(12, 26, 43, 0.84),
    rgba(12, 26, 43, 0)
  );
}

/* ---- Lightbox ------------------------------------------------------------ */
.quiz-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 16, 27, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: qFadeIn 0.2s ease forwards;
}
.quiz-lightbox-img {
  max-width: min(92vw, 760px);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}
.quiz-lightbox-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  padding: 0 24px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}
.quiz-lightbox-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.18s ease;
}
.quiz-lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.quiz-lightbox-close {
  top: 18px;
  right: 18px;
}
.quiz-lightbox-prev {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.quiz-lightbox-next {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes qFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---- About the founder (single centered card, circular avatar on top) ---- */
.quiz-about-card {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 40px 26px 34px;
}
@media (min-width: 768px) {
  .quiz-about-card {
    padding: 52px 56px 44px;
  }
}
.quiz-about-avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background-color: var(--gold-soft);
  background-repeat: no-repeat;
  /* Round crop centered on Valentin (face ~30%,58% of the source). Wider zoom
     so more of the photo shows. background-image is set inline from
     C.about.photo. */
  background-size: 200%;
  background-position: 12% 58%;
  border: 3px solid var(--surface);
  box-shadow:
    0 0 0 1px var(--gold-line),
    0 14px 30px -14px rgba(12, 26, 43, 0.45);
}
@media (min-width: 768px) {
  .quiz-about-avatar {
    width: 148px;
    height: 148px;
  }
}
.quiz-about-card .quiz-eyebrow {
  margin: 22px 0 0;
}
.quiz-about-card .quiz-sec-title {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}
.quiz-about-body {
  max-width: 52ch;
  margin: 22px auto 0;
}
.quiz-about-p {
  margin: 0 0 14px;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--muted);
}
.quiz-about-p:first-of-type {
  font-size: 1.08rem;
  color: var(--text);
}
.quiz-about-p:last-of-type {
  margin-bottom: 0;
}
.quiz-about-sign {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-deep);
}
.quiz-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin: 30px auto 0;
}
.quiz-about-stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 12px 10px;
  text-align: center;
}
.quiz-about-stat-value {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--gold-deep);
}
.quiz-about-stat-label {
  margin-top: 4px;
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--muted);
}
.quiz-about-cta {
  margin-top: 30px;
}

/* ==========================================================================
   fc-quiz — embed overrides for the static /us-credit (VSL1) page.

   src/quiz-v2.css is written for the React SPA, where two things are true that
   are NOT true on public/vsl1/index.html:

     1. `.quiz-root` is the whole page, so it owns 100vh + the page background.
        Here it is a wrapper around a single card in the middle of the hero.
     2. src/index.css loads `@tailwind base` (Preflight), which normalises
        buttons, inputs and svgs. The VSL page has only `*{margin;padding;
        box-sizing}` — no Preflight — so the widget's own rules are not enough.

   This file is concatenated after quiz-v2.css by scripts/gen-fc-quiz.mjs, but
   every rule below is written to win on SPECIFICITY, not source order, so the
   generated file can be reordered without silently changing the rendering.

   Sibling precedent: src/quizz-vsl.css, applied at src/QuizzPage.tsx:389 as
   `quiz-root quiz-compact quizz-vsl`.

   HARD RULE: never edit src/quiz-v2.css to fix something here — six live
   routes share it (/credit, /credit-b, /credit-c, /quiz-v2 via QuizPageV2.tsx
   and /quizz, /credit-plan via QuizzPage.tsx).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Demote `.quiz-root` from "the page" to "a wrapper", keeping its variables.

   The wrapper MUST carry BOTH classes (`class="quiz-root fc-quiz"`): the
   `.quiz-root` block in quiz-v2.css is where all 20 custom properties the
   widget consumes are declared, along with the inherited color, font-family
   and font-smoothing. Drop `.quiz-root` and the card renders transparent with
   unstyled fonts while the gold accents still look right — which reads as a
   styling mistake rather than a missing class.

   `.quiz-root.fc-quiz` is (0,2,0) and beats `.quiz-root` (0,1,0) either way
   round in the stylesheet.
   -------------------------------------------------------------------------- */
.quiz-root.fc-quiz {
  position: static;
  min-height: 0;
  width: auto;
  overflow-x: visible; /* `hidden` would clip the card's box-shadow */
  background: none; /* --bg happens to equal the hero's --cream anyway */

  /* Match /credit's inherited base. The SPA gets line-height 1.5 from
     Preflight's `html{line-height:1.5}`; the VSL page's body says 1.6, which
     would loosen every line inside the card. */
  line-height: 1.5;

  /* quiz-v2.css asks for Montserrat, which the VSL page does not load and
     which we deliberately do not fetch (the generator strips the @import).
     Inter is already loaded by the page and is the site's body face.
     --font-display stays "Fraunces", which the page also already loads at the
     600 weight .q-question / .q-result-h / .q-spend-input need. */
  --font-body: "Inter", system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Tailwind Preflight substitutes — scoped to the widget, specificity zero.

   `:where()` keeps these at (0,0,0) so they can never outrank a component rule
   in quiz-v2.css, and scoping to `.fc-quiz` keeps them off the VSL page's own
   elements. That second part matters: a bare `button{line-height:inherit}`
   would change the rendered height of the page's `.btn` CTAs, which sets no
   line-height of its own — and the page has to stay pixel-identical.
   -------------------------------------------------------------------------- */
:where(.fc-quiz) button,
:where(.fc-quiz) input,
:where(.fc-quiz) select,
:where(.fc-quiz) textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

/* LOAD-BEARING: `.q-option` (and its `.q-option-title` / `.q-option-desc`
   children) set no font-family at all — they lean entirely on Preflight's
   `button{font-family:inherit}`. Without the rule above, every answer row on
   the VSL page renders in the UA's 13.3px Arial at line-height:normal. */

/* Every selector here is wrapped in :where() so the whole thing computes to
   (0,0,0). Do NOT unwrap the attribute selectors: a bare `[type="button"]` is
   (0,1,0), which TIES `.q-btn` / `.q-option` and then wins on source order
   (this file is concatenated AFTER quiz-v2.css). That silently strips
   `background: var(--gold-grad)` off the primary CTA, leaving white
   `--accent-ink` text on the white card — an invisible button — and flattens
   the selected `.q-option` fill. Every .q-btn/.q-option in quiz.js carries an
   explicit type="button"/"submit", so all of them are hit. */
:where(.fc-quiz) :where(button, [type="button"], [type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

/* Preflight makes replaced elements block-level. Without it the `<svg>` inside
   `.q-option-icon` sits on the text baseline and adds a descender gap under
   every icon; the booking `<iframe>` picks up the same gap. */
:where(.fc-quiz) svg,
:where(.fc-quiz) img,
:where(.fc-quiz) iframe {
  display: block;
  vertical-align: middle;
}

/* Firefox dims placeholders by default; Preflight resets it. */
:where(.fc-quiz) input::placeholder {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   3. OPTIONAL: restyle the quiz's primary button as the VSL page's amber CTA.

   Default OFF. The gold-gradient `.q-btn` shipped in quiz-v2.css is the one
   /credit converts with, and that is the whole reason this survey is being
   moved here — so it stays as-is unless someone deliberately decides the card
   should echo the page's amber `.btn` instead. Uncomment to switch.

   Note the hover selector is written at (0,4,0) on purpose. The shipped
   src/quizz-vsl.css:66 writes its equivalent at (0,3,0), which merely TIES the
   base `.q-btn:hover:not(:disabled)` rule and wins only on source order — do
   not copy that bug.

.quiz-root.fc-quiz .q-btn {
  background: linear-gradient(135deg, #f5b72e, #e0951a);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}
.quiz-root.fc-quiz .q-btn:hover:not(:disabled) {
  filter: brightness(1.05);
}
-------------------------------------------------------------------------- */
