*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fdf6ec;
  --orange: #ff5c1a;
  --orange-light: #fff0e8;
  --orange-mid: #ffcfb3;
  --green: #1a8c5b;
  --green-light: #e6f7f0;
  --green-mid: #a3dfc4;
  --red: #c0392b;
  --red-light: #fdecea;
  --text: #1a1208;
  --muted: #8a7460;
  --border: #e8ddd0;
  --white: #fffdf9;
  --sans: 'Nunito', sans-serif;
  --mono: 'Instrument Mono', monospace;
  --nav-logo-size: 1.4rem;
  --nav-link-size: 0.85rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  min-height: 100vh;
}

footer .logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 92, 26, 0.25); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.quiz-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quiz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-mid);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.quiz-headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.quiz-headline em { color: var(--orange); font-style: italic; }

.quiz-sub {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 34rem;
  margin: 0 auto;
}

.quiz-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 8px 28px rgba(26, 18, 8, 0.05);
}

.quiz-challenge {
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}

.quiz-intro-social {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.quiz-intro-social strong { color: var(--orange); }

.quiz-live-stats {
  color: var(--orange);
  font-size: 0.72rem;
  white-space: nowrap;
}

.quiz-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
}

.quiz-progress-track {
  height: 0.45rem;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.quiz-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ff8f4a);
  border-radius: 100px;
  transition: width 0.25s ease;
}

.quiz-progress-bar--pulse {
  box-shadow: 0 0 0 4px rgba(255, 92, 26, 0.25);
  transition: width 0.25s ease, box-shadow 0.35s ease;
}

