.quiz-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: #f4f5f7;
  color: #111827;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}
.quiz-app button {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.quiz-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #152236;
  color: #fff;
  padding: 16px 20px;
  min-height: 72px;
  min-width: 0;
  position: relative;
}
.quiz-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert();
}
.quiz-panel-copy {
  display: none;
  max-width: 320px;
  text-align: center;
}
.quiz-panel-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.quiz-panel-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}
.quiz-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  background: #fff;
  position: relative;
}
.quiz-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px 0;
}
.quiz-step-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
.quiz-progress {
  height: 4px;
  flex: 1;
  max-width: 180px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress > span {
  display: block;
  height: 100%;
  background: #4f46e5;
  border-radius: 999px;
  transition: width 0.2s ease;
}
.quiz-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 20px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}
.quiz-body {
  width: 100%;
  padding: 0;
}
.quiz-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9ca3af;
  white-space: nowrap;
}
.quiz-title {
  margin: 0;
  font-size: 26px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111827;
  white-space: pre-line;
}
.quiz-sub {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7280;
}
.quiz-hint {
  margin: 22px 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.quiz-option:hover {
  border-color: #c7c9d1;
}
.quiz-option.is-on {
  border-color: #4f46e5;
  background: #eef2ff;
}
.quiz-option-ico {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.quiz-option.is-on .quiz-option-ico {
  background: #4f46e5;
  color: #fff;
}
.quiz-option-check {
  margin-left: auto;
  width: 20px;
  height: 20px;
  color: #4f46e5;
  flex: none;
}
.quiz-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 24px;
  padding: 0 0 env(safe-area-inset-bottom);
}
.quiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: all 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.quiz-btn-ghost {
  background: #fff;
  color: #374151 !important;
  border-color: #e5e7eb;
}
.quiz-btn-ghost:hover { background: #f9fafb; }
.quiz-btn-primary {
  background: #4f46e5;
  color: #ffffff !important;
  min-width: 128px;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}
.quiz-btn-primary:hover {
  background: #4338ca;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}
.quiz-btn-primary:active {
  transform: scale(0.985);
  box-shadow: 0 1px 4px rgba(79, 70, 229, 0.2);
}
.quiz-btn-primary:disabled {
  background: #c7d2fe;
  color: #ffffff !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.quiz-panel .lang-switcher {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.quiz-panel .lang-switcher select {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  min-height: 40px;
}
.quiz-top { display: none; }
.quiz-main .lang-switcher {
  position: static;
  top: auto;
  right: auto;
}
.quiz-main .lang-switcher select {
  color: #111827;
  background: #fff;
  border: 1px solid #e5e7eb;
  min-height: 40px;
}
.quiz-field {
  margin-top: 28px;
}
.quiz-phone {
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  position: relative;
  min-height: 56px;
  overflow: visible;
}
.quiz-phone.is-ok { border-color: #c7d2fe; }
.quiz-phone.is-bad { border-color: #dc2626; }
.quiz-phone.is-lock { background: #f9fafb; }
.quiz-phone.is-open,
.quiz-phone:focus-within {
  border-color: #4f46e5;
}
.quiz-dial {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 4px 4px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.quiz-dial:disabled { cursor: not-allowed; opacity: 0.7; }
.quiz-dial img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}
.quiz-chevron {
  width: 12px;
  height: 12px;
  color: #6b7280;
}
.quiz-input {
  flex: 1;
  min-width: 0;
  min-height: 56px;
  border: 0;
  background: transparent;
  padding: 0 18px 0 12px;
  font: inherit;
  font-size: 16px;
  color: #111827;
  outline: none;
  appearance: none;
}
.quiz-input::placeholder { color: #9ca3af; }
.quiz-drop {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 6px;
  overflow: hidden;
}
.quiz-drop button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  background: #fff;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  appearance: none;
}
.quiz-drop button:hover { background: #f3f4f6; }
.quiz-drop-name { flex: 1; text-align: left; }
.quiz-drop-dial { color: #6b7280; font-weight: 600; }
.quiz-error { margin-top: 8px; font-size: 13px; color: #dc2626; }
.quiz-lock {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f9fafb;
  font-size: 13px;
  color: #4b5563;
}
.quiz-lock strong { display: block; margin-bottom: 4px; color: #111827; }
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.45);
  padding: 20px;
}
.quiz-modal-card {
  width: min(320px, 100%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.quiz-spin {
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  border: 2px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 999px;
  animation: quiz-spin 0.8s linear infinite;
}
@keyframes quiz-spin { to { transform: rotate(360deg); } }

@media (max-width: 899px) {
  .quiz-wrap {
    padding: 36px 20px 28px;
  }
  .quiz-step-row {
    justify-content: flex-start;
    gap: 12px;
    margin: 0 0 32px;
  }
  .quiz-progress {
    flex: 1;
    width: auto;
    max-width: none;
  }
  .quiz-hint {
    margin: 24px 0 14px;
  }
  .quiz-options {
    gap: 14px;
  }
  .quiz-footer {
    gap: 12px;
    margin-top: 28px;
  }
  .quiz-footer .quiz-btn {
    flex: 1;
    min-width: 0;
    min-height: 48px;
  }
  .quiz-footer .quiz-btn-primary {
    min-width: 0;
  }
}

@media (min-width: 900px) {
  .quiz-app {
    grid-template-columns: minmax(280px, 38%) 1fr;
    background: #fff;
  }
  .quiz-panel {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow-y: auto;
    padding: 48px 40px;
    gap: 28px;
  }
  .quiz-logo {
    width: 72px;
    height: 72px;
  }
  .quiz-panel-copy { display: block; }
  .quiz-main { min-height: 100vh; }
  .quiz-panel .lang-switcher { display: none; }
  .quiz-top { display: flex; padding: 24px 40px 0; }
  .quiz-wrap { padding: 40px 40px 48px; justify-content: center; }
  .quiz-title { font-size: 32px; }

  /* Header layout variant: top bar instead of tall sidebar */
  .quiz-app-header {
    grid-template-columns: 1fr;
  }
  .quiz-app-header .quiz-panel {
    position: relative;
    height: auto;
    min-height: 72px;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    gap: 14px;
  }
  .quiz-app-header .quiz-logo {
    width: 40px;
    height: 40px;
  }
  .quiz-app-header .quiz-panel-copy {
    display: none;
  }
  .quiz-app-header .quiz-panel .lang-switcher {
    display: block;
  }
  .quiz-app-header .quiz-main { min-height: auto; }
  .quiz-app-header .quiz-top { display: none; }
  .quiz-app-header .rep-sticky {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .quiz-app-header .rep-sticky-inner { max-width: none; }
}

.scan-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}
.scan-alert {
  margin: 0;
  padding: 14px 20px;
  border-radius: 0;
  background: #fff1f2;
  color: #e11d48;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}
.scan-id {
  margin: 20px 0 8px;
}
.scan-id-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
}
.scan-id.is-done .scan-id-kicker { color: #6b7280; }
.scan-id-live {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #818cf8;
  animation: scan-live 1s ease-in-out infinite;
}
.scan-id.is-done .scan-id-live {
  background: #16a34a;
  animation: none;
}
.scan-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.scan-avatar.ring-loaded { border-color: #4f46e5; }
.scan-avatar img { width: 100%; height: 100%; object-fit: cover; }
.scan-loader {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 999px;
  animation: quiz-spin 0.8s linear infinite;
}
.scan-avatar-fallback {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d1d5db;
}
.scan-phone {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}
.scan-city {
  margin: 2px 0 0;
  font-size: 12px;
  color: #6b7280;
}
.scan-progress-block { margin-top: 20px; }
.scan-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}
.scan-progress-meta span:last-child {
  font-weight: 500;
  color: #6b7280;
  text-align: right;
}
.scan-progress-bar {
  flex: none;
  width: 100%;
  max-width: none;
  height: 6px;
}
.scan-status {
  margin: 10px 0 0;
  font-size: 13px;
  color: #4f46e5;
  font-weight: 500;
}
.scan-rummage {
  margin-top: 18px;
  padding: 14px 14px 10px;
  border-radius: 16px;
  background: #111827;
  color: #e5e7eb;
}
.scan-rummage-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c7d2fe;
}
.scan-rummage-live {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #818cf8;
  animation: scan-live 1s ease-in-out infinite;
}
.scan-rummage-count {
  margin-left: auto;
  letter-spacing: 0;
  text-transform: none;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
}
.scan-rummage-list {
  margin-top: 10px;
  min-height: 0;
  font-family: ui-monospace, "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
}
.scan-rummage-list p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #6b7280;
}
.scan-rummage-list p.is-now {
  color: #fff;
}
.scan-rummage-path {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scan-rummage-size {
  flex: none;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
}
.scan-rummage-list p.is-now .scan-rummage-size { color: #c7d2fe; }
@keyframes scan-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.scan-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.scan-app-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}
.scan-app-card img {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.scan-app-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.scan-app-state {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}
.scan-app-card.is-wait {
  opacity: 0.48;
}
.scan-app-card.is-scan {
  border-color: #4f46e5;
  background: #eef2ff;
}
.scan-app-card.is-scan .scan-app-state { color: #4f46e5; }
.scan-app-card.is-done { border-color: #c7d2fe; }
.scan-app-card.is-done .scan-app-state { color: #4338ca; }
.scan-app-card.is-scan {
  animation: scan-pulse 1.6s ease-in-out infinite;
}
@keyframes scan-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12); }
}
.scan-metrics {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  background: #f9fafb;
}
.scan-metric-label {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}
.scan-metric-value {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.scan-metric-sub {
  margin: 4px 0 0;
  font-size: 11px;
  color: #6b7280;
}
.scan-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
  font-size: 13px;
  line-height: 1.5;
}
.scan-note-title {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dc2626;
}
.scan-log {
  max-height: 168px;
  overflow-y: auto;
  padding: 12px 14px;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  background: #f9fafb;
}
.scan-log-line {
  display: flex;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4b5563;
  animation: scan-log-in 0.22s ease;
}
@keyframes scan-log-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.scan-log-line + .scan-log-line { margin-top: 8px; }
.scan-log-dot {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 999px;
  background: #d1d5db;
  flex: none;
}
.scan-log-line.log-success .scan-log-dot { background: #4f46e5; }
.scan-log-line.log-warning .scan-log-dot { background: #f59e0b; }
.scan-log-line.log-error .scan-log-dot { background: #dc2626; }
.scan-video {
  margin: 18px 0 20px;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.scan-cta {
  display: flex !important;
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 20px !important;
  margin: 22px 0 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  color: #ffffff !important;
  background: #4f46e5 !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3) !important;
  transition: all 0.18s ease !important;
}
.scan-cta:hover {
  background: #4338ca !important;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.4) !important;
  transform: translateY(-1px);
}
.scan-cta:active {
  transform: scale(0.985);
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25) !important;
}
.scan-people {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}
@media (min-width: 900px) {
  .scan-alert { padding: 14px 40px; }
  .scan-wrap { padding: 28px 40px 48px; }
  .scan-apps { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .scan-app .scan-wrap > .quiz-title { display: none; }
}

/* Report Flow & Spacing */
.flow-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 20px 64px;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .flow-wrap {
    padding: 32px 40px 80px;
  }
}

.rep-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  animation: rep-slide-down 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 900px) {
  .rep-sticky {
    position: sticky;
    left: auto;
    right: auto;
    width: auto;
    margin: 0 -40px;
  }
}
@keyframes rep-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.rep-sticky-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .rep-sticky-inner {
    padding: 12px 32px;
  }
}
.rep-sticky-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  min-width: 0;
  flex: 1;
}
.rep-sticky-text {
  font-size: 12.5px;
  line-height: 1.3;
  color: #cbd5e1;
}
.rep-sticky-clock {
  color: #fbbf24;
  font-family: ui-monospace, "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.rep-sticky.is-critical .rep-sticky-clock {
  color: #f87171;
}
.rep-sticky-btn,
.rep-sticky .quiz-btn {
  flex: none !important;
  width: auto !important;
  min-width: auto !important;
  min-height: 38px !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35) !important;
  box-sizing: border-box !important;
}
@media (max-width: 420px) {
  .rep-sticky-inner {
    padding: 8px 12px;
    gap: 8px;
  }
  .rep-sticky-text {
    font-size: 11px;
  }
  .rep-sticky-btn,
  .rep-sticky .quiz-btn {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }
}

.scan-alert {
  margin: 0 0 18px;
  padding: 13px 18px;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #e11d48;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scan-id {
  margin: 0 0 24px;
  padding: 18px 20px;
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
}
.scan-id-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dc2626;
}
.scan-id-live {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
  animation: scan-live 1.2s ease-in-out infinite;
}
.scan-phone {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}
.scan-city {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
  font-family: ui-monospace, "IBM Plex Mono", monospace;
}

.rep-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}
.rep-list li {
  padding: 14px 18px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14.5px;
  line-height: 1.55;
  color: #1f2937;
}
.rep-list li:last-child {
  border-bottom: none;
}
.rep-list li strong {
  color: #4f46e5;
  font-weight: 700;
}

.rep-heat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  margin: 0 0 28px;
}
.rep-heat-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rep-heat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}
.rep-heat-top span:last-child {
  font-weight: 600;
  font-size: 12px;
  color: #4f46e5;
}
.rep-heat .quiz-progress {
  width: 100%;
  max-width: none;
  height: 7px;
  background: #e5e7eb;
  border-radius: 999px;
}
.rep-heat .quiz-progress > span {
  background: #4f46e5;
  border-radius: 999px;
}

/* Interactive Evidence Showcase (Location, Chats, Photos) */
.evidence-showcase {
  margin: 0 0 28px;
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 16px;
  box-sizing: border-box;
}
.evidence-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: #eef2f6;
  padding: 4px;
  border-radius: 14px;
}
.evidence-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.evidence-tab-btn.is-active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.evidence-tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
}
.evidence-tab-btn.is-active .evidence-tab-dot {
  background: #4f46e5;
}
.evidence-panels {
  min-height: 180px;
}
.evidence-panel {
  animation: evidence-fade-in 0.2s ease;
}
@keyframes evidence-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.rep-note {
  margin: 0 0 14px;
  padding: 12px 16px;
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 12px;
  font-size: 13.5px;
  color: #166534;
  line-height: 1.5;
}
.rep-note strong {
  color: #15803d;
  font-weight: 700;
}

/* Images & Media (Border and box-shadow removed as requested) */
.rep-media {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: none !important;
  box-shadow: none !important;
  margin: 8px 0 16px;
  background: transparent !important;
  box-sizing: border-box;
}

.scan-note {
  margin: 28px 0;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: #fff1f2;
  border: 1.5px solid #fecaca;
  color: #881337;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: none !important;
}
.scan-note-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e11d48;
}
.scan-note p {
  margin: 0 0 10px;
}
.scan-note p:last-of-type {
  margin-bottom: 0;
}
.scan-note .scan-cta {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.rep-iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.rep-iframe.tall {
  height: 480px;
}
@media (max-width: 480px) {
  .rep-iframe.tall {
    height: 380px;
  }
}

.rep-offer-section {
  margin: 28px 0;
}
.rep-price-box {
  text-align: center;
  padding: 24px 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  margin: 0 0 20px;
}
.rep-price {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #111827;
}
.rep-price-sub {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}
.rep-offer-note {
  text-align: center;
  margin: 10px 0 28px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* Horizontal Scroll Rails for Quotes & Videos */
.rep-horizontal-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  margin: 0 -8px 24px;
  scrollbar-width: thin;
}
.rep-horizontal-scroll::-webkit-scrollbar {
  height: 4px;
}
.rep-horizontal-scroll::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 999px;
}
.rep-quote-slide {
  flex: 0 0 85%;
  max-width: 380px;
  scroll-snap-align: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-sizing: border-box;
}
.rep-quote-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-size: 13px;
}
.rep-quote-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2937;
}
.rep-quote-name {
  margin-top: 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
}
.rep-quote-name .verified-badge {
  color: #16a34a;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.rep-guarantee-card {
  text-align: center;
  padding: 28px 20px 24px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  margin: 28px 0;
}
.rep-seal {
  display: block;
  width: 130px;
  height: auto;
  border: none !important;
  box-shadow: none !important;
  margin: 0 auto 16px;
}
.rep-guarantee-copy {
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  max-width: 480px;
}

.rep-video-slide {
  flex: 0 0 88%;
  max-width: 360px;
  scroll-snap-align: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-sizing: border-box;
}
.rep-video-slide .scan-phone {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.rep-video-slide .quiz-sub {
  margin: 0 0 12px;
  font-size: 13px;
  font-style: italic;
  color: #4b5563;
  line-height: 1.45;
}
@media (min-width: 900px) {
  .rep-quote-slide {
    flex: 0 0 47%;
  }
  .rep-video-slide {
    flex: 0 0 48%;
  }
}

.rep-faq {
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 12px;
}
.rep-faq-q {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}
.rep-faq .quiz-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}
.rep-faq a.faq-link,
.rep-faq .quiz-sub a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: underline;
}

