:root {
  --bg: #f8f3e9;
  --card: #ffffff;
  --text: #26352f;
  --muted: #6f756d;
  --line: #e8dfd2;
  --primary: #2f8a63;
  --primary-dark: #1f6f4e;
  --primary-soft: #ebf7ef;
  --primary-light: #fffaf0;
  --danger: #b42318;
  --shadow: 0 24px 80px rgba(86, 60, 34, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 219, 128, 0.48) 0, transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(138, 211, 164, 0.38) 0, transparent 26rem),
    radial-gradient(circle at 78% 88%, rgba(147, 197, 253, 0.22) 0, transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
}

button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }

.app-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 60px;
}
body.intro-mode .app-shell {
  width: min(980px, calc(100% - 32px));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}
body.intro-mode .hero { margin-bottom: 10px; }
body.survey-mode .hero { margin-bottom: 18px; }

.hero-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 4vw, 36px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 221, 134, 0.55), transparent 14rem),
    radial-gradient(circle at 92% 18%, rgba(118, 207, 160, 0.42), transparent 14rem),
    linear-gradient(135deg, #ffffff 0%, #fff8e8 56%, #eef9f2 100%);
  border: 1px solid rgba(238, 222, 194, 0.9);
  box-shadow: var(--shadow);
}
.hero-intro::before,
.hero-intro::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-intro::before {
  width: 128px;
  height: 128px;
  right: -34px;
  top: -34px;
  background: rgba(255, 184, 77, 0.24);
}
.hero-intro::after {
  width: 92px;
  height: 92px;
  right: 72px;
  bottom: -28px;
  background: rgba(47, 138, 99, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.1em;
}
body.intro-mode .eyebrow {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(47, 138, 99, 0.1);
  border: 1px solid rgba(47, 138, 99, 0.14);
}
body.intro-mode .eyebrow::before {
  content: "✨";
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
body.survey-mode h1 { font-size: clamp(1.7rem, 3.8vw, 3rem); }

.hero-copy {
  max-width: 840px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}
.hero-copy strong { color: var(--primary-dark); }

.progress-wrap { margin-bottom: 18px; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
#stepLabel {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #526159;
  font-weight: 750;
}
#progressPercent {
  flex: 0 0 auto;
  color: var(--primary-dark);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.progress-track {
  position: relative;
  height: 10px;
  background: #dce8e1;
  border-radius: 999px;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2f8a63, #79bd75);
  border-radius: inherit;
  transition: width 0.32s cubic-bezier(.22, .75, .25, 1);
}
.progress-runner {
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(47, 138, 99, 0.18);
  box-shadow: 0 3px 10px rgba(47, 138, 99, 0.18);
  font-size: 0.82rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: left 0.32s cubic-bezier(.22, .75, .25, 1);
  animation: progressRunnerBob 1.7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes progressRunnerBob {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50% { transform: translate(-50%, calc(-50% - 2px)) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .progress-runner { animation: none; }
  .progress-runner, .progress-bar { transition: none; }
}

.survey-card, .result-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 231, 223, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.survey-card { padding: clamp(20px, 4vw, 42px); }
body.intro-mode .survey-card { padding: clamp(14px, 3vw, 24px); }

.intro-page {
  display: grid;
  gap: 12px;
}
.intro-fun-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 420px);
  margin: 0 auto;
}
.intro-fun-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  gap: 2px;
  padding: 13px 16px;
  min-height: 76px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(232, 223, 210, 0.95);
  box-shadow: 0 10px 32px rgba(86, 60, 34, 0.08);
}
.intro-fun-icon {
  font-size: 1.55rem;
  line-height: 1;
}
.intro-fun-card strong {
  color: var(--text);
  font-size: 1rem;
}
.intro-fun-card small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.86rem;
}
.intro-statement {
  position: relative;
  padding: clamp(18px, 3.2vw, 28px);
  background: linear-gradient(180deg, var(--primary-light), #ffffff);
  border: 1px solid #f0ddbb;
  border-radius: 24px;
  overflow: hidden;
}
.intro-statement::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), #85c49c);
}
.intro-statement h2 {
  margin: 0 0 12px;
  padding-left: 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.22;
}
.intro-statement p {
  margin: 0 0 10px;
  color: var(--muted);
}
.intro-statement p:last-child { margin-bottom: 0; }
.email-link {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}
.email-link:hover { text-decoration: underline; }
.intro-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}
.intro-actions .btn {
  min-width: 220px;
}
.btn-start {
  position: relative;
  padding: 14px 34px;
  font-size: 1.08rem;
}
.btn-start::after {
  content: " →";
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--primary);
  font-weight: 800;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}
.section-desc {
  padding: 18px;
  background: var(--primary-soft);
  border: 1px solid #cfe7da;
  border-radius: 18px;
  margin: 16px 0 28px;
}
.section-desc p { margin: 0.3rem 0; }
.section-desc strong {
  color: var(--primary-dark);
  font-weight: 900;
}

.question {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.question:first-of-type { border-top: 0; }
.question-title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 1.08rem;
}
.hint {
  margin: -5px 0 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.option-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.option-card:hover {
  border-color: #9dccb7;
  box-shadow: 0 8px 24px rgba(42, 123, 91, 0.1);
  transform: translateY(-1px);
}
.option-card input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--primary);
  flex: 0 0 auto;
}
.option-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 8px 24px rgba(42, 123, 91, 0.12);
}

.scale-anchors {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.scale-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 2vw, 20px);
  align-items: center;
  justify-items: center;
}
.scale-card {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(54px, 8vw, 76px);
  aspect-ratio: 1 / 1;
  border: 2px solid #bcd9c9;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 0 0 8px #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.scale-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: inset 0 0 0 8px #fff, 0 10px 24px rgba(42, 123, 91, 0.14);
}
.scale-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.scale-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.88), 0 10px 24px rgba(42, 123, 91, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.matrix-list {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.matrix-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.18fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #fbfdfb;
  border: 1px solid #edf3ef;
  border-radius: 16px;
}
.matrix-row-label {
  color: var(--primary-dark);
  font-weight: 900;
  white-space: nowrap;
}
.matrix-scale {
  display: grid;
  grid-template-columns: auto repeat(5, 44px) auto;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 14px);
  width: 100%;
}
.matrix-anchor {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.matrix-choice {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}
.matrix-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.matrix-choice span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #bcd9c9;
  background: #fff;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 900;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.matrix-choice:hover span {
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(42, 123, 91, 0.13);
  transform: scale(1.04);
}
.matrix-choice input:checked + span {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(42, 123, 91, 0.2);
  transform: scale(1.04);
}

.error-box {
  margin-top: 20px;
  padding: 14px 16px;
  color: var(--danger);
  background: #fff1f0;
  border: 1px solid #ffccc7;
  border-radius: 14px;
}
.actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: 0.62; transform: none; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #7abf72); box-shadow: 0 12px 28px rgba(47, 138, 99, 0.24); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), #5fae67); }
.btn-secondary { color: var(--primary); background: var(--primary-soft); }

