:root {
  /* Coaching Service palette */
  --orange: #FF6B4A;
  --orange-soft: #FF8F70;
  --purple: #6B4C7A;
  --purple-deep: #4A2C5A;
  --purple-soft: #9B7BB0;
  --cream: #FDF8F3;
  --cream-warm: #F5EDE4;
  --ink: #2D1F3A;
  --ink-light: #5A4A6B;
  --white: #FFFFFF;

  /* App semantic aliases for JS compatibility */
  --bg: var(--cream);
  --card: var(--white);
  --paper: var(--white);
  --paper-aged: var(--cream-warm);
  --text: var(--ink);
  --muted: var(--ink-light);
  --primary: var(--purple-deep);
  --primary-text: var(--white);
  --accent: var(--orange);
  --accent-light: rgba(255, 107, 74, 0.12);
  --accent-text: var(--orange);
  --border: rgba(107, 76, 122, 0.15);
  --border-strong: rgba(107, 76, 122, 0.25);
  --radius: 12px;
  --shadow: 0 8px 40px rgba(107, 76, 122, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

.flow-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--orange-soft), var(--orange));
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple));
  top: 30%;
  left: -20%;
  animation-delay: -7s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  bottom: 5%;
  right: -15%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 40px 0;
  position: relative;
}

.section.hidden {
  display: none;
}

.calibration-selector.hidden,
.calibration-actions.hidden {
  display: none;
}

h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 16px;
  line-height: 1.3;
}

h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-subtitle {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink-light);
  display: block;
  margin-top: 8px;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--ink-light);
  margin-bottom: 40px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 48px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-carousel/landing-banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #f4f4f5;
  margin-bottom: 28px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #f4f4f5;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 500;
  color: #f4f4f5;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #a1a1aa;
  max-width: 520px;
  margin: 0 auto 24px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.85rem;
  color: #a1a1aa;
  margin-bottom: 0;
}

/* Hero carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(107, 76, 122, 0.1);
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-track img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero-carousel-track img.active {
  opacity: 1;
  z-index: 2;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-carousel-dots button.active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.2);
}

/* Approach / cards */
.approach {
  background: rgba(255, 255, 255, 0.5);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(107, 76, 122, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 76, 122, 0.12);
}

.card-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 12px;
  font-weight: 300;
}

.card h3 {
  font-size: 1.2rem;
  color: var(--purple-deep);
  margin-bottom: 10px;
  font-weight: 500;
  font-family: 'Noto Sans SC', sans-serif;
}

.card p {
  color: var(--ink-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Situation / pain-list */
.situation {
  background: linear-gradient(180deg, rgba(107, 76, 122, 0.04) 0%, transparent 100%);
}

.pain-list {
  list-style: none;
}

.pain-list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(107, 76, 122, 0.12);
}

.pain-list li:last-child {
  border-bottom: none;
}

.pain-list strong {
  display: block;
  font-size: 1.15rem;
  color: var(--purple-deep);
  margin-bottom: 8px;
}

.pain-list span {
  color: var(--ink-light);
  font-size: 1rem;
}

.situation-close {
  margin-top: 24px;
  color: var(--ink-light);
  font-size: 1.1rem;
}

.about {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
}

.about-text {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--ink-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-principle {
  color: var(--purple);
  font-weight: 500;
}

.about-author {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.about-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-author-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-name {
  font-weight: 500;
  color: var(--ink);
}

.about-role {
  font-size: 0.85rem;
  color: var(--ink-light);
}

.about-tags-label {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-light);
  opacity: 0.7;
  margin-bottom: 4px;
}

.about-tags p {
  margin: 0;
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Background / report preview */
.background {
  background: rgba(255, 255, 255, 0.6);
}

.report-preview-card {
  padding: 24px;
  margin-bottom: 32px;
}

.report-preview {
  display: flex;
  gap: 20px;
  align-items: center;
}

.report-preview-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  padding: 3px;
  background: var(--white);
  flex-shrink: 0;
}

.report-preview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.report-preview-info {
  flex: 1;
}

.report-preview-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 6px;
}

.report-preview-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.report-preview-motto {
  font-size: 0.9rem;
  color: var(--ink-light);
  font-style: italic;
}

.landing-list {
  list-style: none;
}

.landing-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

.landing-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

/* Pricing / steps */
.pricing {
  background: rgba(255, 255, 255, 0.5);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(107, 76, 122, 0.1);
  position: relative;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 76, 122, 0.12);
}

