:root {
  --ink: #f4f2ed;
  --muted: #9b9aa3;
  --line: rgba(244, 242, 237, 0.12);
  --surface: #121422;
  --accent: #b8ff66;
  --accent-glow: rgba(184, 255, 102, 0.25);
  --blue: #7ca5ff;
  --cream: #e9e3d7;
  --black: #080911;
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-border: rgba(244, 242, 237, 0.14);
  --app-max-width: 480px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 页面只允许纵向滚动，避免双击/双指手势改变页面比例 */
  touch-action: pan-y;
  overflow-x: hidden;
}

body.app-body {
  margin: 0;
  width: 100%;
  min-width: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "Manrope", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

button, a {
  font: inherit;
  outline: none;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Background effects */
.noise {
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.orb-one {
  height: 300px;
  width: 300px;
  right: 50%;
  transform: translateX(180px);
  top: 100px;
  background: rgba(87, 86, 229, 0.18);
}

.orb-two {
  height: 280px;
  width: 280px;
  left: 50%;
  transform: translateX(-200px);
  top: 400px;
  background: rgba(184, 255, 102, 0.12);
}

/* Mobile App Frame Container */
.app-container {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(180deg, #111324 0%, #090a13 100%);
  position: relative;
  z-index: 2;
  border-left: 1px solid rgba(244, 242, 237, 0.07);
  border-right: 1px solid rgba(244, 242, 237, 0.07);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  padding-bottom: 95px;
  display: flex;
  flex-direction: column;
}

/* App Header */
.app-header {
  height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(17, 19, 36, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 13px "DM Mono", monospace;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.brand-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.app-header-tag {
  font: 500 10px "DM Mono", monospace;
  color: var(--accent);
  background: rgba(184, 255, 102, 0.12);
  border: 1px solid rgba(184, 255, 102, 0.25);
  padding: 4px 8px;
  border-radius: 99px;
}

/* App Main Content */
.app-main {
  padding: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* App Hero Card */
.app-hero-card {
  background: radial-gradient(circle at top right, rgba(184, 255, 102, 0.14), transparent 55%), rgba(255, 255, 255, 0.035);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.app-hero-badge {
  display: inline-block;
  font: 500 11px "Noto Sans SC", sans-serif;
  color: var(--accent);
  background: rgba(184, 255, 102, 0.1);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.app-hero-title {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
  font-weight: 700;
}

.app-hero-title strong {
  color: var(--accent);
  font-weight: 800;
}

.app-hero-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 20px;
}

.app-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 12px 8px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-stat-item b {
  display: block;
  font: 700 15px "Noto Sans SC", "DM Mono", sans-serif;
  color: var(--ink);
}

.app-stat-item span {
  font-size: 10px;
  color: var(--muted);
}

/* App Buttons */
.app-primary-btn {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #b8ff66 0%, #9ee645 100%);
  color: #11170a;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(184, 255, 102, 0.22);
  transition: box-shadow 0.15s ease;
}

.app-primary-btn:active {
  box-shadow: 0 4px 12px rgba(184, 255, 102, 0.15);
}

.app-primary-btn i {
  font-style: normal;
  font-size: 16px;
}

/* Preview Sample Card */
.app-preview-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 18px 18px 16px;
}

.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.preview-tag {
  font: 500 10px "DM Mono", monospace;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.preview-score {
  font: 500 11px "DM Mono", monospace;
  color: var(--accent);
}

.preview-animal-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.preview-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 255, 102, 0.12);
  border: 1px solid rgba(184, 255, 102, 0.3);
  border-radius: 14px;
  display: grid;
  place-content: center;
  font-size: 26px;
}

.preview-info h3 {
  margin: 0 0 3px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.preview-info p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.preview-vibe-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
}

.vibe-progress {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.vibe-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 99px;
}

.preview-vibe-bar b {
  font-family: "DM Mono", monospace;
  color: var(--accent);
}

.preview-quote {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #c4c2cb;
  font-style: italic;
}

/* App Section Title */
.app-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.app-section-title span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-section-title small {
  font-size: 11px;
  color: var(--muted);
}

/* 16 Animal Grid (Chips) */
.animal-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.animal-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s;
}

.animal-chip:hover, .animal-chip:active {
  background: rgba(184, 255, 102, 0.08);
  border-color: rgba(184, 255, 102, 0.4);
}

.animal-chip i {
  font-style: normal;
  font-size: 20px;
}

.animal-chip span {
  font-size: 12px;
  font-weight: 600;
  color: #dedce4;
}

/* Footer */
.app-footer {
  text-align: center;
  padding: 20px 0 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.app-footer p {
  margin: 0 0 6px;
  font-size: 11px;
}

.app-footer small {
  font: 400 9px "DM Mono", monospace;
  color: #696872;
}

/* Sticky App Bottom Action Bar */
.app-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 12px 18px max(16px, env(safe-area-inset-bottom));
  background: rgba(9, 10, 19, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(244, 242, 237, 0.12);
  z-index: 25;
}

.sticky-btn {
  box-shadow: 0 6px 20px rgba(184, 255, 102, 0.3);
}

/* Utility Hidden */
.hidden {
  display: none !important;
}

/* Quiz Overlay (App View) */
.quiz-view, .result-view {
  position: fixed;
  z-index: 40;
  inset: 0;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.quiz-app-container, .result-app-container {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: auto;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font: 400 11px "DM Mono", monospace;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.quiz-brand {
  color: var(--ink);
  font-weight: 700;
}

.icon-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 20px;
  display: grid;
  place-content: center;
}

.quiz-progress {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.quiz-progress i {
  height: 100%;
  display: block;
  background: var(--accent);
  width: 0%;
  transition: width 0.25s ease;
  box-shadow: 0 0 10px var(--accent);
}

.quiz-content {
  min-height: 0;
  padding: 24px clamp(16px, 4vw, 72px) 28px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.question-kicker {
  font: 500 11px "DM Mono", monospace;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.question-setup {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: #aaa8b4;
  margin-bottom: 18px;
}

.quiz-content h2 {
  font-size: clamp(23px, 5.8vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.answer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.scenario-option {
  width: 100%;
  min-height: 136px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  color: #dcdbe4;
  border-radius: 16px;
  padding: 22px 20px 20px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  column-gap: 14px;
  align-items: start;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.scenario-option.selected {
  border-color: var(--accent);
  background: rgba(184, 255, 102, 0.1);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(184, 255, 102, 0.08), 0 10px 28px rgba(0, 0, 0, 0.12);
}

.scenario-option .option-index {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(184, 255, 102, 0.35);
  border-radius: 10px;
  background: rgba(184, 255, 102, 0.08);
  font: 700 11px "DM Mono", monospace;
  line-height: 1;
}

.scenario-option .option-copy {
  min-width: 0;
  padding-top: 1px;
}

.scenario-option .option-copy b {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.scenario-option .option-copy small {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.scenario-option > i {
  align-self: start;
  justify-self: end;
  padding-top: 2px;
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}

.scenario-option.selected > i {
  color: var(--accent);
}

.quiz-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  margin-top: 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

@media (max-height: 700px) {
  .quiz-content {
    justify-content: flex-start;
    padding-top: 18px;
  }
}

/* 宽屏题目页使用全宽，两个选项并排，减少不必要的纵向滚动 */
@media (min-width: 700px) {
  .quiz-content {
    padding-inline: clamp(28px, 8vw, 140px);
  }

  .answer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .scenario-option {
    min-height: 164px;
    padding: 24px 22px 22px;
  }

  .quiz-bottom {
    padding-inline: clamp(28px, 8vw, 140px);
  }
}

.back-button, .next-button {
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: 600;
}

.back-button {
  color: var(--muted);
}

.next-button {
  color: var(--accent);
}

.next-button:disabled, .back-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Result View Styling */
.result-nav {
  height: 56px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font: 500 10px "DM Mono", monospace;
  color: var(--muted);
}

.plain-brand {
  background: none;
  border: 0;
  color: var(--ink);
  font: 700 12px "DM Mono", monospace;
  padding: 0;
}

.result-hero {
  padding: 24px 20px;
}

.result-label {
  font: 500 10px "DM Mono", monospace;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.result-hero h1 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.result-subtitle {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
}

.result-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.result-chip-row span {
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 10px;
  border-radius: 99px;
  font: 500 10px "DM Mono", monospace;
  color: #d1cfd8;
}

.result-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-map {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 16px;
}

.work-map-head {
  display: flex;
  justify-content: space-between;
  font: 500 9px "DM Mono", monospace;
  color: var(--muted);
  margin-bottom: 12px;
}

.work-map-head b {
  color: var(--accent);
}

.coordinate-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coordinate-plane {
  height: 220px;
  position: relative;
  border: 1px solid rgba(244, 242, 237, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background-image: linear-gradient(rgba(244, 242, 237, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 242, 237, 0.06) 1px, transparent 1px);
  background-size: 25% 25%;
}

.axis {
  position: absolute;
  background: rgba(244, 242, 237, 0.2);
}

.axis-x {
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
}

.axis-y {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
}

.zone {
  position: absolute;
  font-size: 9px;
  color: rgba(244, 242, 237, 0.4);
  line-height: 1.2;
}

.zone-a { top: 8px; left: 8px; }
.zone-b { top: 8px; right: 8px; text-align: right; }
.zone-c { bottom: 8px; left: 8px; }
.zone-d { bottom: 8px; right: 8px; text-align: right; }

.you-marker {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(184, 255, 102, 0.15), 0 0 20px var(--accent);
  transform: translate(-50%, 50%);
}

.you-marker b {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font: 700 9px "DM Mono", monospace;
  color: var(--accent);
  white-space: nowrap;
}

.axis-label {
  position: absolute;
  font: 400 8px "DM Mono", monospace;
  color: var(--muted);
}

.axis-left { left: 6px; top: calc(50% + 4px); }
.axis-right { right: 6px; top: calc(50% + 4px); }
.axis-bottom { left: calc(50% + 4px); bottom: 6px; }
.axis-top { left: calc(50% + 4px); top: 6px; }

.driver-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.driver-stack p {
  margin: 0 0 4px;
  font-size: 11px;
  color: var(--muted);
}

.driver-row span {
  display: block;
  font-size: 10px;
  color: #cccab5;
  margin-bottom: 4px;
}

.driver-row i {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 30px);
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.driver-row i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 99px;
}

.driver-row em {
  float: right;
  font: 500 9px "DM Mono", monospace;
  color: var(--ink);
  font-style: normal;
}

.work-map-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}

.result-free-summary {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 16px;
}

.result-free-summary span {
  font: 500 10px "DM Mono", monospace;
  color: var(--accent);
}

.result-free-summary p {
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 16px;
  color: #dedce4;
}

.outline-button {
  width: 100%;
  background: rgba(184, 255, 102, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.locked-preview {
  padding: 0 20px 24px;
}

.locked-title span {
  font: 500 9px "DM Mono", monospace;
  color: var(--muted);
}

.locked-title h2 {
  font-size: 20px;
  margin: 4px 0 16px;
}

.lock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.lock-grid article {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px;
}

.lock-grid span {
  font: 700 10px "DM Mono", monospace;
  color: var(--accent);
}

.lock-grid h3 {
  font-size: 14px;
  margin: 8px 0 4px;
}

.lock-grid p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
}

.full-report {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.full-report-header span {
  font: 500 10px "DM Mono", monospace;
  color: var(--accent);
}

.full-report-header h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 6px 0 0;
}

.report-block {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 18px;
}

.report-block-aside span {
  font: 500 9px "DM Mono", monospace;
  color: var(--accent);
}

.report-block-aside h3 {
  font-size: 17px;
  margin: 4px 0 8px;
}

.report-block-aside p {
  margin: 0 0 12px;
  font-size: 11px;
  color: var(--muted);
}

.report-block-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-tags span {
  background: rgba(184, 255, 102, 0.1);
  border: 1px solid rgba(184, 255, 102, 0.25);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
}

.bullet-lines {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullet-lines div {
  font-size: 12px;
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
  color: #cccab5;
}

.ai-card {
  background: linear-gradient(135deg, rgba(124, 165, 255, 0.12), rgba(184, 255, 102, 0.08));
  border: 1px solid rgba(184, 255, 102, 0.2);
  border-radius: 14px;
  padding: 14px;
}

.ai-card small {
  font: 500 9px "DM Mono", monospace;
  color: var(--accent);
}

.ai-card h4 {
  font-size: 16px;
  margin: 6px 0 8px;
}

.ai-card p {
  font-size: 12px;
  color: #c9c7d2;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-list > div {
  display: flex;
  gap: 12px;
  font-size: 12px;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 12px;
  border-radius: 10px;
}

.plan-list span {
  font: 700 11px "DM Mono", monospace;
  color: var(--accent);
}

.share-area {
  background: linear-gradient(135deg, var(--accent), #9ee645);
  color: #11170a;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.share-area small {
  font: 700 9px "DM Mono", monospace;
  opacity: 0.7;
}

.share-area h3 {
  font-size: 20px;
  margin: 4px 0 0;
  line-height: 1.2;
}

.share-button {
  background: #11170a;
  color: var(--accent);
  border: 0;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
}

.report-binding-notice,
.report-disclaimer {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
}

.report-binding-notice {
  border-color: rgba(184, 255, 102, 0.28);
}

.report-binding-label {
  color: var(--accent);
  font: 500 9px "DM Mono", monospace;
  margin-bottom: 8px;
}

.report-binding-notice strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.report-binding-notice p,
.report-binding-notice small,
.report-disclaimer p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.report-binding-notice p {
  margin: 10px 0 4px;
}

.report-binding-notice b {
  color: var(--ink);
}

.report-disclaimer strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 6px;
}

.report-disclaimer p {
  margin: 0;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(3, 4, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.payment-modal {
  position: relative;
  width: min(380px, 100%);
  background: #17192a;
  border: 1px solid var(--card-border);
  color: var(--ink);
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
}

.modal-eyebrow {
  font: 500 9px "DM Mono", monospace;
  color: var(--accent);
}

.payment-modal h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 10px 0 8px;
}

.payment-modal p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  font-size: 13px;
}

.price-line b {
  font: 700 22px "DM Mono", monospace;
  color: var(--accent);
}

.pay-button {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--accent), #9ee645);
  color: #11170a;
  padding: 14px;
  font-weight: 800;
  font-size: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.xianyu-link-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #ffda00 0%, #ffa700 100%);
  color: #1a1500;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 183, 0, 0.25);
  transition: transform 0.15s ease;
}

.xianyu-link-btn:active {
  filter: brightness(0.96);
}

.code-input-wrapper {
  margin-bottom: 16px;
}

.code-input-wrapper label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.code-input-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--card-border);
  color: var(--accent);
  /* iOS Safari 会对小于 16px 的输入框自动放大页面 */
  font: 700 16px "DM Mono", monospace;
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-input-field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(184, 255, 102, 0.2);
}

.payment-modal small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.modal-disclaimer {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 360px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.footer-privacy {
  max-width: 380px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.modal-privacy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 70;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 90px);
  background: var(--ink);
  color: #11170a;
  padding: 10px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translate(-50%, 0);
}

/* 移动端可读性增强：正文、题目和结果说明统一放大，避免小屏阅读吃力 */
@media (max-width: 699px) {
  .app-header {
    height: 62px;
    padding-inline: 18px;
  }

  .app-brand {
    font-size: 14px;
  }

  .app-header-tag {
    font-size: 11px;
    padding: 5px 9px;
  }

  .app-main {
    padding: 20px 16px 0;
    gap: 24px;
  }

  .app-hero-card {
    padding: 26px 20px;
  }

  .app-hero-badge {
    font-size: 12px;
    padding: 5px 11px;
  }

  .app-hero-title {
    font-size: 30px;
    line-height: 1.28;
  }

  .app-hero-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .app-stat-item b {
    font-size: 16px;
  }

  .app-stat-item span {
    font-size: 12px;
  }

  .app-primary-btn {
    font-size: 17px;
    padding-block: 17px;
  }

  .preview-tag,
  .preview-score {
    font-size: 11px;
  }

  .preview-info h3 {
    font-size: 19px;
  }

  .preview-info p,
  .preview-quote {
    font-size: 14px;
  }

  .preview-vibe-bar {
    font-size: 13px;
  }

  .app-section-title span {
    font-size: 18px;
  }

  .app-section-title small {
    font-size: 12px;
  }

  .animal-chip span {
    font-size: 14px;
  }

  .app-footer p {
    font-size: 12px;
    line-height: 1.7;
  }

  .app-footer small {
    font-size: 10px;
  }

  .quiz-top {
    min-height: 58px;
  }

  .quiz-top > span:last-child {
    font-size: 12px;
  }

  .quiz-content {
    padding-top: 26px;
    padding-bottom: 32px;
  }

  .question-kicker {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .question-setup {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .quiz-content h2 {
    font-size: clamp(25px, 6.5vw, 31px);
    line-height: 1.35;
    margin-bottom: 30px;
  }

  .answer-list {
    gap: 18px;
  }

  .scenario-option {
    min-height: 148px;
    padding: 24px 20px 22px;
    column-gap: 15px;
  }

  .scenario-option .option-index {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .scenario-option .option-copy b {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 9px;
  }

  .scenario-option .option-copy small {
    font-size: 15px;
    line-height: 1.7;
  }

  .scenario-option > i {
    font-size: 20px;
  }

  .quiz-bottom {
    padding-block: 16px;
    font-size: 13px;
  }

  .back-button,
  .next-button {
    font-size: 14px;
  }

  .result-nav {
    height: 60px;
    font-size: 11px;
  }

  .plain-brand {
    font-size: 13px;
  }

  .result-hero {
    padding: 28px 20px;
  }

  .result-label {
    font-size: 11px;
  }

  .result-hero h1 {
    font-size: 35px;
    line-height: 1.18;
  }

  .result-subtitle {
    font-size: 15px;
    line-height: 1.75;
  }

  .result-chip-row span {
    font-size: 13px;
    padding: 6px 11px;
  }

  .zone {
    font-size: 11px;
    line-height: 1.35;
  }

  .axis-label {
    font-size: 11px;
  }

  .driver-stack p {
    font-size: 12px;
  }

  .driver-row span,
  .work-map-foot {
    font-size: 11px;
  }

  .result-free-summary span,
  .locked-title span,
  .full-report-header span,
  .report-block-aside span {
    font-size: 11px;
  }

  .result-free-summary p {
    font-size: 15px;
    line-height: 1.8;
  }

  .outline-button {
    font-size: 14px;
  }

  .locked-title h2 {
    font-size: 23px;
  }

  .lock-grid h3 {
    font-size: 16px;
  }

  .lock-grid p {
    font-size: 12px;
    line-height: 1.65;
  }

  .full-report-header h2 {
    font-size: 27px;
  }

  .report-block-aside h3 {
    font-size: 19px;
  }

  .report-block-aside p,
  .report-binding-notice p,
  .report-binding-notice small,
  .report-disclaimer p {
    font-size: 12px;
    line-height: 1.8;
  }

  .report-block-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .work-tags span {
    font-size: 12px;
  }

  .bullet-lines div,
  .ai-card p,
  .plan-list > div {
    font-size: 13px;
    line-height: 1.75;
  }

  .ai-card h4 {
    font-size: 18px;
    line-height: 1.45;
  }

  .share-area h3 {
    font-size: 23px;
  }

  .share-button {
    font-size: 14px;
  }

  .report-binding-notice strong {
    font-size: 16px;
  }

  .report-disclaimer strong {
    font-size: 14px;
  }

  .payment-modal {
    padding: 28px 22px;
  }

  .modal-eyebrow,
  .code-input-wrapper label {
    font-size: 12px;
  }

  .payment-modal h2 {
    font-size: 26px;
  }

  .payment-modal p {
    font-size: 14px;
    line-height: 1.75;
  }

  .xianyu-link-btn,
  .pay-button {
    font-size: 15px;
  }

  .code-input-field {
    font-size: 16px;
    padding-block: 14px;
  }

  .payment-modal small,
  .modal-disclaimer,
  .modal-privacy {
    font-size: 12px;
    line-height: 1.75;
  }
}

/* 手机阅读优先：中文内容使用更大的字号和更宽松的行距 */
@media (max-width: 699px) {
  .app-hero-title {
    font-size: 33px;
    line-height: 1.3;
  }

  .app-hero-desc {
    font-size: 18px;
    line-height: 1.85;
  }

  .app-stat-item b {
    font-size: 18px;
  }

  .app-stat-item span,
  .app-section-title small {
    font-size: 14px;
  }

  .app-primary-btn {
    font-size: 18px;
    padding-block: 18px;
  }

  .preview-info h3 {
    font-size: 21px;
  }

  .preview-info p,
  .preview-quote {
    font-size: 16px;
    line-height: 1.75;
  }

  .preview-vibe-bar {
    font-size: 14px;
  }

  .app-section-title span {
    font-size: 20px;
  }

  .animal-chip span {
    font-size: 15px;
  }

  .app-footer p {
    font-size: 14px;
    line-height: 1.85;
  }

  .app-footer small {
    font-size: 12px;
  }

  .quiz-top > span:last-child {
    font-size: 14px;
  }

  .question-kicker {
    font-size: 14px;
  }

  .question-setup {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .quiz-content h2 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.42;
    margin-bottom: 34px;
  }

  .answer-list {
    gap: 20px;
  }

  .scenario-option {
    min-height: 176px;
    padding: 27px 20px 25px;
    column-gap: 16px;
  }

  .scenario-option .option-index {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .scenario-option .option-copy b {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .scenario-option .option-copy small {
    font-size: 17px;
    line-height: 1.8;
  }

  .scenario-option > i {
    font-size: 22px;
  }

  .quiz-bottom {
    padding-block: 18px;
    font-size: 15px;
  }

  .back-button,
  .next-button {
    font-size: 16px;
  }

  .result-nav {
    font-size: 13px;
  }

  .plain-brand {
    font-size: 14px;
  }

  .result-label {
    font-size: 13px;
  }

  .result-hero h1 {
    font-size: 38px;
  }

  .result-subtitle {
    font-size: 18px;
    line-height: 1.85;
  }

  .result-chip-row span {
    font-size: 14px;
    padding: 7px 12px;
  }

  .zone,
  .axis-label {
    font-size: 13px;
  }

  .driver-stack p,
  .driver-row span,
  .work-map-foot {
    font-size: 14px;
  }

  .result-free-summary span,
  .locked-title span,
  .full-report-header span,
  .report-block-aside span {
    font-size: 13px;
  }

  .result-free-summary p {
    font-size: 18px;
    line-height: 1.9;
  }

  .outline-button {
    font-size: 16px;
  }

  .locked-title h2 {
    font-size: 26px;
  }

  .lock-grid h3 {
    font-size: 18px;
  }

  .lock-grid p,
  .report-block-aside p,
  .report-binding-notice p,
  .report-binding-notice small,
  .report-disclaimer p {
    font-size: 15px;
    line-height: 1.85;
  }

  .full-report-header h2 {
    font-size: 30px;
  }

  .report-block-aside h3 {
    font-size: 21px;
  }

  .report-block-content p {
    font-size: 18px;
    line-height: 1.9;
  }

  .work-tags span {
    font-size: 14px;
  }

  .bullet-lines div,
  .ai-card p,
  .plan-list > div {
    font-size: 15px;
    line-height: 1.85;
  }

  .ai-card h4 {
    font-size: 20px;
  }

  .share-area h3 {
    font-size: 26px;
  }

  .share-button {
    font-size: 16px;
  }

  .report-binding-notice strong {
    font-size: 18px;
  }

  .report-disclaimer strong {
    font-size: 16px;
  }

  .modal-eyebrow,
  .code-input-wrapper label {
    font-size: 14px;
  }

  .payment-modal h2 {
    font-size: 29px;
  }

  .payment-modal p {
    font-size: 17px;
    line-height: 1.85;
  }

  .xianyu-link-btn,
  .pay-button {
    font-size: 17px;
  }

  .code-input-field {
    font-size: 18px;
    padding-block: 16px;
  }

  .payment-modal small,
  .modal-disclaimer,
  .modal-privacy {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* 全页面手机字号：优先保证中文内容看得清楚 */
@media (max-width: 699px) {
  body {
    font-size: 19px;
    line-height: 1.9;
  }

  body p,
  body span,
  body small,
  body label,
  body li,
  body button,
  body input,
  body textarea,
  body select {
    font-size: 17px;
    line-height: 1.85;
  }

  body h1 {
    font-size: 40px;
    line-height: 1.25;
  }

  body h2 {
    font-size: 32px;
    line-height: 1.4;
  }

  body h3 {
    font-size: 24px;
    line-height: 1.45;
  }

  body h4 {
    font-size: 21px;
    line-height: 1.5;
  }

  body .app-header-tag,
  body .app-hero-badge,
  body .preview-tag,
  body .preview-score,
  body .question-kicker,
  body .quiz-top > span:last-child,
  body .result-label,
  body .zone,
  body .axis-label,
  body .driver-row span,
  body .work-map-foot,
  body .result-free-summary span,
  body .locked-title span,
  body .full-report-header span,
  body .report-block-aside span,
  body .modal-eyebrow,
  body .code-input-wrapper label {
    font-size: 15px;
    line-height: 1.55;
  }

  body .app-brand,
  body .plain-brand {
    font-size: 16px;
  }

  body .app-main {
    gap: 30px;
  }

  body .app-hero-card {
    padding: 30px 22px;
  }

  body .app-hero-title {
    font-size: 36px;
    line-height: 1.3;
  }

  body .app-hero-desc {
    font-size: 19px;
    line-height: 1.9;
  }

  body .app-stat-item b {
    font-size: 20px;
  }

  body .app-stat-item span,
  body .app-section-title small {
    font-size: 15px;
  }

  body .app-primary-btn,
  body .back-button,
  body .next-button,
  body .outline-button,
  body .share-button,
  body .xianyu-link-btn,
  body .pay-button {
    font-size: 18px;
    line-height: 1.4;
  }

  body .preview-info h3 {
    font-size: 23px;
  }

  body .preview-info p,
  body .preview-quote,
  body .preview-vibe-bar {
    font-size: 17px;
    line-height: 1.85;
  }

  body .app-section-title span {
    font-size: 22px;
  }

  body .animal-chip span {
    font-size: 17px;
  }

  body .app-footer p {
    font-size: 16px;
    line-height: 1.9;
  }

  body .app-footer small,
  body .payment-modal small,
  body .modal-disclaimer,
  body .modal-privacy {
    font-size: 15px;
    line-height: 1.85;
  }

  body .quiz-content {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  body .question-setup {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  body .quiz-content h2 {
    font-size: clamp(32px, 8.8vw, 38px);
    line-height: 1.45;
    margin-bottom: 38px;
  }

  body .answer-list {
    gap: 24px;
  }

  body .scenario-option {
    min-height: 192px;
    padding: 30px 22px 28px;
    column-gap: 18px;
  }

  body .scenario-option .option-index {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  body .scenario-option .option-copy b {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  body .scenario-option .option-copy small {
    font-size: 19px;
    line-height: 1.85;
  }

  body .scenario-option > i {
    font-size: 24px;
  }

  body .quiz-bottom {
    padding-block: 20px;
    font-size: 16px;
  }

  body .result-hero {
    padding: 32px 22px;
  }

  body .result-hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  body .result-subtitle {
    font-size: 19px;
    line-height: 1.9;
  }

  body .result-chip-row span,
  body .work-tags span {
    font-size: 16px;
    line-height: 1.5;
  }

  body .driver-stack p,
  body .result-free-summary p,
  body .report-binding-notice p,
  body .report-binding-notice small,
  body .report-disclaimer p {
    font-size: 19px;
    line-height: 1.9;
  }

  body .result-free-summary p {
    margin-top: 18px;
  }

  body .locked-title h2,
  body .full-report-header h2 {
    font-size: 32px;
  }

  body .lock-grid h3,
  body .report-block-aside h3 {
    font-size: 23px;
  }

  body .lock-grid p,
  body .report-block-aside p,
  body .report-block-content p,
  body .bullet-lines div,
  body .ai-card p,
  body .plan-list > div {
    font-size: 18px;
    line-height: 1.9;
  }

  body .ai-card h4 {
    font-size: 22px;
  }

  body .share-area h3 {
    font-size: 28px;
  }

  body .report-binding-notice strong {
    font-size: 20px;
  }

  body .report-disclaimer strong {
    font-size: 18px;
  }

  body .payment-modal {
    padding: 32px 24px;
  }

  body .payment-modal h2 {
    font-size: 32px;
  }

  body .payment-modal p {
    font-size: 18px;
    line-height: 1.9;
  }

  body .code-input-field {
    font-size: 19px;
    padding-block: 18px;
  }
}

/* 兜底放大手机端所有可见文字，避免标签、说明和辅助文案仍然偏小 */
@media (max-width: 699px) {
  body p,
  body span,
  body small,
  body label,
  body li,
  body button,
  body input,
  body textarea,
  body select,
  body a {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  body b,
  body strong {
    font-size: 20px !important;
    line-height: 1.5 !important;
  }

  body h1 {
    font-size: 40px !important;
    line-height: 1.25 !important;
  }

  body h2 {
    font-size: 32px !important;
    line-height: 1.4 !important;
  }

  body h3 {
    font-size: 24px !important;
    line-height: 1.45 !important;
  }

  body h4 {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }

  body .app-header-tag,
  body .app-hero-badge,
  body .question-kicker,
  body .result-label,
  body .zone,
  body .axis-label,
  body .toast {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  body .app-brand,
  body .plain-brand {
    font-size: 18px !important;
  }

  body .app-hero-title {
    font-size: 36px !important;
    line-height: 1.35 !important;
  }

  body .app-hero-desc,
  body .app-footer p,
  body .preview-info p,
  body .preview-quote,
  body .payment-modal p,
  body .modal-disclaimer,
  body .modal-privacy {
    font-size: 19px !important;
    line-height: 1.9 !important;
  }

  body .app-stat-item b {
    font-size: 21px !important;
  }

  body .app-stat-item span,
  body .app-section-title small,
  body .animal-chip span,
  body .preview-tag,
  body .preview-score,
  body .work-tags span {
    font-size: 18px !important;
  }

  body .app-section-title span {
    font-size: 23px !important;
  }

  body .preview-info h3 {
    font-size: 24px !important;
  }

  body .app-primary-btn,
  body .back-button,
  body .next-button,
  body .outline-button,
  body .share-button,
  body .xianyu-link-btn,
  body .pay-button {
    font-size: 19px !important;
    line-height: 1.5 !important;
  }

  body .question-setup {
    font-size: 20px !important;
    line-height: 1.95 !important;
    margin-bottom: 30px;
  }

  body .quiz-content h2 {
    font-size: clamp(34px, 9vw, 40px) !important;
    line-height: 1.45 !important;
    margin-bottom: 42px;
  }

  body .scenario-option {
    min-height: 208px;
    padding: 32px 22px 30px;
  }

  body .scenario-option .option-index {
    font-size: 16px !important;
    line-height: 1 !important;
  }

  body .scenario-option .option-copy b {
    font-size: 23px !important;
    line-height: 1.5 !important;
  }

  body .scenario-option .option-copy small {
    font-size: 20px !important;
    line-height: 1.85 !important;
  }

  body .quiz-bottom,
  body .result-nav,
  body .quiz-top > span:last-child,
  body .driver-row span,
  body .work-map-foot,
  body .result-free-summary span,
  body .locked-title span,
  body .full-report-header span,
  body .report-block-aside span,
  body .modal-eyebrow,
  body .code-input-wrapper label,
  body .payment-modal small {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  body .result-hero h1 {
    font-size: 42px !important;
  }

  body .result-subtitle,
  body .result-free-summary p,
  body .driver-stack p,
  body .lock-grid p,
  body .report-block-aside p,
  body .report-block-content p,
  body .bullet-lines div,
  body .ai-card p,
  body .plan-list > div {
    font-size: 20px !important;
    line-height: 1.95 !important;
  }

  body .result-chip-row span {
    font-size: 18px !important;
  }

  body .locked-title h2,
  body .full-report-header h2 {
    font-size: 34px !important;
  }

  body .lock-grid h3,
  body .report-block-aside h3,
  body .ai-card h4 {
    font-size: 25px !important;
  }

  body .report-binding-notice strong,
  body .report-disclaimer strong {
    font-size: 20px !important;
  }

  body .payment-modal h2 {
    font-size: 34px !important;
  }

  body .code-input-field {
    font-size: 20px !important;
    line-height: 1.5 !important;
    padding-block: 20px;
  }
}

/* 手机大字模式：小屏设备优先保证阅读舒适度 */
@media (max-width: 699px) {
  body {
    font-size: 21px;
    line-height: 1.95;
  }

  body p,
  body span,
  body small,
  body label,
  body li,
  body button,
  body input,
  body textarea,
  body select,
  body a {
    font-size: 20px !important;
    line-height: 1.9 !important;
  }

  body b,
  body strong {
    font-size: 22px !important;
    line-height: 1.55 !important;
  }

  body h1 {
    font-size: 44px !important;
    line-height: 1.25 !important;
  }

  body h2 {
    font-size: 36px !important;
    line-height: 1.4 !important;
  }

  body h3 {
    font-size: 28px !important;
    line-height: 1.45 !important;
  }

  body h4 {
    font-size: 25px !important;
    line-height: 1.5 !important;
  }

  body .app-header-tag,
  body .app-hero-badge,
  body .question-kicker,
  body .result-label,
  body .zone,
  body .axis-label,
  body .toast {
    font-size: 19px !important;
    line-height: 1.75 !important;
  }

  body .app-brand,
  body .plain-brand {
    font-size: 20px !important;
  }

  body .app-hero-card {
    padding: 34px 24px;
  }

  body .app-hero-title {
    font-size: 40px !important;
    line-height: 1.4 !important;
  }

  body .app-hero-desc,
  body .app-footer p,
  body .preview-info p,
  body .preview-quote,
  body .payment-modal p,
  body .modal-disclaimer,
  body .modal-privacy {
    font-size: 21px !important;
    line-height: 2 !important;
  }

  body .app-stat-item b {
    font-size: 23px !important;
  }

  body .app-stat-item span,
  body .app-section-title small,
  body .animal-chip span,
  body .preview-tag,
  body .preview-score,
  body .work-tags span {
    font-size: 20px !important;
  }

  body .app-section-title span {
    font-size: 25px !important;
  }

  body .preview-info h3 {
    font-size: 27px !important;
  }

  body .app-primary-btn,
  body .back-button,
  body .next-button,
  body .outline-button,
  body .share-button,
  body .xianyu-link-btn,
  body .pay-button {
    font-size: 21px !important;
    line-height: 1.55 !important;
  }

  body .quiz-content {
    padding-top: 34px;
    padding-bottom: 50px;
  }

  body .question-setup {
    font-size: 22px !important;
    line-height: 2 !important;
    margin-bottom: 34px;
  }

  body .quiz-content h2 {
    font-size: clamp(38px, 10vw, 44px) !important;
    line-height: 1.48 !important;
    margin-bottom: 48px;
  }

  body .answer-list {
    gap: 28px;
  }

  body .scenario-option {
    min-height: 236px;
    padding: 36px 24px 34px;
    column-gap: 20px;
  }

  body .scenario-option .option-index {
    font-size: 18px !important;
  }

  body .scenario-option .option-copy b {
    font-size: 25px !important;
    line-height: 1.55 !important;
    margin-bottom: 16px;
  }

  body .scenario-option .option-copy small {
    font-size: 22px !important;
    line-height: 1.9 !important;
  }

  body .scenario-option > i {
    font-size: 27px;
  }

  body .quiz-bottom,
  body .result-nav,
  body .quiz-top > span:last-child,
  body .driver-row span,
  body .work-map-foot,
  body .result-free-summary span,
  body .locked-title span,
  body .full-report-header span,
  body .report-block-aside span,
  body .modal-eyebrow,
  body .code-input-wrapper label,
  body .payment-modal small {
    font-size: 20px !important;
    line-height: 1.9 !important;
  }

  body .result-hero {
    padding: 36px 24px;
  }

  body .result-hero h1 {
    font-size: 46px !important;
  }

  body .result-subtitle,
  body .result-free-summary p,
  body .driver-stack p,
  body .lock-grid p,
  body .report-block-aside p,
  body .report-block-content p,
  body .bullet-lines div,
  body .ai-card p,
  body .plan-list > div {
    font-size: 21px !important;
    line-height: 2 !important;
  }

  body .result-chip-row span {
    font-size: 20px !important;
  }

  body .locked-title h2,
  body .full-report-header h2 {
    font-size: 38px !important;
  }

  body .lock-grid h3,
  body .report-block-aside h3,
  body .ai-card h4 {
    font-size: 28px !important;
  }

  body .report-binding-notice strong,
  body .report-disclaimer strong {
    font-size: 22px !important;
  }

  body .payment-modal {
    padding: 36px 26px;
  }

  body .payment-modal h2 {
    font-size: 38px !important;
  }

  body .code-input-field {
    font-size: 22px !important;
    padding-block: 22px;
  }
}

/* 普通手机浏览器与微信统一采用中等大字，避免两种环境字号差异过大。
   pointer/coarse 兼容开启“桌面版网站”后仍被识别为触屏设备的手机。 */
@media (max-width: 699px), (hover: none) and (pointer: coarse) {
  body {
    font-size: 18px;
    line-height: 1.85;
  }

  body p,
  body span,
  body small,
  body label,
  body li,
  body button,
  body input,
  body textarea,
  body select,
  body a {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  body b,
  body strong {
    font-size: 20px !important;
    line-height: 1.5 !important;
  }

  body h1 {
    font-size: 40px !important;
    line-height: 1.25 !important;
  }

  body h2 {
    font-size: 32px !important;
    line-height: 1.4 !important;
  }

  body h3 {
    font-size: 24px !important;
    line-height: 1.45 !important;
  }

  body h4 {
    font-size: 21px !important;
    line-height: 1.5 !important;
  }

  body .app-header-tag,
  body .app-hero-badge,
  body .question-kicker,
  body .result-label,
  body .zone,
  body .axis-label,
  body .toast,
  body .modal-eyebrow,
  body .code-input-wrapper label {
    font-size: 17px !important;
    line-height: 1.65 !important;
  }

  body .app-brand,
  body .plain-brand {
    font-size: 18px !important;
  }

  body .app-hero-title {
    font-size: 36px !important;
    line-height: 1.35 !important;
  }

  body .app-hero-desc,
  body .app-footer p,
  body .preview-info p,
  body .preview-quote,
  body .payment-modal p,
  body .modal-disclaimer,
  body .modal-privacy {
    font-size: 18px !important;
    line-height: 1.85 !important;
  }

  body .app-stat-item b {
    font-size: 21px !important;
  }

  body .app-stat-item span,
  body .app-section-title small,
  body .animal-chip span,
  body .preview-tag,
  body .preview-score,
  body .work-tags span {
    font-size: 17px !important;
  }

  body .app-section-title span {
    font-size: 22px !important;
  }

  body .preview-info h3 {
    font-size: 24px !important;
  }

  body .app-primary-btn,
  body .back-button,
  body .next-button,
  body .outline-button,
  body .share-button,
  body .xianyu-link-btn,
  body .pay-button {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  body .quiz-content {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  body .question-setup {
    font-size: 19px !important;
    line-height: 1.85 !important;
    margin-bottom: 26px;
  }

  body .quiz-content h2 {
    font-size: clamp(32px, 8.6vw, 38px) !important;
    line-height: 1.42 !important;
    margin-bottom: 36px;
  }

  body .answer-list {
    gap: 22px;
  }

  body .scenario-option {
    min-height: 188px;
    padding: 28px 21px 26px;
    column-gap: 17px;
  }

  body .scenario-option .option-index {
    font-size: 16px !important;
  }

  body .scenario-option .option-copy b {
    font-size: 21px !important;
    line-height: 1.5 !important;
    margin-bottom: 11px;
  }

  body .scenario-option .option-copy small {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  body .scenario-option > i {
    font-size: 23px;
  }

  body .quiz-bottom,
  body .result-nav,
  body .quiz-top > span:last-child,
  body .driver-row span,
  body .work-map-foot,
  body .result-free-summary span,
  body .locked-title span,
  body .full-report-header span,
  body .report-block-aside span,
  body .payment-modal small {
    font-size: 17px !important;
    line-height: 1.75 !important;
  }

  body .result-hero h1 {
    font-size: 42px !important;
  }

  body .result-subtitle,
  body .result-free-summary p,
  body .driver-stack p,
  body .lock-grid p,
  body .report-block-aside p,
  body .report-block-content p,
  body .bullet-lines div,
  body .ai-card p,
  body .plan-list > div {
    font-size: 18px !important;
    line-height: 1.85 !important;
  }

  body .result-chip-row span {
    font-size: 17px !important;
  }

  body .locked-title h2,
  body .full-report-header h2 {
    font-size: 34px !important;
  }

  body .lock-grid h3,
  body .report-block-aside h3,
  body .ai-card h4 {
    font-size: 25px !important;
  }

  body .report-binding-notice strong,
  body .report-disclaimer strong {
    font-size: 20px !important;
  }

  body .payment-modal h2 {
    font-size: 34px !important;
  }

  body .code-input-field {
    font-size: 19px !important;
    padding-block: 18px;
  }
}
/* 浏览器与微信分档：普通手机浏览器略放大，微信略回落 */
@media (max-width: 699px), (hover: none) and (pointer: coarse) {
  html:not(.wechat-browser) body p,
  html:not(.wechat-browser) body span,
  html:not(.wechat-browser) body small,
  html:not(.wechat-browser) body label,
  html:not(.wechat-browser) body li,
  html:not(.wechat-browser) body button,
  html:not(.wechat-browser) body input,
  html:not(.wechat-browser) body a {
    font-size: 20px !important;
    line-height: 1.9 !important;
  }

  html:not(.wechat-browser) body b,
  html:not(.wechat-browser) body strong {
    font-size: 22px !important;
  }

  html:not(.wechat-browser) body h1 { font-size: 44px !important; }
  html:not(.wechat-browser) body h2 { font-size: 36px !important; }
  html:not(.wechat-browser) body h3 { font-size: 27px !important; }
  html:not(.wechat-browser) body h4 { font-size: 24px !important; }

  html:not(.wechat-browser) body .app-header-tag,
  html:not(.wechat-browser) body .app-hero-badge,
  html:not(.wechat-browser) body .question-kicker,
  html:not(.wechat-browser) body .result-label,
  html:not(.wechat-browser) body .modal-eyebrow,
  html:not(.wechat-browser) body .code-input-wrapper label {
    font-size: 18px !important;
  }

  html:not(.wechat-browser) body .app-brand,
  html:not(.wechat-browser) body .plain-brand {
    font-size: 20px !important;
  }

  html:not(.wechat-browser) body .app-hero-title {
    font-size: 40px !important;
  }

  html:not(.wechat-browser) body .app-hero-desc,
  html:not(.wechat-browser) body .app-footer p,
  html:not(.wechat-browser) body .preview-info p,
  html:not(.wechat-browser) body .preview-quote,
  html:not(.wechat-browser) body .payment-modal p,
  html:not(.wechat-browser) body .modal-disclaimer,
  html:not(.wechat-browser) body .modal-privacy {
    font-size: 20px !important;
    line-height: 1.95 !important;
  }

  html:not(.wechat-browser) body .app-stat-item span,
  html:not(.wechat-browser) body .app-section-title small,
  html:not(.wechat-browser) body .animal-chip span,
  html:not(.wechat-browser) body .preview-tag,
  html:not(.wechat-browser) body .preview-score {
    font-size: 19px !important;
  }

  html:not(.wechat-browser) body .app-primary-btn,
  html:not(.wechat-browser) body .back-button,
  html:not(.wechat-browser) body .next-button,
  html:not(.wechat-browser) body .outline-button,
  html:not(.wechat-browser) body .share-button,
  html:not(.wechat-browser) body .xianyu-link-btn,
  html:not(.wechat-browser) body .pay-button {
    font-size: 20px !important;
  }

  html:not(.wechat-browser) body .question-setup {
    font-size: 21px !important;
    line-height: 1.95 !important;
  }

  html:not(.wechat-browser) body .quiz-content h2 {
    font-size: clamp(35px, 9vw, 41px) !important;
  }

  html:not(.wechat-browser) body .scenario-option {
    min-height: 212px;
    padding: 32px 23px 30px;
  }

  html:not(.wechat-browser) body .scenario-option .option-copy b {
    font-size: 23px !important;
  }

  html:not(.wechat-browser) body .scenario-option .option-copy small {
    font-size: 20px !important;
  }

  html:not(.wechat-browser) body .quiz-bottom,
  html:not(.wechat-browser) body .result-nav,
  html:not(.wechat-browser) body .payment-modal small {
    font-size: 19px !important;
  }

  html:not(.wechat-browser) body .result-hero h1 {
    font-size: 44px !important;
  }

  html:not(.wechat-browser) body .result-subtitle,
  html:not(.wechat-browser) body .result-free-summary p,
  html:not(.wechat-browser) body .driver-stack p,
  html:not(.wechat-browser) body .lock-grid p,
  html:not(.wechat-browser) body .report-block-content p,
  html:not(.wechat-browser) body .ai-card p,
  html:not(.wechat-browser) body .plan-list > div {
    font-size: 20px !important;
    line-height: 1.95 !important;
  }

  html:not(.wechat-browser) body .locked-title h2,
  html:not(.wechat-browser) body .full-report-header h2,
  html:not(.wechat-browser) body .payment-modal h2 {
    font-size: 37px !important;
  }
}

html.wechat-browser body p,
html.wechat-browser body span,
html.wechat-browser body small,
html.wechat-browser body label,
html.wechat-browser body li,
html.wechat-browser body button,
html.wechat-browser body input,
html.wechat-browser body a {
  font-size: 17px !important;
  line-height: 1.75 !important;
}

html.wechat-browser body b,
html.wechat-browser body strong {
  font-size: 19px !important;
}

html.wechat-browser body h1 { font-size: 38px !important; }
html.wechat-browser body h2 { font-size: 30px !important; }
html.wechat-browser body h3 { font-size: 23px !important; }
html.wechat-browser body h4 { font-size: 20px !important; }

html.wechat-browser body .app-header-tag,
html.wechat-browser body .app-hero-badge,
html.wechat-browser body .question-kicker,
html.wechat-browser body .result-label,
html.wechat-browser body .modal-eyebrow,
html.wechat-browser body .code-input-wrapper label {
  font-size: 16px !important;
}

html.wechat-browser body .app-brand,
html.wechat-browser body .plain-brand {
  font-size: 17px !important;
}

html.wechat-browser body .app-hero-title { font-size: 34px !important; }

html.wechat-browser body .app-hero-desc,
html.wechat-browser body .app-footer p,
html.wechat-browser body .preview-info p,
html.wechat-browser body .preview-quote,
html.wechat-browser body .payment-modal p,
html.wechat-browser body .modal-disclaimer,
html.wechat-browser body .modal-privacy {
  font-size: 17px !important;
  line-height: 1.8 !important;
}

html.wechat-browser body .app-stat-item span,
html.wechat-browser body .app-section-title small,
html.wechat-browser body .animal-chip span,
html.wechat-browser body .preview-tag,
html.wechat-browser body .preview-score {
  font-size: 16px !important;
}

html.wechat-browser body .app-primary-btn,
html.wechat-browser body .back-button,
html.wechat-browser body .next-button,
html.wechat-browser body .outline-button,
html.wechat-browser body .share-button,
html.wechat-browser body .xianyu-link-btn,
html.wechat-browser body .pay-button {
  font-size: 17px !important;
}

html.wechat-browser body .question-setup {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

html.wechat-browser body .quiz-content h2 {
  font-size: clamp(30px, 8vw, 35px) !important;
}

html.wechat-browser body .scenario-option {
  min-height: 174px;
  padding: 25px 19px 23px;
}

html.wechat-browser body .scenario-option .option-copy b {
  font-size: 20px !important;
}

html.wechat-browser body .scenario-option .option-copy small {
  font-size: 17px !important;
}

html.wechat-browser body .quiz-bottom,
html.wechat-browser body .result-nav,
html.wechat-browser body .payment-modal small {
  font-size: 16px !important;
}

html.wechat-browser body .result-hero h1 { font-size: 38px !important; }

html.wechat-browser body .result-subtitle,
html.wechat-browser body .result-free-summary p,
html.wechat-browser body .driver-stack p,
html.wechat-browser body .lock-grid p,
html.wechat-browser body .report-block-content p,
html.wechat-browser body .ai-card p,
html.wechat-browser body .plan-list > div {
  font-size: 17px !important;
  line-height: 1.8 !important;
}

html.wechat-browser body .locked-title h2,
html.wechat-browser body .full-report-header h2,
html.wechat-browser body .payment-modal h2 {
  font-size: 31px !important;
}