.result-panel {
  margin-top: 22px;
  padding: clamp(22px, 5vw, 44px);
}
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid #cfe7da;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}
.result-panel h2 {
  margin: 18px 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.16;
}
.result-type {
  color: var(--primary);
  font-size: 1.16rem;
  font-weight: 900;
  margin: 0 0 20px;
}
.result-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.result-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.result-block h3 { margin: 0 0 8px; }
.result-block p { margin: 0; color: var(--muted); }
.save-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8faf9;
  color: var(--muted);
}

@media (max-width: 760px) {
  .app-shell {
    width: min(100% - 18px, 1120px);
    padding: 14px 0 36px;
  }
  body.intro-mode .app-shell { width: min(100% - 18px, 980px); }
  .hero { margin-bottom: 10px; }
  .eyebrow {
    margin-bottom: 4px;
    font-size: 0.84rem;
  }
  h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
    letter-spacing: -0.035em;
  }
  body.survey-mode h1 { font-size: clamp(1.55rem, 7.4vw, 2.1rem); }
  .hero-copy {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.55;
  }
  body.survey-mode .hero-copy { font-size: 0.92rem; }
  .progress-meta {
    gap: 8px;
    font-size: 0.86rem;
    margin-bottom: 7px;
  }
  .progress-track { height: 8px; }
  .progress-runner {
    width: 21px;
    height: 21px;
    font-size: 0.72rem;
  }
  .survey-card {
    padding: 16px;
    border-radius: 22px;
  }
  body.intro-mode .survey-card { padding: 12px; }
  .intro-page { gap: 10px; }
  .hero-intro {
    padding: 16px;
    border-radius: 24px;
  }
  .intro-fun-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }
  .intro-fun-card {
    min-height: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
    padding: 12px;
  }
  .intro-fun-card small {
    grid-column: 2;
  }
  .intro-statement {
    padding: 14px 14px 14px 18px;
    border-radius: 18px;
  }
  .intro-statement::before { width: 5px; }
  .intro-statement h2 {
    margin-bottom: 8px;
    padding-left: 6px;
    font-size: 1.18rem;
  }
  .intro-statement p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .intro-actions {
    justify-content: stretch;
  }
  .intro-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .section-title { font-size: 1.38rem; }
  .section-desc {
    padding: 14px;
    margin: 14px 0 20px;
  }
  .question { padding: 20px 0; }
  .question-title { font-size: 1rem; }
  .option-grid { grid-template-columns: 1fr; }
  .scale-anchors {
    font-size: 0.82rem;
    margin-bottom: 10px;
  }
  .scale-grid { gap: 6px; }
  .scale-card { width: clamp(42px, 15vw, 56px); }
  .matrix-list {
    padding: 10px;
    gap: 10px;
    border-radius: 16px;
  }
  .matrix-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }
  .matrix-row-label {
    font-size: 0.95rem;
  }
  .matrix-scale {
    grid-template-columns: minmax(30px, auto) repeat(5, minmax(28px, 1fr)) minmax(30px, auto);
    gap: 4px;
    justify-content: stretch;
  }
  .matrix-anchor {
    width: 2.9em;
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.15;
  }
  .matrix-choice {
    width: 100%;
    height: 38px;
  }
  .matrix-choice span {
    width: clamp(28px, 8.2vw, 34px);
    height: clamp(28px, 8.2vw, 34px);
    font-size: 0.78rem;
  }
  .actions {
    position: sticky;
    bottom: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    margin-inline: -16px;
    padding: 14px 16px max(14px, env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 28px rgba(24, 51, 40, 0.08);
  }
  .btn { flex: 1; padding-inline: 14px; }
  .result-copy { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .matrix-scale {
    grid-template-columns: minmax(26px, auto) repeat(5, minmax(25px, 1fr)) minmax(26px, auto);
    gap: 3px;
  }
  .matrix-anchor { font-size: 0.68rem; }
  .matrix-choice { height: 34px; }
  .matrix-choice span {
    width: 27px;
    height: 27px;
    font-size: 0.72rem;
  }
  .btn { padding-inline: 10px; }
}

@supports not selector(:has(*)) {
  .scale-card input, .option-card input { position: static; opacity: 1; pointer-events: auto; }
}


/* Result persona animation */
.persona-animation-card {
  margin: 18px 0 20px;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid #dbe9df;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 219, 128, 0.35), transparent 9rem),
    radial-gradient(circle at 86% 22%, rgba(138, 211, 164, 0.28), transparent 9rem),
    linear-gradient(135deg, #ffffff 0%, #f7fcf8 100%);
  overflow: hidden;
}
.persona-animation-title {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-weight: 900;
}
.persona-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.persona-avatar {
  --persona-main: #2f8a63;
  --persona-accent: #ffc857;
  --persona-soft: #e8f7ee;
  position: relative;
  width: 132px;
  height: 156px;
  display: grid;
  justify-items: center;
  align-content: end;
  animation: personaFloat 2.8s ease-in-out infinite;
}
.persona-strong-strong { --persona-main: #2f8a63; --persona-accent: #f9c74f; --persona-soft: #e9f8ef; }
.persona-strong-weak { --persona-main: #5f7fbf; --persona-accent: #ffb703; --persona-soft: #eef3ff; }
.persona-weak-strong { --persona-main: #3a9c78; --persona-accent: #80ed99; --persona-soft: #ecfff4; }
.persona-weak-weak { --persona-main: #8b8f7a; --persona-accent: #cdb4db; --persona-soft: #faf4ff; }
.persona-neutral-weak { --persona-main: #8c6d4f; --persona-accent: #ffd166; --persona-soft: #fff8e8; }
.persona-neutral-strong { --persona-main: #287c8e; --persona-accent: #90dbf4; --persona-soft: #ecfbff; }
.persona-head {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 48% 48% 44% 44%;
  background: #fff6e8;
  border: 3px solid rgba(38, 53, 47, 0.1);
  box-shadow: 0 10px 26px rgba(32, 72, 54, 0.12);
}
.persona-head::before {
  content: "";
  position: absolute;
  inset: -9px 9px auto 9px;
  height: 24px;
  border-radius: 999px 999px 12px 12px;
  background: var(--persona-main);
}
.persona-eye {
  position: absolute;
  top: 32px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
  animation: personaBlink 4.6s infinite;
}
.persona-eye-left { left: 22px; }
.persona-eye-right { right: 22px; }
.persona-smile {
  position: absolute;
  left: 50%;
  top: 46px;
  width: 24px;
  height: 12px;
  border-bottom: 3px solid var(--text);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}
.persona-body {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 70px;
  margin-top: -3px;
  border-radius: 24px 24px 28px 28px;
  background: linear-gradient(180deg, var(--persona-main), var(--primary-dark));
  box-shadow: 0 12px 28px rgba(32, 72, 54, 0.16);
}
.persona-badge {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--persona-soft);
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}
.persona-arm {
  position: absolute;
  top: 12px;
  width: 18px;
  height: 54px;
  border-radius: 999px;
  background: var(--persona-main);
  transform-origin: top center;
}
.persona-arm-left {
  left: -14px;
  transform: rotate(18deg);
}
.persona-arm-right {
  right: -14px;
  transform: rotate(-22deg);
  animation: personaWave 1.7s ease-in-out infinite;
}
.persona-legs {
  display: flex;
  gap: 18px;
  margin-top: -2px;
}
.persona-legs span {
  width: 17px;
  height: 30px;
  border-radius: 0 0 999px 999px;
  background: #394940;
  animation: personaStep 1.8s ease-in-out infinite;
}
.persona-legs span:nth-child(2) { animation-delay: 0.3s; }
.persona-orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(32, 72, 54, 0.13);
  animation: personaSpark 2.4s ease-in-out infinite;
}
.persona-orbit-one {
  left: 4px;
  top: 18px;
}
.persona-orbit-two {
  right: 2px;
  top: 40px;
  animation-delay: 0.6s;
}
.persona-text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
}
.persona-text p {
  margin: 0;
  color: var(--muted);
}
@keyframes personaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes personaWave {
  0%, 100% { transform: rotate(-22deg); }
  50% { transform: rotate(-52deg); }
}
@keyframes personaBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}
@keyframes personaStep {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@keyframes personaSpark {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.92; }
  50% { transform: scale(1.08) rotate(8deg); opacity: 1; }
}

@media (max-width: 760px) {
  .persona-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .persona-avatar {
    width: 116px;
    height: 142px;
  }
}


/* =========================================================
   2026-08-12: cover, informed-consent view, persona refresh
   Questionnaire question styles above are intentionally unchanged.
   ========================================================= */

/* Compact, first-screen cover */
body.intro-mode {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 8% 10%, rgba(244, 196, 92, 0.22) 0, transparent 20rem),
    radial-gradient(circle at 94% 2%, rgba(93, 174, 126, 0.18) 0, transparent 24rem),
    linear-gradient(160deg, #fffdf9 0%, #f6f4ea 58%, #edf7f0 100%);
}
body.intro-mode .app-shell {
  width: min(940px, calc(100% - 28px));
  min-height: 100dvh;
  padding: clamp(14px, 2.8vh, 28px) 0;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(10px, 2vh, 18px);
}
body.intro-mode .hero-intro {
  padding: clamp(18px, 3.6vw, 30px);
  margin: 0;
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.96), rgba(255,250,239,0.94)),
    #fff;
  border: 1px solid rgba(229, 220, 202, 0.92);
  box-shadow: 0 18px 60px rgba(70, 61, 44, 0.09);
}
body.intro-mode .hero-intro::before {
  width: 150px;
  height: 150px;
  right: -60px;
  top: -80px;
  background: rgba(47, 138, 99, 0.10);
}
body.intro-mode .hero-intro::after {
  width: 88px;
  height: 88px;
  right: 90px;
  bottom: -46px;
  background: rgba(244, 196, 92, 0.12);
}
body.intro-mode .eyebrow {
  margin-bottom: 6px;
  padding: 5px 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
body.intro-mode h1 {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
}
body.intro-mode .hero-copy {
  margin-top: 10px;
  max-width: 760px;
  font-size: clamp(0.94rem, 1.6vw, 1.04rem);
  line-height: 1.55;
}
body.intro-mode .survey-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.intro-page { gap: 10px; }
.intro-overview {
  width: min(100%, 560px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.88rem;
}
.intro-overview-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(47,138,99,0.10);
  font-size: 1.15rem;
  font-weight: 900;
}
.intro-overview strong { color: var(--text); margin-right: 7px; }
.intro-overview small { color: var(--muted); }
.intro-statement {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 22px) clamp(17px, 3vw, 26px);
  border-radius: 26px;
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(218, 228, 219, 0.95);
  box-shadow: 0 16px 48px rgba(62, 83, 69, 0.08);
}
.intro-statement::before { display: none; }
.statement-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.statement-kicker {
  margin: 0 0 2px !important;
  color: var(--primary) !important;
  font-size: 0.70rem !important;
  line-height: 1.2 !important;
  letter-spacing: 0.14em;
  font-weight: 900;
}
.intro-statement h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.24rem, 2.4vw, 1.62rem);
}
.statement-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 900;
}
.intro-statement p {
  margin: 0 0 7px;
  font-size: 0.90rem;
  line-height: 1.48;
}
.intro-consent-copy {
  margin-top: 9px !important;
  padding: 11px 13px;
  border-radius: 15px;
  color: #405148 !important;
  background: #f5faf6;
  border: 1px solid #dcece2;
}
.consent-link {
  color: var(--primary-dark);
  font-weight: 900;
  text-underline-offset: 3px;
}
.intro-actions {
  margin: 10px 0 0;
  justify-content: stretch;
}
.intro-actions .btn-start {
  width: 100%;
  min-height: 50px;
  padding: 12px 28px;
  font-size: 1.02rem;
  box-shadow: 0 10px 26px rgba(47,138,99,0.20);
}
.intro-thanks {
  margin: 7px 0 0 !important;
  text-align: center;
  font-size: 0.80rem !important;
  color: #8a8f89 !important;
}