.pricing-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 12px 40px rgba(255, 107, 74, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.pricing-duration {
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 16px;
  font-weight: 500;
}

.pricing-desc {
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fit */
.fit {
  background: linear-gradient(180deg, rgba(107, 76, 122, 0.04) 0%, transparent 100%);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fit-block {
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.fit-yes {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(107, 76, 122, 0.1);
}

.fit-no {
  background: rgba(45, 31, 58, 0.04);
  border: 1px solid rgba(107, 76, 122, 0.08);
}

.fit-block h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.fit-yes h3 { color: var(--orange); }
.fit-no h3 { color: var(--purple); }

.fit-block ul {
  list-style: none;
}

.fit-block li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: var(--ink-light);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(107, 76, 122, 0.08);
}

.fit-block li:last-child {
  border-bottom: none;
}

.fit-block li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.fit-yes li::before {
  content: "✓";
  color: var(--orange);
}

.fit-no li::before {
  content: "×";
  color: var(--purple);
}

/* Final CTA */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(107, 76, 122, 0.08), rgba(255, 107, 74, 0.08));
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta > .container > p {
  color: var(--ink-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Footer */
footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(107, 76, 122, 0.1);
  background: rgba(255, 255, 255, 0.6);
}

footer p {
  color: var(--ink-light);
  font-size: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 74, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple-deep);
  border-color: rgba(107, 76, 122, 0.25);
}

.btn-secondary:hover {
  background: var(--cream-warm);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-light);
  border-color: rgba(107, 76, 122, 0.15);
}

.btn-ghost:hover {
  color: var(--purple-deep);
  background: rgba(107, 76, 122, 0.05);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* JS hook class */
.start-btn {
  /* inherits .btn.btn-primary */
}

/* Quiz */
.progress {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--purple-soft));
  width: 0%;
  transition: width 0.3s ease;
}

.question-meta {
  color: var(--ink-light);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.question-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  margin: 0 0 28px;
  line-height: 1.5;
  color: var(--purple-deep);
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  line-height: 1.6;
  font-family: inherit;
}

.option:hover {
  border-color: var(--purple);
  background: var(--cream-warm);
}

.option.selected {
  border-color: var(--orange);
  background: rgba(255, 107, 74, 0.08);
  color: var(--purple-deep);
  font-weight: 500;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
}

/* Gallup */
.gallup-card {
  text-align: center;
}

.gallup-card h2 {
  font-family: 'Noto Serif SC', serif;
  color: var(--purple-deep);
  margin: 0 0 12px;
}

.gallup-lead {
  color: var(--ink-light);
  margin-bottom: 28px;
}

.gallup-guide {
  margin-bottom: 28px;
  text-align: left;
}

.gallup-guide-text {
  color: var(--purple-deep);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.6;
}

.gallup-guide-img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gallup-domains {
  margin-bottom: 24px;
}

.gallup-label {
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--purple-deep);
  text-align: left;
}

.gallup-domain-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.gallup-domain-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

.gallup-domain-option strong {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--purple-deep);
}

.gallup-domain-option span {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.5;
}

.gallup-domain-option:hover {
  border-color: var(--purple);
  background: var(--cream-warm);
}

.gallup-domain-option.selected {
  border-color: var(--orange);
  background: rgba(255, 107, 74, 0.08);
}

.gallup-domain-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .gallup-domain-options {
    grid-template-columns: 1fr;
  }
}

.gallup-stage {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.gallup-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}

/* Stage options */
.stage-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.stage-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

.stage-option strong {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--purple-deep);
}

.stage-option span {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.5;
}

.stage-option:hover {
  border-color: var(--purple);
  background: var(--cream-warm);
}

.stage-option.selected {
  border-color: var(--orange);
  background: rgba(255, 107, 74, 0.08);
}

@media (max-width: 640px) {
  .stage-options {
    grid-template-columns: 1fr;
  }
}


.archetype-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.archetype-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

.archetype-option strong {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--purple-deep);
}