.quiz-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid var(--orange-mid);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.quiz-prompt {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.quiz-scenario { margin-bottom: 1.1rem; }

.quiz-scenario--annotated .quiz-flagged {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 0.35rem;
  background: var(--red-light);
  animation: quiz-flag-pulse 0.8s ease;
}

.quiz-mock-urgency { font-weight: 900; }

@keyframes quiz-flag-pulse {
  0%, 100% { outline-color: var(--red); }
  50% { outline-color: #ff8f4a; }
}

/* ── Phone device shell (SMS, WhatsApp, calls, link preview) ── */
.quiz-device {
  max-width: 17.5rem;
  margin: 0 auto;
}

.quiz-device-bezel {
  background: #1a1208;
  border-radius: 1.75rem;
  padding: 0.45rem 0.45rem 0.65rem;
  box-shadow: 0 12px 32px rgba(26, 18, 8, 0.18);
}

.quiz-device-notch {
  width: 4.5rem;
  height: 0.35rem;
  background: #1a1208;
  border-radius: 0 0 0.5rem 0.5rem;
  margin: 0 auto 0.25rem;
}

.quiz-device-screen {
  background: #f2f2f7;
  border-radius: 1.35rem;
  overflow: hidden;
  min-height: 14rem;
  font-size: 0.82rem;
}

.quiz-device-home {
  width: 2.5rem;
  height: 0.22rem;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  margin: 0.45rem auto 0;
}

.quiz-device--phone .quiz-device-screen {
  background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
  min-height: 18rem;
}

.quiz-device--whatsapp .quiz-device-screen {
  background: #e5ddd5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23d4cdc4' d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/svg%3E");
}

.quiz-device-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.85rem 0.2rem;
  font-size: 0.62rem;
  font-weight: 800;
  color: #1a1208;
}

.quiz-device--phone .quiz-device-status { color: #fff; }

.quiz-device-icons {
  display: flex;
  gap: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: -0.02em;
}

/* ── SMS / iMessage ── */
.quiz-mock-sms { background: #f2f2f7; }

.quiz-mock-sms-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.65rem;
  border-bottom: 1px solid #d8d8e0;
  background: #f9f9fb;
}

.quiz-mock-sms-back {
  font-size: 1.25rem;
  font-weight: 700;
  color: #007aff;
  line-height: 1;
}

.quiz-mock-sms-contact {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.quiz-mock-sms-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8e8e93, #636366);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quiz-mock-sms-sender {
  font-weight: 800;
  font-size: 0.82rem;
  color: #1a1208;
}

.quiz-mock-sms-thread {
  padding: 1rem 0.85rem 1.25rem;
}

.quiz-mock-sms-bubble {
  display: inline-block;
  max-width: 92%;
  background: #e9e9eb;
  border-radius: 1.1rem 1.1rem 1.1rem 0.35rem;
  padding: 0.7rem 0.85rem;
  line-height: 1.45;
  color: #1a1208;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.quiz-mock-sms-bubble--short { max-width: 100%; }

.quiz-mock-sms-link {
  color: #007aff;
  text-decoration: underline;
  word-break: break-all;
}

.quiz-mock-sms-delivered {
  display: block;
  margin-top: 0.35rem;
  margin-left: 0.15rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: #8e8e93;
}

/* ── Browser URL picker ── */
.quiz-mock-browser {
  border: 1.5px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 6px 20px rgba(26, 18, 8, 0.06);
}

.quiz-mock-browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: #e8e8ed;
  border-bottom: 1px solid #d1d1d6;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

.quiz-mock-browser-dots {
  display: flex;
  gap: 0.3rem;
}

.quiz-mock-browser-dots i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c7c7cc;
  font-style: normal;
}

.quiz-mock-browser-dots i:nth-child(1) { background: #ff5f57; }
.quiz-mock-browser-dots i:nth-child(2) { background: #febc2e; }
.quiz-mock-browser-dots i:nth-child(3) { background: #28c840; }

.quiz-mock-browser-title { flex: 1; text-align: center; }

.quiz-mock-urls {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
}

.quiz-mock-url-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.quiz-mock-url-lock {
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  opacity: 0.55;
  padding-top: 0.35rem;
}

.quiz-mock-url-bar {
  flex: 1;
  background: #fff;
  border: 1.5px solid #d1d1d6;
  border-radius: 0.65rem;
  padding: 0.45rem 0.65rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.quiz-mock-url-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.quiz-mock-url-bar code {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: #1a1208;
  word-break: break-all;
}

/* ── Instagram-style ad ── */
.quiz-mock-ad {
  border: 1.5px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 18, 8, 0.08);
}

.quiz-mock-ad-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
}

.quiz-mock-ad-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quiz-mock-ad-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quiz-mock-ad-brand {
  font-weight: 900;
  font-size: 0.82rem;
}

.quiz-mock-ad-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--muted);
}

.quiz-mock-ad-menu {
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.quiz-mock-ad-image {
  position: relative;
  height: 7.5rem;
  background: linear-gradient(135deg, #f8f0ff 0%, #ffe8f0 50%, #fff5e6 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quiz-mock-ad-image::before {
  content: '';
  position: absolute;
  inset: 18% 28%;
  border-radius: 50%;
  border: 3px solid rgba(131, 58, 180, 0.25);
  background: radial-gradient(circle at 30% 30%, #fff 0%, #f0e6ff 100%);
}

.quiz-mock-ad-image-tag {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
}

.quiz-mock-ad-body { padding: 0.65rem 0.75rem 0.5rem; }

.quiz-mock-ad-headline {
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.quiz-mock-ad-price {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.quiz-mock-ad-url {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.quiz-mock-ad-cta {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0.45rem;
  background: #0095f6;
  color: #fff;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.78rem;
  pointer-events: none;
}

.quiz-mock-ad-engagement {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0.75rem 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

/* ── Email client ── */
.quiz-mock-email {
  border: 1.5px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(26, 18, 8, 0.06);
}

.quiz-mock-email-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  background: #f5f5f7;
  border-bottom: 1px solid #e5e5ea;
  font-size: 0.78rem;
  font-weight: 800;
  color: #007aff;
}

.quiz-mock-email-app { color: var(--text); }

.quiz-mock-email-subject {
  padding: 0.75rem 0.85rem 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}

.quiz-mock-email-from-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.85rem 0.75rem;
  border-bottom: 1px solid #f0f0f5;
}

.quiz-mock-email-avatar {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #003087;
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quiz-mock-email-from-name {
  font-weight: 900;
  font-size: 0.82rem;
}

.quiz-mock-email-from-addr {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.quiz-mock-email-time {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}

.quiz-mock-email-body {
  padding: 0.85rem;
  line-height: 1.5;
  font-size: 0.86rem;
}

.quiz-mock-email-body p { margin-bottom: 0.75rem; }

.quiz-mock-email-receipt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.75rem;
  background: #f5f7fa;
  border: 1px solid #e3e8ef;
  border-radius: 0.55rem;
}

.quiz-mock-email-receipt-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
}

.quiz-mock-email-receipt-amount {
  font-size: 0.95rem;
  font-weight: 900;
  color: #003087;
}

/* ── Incoming call ── */
.quiz-mock-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
  color: #fff;
  min-height: 17rem;
}

.quiz-mock-phone-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
  margin-bottom: 1.25rem;
}

.quiz-mock-phone-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.quiz-mock-phone-caller {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.quiz-mock-phone-sub {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.quiz-mock-phone-script {
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 14rem;
  margin-bottom: auto;
  padding-bottom: 1.25rem;
}

.quiz-mock-phone-actions {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  justify-content: center;
}

.quiz-mock-phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.quiz-mock-phone-btn span {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.quiz-mock-phone-btn--decline span {
  background: #ff3b30;
  transform: rotate(135deg);
}

.quiz-mock-phone-btn--accept span { background: #34c759; }

/* ── QR parking meter ── */
.quiz-mock-qr-scene {
  border: 1.5px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
  background: linear-gradient(180deg, #eef2f5 0%, #dfe6ec 100%);
}

.quiz-mock-qr-meter {
  background: #4a5568;
  border-radius: 0.65rem;
  padding: 0.65rem;
  color: #fff;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.quiz-mock-qr-meter-top {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
  opacity: 0.9;
}

.quiz-mock-qr-meter-slot {
  position: relative;
  background: #2d3748;
  border-radius: 0.45rem;
  padding: 0.85rem;
  min-height: 6.5rem;
  display: grid;
  place-items: center;
}

.quiz-mock-qr-original {
  position: relative;
  opacity: 0.35;
  filter: blur(0.5px);
}

.quiz-mock-qr-svg {
  width: 4.75rem;
  height: 4.75rem;
  border: 3px solid #fff;
  border-radius: 0.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  display: block;
}

.quiz-mock-qr-svg--official {
  opacity: 0.45;
  filter: blur(0.4px);
}

.quiz-mock-qr-svg--sticker {
  border-color: #f6ad55;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.quiz-mock-qr-caption {
  display: block;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 800;
  margin-top: 0.25rem;
  color: #a0aec0;
}

.quiz-mock-qr-sticker {
  position: absolute;
  inset: 0.65rem;
  display: grid;
  place-items: center;
}

.quiz-mock-qr-sticker-fold {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%);
  border-top-right-radius: 0.2rem;
}

.quiz-mock-qr-detail {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

/* ── Link preview (in message thread) ── */
.quiz-mock-link { background: #f2f2f7; }

.quiz-mock-link-thread { padding: 0.85rem; }

.quiz-mock-link-preview {
  margin-top: 0.65rem;
  margin-left: 0.25rem;
}

.quiz-mock-link-preview-label {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.quiz-mock-link-preview-card {
  background: #fff;
  border: 1.5px solid #d1d1d6;
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.quiz-mock-link-preview-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.35rem 0;
}

.quiz-mock-link-preview-row + .quiz-mock-link-preview-row {
  border-top: 1px dashed var(--border);
  margin-top: 0.35rem;
  padding-top: 0.55rem;
}

.quiz-mock-link-preview-row--bad {
  background: var(--red-light);
  margin: 0.35rem -0.35rem -0.15rem;
  padding: 0.55rem 0.35rem;
  border-radius: 0.45rem;
  border-top: none;
}

.quiz-mock-label {
  font-weight: 800;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quiz-mock-link-preview code,
.quiz-mock-link code {
  font-family: var(--mono);
  font-size: 0.74rem;
  word-break: break-all;
}

.quiz-mock-bad { color: var(--red); font-weight: 800; }

/* ── WhatsApp chat ── */
.quiz-mock-wa-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: #075e54;
  color: #fff;
}

.quiz-mock-wa-back {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.9;
}

.quiz-mock-wa-avatar {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #25d366;
  font-weight: 900;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
}

.quiz-mock-wa-name {
  font-weight: 900;
  font-size: 0.85rem;
}

.quiz-mock-wa-chat {
  padding: 1rem 0.75rem 1.25rem;
}

.quiz-mock-wa-bubble {
  display: inline-block;
  max-width: 88%;
  background: #fff;
  border-radius: 0.5rem 0.5rem 0.5rem 0.15rem;
  padding: 0.65rem 0.75rem;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  color: #1a1208;
}

.quiz-mock-wa-time {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: #667781;
}

.quiz-options {
  display: grid;
  gap: 0.55rem;
}

.quiz-option {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  line-height: 1.45;
}

.quiz-option-letter {
  font-weight: 900;
  color: var(--orange);
  margin-right: 0.15rem;
}

.quiz-option:hover:not(:disabled) {
  border-color: var(--orange-mid);
  background: var(--orange-light);
}

.quiz-option:disabled { cursor: default; }

.quiz-option.is-correct {
  border-color: var(--green);
  background: var(--green-light);
}

.quiz-option.is-wrong {
  border-color: var(--red);
  background: var(--red-light);
}

.quiz-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.quiz-feedback.is-correct {
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
}

.quiz-feedback.is-wrong {
  background: var(--red-light);
  border: 1.5px solid #f1c0bc;
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.quiz-intro-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.quiz-intro-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.quiz-score-ring {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 6px solid var(--orange);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: var(--orange-light);
  transition: transform 0.35s ease;
}

.quiz-score-ring--celebrate {
  animation: quiz-celebrate 0.65s ease;
}

@keyframes quiz-celebrate {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.quiz-persona {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-mid);
  border-radius: 0.9rem;
}

.quiz-persona-emoji { font-size: 1.75rem; line-height: 1; }

.quiz-persona-title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.15rem;
}

.quiz-persona-desc {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.45;
}

.quiz-challenge-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.75rem 0 0.5rem;
}

.quiz-challenge-score {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.85rem;
  border: 2px solid var(--border);
  background: var(--bg);
}

.quiz-challenge-score--you {
  border-color: var(--orange-mid);
  background: var(--orange-light);
}

.quiz-challenge-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.quiz-challenge-num {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.quiz-challenge-vs {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--muted);
}

.quiz-score-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.quiz-score-total {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
}

.quiz-results-headline {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.quiz-beat-challenge {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.quiz-beat-challenge--win { color: var(--green); }
.quiz-beat-challenge--lose { color: var(--orange); }

.quiz-missed-title {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 1.25rem 0 0.65rem;
}

.quiz-missed-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.quiz-missed-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.quiz-missed-list a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.quiz-missed-none { justify-content: center; color: var(--green); border-color: var(--green-mid); background: var(--green-light); }

.quiz-share {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid var(--border);
}

.quiz-share--highlight {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.1rem 1rem;
  border-top: none;
  border-radius: 1rem;
  background: linear-gradient(180deg, var(--orange-light) 0%, #fff8f2 100%);
  border: 2px solid var(--orange-mid);
  box-shadow: 0 10px 28px rgba(255, 92, 26, 0.14);
  text-align: center;
}

.quiz-share-eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--orange-mid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.quiz-share-title {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.quiz-share-preview {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 0.9rem;
  line-height: 1.45;
}

.quiz-share-btn {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 8px 22px rgba(255, 92, 26, 0.28);
}

.quiz-share-btn.copied {
  background: var(--green);
  box-shadow: 0 8px 22px rgba(26, 140, 91, 0.25);
}

.quiz-share-note {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}

.quiz-cta {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-mid);
  text-align: center;
}

.quiz-cta p {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

footer {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 2px solid var(--border);
}

.footer-copy { font-size: 0.75rem; font-weight: 700; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 600px) {
  .quiz-wrap { padding: 1.5rem 1.1rem 2.5rem; }
  .quiz-device { max-width: 100%; }
  .quiz-mock-ad-image { height: 6.5rem; }
  .quiz-meta { flex-wrap: wrap; }
  .quiz-challenge-compare { gap: 0.5rem; }
  .quiz-challenge-num { font-size: 1.45rem; }
  .quiz-missed-list li { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: center; text-align: center; }
  footer .footer-links {
    width: min(100%, 22rem);
    justify-items: center;
  }
}