/* Full informed-consent reading view */
body.consent-mode {
  background: #f4f1e8;
}
body.consent-mode .app-shell {
  display: block;
  width: min(920px, calc(100% - 28px));
  min-height: 100dvh;
  padding: 22px 0 48px;
}
body.consent-mode #pageHero { display: none; }
body.consent-mode .survey-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.consent-page {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.98);
  border: 1px solid #e1ded5;
  box-shadow: 0 22px 70px rgba(72, 64, 48, 0.10);
}
.consent-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 34px);
  border-bottom: 1px solid #ece8df;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 0.82rem;
}
.consent-back {
  appearance: none;
  border: 0;
  padding: 7px 0;
  background: transparent;
  color: var(--primary-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.consent-header {
  padding: clamp(26px, 5vw, 46px) clamp(20px, 5vw, 48px) 24px;
  background:
    radial-gradient(circle at 88% 20%, rgba(47,138,99,0.12), transparent 11rem),
    linear-gradient(145deg, #fffdf8, #f2f8f3);
  border-bottom: 1px solid #ece8df;
}
.consent-header h2 {
  margin: 4px 0 20px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}
.consent-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.consent-meta p { margin: 0; font-size: 0.92rem; color: #5e665f; }
.consent-content {
  padding: 28px clamp(20px, 5vw, 48px) 10px;
  max-width: 820px;
}
.consent-content p {
  margin: 0 0 18px;
  color: #39463f;
  font-size: 0.98rem;
  line-height: 1.82;
}
.consent-content strong { color: #1f4435; }
.phone-link { color: var(--primary-dark); font-weight: 900; text-decoration: none; }
.consent-bottom-action {
  padding: 10px clamp(20px, 5vw, 48px) 36px;
}
.consent-bottom-action .btn { width: 100%; }

/* Persona: richer scene + type-specific behavior */
.persona-animation-card {
  position: relative;
  margin: 18px 0 22px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), var(--persona-card-soft, #f7fcf8));
  border: 1px solid rgba(214,226,217,0.96);
  box-shadow: 0 16px 44px rgba(42,76,58,0.07);
}
.persona-animation-title { display: none; }
.persona-stage {
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 38px);
}
.persona-illustration {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.9), transparent 7rem),
    var(--persona-scene, #eef8f1);
}
.persona-avatar {
  width: 140px;
  height: 174px;
  z-index: 2;
  transform-origin: 50% 90%;
  animation: personaFloat 3s ease-in-out infinite;
}
.persona-ground {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 126px;
  height: 15px;
  border-radius: 50%;
  background: rgba(35,59,47,0.10);
  transform: translateX(-50%);
  filter: blur(1px);
  animation: personaGround 3s ease-in-out infinite;
}
.persona-doodle {
  position: absolute;
  border: 2px solid color-mix(in srgb, var(--persona-main) 45%, transparent);
  opacity: 0.65;
}
.persona-doodle-one {
  width: 46px;
  height: 46px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  border-right-color: transparent;
  animation: personaDoodle 7s linear infinite;
}
.persona-doodle-two {
  width: 24px;
  height: 24px;
  right: 24px;
  bottom: 28px;
  transform: rotate(45deg);
  border-radius: 7px;
  animation: personaDoodle 5s linear infinite reverse;
}
.persona-head {
  width: 78px;
  height: 76px;
  background: #fff3df;
  border: 2px solid rgba(40,53,46,0.08);
}
.persona-head::before { display: none; }
.persona-hair {
  position: absolute;
  left: 7px;
  right: 7px;
  top: -2px;
  height: 25px;
  border-radius: 30px 30px 12px 16px;
  background: #354139;
  transform: rotate(-2deg);
}
.persona-hair::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 13px;
  width: 14px;
  height: 24px;
  border-radius: 0 0 12px 12px;
  background: #354139;
  transform: rotate(-8deg);
}
.persona-eye { top: 36px; width: 7px; height: 7px; }
.persona-eye-left { left: 23px; }
.persona-eye-right { right: 23px; }
.persona-smile { top: 51px; width: 22px; height: 10px; border-width: 0 0 2px; }
.persona-body {
  width: 88px;
  height: 72px;
  border-radius: 23px 23px 28px 28px;
  background: var(--persona-main);
  box-shadow: 0 12px 22px rgba(32,72,54,0.14);
}
.persona-body::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.20), transparent 48%);
}
.persona-arm { top: 13px; height: 52px; background: var(--persona-main); }
.persona-badge { z-index: 2; top: 19px; }
.persona-legs span { height: 31px; background: #3d4b43; }
.persona-prop {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  filter: drop-shadow(0 8px 10px rgba(37,63,49,0.14));
}
.persona-motion {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.persona-orbit { width: 34px; height: 34px; font-size: 1rem; }
.persona-mini-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--persona-main, var(--primary));
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.10em;
}
.persona-text strong { font-size: clamp(1.18rem, 2.3vw, 1.48rem); line-height: 1.2; }
.persona-text p { max-width: 470px; font-size: 0.95rem; line-height: 1.7; }