.archetype-option .archetype-short {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  padding: 2px 8px;
  background: var(--cream);
  border-radius: 100px;
}

.archetype-option .archetype-motto {
  font-size: 0.75rem;
  color: var(--ink-light);
  line-height: 1.5;
}

.archetype-option:hover {
  border-color: var(--purple);
  background: var(--cream-warm);
}

.archetype-option.selected {
  border-color: var(--orange);
  background: rgba(255, 107, 74, 0.08);
  box-shadow: 0 0 0 2px var(--orange);
}

.calibration-selector {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.calibration-selector-lead {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 20px;
  text-align: center;
}

.calibration-selector-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 0 10px;
}

.calibration-selector-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.calibration-selector-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .archetype-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Calibration */
.calibration-card {
  text-align: center;
}

.calibration-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.75rem;
  margin: 0 0 12px;
  color: var(--purple-deep);
}

.calibration-lead {
  color: var(--ink-light);
  margin-bottom: 28px;
}

.calibration-result {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.calibration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.calibration-label {
  font-size: 0.875rem;
  color: var(--ink-light);
}

.calibration-value {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple-deep);
}

.calibration-desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
  text-align: center;
  margin-top: 8px;
  max-width: 260px;
}

.calibration-question {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.calibration-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stage-selector {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stage-selector.hidden {
  display: none;
}

.stage-selector-lead {
  color: var(--ink-light);
  margin-bottom: 16px;
}

/* Loading */
.loading {
  text-align: center;
  padding: 48px;
  color: var(--ink-light);
}

/* Report */
.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple-deep);
}

.report-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 24px 32px 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

#report .card {
  padding: 0;
  overflow: hidden;
  border: none;
  background: var(--paper);
}

.report-body {
  padding: 0 32px 48px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.report-body h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--purple-deep);
}

.report-body h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--purple-deep);
}

.report-body h2 .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: var(--accent);
  vertical-align: middle;
}

.report-body h2 .section-icon svg {
  width: 100%;
  height: 100%;
}

.report-body h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600;
  text-align: left;
}

.report-body h3 .section-highlight {
  background: linear-gradient(180deg, transparent 58%, var(--accent-highlight) 58%, var(--accent-highlight) 88%, transparent 88%);
  padding: 0 4px;
  margin: 0 -4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 2px;
}

/* Route map title override */
.route-map-header h3 {
  text-align: center;
}

/* Center chapter headings */
.report-body h2 {
  text-align: center;
}

/* Subsection bold-only paragraphs */
/* Standalone bold paragraph used as a subsection heading */
.report-body p.report-subheading {
  display: inline-block;
  margin: 20px 0 8px;
  padding: 0 0 0 10px;
  color: var(--text);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  border-left: 3px solid var(--accent);
  background: transparent;
  border-radius: 0;
}

/* Stage badge line */
.stage-badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 24px;
  padding: 10px;
  background: var(--cream-warm);
  border-radius: 16px;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
}

.stage-badge.done {
  background: #ecfdf5;
  border-color: #34d399;
  color: #065f46;
}

.stage-badge.current {
  background: var(--accent-highlight);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.stage-badge.locked {
  background: var(--cream-warm);
  border-color: var(--border);
  color: var(--ink-light);
}

.report-body p {
  margin: 0 0 14px;
}

.report-body ul,
.report-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.report-body li {
  margin-bottom: 8px;
}

.report-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.report-body th,
.report-body td {
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.report-body th {
  background: var(--cream-warm);
  font-weight: 600;
}

.report-body tr:last-child td {
  border-bottom: none;
}

.report-body blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  background: var(--accent-light);
  color: var(--text);
  border-radius: 0 12px 12px 0;
}

/* Report passport cover */
.report-passport-cover {
  position: relative;
  margin: 0 0 40px;
  padding: 48px 32px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, var(--cream-warm) 100%);
  border-bottom: 2px dashed var(--border-strong);
  overflow: hidden;
}

.passport-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-size: 5rem;
  font-weight: 700;
  color: var(--purple-deep);
  opacity: 0.04;
  letter-spacing: 4px;
  pointer-events: none;
}

.passport-stamp {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--ink-light);
}

.passport-stamp-tl { left: 24px; }
.passport-stamp-tr { right: 24px; }