.rep-final-card {
  margin-top: 36px;
  padding: 28px 22px;
  background: #111827;
  color: #ffffff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.rep-final-card .quiz-title {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 12px;
}
.rep-final-card .quiz-sub {
  color: #9ca3af;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.rep-final-card .scan-cta {
  margin: 0 !important;
}
.quiz-app .result-page,
.quiz-app .reserved-page,
.quiz-app .back-offer-page,
.quiz-app .thanks-page {
  background: transparent;
  color: #111827;
  font-family: inherit;
  min-height: 0;
  padding: 0;
}
.quiz-app .result-page .page-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}
.quiz-app .section-card,
.quiz-app .section-card-light,
.quiz-app .section-card-offer {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: none;
  padding: 18px 16px;
}
.quiz-app .section-card-danger {
  background: #fff1f2;
  border: 0;
  border-radius: 16px;
  color: #e11d48;
  text-align: left;
  padding: 18px 16px;
}
.quiz-app .alert-title {
  font-family: inherit;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #e11d48;
}
.quiz-app .alert-phone-box {
  background: #fff;
  border: 1px solid #fecaca;
  color: #111827;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  min-width: 0;
}
.quiz-app .unified-warning { padding: 18px 16px; }
.quiz-app .warning-core {
  background: #fff1f2;
  color: #7f1d1d;
  padding: 16px;
  border-radius: 12px;
}
.quiz-app .risk-badge {
  background: #fff;
  border: 1px solid #fecaca;
  color: #e11d48;
  border-radius: 999px;
}
.quiz-app .warning-strip {
  background: #fff;
  border: 1px solid #fecaca;
  color: #7f1d1d;
  font-size: 15px;
  font-weight: 500;
}
.quiz-app .warning-strip-accent { color: #e11d48; }
.quiz-app .report-info-top {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  color: #6b7280;
  letter-spacing: 0.04em;
}
.quiz-app .report-export-card {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
}
.quiz-app .report-profile-avatar { border: 2px solid #e5e7eb; }
.quiz-app .report-phone-pill {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #111827;
}
.quiz-app .findings-tab {
  background: #4f46e5;
  border-radius: 999px;
  margin: 0 0 12px;
  padding: 8px 14px;
}
.quiz-app .findings-tab:before { background: #fff; }
.quiz-app .finding-item { color: #111827; }
.quiz-app .findings-list-compact strong { color: #4f46e5; }
.quiz-app .activity-log-panel {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}
.quiz-app .activity-log-head {
  background: #111827;
  color: #fff;
}
.quiz-app .forensic-chip.solid { background: #4f46e5; color: #fff; }
.quiz-app .log-entry {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 12px;
}
.quiz-app .heatmap-bar { background: #4f46e5; }
.quiz-app .heatmap-bar.high { background: #e11d48; }
.quiz-app .heatmap-bar.medium { background: #f59e0b; }
.quiz-app .heatmap-bar.low { background: #9ca3af; }
.quiz-app .heatmap-label.high { color: #e11d48; }
.quiz-app .heatmap-label.medium { color: #d97706; }
.quiz-app .heatmap-label.low { color: #6b7280; }
.quiz-app .location-address-bar {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 12px;
}
.quiz-app .location-address-bar strong { color: #e11d48; }
.quiz-app .map-preview,
.quiz-app .chat-shot-frame,
.quiz-app .censored-photo-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}
.quiz-app .evidence-report-box {
  border: 1px solid #fecaca;
  border-radius: 16px;
  background: #fff1f2;
}
.quiz-app .evidence-box-title { color: #e11d48; }
.quiz-app .contact-pill {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}
.quiz-app .how-badge { color: #4f46e5; }
.quiz-app .vsl-result-section,
.quiz-app .how-video-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.quiz-app .offer-chip {
  background: #fff1f2;
  border: 1px solid #fecaca;
  color: #e11d48;
  border-radius: 999px;
}
.quiz-app .offer-shell {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: none;
}
.quiz-app .offer-headline {
  font-family: inherit;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.quiz-app .price-today {
  font-family: inherit;
  color: #111827;
}
.quiz-app .price-panel {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
}
.quiz-app .cta-main,
.quiz-app .cta-main.success,
.quiz-app .cta-main.dark,
.quiz-app .cta-main.navy,
.quiz-app .cta-main.final,
.quiz-app .cta-main.compact {
  background: #4f46e5;
  color: #fff;
  border-radius: 999px;
  box-shadow: none;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}
.quiz-app .cta-main:hover { background: #4338ca; opacity: 1; }
.quiz-app .quote-card,
.quiz-app .faq-item,
.quiz-app .video-testimonial-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: none;
  background: #fff;
}
.quiz-app .quotes-title,
.quiz-app .faq-title {
  font-family: inherit;
  letter-spacing: -0.02em;
  text-transform: none;
}
.quiz-app .faq-number {
  background: #4f46e5;
  border-radius: 999px;
}
.quiz-app .faq-link { color: #4f46e5; }
.quiz-app .final-cta-block {
  background: #111827;
  border: 0;
  border-radius: 16px;
  color: #fff;
}
.quiz-app .final-badge {
  border: 1px solid #374151;
  border-radius: 999px;
  color: #c7d2fe;
}
.quiz-app .final-headline { font-family: inherit; color: #fff; }
.quiz-app .final-cta-block .cta-main { background: #4f46e5; color: #fff; }
.quiz-app .security-timer-banner {
  background: #111827;
  border-bottom: 0;
}
.quiz-app .banner-timer-value {
  background: #4f46e5;
  color: #fff;
  border-radius: 8px;
}
.quiz-app .banner-unlock-link {
  background: #4f46e5;
  border-radius: 999px;
}
.quiz-app .reserved-page .top-bar { display: none; }
.quiz-app .unlock-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: none;
  max-width: none;
  text-align: left;
}
.quiz-app .card-title { font-family: inherit; font-size: 24px; letter-spacing: -0.02em; }
.quiz-app .email-input {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  min-height: 48px;
}
.quiz-app .unlock-btn {
  background: #4f46e5;
  border-radius: 999px;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}
.quiz-app .unlock-btn:not(:disabled):hover { background: #4338ca; }
.quiz-app .phone-frame {
  background: transparent;
  border: 0;
  width: 100%;
  overflow: visible;
}
.quiz-app .notch { display: none; }
.quiz-app .strip {
  background: #fff1f2;
  color: #e11d48;
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  margin-bottom: 16px;
}
.quiz-app .back-offer-page .card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 16px;
}
.quiz-app .headline-block h1 {
  font-family: inherit;
  color: #111827;
  letter-spacing: -0.02em;
}
.quiz-app .st {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 12px;
}
.quiz-app .stn { font-family: inherit; color: #111827; }
.quiz-app .target-card {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
}
.quiz-app .target-name { color: #111827; }
.quiz-app .target-phone { color: #4f46e5; }
.quiz-app .pbox {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
}
.quiz-app .nwv { font-family: inherit; color: #111827; }
.quiz-app .nws { color: #111827; }
.quiz-app .sv { background: #4f46e5; border-radius: 999px; }
.quiz-app .back-offer-page .cta {
  background: #4f46e5;
  color: #fff;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
}
.quiz-app .back-offer-page .cta:hover { background: #4338ca; }
.quiz-app .timer {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
}
.quiz-app .tv { font-family: inherit; }
.quiz-app .interaction-prompt {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  color: #111827;
}
.quiz-app .interaction-prompt h2 { font-family: inherit; color: #111827; }
.quiz-app .interaction-prompt-cta {
  background: #4f46e5;
  color: #fff;
  border-radius: 999px;
  text-transform: none;
}
.quiz-app .thanks-page {
  text-align: left;
  padding: 0;
  color: #111827;
}
.quiz-app .thanks-icon { display: none; }
.quiz-app .thanks-title {
  font-family: inherit;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #111827;
}
.quiz-app .thanks-sub { color: #6b7280; max-width: none; }
.quiz-app .steps-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}
.quiz-app .steps-title { color: #6b7280; }
.quiz-app .step-number {
  background: #4f46e5;
  color: #fff;
  border-radius: 999px;
}
.quiz-app .step-content { color: #111827; }
@media (min-width: 900px) {
  .flow-wrap { padding: 28px 40px 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .quiz-option, .quiz-progress > span, .quiz-spin, .scan-loader, .scan-app-card.is-scan,
  .scan-rummage-live, .scan-rummage-list p, .scan-log-line {
    transition: none;
    animation: none;
  }
}