/* 1. Strong cognition + strong choice: confident keeper, leaf in hand */
.persona-strong-strong-card { --persona-card-soft: #eef9f2; --persona-scene: #eaf7ee; }
.persona-strong-strong .persona-prop { content: ""; right: -18px; top: 68px; }
.persona-strong-strong .persona-prop::before { content: "🌿"; }
.persona-strong-strong .persona-arm-right { animation: guardianRaise 2.2s ease-in-out infinite; }
.persona-strong-strong .persona-orbit-one { left: -4px; top: 8px; }
.persona-strong-strong .persona-orbit-two { right: -4px; top: 28px; }
.persona-strong-strong .persona-motion-one,
.persona-strong-strong .persona-motion-two {
  width: 8px; height: 8px; border-radius: 50%; background: var(--persona-accent); opacity: 0.8;
  animation: seedSpark 2.4s ease-in-out infinite;
}
.persona-strong-strong .persona-motion-one { right: 5px; top: 40px; }
.persona-strong-strong .persona-motion-two { right: 19px; top: 28px; animation-delay: .65s; }

/* 2. Strong cognition + weak choice: thinking, balancing a puzzle */
.persona-strong-weak-card { --persona-card-soft: #f1f4fb; --persona-scene: #eef2fa; }
.persona-strong-weak { animation: thinkerSway 3.4s ease-in-out infinite; }
.persona-strong-weak .persona-prop { right: -22px; top: 48px; animation: puzzleHover 2.7s ease-in-out infinite; }
.persona-strong-weak .persona-prop::before { content: "🧩"; }
.persona-strong-weak .persona-arm-left { left: -8px; transform: rotate(-55deg) translateY(-2px); }
.persona-strong-weak .persona-arm-right { right: -12px; transform: rotate(-8deg); }
.persona-strong-weak .persona-orbit-two { right: 3px; top: 14px; }
.persona-strong-weak .persona-motion-one,
.persona-strong-weak .persona-motion-two {
  opacity: 0.45; border-radius: 50%; border: 2px solid var(--persona-main); animation: thoughtBubble 2.9s ease-in-out infinite;
}
.persona-strong-weak .persona-motion-one { width: 12px; height: 12px; right: 7px; top: 6px; }
.persona-strong-weak .persona-motion-two { width: 7px; height: 7px; right: 22px; top: 26px; animation-delay: .35s; }

/* 3. Weak cognition + strong choice: action-first rider, forward motion */
.persona-weak-strong-card { --persona-card-soft: #edfbf4; --persona-scene: #e7f8ef; }
.persona-weak-strong { animation: actionStride 1.15s ease-in-out infinite; }
.persona-weak-strong .persona-prop { right: -24px; top: 76px; transform: rotate(-10deg); }
.persona-weak-strong .persona-prop::before { content: "🚲"; }
.persona-weak-strong .persona-arm-left { transform: rotate(38deg); }
.persona-weak-strong .persona-arm-right { transform: rotate(-42deg); }
.persona-weak-strong .persona-motion-one,
.persona-weak-strong .persona-motion-two {
  width: 30px; height: 3px; border-radius: 999px; background: var(--persona-main); opacity: .25;
  animation: speedLine 1.15s ease-in-out infinite;
}
.persona-weak-strong .persona-motion-one { left: -34px; top: 76px; }
.persona-weak-strong .persona-motion-two { left: -24px; top: 94px; animation-delay: .2s; }

/* 4. Weak cognition + weak choice: careful starter, growing sprout */
.persona-weak-weak-card { --persona-card-soft: #f8f4fb; --persona-scene: #f5f0f8; }
.persona-weak-weak { animation: starterLean 3.2s ease-in-out infinite; }
.persona-weak-weak .persona-prop { right: -18px; bottom: 4px; transform-origin: bottom center; animation: sproutGrow 2.8s ease-in-out infinite; }
.persona-weak-weak .persona-prop::before { content: "🌱"; }
.persona-weak-weak .persona-arm-right { transform: rotate(-48deg); }
.persona-weak-weak .persona-orbit-one { left: 2px; top: 10px; }
.persona-weak-weak .persona-motion-one { opacity: .55; width: 4px; height: 4px; border-radius: 50%; background: var(--persona-main); right: 6px; bottom: 25px; animation: seedSpark 2.8s ease-in-out infinite; }

/* 5. Neutral cognition + weak choice: searching with magnifier */
.persona-neutral-weak-card { --persona-card-soft: #fff9ec; --persona-scene: #fff6e5; }
.persona-neutral-weak { animation: searchTilt 3.4s ease-in-out infinite; }
.persona-neutral-weak .persona-prop { right: -28px; top: 56px; transform-origin: 35% 75%; animation: magnifierScan 2.5s ease-in-out infinite; }
.persona-neutral-weak .persona-prop::before { content: "🔎"; }
.persona-neutral-weak .persona-arm-right { transform: rotate(-58deg); }
.persona-neutral-weak .persona-motion-one {
  opacity: .38; width: 48px; height: 48px; border: 2px dashed var(--persona-main); border-radius: 50%; right: -30px; top: 42px; animation: scanRing 2.5s ease-in-out infinite;
}

/* 6. Neutral cognition + strong choice: compass-led walker */
.persona-neutral-strong-card { --persona-card-soft: #edfafd; --persona-scene: #e8f8fb; }
.persona-neutral-strong { animation: compassWalk 1.9s ease-in-out infinite; }
.persona-neutral-strong .persona-prop { left: -27px; top: 48px; animation: compassTurn 3.2s ease-in-out infinite; }
.persona-neutral-strong .persona-prop::before { content: "🧭"; }
.persona-neutral-strong .persona-arm-left { transform: rotate(44deg); }
.persona-neutral-strong .persona-arm-right { animation: compassArm 1.9s ease-in-out infinite; }
.persona-neutral-strong .persona-motion-one,
.persona-neutral-strong .persona-motion-two {
  width: 7px; height: 7px; border-radius: 50%; background: var(--persona-accent); opacity: .55; animation: trailDot 1.9s linear infinite;
}
.persona-neutral-strong .persona-motion-one { left: -10px; bottom: 38px; }
.persona-neutral-strong .persona-motion-two { left: -24px; bottom: 50px; animation-delay: .45s; }

@keyframes personaGround { 0%,100%{transform:translateX(-50%) scaleX(1)} 50%{transform:translateX(-50%) scaleX(.86); opacity:.7} }
@keyframes personaDoodle { to { transform: rotate(360deg); } }
@keyframes guardianRaise { 0%,100%{transform:rotate(-22deg)} 50%{transform:rotate(-62deg)} }
@keyframes seedSpark { 0%,100%{transform:translateY(4px) scale(.7);opacity:.15} 50%{transform:translateY(-9px) scale(1);opacity:.85} }
@keyframes thinkerSway { 0%,100%{transform:rotate(-1deg) translateY(0)} 50%{transform:rotate(2deg) translateY(-4px)} }
@keyframes puzzleHover { 0%,100%{transform:translateY(2px) rotate(-5deg)} 50%{transform:translateY(-8px) rotate(6deg)} }
@keyframes thoughtBubble { 0%,100%{transform:translateY(3px) scale(.8);opacity:.2} 50%{transform:translateY(-8px) scale(1);opacity:.55} }
@keyframes actionStride { 0%,100%{transform:translate(0,0) rotate(-3deg)} 50%{transform:translate(5px,-5px) rotate(-5deg)} }
@keyframes speedLine { 0%{transform:translateX(14px);opacity:0} 45%{opacity:.35} 100%{transform:translateX(-10px);opacity:0} }
@keyframes starterLean { 0%,100%{transform:rotate(1deg) translateY(0)} 50%{transform:rotate(4deg) translateY(2px)} }
@keyframes sproutGrow { 0%,100%{transform:scale(.82) rotate(-3deg)} 50%{transform:scale(1.08) rotate(4deg)} }
@keyframes searchTilt { 0%,100%{transform:rotate(-2deg)} 50%{transform:rotate(3deg) translateY(-3px)} }
@keyframes magnifierScan { 0%,100%{transform:rotate(-18deg) translateY(0)} 50%{transform:rotate(18deg) translateY(-5px)} }
@keyframes scanRing { 0%,100%{transform:scale(.7);opacity:.12} 50%{transform:scale(1.05);opacity:.45} }
@keyframes compassWalk { 0%,100%{transform:translateX(-3px) translateY(0)} 50%{transform:translateX(4px) translateY(-5px)} }
@keyframes compassTurn { 0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(11deg)} }
@keyframes compassArm { 0%,100%{transform:rotate(-28deg)} 50%{transform:rotate(-48deg)} }
@keyframes trailDot { 0%{transform:translate(12px,-4px) scale(.6);opacity:0} 50%{opacity:.6} 100%{transform:translate(-12px,8px) scale(1);opacity:0} }

@media (max-width: 760px) {
  body.intro-mode .app-shell {
    width: min(100% - 18px, 940px);
    min-height: 100svh;
    padding: 9px 0 12px;
    align-content: center;
    gap: 7px;
  }
  body.intro-mode .hero-intro {
    padding: 13px 14px;
    border-radius: 20px;
  }
  body.intro-mode .eyebrow { margin-bottom: 2px; padding: 3px 8px; font-size: .72rem; }
  body.intro-mode h1 { font-size: clamp(1.55rem, 7.8vw, 2.05rem); }
  body.intro-mode .hero-copy { margin-top: 6px; font-size: .82rem; line-height: 1.38; }
  .intro-page { gap: 6px; }
  .intro-overview { gap: 8px; font-size: .76rem; }
  .intro-overview-icon { width: 25px; height: 25px; font-size: .95rem; }
  .intro-overview small { display: inline; }
  .intro-statement {
    padding: 12px 13px;
    border-radius: 20px;
  }
  .statement-heading-row { margin-bottom: 4px; }
  .statement-kicker { font-size: .62rem !important; }
  .intro-statement h2 { font-size: 1.08rem; }
  .statement-mark { width: 30px; height: 30px; border-radius: 10px; font-size: .88rem; }
  .intro-statement p { margin-bottom: 5px; font-size: .78rem; line-height: 1.38; }
  .intro-consent-copy { margin-top: 6px !important; padding: 8px 9px; border-radius: 12px; }
  .intro-actions { margin-top: 7px; }
  .intro-actions .btn-start { min-height: 44px; padding: 10px 18px; font-size: .94rem; }
  .intro-thanks { margin-top: 5px !important; font-size: .72rem !important; }

  body.consent-mode .app-shell { width: min(100% - 14px, 920px); padding: 8px 0 24px; }
  .consent-page { border-radius: 20px; }
  .consent-topbar { padding: 10px 14px; font-size: .72rem; }
  .consent-header { padding: 22px 17px 18px; }
  .consent-header h2 { margin-bottom: 16px; font-size: 2rem; }
  .consent-meta { grid-template-columns: 1fr; gap: 6px; }
  .consent-meta p { font-size: .84rem; }
  .consent-content { padding: 20px 17px 6px; }
  .consent-content p { margin-bottom: 15px; font-size: .91rem; line-height: 1.72; }
  .consent-bottom-action { padding: 8px 17px 26px; }

  .persona-stage { grid-template-columns: 1fr; gap: 14px; justify-items: stretch; text-align: left; }
  .persona-illustration { min-height: 190px; }
  .persona-avatar { width: 128px; height: 158px; }
  .persona-text { padding: 0 4px; }
}

@media (max-width: 380px), (max-height: 650px) {
  body.intro-mode .app-shell { align-content: start; }
  body.intro-mode .hero-intro { padding: 10px 12px; }
  body.intro-mode .eyebrow { display: none; }
  body.intro-mode h1 { font-size: 1.5rem; }
  body.intro-mode .hero-copy { font-size: .75rem; margin-top: 4px; }
  .intro-overview { display: none; }
  .intro-statement { padding: 10px 11px; }
  .intro-statement p { font-size: .73rem; line-height: 1.32; margin-bottom: 4px; }
  .statement-kicker, .statement-mark, .intro-thanks { display: none; }
  .intro-statement h2 { font-size: 1rem; }
  .intro-consent-copy { padding: 7px 8px; margin-top: 4px !important; }
  .intro-actions { margin-top: 5px; }
  .intro-actions .btn-start { min-height: 40px; padding: 8px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .persona-avatar, .persona-ground, .persona-doodle, .persona-arm-right, .persona-prop, .persona-motion,
  .persona-eye, .persona-orbit, .persona-legs span { animation: none !important; }
}

/* =========================================================
   2026-08-12 cover v2 — playful, MBTI-style entry page.
   Intro-only overrides. Questionnaire and result styles untouched.
   ========================================================= */
body.intro-mode #pageHero { display: none; }
body.intro-mode {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 205, 98, .20) 0, transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(84, 166, 118, .16) 0, transparent 23rem),
    linear-gradient(155deg, #fffdfa 0%, #f7f4ec 54%, #eef7f1 100%);
}
body.intro-mode .app-shell {
  width: min(1000px, calc(100% - 28px));
  min-height: 100dvh;
  padding: clamp(18px, 3vh, 34px) 0;
  display: grid;
  place-items: center;
}
body.intro-mode .survey-card {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.intro-page-v2 { width: 100%; display: block; }
.intro-cover-v2 {
  width: 100%;
  padding: clamp(22px, 3.6vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(222, 226, 216, .95);
  border-radius: 34px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 72px rgba(64, 75, 62, .10);
  position: relative;
}
.intro-cover-v2::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -125px;
  border-radius: 50%;
  background: rgba(47, 138, 99, .07);
  pointer-events: none;
}
.intro-cover-v2::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -105px;
  border-radius: 50%;
  background: rgba(246, 192, 77, .08);
  pointer-events: none;
}
.intro-brand-row-v2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.intro-brand-badge-v2,
.intro-study-tag-v2 {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .03em;
}
.intro-brand-badge-v2 {
  color: #1f6f4e;
  border: 1px solid #cfe6d7;
  background: #eef8f1;
}
.intro-brand-badge-v2::before { content: "✦"; margin-right: 6px; color: #d7a92d; }
.intro-study-tag-v2 { color: #77766f; background: #f7f5ef; }
.intro-cover-grid-v2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(30px, 5vw, 58px);
}
.intro-visual-v2 { min-width: 0; }
.intro-object-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: rotate(-1.4deg);
}
.intro-object-v2 {
  --tile: #f6f3e8;
  --ink: #23372f;
  position: relative;
  aspect-ratio: 1.18 / 1;
  min-height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(35,55,47,.08);
  border-radius: 19px;
  background: var(--tile);
  box-shadow: 0 8px 22px rgba(61, 71, 63, .07);
}
.intro-object-v2 b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  font-size: 1.18rem;
  line-height: 1;
  box-shadow: 5px 5px 0 rgba(35,55,47,.08);
}
.intro-object-v2 i {
  position: absolute;
  width: 46px;
  height: 12px;
  right: -8px;
  bottom: 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  transform: rotate(-24deg);
}
.intro-object-v2:nth-child(2n) { transform: translateY(6px); }
.object-clothes { --tile: #f9e5bc; }
.object-food { --tile: #e4f1db; }
.object-repair { --tile: #dcebf2; }
.object-travel { --tile: #f3ded9; }
.object-phone { --tile: #e6e1f0; }
.object-choice { --tile: #f6e7cf; }
.object-choice b { border-radius: 50%; font-size: 1.5rem; }
.intro-visual-caption-v2 {
  margin-top: 19px;
  text-align: center;
}
.intro-visual-caption-v2 span {
  display: block;
  color: #9a978d;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.intro-visual-caption-v2 strong {
  display: block;
  margin-top: 3px;
  color: #405148;
  font-size: .92rem;
}
.intro-kicker-v2 {
  margin: 0 0 7px;
  color: #2f8a63;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.intro-title-v2 {
  margin: 0;
  color: #24362f;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.intro-title-v2 span {
  position: relative;
  display: inline;
  z-index: 0;
}
.intro-title-v2 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.03em;
  right: -.06em;
  bottom: .05em;
  height: .34em;
  border-radius: 999px;
  background: rgba(246, 202, 72, .48);
  transform: rotate(-.7deg);
}
.intro-subtitle-v2 {
  max-width: 580px;
  margin: 13px 0 0;
  color: #747870;
  font-size: .98rem;
  line-height: 1.6;
}
.intro-meta-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}
.intro-meta-v2 span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #506158;
  background: #f4f7f3;
  border: 1px solid #e4ebe5;
  font-size: .78rem;
  font-weight: 700;
}
.intro-meta-v2 b { color: #23744f; margin-right: 3px; }
.intro-data-note-v2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 15px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fbfaf6;
  border: 1px solid #ece7da;
  color: #73766f;
  font-size: .77rem;
  line-height: 1.45;
}
.intro-data-note-v2 strong { color: #49564f; white-space: nowrap; }
.intro-data-note-v2 .email-link { font-weight: 800; }
.intro-consent-v2 {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #767b75 !important;
  font-size: .73rem !important;
  line-height: 1.48 !important;
}
.intro-actions-v2 { margin: 12px 0 0; }
.intro-actions-v2 .btn-start-v2 {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  color: #fff;
  background: linear-gradient(135deg, #267e58, #61b86c);
  box-shadow: 0 13px 30px rgba(47,138,99,.22);
  font-size: 1rem;
}
.intro-actions-v2 .btn-start-v2::after { content: none; }
.intro-foot-v2 {
  margin: 8px 0 0;
  text-align: center;
  color: #aaa9a2;
  font-size: .72rem;
}

@media (max-width: 760px) {
  body.intro-mode .app-shell {
    width: min(100% - 16px, 1000px);
    min-height: 100svh;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    place-items: start center;
  }
  .intro-cover-v2 {
    padding: 14px;
    border-radius: 24px;
  }
  .intro-brand-row-v2 { margin-bottom: 11px; }
  .intro-brand-badge-v2,
  .intro-study-tag-v2 { min-height: 27px; padding: 4px 8px; font-size: .65rem; }
  .intro-study-tag-v2 { background: transparent; padding-right: 2px; }
  .intro-cover-grid-v2 { grid-template-columns: 1fr; gap: 12px; }
  .intro-visual-v2 { order: 0; }
  .intro-copy-v2 { order: 1; }
  .intro-object-grid-v2 {
    width: min(100%, 360px);
    margin: 0 auto;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    transform: none;
  }
  .intro-object-v2 {
    min-height: 58px;
    aspect-ratio: 1 / 1.03;
    border-radius: 14px;
  }
  .intro-object-v2:nth-child(2n) { transform: translateY(4px); }
  .intro-object-v2 b {
    width: clamp(31px, 9vw, 38px);
    height: clamp(31px, 9vw, 38px);
    border-width: 2px;
    border-radius: 10px;
    font-size: .88rem;
    box-shadow: 3px 3px 0 rgba(35,55,47,.08);
  }
  .object-choice b { font-size: 1.15rem; }
  .intro-object-v2 i { width: 30px; height: 8px; bottom: 10px; }
  .intro-visual-caption-v2 { margin-top: 8px; }
  .intro-visual-caption-v2 span { display: none; }
  .intro-visual-caption-v2 strong { margin: 0; font-size: .72rem; color: #96968f; font-weight: 700; }
  .intro-kicker-v2 { margin-bottom: 4px; font-size: .57rem; }
  .intro-title-v2 { font-size: clamp(1.72rem, 7.4vw, 2.2rem); line-height: 1.07; }
  .intro-subtitle-v2 { margin-top: 7px; font-size: .79rem; line-height: 1.43; }
  .intro-meta-v2 { margin-top: 9px; gap: 5px; }
  .intro-meta-v2 span { min-height: 25px; padding: 3px 7px; font-size: .66rem; }
  .intro-data-note-v2 {
    grid-template-columns: auto 1fr;
    gap: 6px;
    margin-top: 9px;
    padding: 7px 8px;
    border-radius: 11px;
    font-size: .65rem;
    line-height: 1.36;
  }
  .intro-consent-v2 {
    margin-top: 7px !important;
    font-size: .64rem !important;
    line-height: 1.38 !important;
  }
  .intro-actions-v2 { margin-top: 8px; }
  .intro-actions-v2 .btn-start-v2 { min-height: 46px; padding: 10px 18px; font-size: .91rem; }
  .intro-foot-v2 { margin-top: 5px; font-size: .62rem; }
}

@media (max-width: 380px), (max-height: 690px) {
  .intro-cover-v2 { padding: 11px 12px; }
  .intro-brand-row-v2 { margin-bottom: 8px; }
  .intro-study-tag-v2 { display: none; }
  .intro-cover-grid-v2 { gap: 8px; }
  .intro-object-grid-v2 { gap: 4px; }
  .intro-object-v2 { min-height: 47px; border-radius: 11px; }
  .intro-object-v2 b { width: 29px; height: 29px; font-size: .76rem; border-radius: 8px; }
  .intro-visual-caption-v2 { display: none; }
  .intro-kicker-v2 { display: none; }
  .intro-title-v2 { font-size: 1.56rem; }
  .intro-subtitle-v2 { font-size: .72rem; margin-top: 5px; }
  .intro-meta-v2 { margin-top: 6px; }
  .intro-meta-v2 span { font-size: .61rem; min-height: 22px; }
  .intro-data-note-v2 { margin-top: 6px; font-size: .60rem; padding: 6px 7px; }
  .intro-consent-v2 { margin-top: 5px !important; font-size: .59rem !important; line-height: 1.32 !important; }
  .intro-actions-v2 { margin-top: 6px; }
  .intro-actions-v2 .btn-start-v2 { min-height: 42px; padding: 8px 16px; font-size: .86rem; }
  .intro-foot-v2 { display: none; }
}


/* =========================================================
   2026-08-12 cover v3 — roomier mobile layout, stronger visual entry.
   Intro-only overrides. Questionnaire and result styles remain untouched.
   ========================================================= */
body.intro-mode #pageHero { display: none; }
body.intro-mode .app-shell {
  width: min(1020px, calc(100% - 30px));
  min-height: 100dvh;
  padding: clamp(22px, 4vh, 48px) 0;
  display: grid;
  place-items: center;
}
.intro-page-v3 { width: 100%; display: block; }
.intro-cover-v3 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(221, 226, 216, .96);
  border-radius: 36px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 26px 80px rgba(64,75,62,.11);
}
.intro-cover-v3::before,
.intro-cover-v3::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.intro-cover-v3::before {
  width: 300px; height: 300px; right: -145px; top: -150px;
  background: rgba(47,138,99,.075);
}
.intro-cover-v3::after {
  width: 210px; height: 210px; left: -120px; bottom: -130px;
  background: rgba(246,192,77,.09);
}
.intro-brand-row-v3 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.intro-brand-badge-v3,
.intro-study-tag-v3 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
}
.intro-brand-badge-v3 {
  color: #1f6f4e;
  border: 1px solid #cfe6d7;
  background: #eef8f1;
}
.intro-brand-badge-v3::before { content: "✦"; margin-right: 7px; color: #d6aa2e; }
.intro-study-tag-v3 { color: #77766f; background: #f7f5ef; }
.intro-cover-grid-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(38px, 5.8vw, 70px);
}
.intro-visual-v3 { min-width: 0; }
.intro-object-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.intro-object-v3 {
  --tile: #f5f0e6;
  --ink: #22372f;
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(35,55,47,.08);
  border-radius: 24px;
  background: var(--tile);
  box-shadow: 0 10px 24px rgba(61,71,63,.075);
  transform: rotate(var(--turn, 0deg));
}
.intro-object-v3:nth-child(1) { --turn: -1.8deg; }
.intro-object-v3:nth-child(2) { --turn: 1.2deg; transform: translateY(8px) rotate(var(--turn)); }
.intro-object-v3:nth-child(3) { --turn: -.6deg; }
.intro-object-v3:nth-child(4) { --turn: 1.1deg; }
.intro-object-v3:nth-child(5) { --turn: -1.2deg; transform: translateY(8px) rotate(var(--turn)); }
.intro-object-v3:nth-child(6) { --turn: .8deg; }
.intro-object-v3 b {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 17px;
  background: rgba(255,255,255,.80);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 6px 6px 0 rgba(35,55,47,.09);
}
.intro-object-v3 i,
.intro-object-v3 em {
  position: absolute;
  display: block;
  pointer-events: none;
}
.intro-object-v3 i {
  width: 72px;
  height: 18px;
  right: -14px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  transform: rotate(-25deg);
}
.intro-object-v3 em {
  width: 22px;
  height: 22px;
  left: 13px;
  top: 12px;
  border: 3px solid rgba(35,55,47,.10);
  border-radius: 50%;
}
.object-life-clothes { --tile: #f8e4b8; }
.object-life-food    { --tile: #e5f0d8; }
.object-life-home    { --tile: #dcebf0; }
.object-life-travel  { --tile: #f2dcda; }
.object-life-use     { --tile: #e7e0f0; }
.object-life-choice  { --tile: #f6e7ce; }
.object-life-choice b { border-radius: 50%; font-size: 1.7rem; }
.intro-visual-caption-v3 {
  margin: 22px 6px 0;
  text-align: center;
  color: #8f918b;
  font-size: .82rem;
  line-height: 1.5;
}
.intro-copy-v3 { min-width: 0; }
.intro-title-v3 {
  margin: 0;
  color: #24362f;
  font-size: clamp(2.1rem, 4.4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.intro-title-v3 span { position: relative; display: inline; z-index: 0; }
.intro-title-v3 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.04em; right: -.06em; bottom: .04em;
  height: .34em;
  border-radius: 999px;
  background: rgba(246,202,72,.48);
  transform: rotate(-.7deg);
}
.intro-subtitle-v3 {
  max-width: 600px;
  margin: 16px 0 0;
  color: #737971;
  font-size: 1rem;
  line-height: 1.65;
}
.intro-meta-v3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.intro-meta-v3 span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #506158;
  background: #f4f7f3;
  border: 1px solid #e4ebe5;
  font-size: .78rem;
  font-weight: 750;
}
.intro-meta-v3 b { color: #23744f; margin-right: 3px; }
.intro-data-note-v3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 13px;
  border-radius: 16px;
  background: #fbfaf6;
  border: 1px solid #ece7da;
}
.intro-data-icon-v3 {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #23744f;
  background: #eef8f1;
  font-weight: 900;
}
.intro-data-note-v3 p { margin: 0; color: #777a73; font-size: .76rem; line-height: 1.42; }
.intro-data-note-v3 strong { color: #4b5851; font-weight: 850; }
.intro-data-note-v3 .email-link { font-weight: 800; }
.intro-consent-v3 {
  margin: 15px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #737971 !important;
  font-size: .76rem !important;
  line-height: 1.58 !important;
}
.intro-actions-v3 { margin: 16px 0 0; }
.intro-actions-v3 .btn-start-v3 {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  color: #fff;
  background: linear-gradient(135deg, #267e58, #61b86c);
  box-shadow: 0 14px 32px rgba(47,138,99,.23);
  font-size: 1.04rem;
}
.intro-actions-v3 .btn-start-v3::after { content: none; }

@media (max-width: 760px) {
  body.intro-mode .app-shell {
    width: min(100% - 18px, 1020px);
    min-height: 100svh;
    padding: clamp(14px, 2.2vh, 22px) 0 max(14px, env(safe-area-inset-bottom));
    place-items: center;
  }
  .intro-cover-v3 {
    padding: 20px 18px 22px;
    border-radius: 27px;
  }
  .intro-brand-row-v3 {
    margin-bottom: 18px;
  }
  .intro-brand-badge-v3,
  .intro-study-tag-v3 {
    min-height: 30px;
    padding: 5px 9px;
    font-size: .68rem;
  }
  .intro-study-tag-v3 { background: transparent; padding-right: 0; }
  .intro-cover-grid-v3 { grid-template-columns: 1fr; gap: 21px; }
  .intro-visual-v3 { order: 0; }
  .intro-copy-v3 { order: 1; }
  .intro-object-grid-v3 {
    width: min(100%, 350px);
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .intro-object-v3 {
    min-height: 82px;
    border-radius: 18px;
  }
  .intro-object-v3:nth-child(2),
  .intro-object-v3:nth-child(5) { transform: translateY(5px) rotate(var(--turn)); }
  .intro-object-v3 b {
    width: 45px;
    height: 45px;
    border-width: 2.5px;
    border-radius: 13px;
    font-size: 1.08rem;
    box-shadow: 4px 4px 0 rgba(35,55,47,.09);
  }
  .object-life-choice b { font-size: 1.35rem; }
  .intro-object-v3 i { width: 47px; height: 11px; right: -10px; bottom: 12px; }
  .intro-object-v3 em { width: 16px; height: 16px; left: 9px; top: 9px; border-width: 2px; }
  .intro-visual-caption-v3 {
    margin-top: 14px;
    font-size: .75rem;
  }
  .intro-title-v3 {
    font-size: clamp(1.85rem, 7.9vw, 2.35rem);
    line-height: 1.08;
  }
  .intro-subtitle-v3 {
    margin-top: 10px;
    font-size: .84rem;
    line-height: 1.55;
  }
  .intro-meta-v3 { margin-top: 13px; gap: 6px; }
  .intro-meta-v3 span { min-height: 28px; padding: 4px 8px; font-size: .69rem; }
  .intro-data-note-v3 { margin-top: 13px; padding: 9px 10px; border-radius: 13px; gap: 8px; }
  .intro-data-icon-v3 { width: 28px; height: 28px; border-radius: 9px; }
  .intro-data-note-v3 p { font-size: .68rem; line-height: 1.4; }
  .intro-consent-v3 {
    margin-top: 12px !important;
    font-size: .69rem !important;
    line-height: 1.52 !important;
  }
  .intro-actions-v3 { margin-top: 13px; }
  .intro-actions-v3 .btn-start-v3 { min-height: 52px; padding: 12px 20px; font-size: .96rem; }
}

/* Short-phone fallback: keep the start button in the first screen without crushing text. */
@media (max-width: 380px), (max-height: 700px) {
  body.intro-mode .app-shell { place-items: start center; padding-top: 9px; }
  .intro-cover-v3 { padding: 13px 14px 15px; border-radius: 22px; }
  .intro-brand-row-v3 { margin-bottom: 10px; }
  .intro-brand-badge-v3, .intro-study-tag-v3 { font-size: .62rem; min-height: 26px; padding: 4px 7px; }
  .intro-study-tag-v3 { display: none; }
  .intro-cover-grid-v3 { gap: 12px; }
  .intro-object-grid-v3 { width: min(100%, 310px); gap: 7px; }
  .intro-object-v3 { min-height: 58px; border-radius: 14px; }
  .intro-object-v3 b { width: 35px; height: 35px; font-size: .9rem; border-radius: 10px; }
  .intro-object-v3 i { display: none; }
  .intro-object-v3 em { width: 12px; height: 12px; left: 7px; top: 7px; }
  .intro-visual-caption-v3 { margin-top: 8px; font-size: .66rem; }
  .intro-title-v3 { font-size: 1.65rem; }
  .intro-subtitle-v3 { margin-top: 6px; font-size: .75rem; line-height: 1.44; }
  .intro-meta-v3 { margin-top: 8px; }
  .intro-meta-v3 span { min-height: 24px; font-size: .63rem; padding: 3px 6px; }
  .intro-data-note-v3 { margin-top: 8px; padding: 7px 8px; }
  .intro-data-icon-v3 { display: none; }
  .intro-data-note-v3 p { font-size: .62rem; line-height: 1.34; }
  .intro-consent-v3 { margin-top: 7px !important; font-size: .62rem !important; line-height: 1.38 !important; }
  .intro-actions-v3 { margin-top: 8px; }
  .intro-actions-v3 .btn-start-v3 { min-height: 44px; padding: 9px 16px; font-size: .88rem; }
}