.passport-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.passport-avatar {
  display: flex;
  justify-content: center;
}

.passport-avatar-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 6px;
  background: var(--white);
  border: 3px double var(--border-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.passport-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.passport-avatar-fallback {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.passport-info {
  flex: 1;
  min-width: 0;
}

.passport-field {
  margin-bottom: 18px;
}

.passport-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.passport-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  margin: 0;
  line-height: 1.25;
  color: var(--text);
}

.passport-field-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.passport-stage {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-deep);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stage-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.stage-dot.lit {
  background: var(--stage-dot-color, var(--purple-deep));
}

.passport-motto {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-light);
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.passport-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.passport-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.passport-tag em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.8;
}

/* Route map */
.route-map {
  background: var(--cream-warm);
  border-radius: 20px;
  padding: 32px;
  margin: 32px 0;
}

.route-map-header {
  text-align: center;
  margin-bottom: 28px;
}

.route-map-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--ink-light);
  margin-bottom: 6px;
}

.route-map-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.35rem;
  color: var(--purple-deep);
  margin: 0 0 6px;
}

.route-map-subtitle {
  font-size: 0.95rem;
  color: var(--ink-light);
}

.route-map-track {
  position: relative;
  padding: 20px 0 20px 40px;
}

.route-track-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border-strong) 0,
    var(--border-strong) 8px,
    transparent 8px,
    transparent 14px
  );
  border-radius: 2px;
}

.route-stops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.route-stop {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.route-stop-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.route-stop.completed .route-stop-node {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.route-stop.current .route-stop-node {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 6px var(--accent-light);
  font-size: 1rem;
}

.route-stop.next .route-stop-node {
  border-color: var(--accent);
  color: var(--accent);
}

.route-stop-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.route-stop-title {
  font-size: 0.95rem;
  color: var(--ink-light);
  font-weight: 500;
}

.route-stop.current .route-stop-title {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.route-stop-badge {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent-text);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Dimension cards */
.dimension-cards {
  background: var(--cream-warm);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  margin: 1.5rem 0;
}

.dimension-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.dimension-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dimension-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.dimension-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.dimension-card-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.dimension-card-desc {
  font-size: 0.875rem;
  color: var(--ink-light);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.dimension-progress {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.dimension-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.5s ease;
}

.dimension-card-gap {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .dimension-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Task cards */
.task-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.task-card-header {
  background: var(--accent-light);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-text);
}

.task-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.task-card-title {
  flex: 1;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.task-card-body {
  padding: 1rem 1.25rem;
}

.task-card-row {
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.task-card-row:last-child {
  margin-bottom: 0;
}

.task-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 0.2rem;
}

/* BMC */
.bmc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.bmc-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.bmc-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-text);
}

.bmc-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.bmc-content {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.bmc-content ul {
  margin: 0;
  padding-left: 1.1rem;
}

.bmc-content li {
  margin: 0.3rem 0;
}

/* Chapter illustration */
.chapter-illustration-wrapper {
  margin: 0 -32px 0;
  width: calc(100% + 64px);
  height: 180px;
  overflow: hidden;
  position: relative;
  display: block;
}

.chapter-illustration-wrapper h2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin: 0;
  padding: 0 24px;
  text-align: center;
  color: var(--purple-deep);
  z-index: 2;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.4;
}

.chapter-illustration-wrapper h2 .section-icon {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.85));
}

.chapter-illustration-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 85%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 60%,
    var(--paper) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.chapter-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: 0;
  opacity: 0.95;
}

/* Report feedback */
.report-feedback {
  margin: 2rem 32px;
  padding: 1rem 1.25rem;
  background: var(--cream-warm);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
}

.report-feedback a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.report-feedback a:hover {
  text-decoration: underline;
}

.feedback-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.report-error {
  color: var(--orange);
  padding: 24px;
  text-align: center;
}

.report-diagnostics {
  margin: 16px 32px;
  padding: 16px;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: var(--radius);
  color: #c53030;
  font-size: 0.85rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 31, 58, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(45, 31, 58, 0.2);
  padding: 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  z-index: 101;
  border: 1px solid rgba(107, 76, 122, 0.1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink-light);
  line-height: 1;
}

.modal-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--purple-deep);
}

.modal-subtitle {
  color: var(--ink-light);
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.modal-qr {
  margin-bottom: 20px;
}

.modal-qr img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.modal-hint {
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.modal-hint strong {
  color: var(--purple-deep);
}

.modal-tools {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-strong);
  text-align: left;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.modal-tools p {
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--purple-deep);
}

.modal-tools ul {
  margin: 0;
  padding-left: 18px;
}

.modal-tools li {
  margin-bottom: 4px;
}

.archetype-intro {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}
.archetype-intro ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.archetype-intro li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}
.ally-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  cursor: pointer;
  font-weight: 600;
}

.ally-link:hover,
.ally-link:focus {
  text-decoration-style: solid;
}

.archetype-modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.archetype-modal-hero {
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
}

.archetype-modal-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.archetype-modal-domains {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.archetype-domain-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

.archetype-modal-strength {
  color: var(--purple-deep);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}

/* Floating toolbox button */
.floating-toolbox-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  padding: 16px 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--white);
  border: none;
  border-radius: 999px 0 0 999px;
  font-size: 0.9rem;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 74, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease;
  letter-spacing: 2px;
}

.floating-toolbox-btn:hover {
  transform: translateY(-50%) translateX(-4px);
  opacity: 0.95;
}

.floating-toolbox-btn.hidden {
  display: none;
}

@media (max-width: 640px) {
  .floating-toolbox-btn {
    right: 16px;
    top: auto;
    bottom: 20px;
    transform: none;
    writing-mode: horizontal-tb;
    border-radius: 999px;
    padding: 12px 20px;
    letter-spacing: 0;
  }

  .floating-toolbox-btn:hover {
    transform: translateY(-2px);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    max-width: 800px;
    padding: 0 40px;
  }

  .hero {
    padding: 120px 0 100px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-tagline {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 900px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 80px 0 32px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-carousel {
    aspect-ratio: 16 / 10;
  }

  .report-body {
    padding: 0 24px 40px;
  }

  .report-passport-cover {
    margin: 0 -24px 28px;
    padding: 40px 24px;
  }

  .passport-stamp {
    top: 12px;
    padding: 4px 8px;
    font-size: 0.55rem;
  }

  .passport-stamp-tl { left: 12px; }
  .passport-stamp-tr { right: 12px; }

  .passport-main {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .passport-avatar {
    display: flex;
    justify-content: center;
  }

  .passport-avatar-ring {
    width: 130px;
    height: 130px;
  }

  .passport-title {
    font-size: 1.9rem;
  }

  .passport-field-row {
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }

  .passport-motto {
    padding-left: 12px;
    font-size: 1rem;
  }

  .passport-footer {
    justify-content: center;
  }

  .route-map {
    padding: 24px 20px;
  }

  .route-map-track {
    padding: 0 0 0 12px;
  }

  .route-track-line {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 3px;
    height: auto;
    transform: none;
  }

  .route-stops {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .route-stop {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .route-stop-info {
    align-items: center;
  }

  .route-stop.current .route-stop-node {
    width: 50px;
    height: 50px;
  }

  .bmc-grid {
    grid-template-columns: 1fr;
  }

  .chapter-illustration-wrapper {
    height: 140px;
    margin: 0 -24px 0;
    width: calc(100% + 48px);
  }

  .report-feedback,
  .report-diagnostics {
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* Desktop circular route map */
@media (min-width: 768px) {
  .route-map-track {
    width: 500px;
    height: 540px;
    padding: 0;
    margin: 0 auto;
    border: none;
  }

  .route-map-track::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10px;
    width: 480px;
    height: 480px;
    border: 3px dashed var(--border);
    border-radius: 50%;
    opacity: 0.7;
  }

  .route-stops {
    position: absolute;
    inset: 0;
    display: block;
    grid-template-columns: none;
  }

  .route-stop {
    position: absolute;
    top: auto;
    left: auto;
    transform: translate(-50%, -50%);
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .route-stop:nth-child(1) { left: 250px; top: 30px; }
  .route-stop:nth-child(2) { left: 70px; top: 117px; }
  .route-stop:nth-child(3) { left: 26px; top: 311px; }
  .route-stop:nth-child(4) { left: 150px; top: 467px; }
  .route-stop:nth-child(5) { left: 350px; top: 467px; }
  .route-stop:nth-child(6) { left: 474px; top: 311px; }
  .route-stop:nth-child(7) { left: 430px; top: 117px; }

  .route-stop-info {
    align-items: center;
  }

  .route-track-line {
    display: none;
  }
}

/* Tablet circular route map */
@media (min-width: 520px) and (max-width: 767px) {
  .route-map-track {
    width: 360px;
    height: 400px;
    padding: 0;
    margin: 0 auto;
    border: none;
  }

  .route-map-track::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 10px;
    width: 340px;
    height: 340px;
    border: 3px dashed var(--border);
    border-radius: 50%;
    opacity: 0.7;
  }

  .route-stops {
    position: absolute;
    inset: 0;
    display: block;
    grid-template-columns: none;
  }

  .route-stop {
    position: absolute;
    top: auto;
    left: auto;
    transform: translate(-50%, -50%);
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .route-stop:nth-child(1) { left: 180px; top: 25px; }
  .route-stop:nth-child(2) { left: 45px; top: 95px; }
  .route-stop:nth-child(3) { left: 10px; top: 235px; }
  .route-stop:nth-child(4) { left: 100px; top: 355px; }
  .route-stop:nth-child(5) { left: 260px; top: 355px; }
  .route-stop:nth-child(6) { left: 350px; top: 235px; }
  .route-stop:nth-child(7) { left: 315px; top: 95px; }

  .route-stop-info {
    align-items: center;
  }

  .route-stop-title {
    font-size: 0.75rem;
  }

  .route-stop-badge {
    font-size: 0.6rem;
  }

  .route-stop-node {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .route-stop.current .route-stop-node {
    width: 50px;
    height: 50px;
  }

  .route-track-line {
    display: none;
  }
}

@media print {
  body {
    background: #fff;
  }

  .flow-bg,
  .floating-toolbox-btn,
  .report-actions,
  .report-feedback {
    display: none !important;
  }

  .report-passport-cover {
    margin: 0 0 28px;
    padding: 28px 0;
    border-bottom: 2px solid var(--accent);
    break-inside: avoid;
  }

  .route-map {
    break-inside: avoid;
  }

  .card {
    box-shadow: none;
    border: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
  }
}

 .entry-card {
   max-width: 680px;
   margin: 0 auto;
   padding: 40px 32px;
   background: var(--white);
   border-radius: 24px;
   box-shadow: 0 24px 80px rgba(45, 31, 58, 0.08);
   text-align: center;
 }
 .entry-card h2 {
   font-family: 'Noto Serif SC', serif;
   font-size: 1.5rem;
   margin: 0 0 8px;
   color: var(--purple-deep);
 }
 .entry-lead {
   color: var(--ink-light);
   margin: 0 0 28px;
   font-size: 0.95rem;
 }
 .entry-options {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
   margin-bottom: 24px;
 }
 .entry-option {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   padding: 24px 20px;
   border: 1px solid var(--border);
   border-radius: 16px;
   background: var(--white);
   cursor: pointer;
   transition: all 0.2s ease;
   font: inherit;
   color: var(--ink);
   text-align: center;
 }
 .entry-option:hover {
   border-color: var(--accent);
   box-shadow: 0 8px 24px rgba(107, 76, 122, 0.1);
   transform: translateY(-2px);
 }
 .entry-option strong {
   font-size: 1.1rem;
   color: var(--purple-deep);
 }
.entry-option span {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.5;
}
 /* Redeem modal */
 .redeem-form {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 20px;
 }
 .redeem-input {
   width: 100%;
   padding: 14px 16px;
   border: 1px solid var(--border);
   border-radius: 12px;
   font-size: 1rem;
   text-align: center;
   letter-spacing: 0.05em;
   outline: none;
   transition: border-color 0.2s ease;
 }
 .redeem-input:focus {
   border-color: var(--accent);
 }
 .redeem-error {
   color: #c55;
   font-size: 0.85rem;
   margin-top: 12px;
 }
 .redeem-error.hidden {
   display: none;
 }
 @media (max-width: 768px) {
   .entry-options {
     grid-template-columns: 1fr;
   }
 }
