.passport h1 small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 550;
  letter-spacing: .02em;
}

.state-board {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  margin: 24px 0 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.state-board > div {
  padding: 24px;
}

.state-board > div + div {
  border-left: 1px solid var(--line);
}

.state-board span {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
}

.state-board h2 {
  margin: 10px 0 14px;
  font-size: 1.15rem;
}

.state-board p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.8;
}

.state-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.state-meter i {
  height: 5px;
  border-radius: 5px;
  background: #dce2d7;
}

.state-meter i.on {
  background: #7e995e;
}

.quick-action {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  border: 1px solid #d8cca6;
  border-radius: 12px;
  background: #f3ecd1;
}

.quick-action .icon {
  margin-top: 3px;
  color: var(--gold);
}

.discovery {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #18352e73;
  backdrop-filter: blur(3px);
  animation: discovery-in .25s ease-out;
}

.discovery > div {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: min(340px, 90vw);
  max-width: 430px;
  padding: 42px 34px 34px;
  border: 1px solid #d6c48a;
  border-radius: 18px;
  background: #fbf5df;
  color: var(--teal);
  box-shadow: 0 22px 65px #152b2452;
}

.discovery .icon {
  width: 70px;
  height: 70px;
  animation: treasure 1s ease-in-out infinite;
}

.discovery span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.discovery strong {
  margin-top: 14px;
  font-size: 1.3rem;
  text-align: center;
}

.discovery small {
  max-width: 320px;
  margin-top: 10px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
  text-align: center;
}

.discovery-burst {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-top: 18px;
  border: 1px solid #d9c276;
  border-radius: 50%;
  background: #f7edca;
  box-shadow: 0 0 0 10px #dcc77920, 0 15px 36px #8a6c2730;
}

.discovery-ring {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 180px;
  height: 180px;
  border: 1px dashed #b99a48;
  border-radius: 50%;
  translate: -50% -50%;
  animation: ring-turn 6s linear infinite;
  pointer-events: none;
}

.discovery-card > :not(.discovery-ring) {
  position: relative;
  z-index: 1;
}

.discovery-ring.ring-b {
  width: 218px;
  height: 218px;
  border-color: #87a58e78;
  animation-direction: reverse;
  animation-duration: 9s;
}

.discovery.leaving {
  opacity: 0;
  transition: opacity .18s;
}

@keyframes discovery-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes treasure {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-7px) rotate(3deg); }
}

@keyframes ring-turn {
  to { rotate: 360deg; }
}

@media (max-width: 760px) {
  .state-board {
    grid-template-columns: 1fr;
  }

  .state-board > div {
    padding: 20px;
  }

  .state-board > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* Immersive, answer-aware world atmosphere */
body {
  --world-base: #f7f6ef;
  --world-light-a: #b7d8c2;
  --world-light-b: #ead590;
  --world-line: #527f70;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color .9s ease;
}

body:not([data-chapter='dungeon']) {
  background: var(--world-base);
}

body[data-world='unconscious'] {
  --world-base: #edf1e9;
  --world-light-a: #4f8a7f;
  --world-light-b: #d8b85b;
  --world-line: #876a31;
}

body[data-world='learning'] {
  --world-base: #f2f6f0;
  --world-light-a: #8dc8cb;
  --world-light-b: #d5d990;
  --world-line: #3b8084;
}

body[data-world='senior'] {
  --world-base: #f7f3e8;
  --world-light-a: #a6c993;
  --world-light-b: #e7bd71;
  --world-line: #7c8e58;
}

body[data-world='personality'] {
  --world-base: #f2f4e9;
  --world-light-a: #94b784;
  --world-light-b: #e2c278;
  --world-line: #607b51;
}

body[data-world='emotion'] {
  --world-base: #f4f4ef;
  --world-light-a: #8dbbc1;
  --world-light-b: #e7aa8e;
  --world-line: #527e83;
}

body[data-world='child'] {
  --world-base: #f7f5eb;
  --world-light-a: #9cd0b5;
  --world-light-b: #efb694;
  --world-line: #668d74;
}

body[data-world='relationship'] {
  --world-base: #f6f2ed;
  --world-light-a: #b1a6c9;
  --world-light-b: #e4aa91;
  --world-line: #766782;
}

body[data-world='help'] {
  --world-base: #f6f1ea;
  --world-light-a: #a8bfc0;
  --world-light-b: #d7b69a;
  --world-line: #687b7b;
}

.world-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .42;
  transition: opacity .8s ease;
}

body[data-screen='setup'] .world-atmosphere { opacity: .58; }
body[data-screen='question'] .world-atmosphere { opacity: .78; }
body[data-screen='result'] .world-atmosphere { opacity: .54; }

header,
main,
footer,
dialog,
noscript {
  position: relative;
  z-index: 1;
}

.skip { z-index: 20; }

.atmosphere-glow,
.atmosphere-orbit,
.atmosphere-stars i {
  position: absolute;
  display: block;
}

.atmosphere-glow {
  width: clamp(420px, 58vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  will-change: transform;
}

.glow-a {
  top: -28%;
  right: -17%;
  background: radial-gradient(circle, color-mix(in srgb, var(--world-light-a) 42%, transparent) 0, transparent 68%);
  animation: atmosphere-drift 19s ease-in-out infinite alternate;
}

.glow-b {
  bottom: -39%;
  left: -16%;
  background: radial-gradient(circle, color-mix(in srgb, var(--world-light-b) 39%, transparent) 0, transparent 69%);
  animation: atmosphere-drift 24s ease-in-out -8s infinite alternate-reverse;
}

.atmosphere-orbit {
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border: 1px dashed color-mix(in srgb, var(--world-line) 24%, transparent);
  border-radius: 50%;
  will-change: transform;
}

.orbit-a {
  top: 9%;
  right: -29vw;
  animation: atmosphere-orbit 72s linear infinite;
}

.orbit-b {
  bottom: -31vw;
  left: -17vw;
  animation: atmosphere-orbit 96s linear infinite reverse;
}

.atmosphere-stars { position: absolute; inset: 0; }

.atmosphere-stars i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--world-line);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--world-light-a) 12%, transparent);
  opacity: .35;
  animation: atmosphere-float 9s ease-in-out infinite;
}

.atmosphere-stars i:nth-child(1) { top: 16%; left: 7%; animation-delay: -1s; }
.atmosphere-stars i:nth-child(2) { top: 31%; left: 89%; animation-delay: -5s; }
.atmosphere-stars i:nth-child(3) { top: 54%; left: 12%; animation-delay: -3s; }
.atmosphere-stars i:nth-child(4) { top: 74%; left: 82%; animation-delay: -7s; }
.atmosphere-stars i:nth-child(5) { top: 88%; left: 36%; animation-delay: -2s; }
.atmosphere-stars i:nth-child(6) { top: 9%; left: 66%; animation-delay: -8s; }
.atmosphere-stars i:nth-child(7) { top: 43%; left: 53%; animation-delay: -4s; }
.atmosphere-stars i:nth-child(8) { top: 66%; left: 94%; animation-delay: -6s; }

.world-beacon {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: -4px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--world-line) 19%, transparent);
}

.world-beacon > span {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--world-line);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--world-light-a) 24%, transparent);
}

.world-beacon > span::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid color-mix(in srgb, var(--world-line) 46%, transparent);
  border-radius: 50%;
  animation: beacon-pulse 2.4s ease-out infinite;
}

.world-beacon strong,
.world-beacon small { display: block; }
.world-beacon strong { font-size: .75rem; letter-spacing: .02em; }
.world-beacon small { margin-top: 3px; color: var(--muted); font-size: .65rem; line-height: 1.45; }

.compact-route li.current i {
  animation: route-pulse 2.2s ease-in-out infinite;
}

.question-card {
  background: color-mix(in srgb, var(--white) 95%, transparent);
  box-shadow: 0 22px 60px color-mix(in srgb, var(--world-line) 13%, transparent);
  backdrop-filter: blur(13px);
}

.choices label:has(input:checked) {
  animation: choice-set .28s cubic-bezier(.2,.8,.2,1) both;
}

.character-result-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.character-result-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -310px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, #dfc87832 0, transparent 70%);
  animation: result-light 8s ease-in-out infinite alternate;
}

.character-stage::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid #b7954752;
  border-radius: 17px;
  pointer-events: none;
  animation: stage-breathe 4.2s ease-in-out infinite;
}

body[data-chapter='dungeon'] .world-atmosphere { opacity: .5; mix-blend-mode: screen; }
body[data-chapter='dungeon'] .world-beacon { border-color: #e8ce7e38; }
body[data-chapter='dungeon'] .world-beacon strong { color: #f2e7c6; }
body[data-chapter='dungeon'] .world-beacon small { color: #aebdb4; }
body[data-chapter='dungeon'] .world-beacon > span { background: #e4c66c; box-shadow: 0 0 0 5px #d9bd5d26; }

@keyframes atmosphere-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(.96); }
  to { transform: translate3d(7%, 6%, 0) scale(1.08); }
}

@keyframes atmosphere-orbit { to { transform: rotate(360deg); } }

@keyframes atmosphere-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .23; }
  50% { transform: translate3d(9px, -17px, 0); opacity: .58; }
}

@keyframes beacon-pulse {
  from { transform: scale(.72); opacity: .65; }
  to { transform: scale(1.65); opacity: 0; }
}

@keyframes route-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

@keyframes choice-set {
  0% { transform: translateX(0) scale(1); }
  55% { transform: translateX(3px) scale(1.012); }
  100% { transform: translateX(0) scale(1); }
}

@keyframes result-light {
  from { transform: translate3d(-5%, 0, 0) scale(.92); opacity: .55; }
  to { transform: translate3d(5%, 6%, 0) scale(1.08); opacity: 1; }
}

@keyframes stage-breathe {
  0%, 100% { opacity: .46; transform: scale(.99); }
  50% { opacity: .9; transform: scale(1.006); }
}

.calm-mode .world-atmosphere { opacity: .2; }
.calm-mode .world-beacon > span::after { display: none; }

@media (max-width: 760px) {
  .world-atmosphere { opacity: .3; }
  body[data-screen='question'] .world-atmosphere { opacity: .46; }
  .orbit-b,
  .atmosphere-stars i:nth-child(n+6) { display: none; }
  .atmosphere-glow { width: 620px; filter: blur(35px); }
  .compact-route { padding: 16px 17px; background: color-mix(in srgb, var(--world-base) 88%, white); }
  .world-beacon { margin-bottom: 13px; padding-bottom: 13px; }
  .world-beacon small { font-size: .68rem; }
  .question-card { backdrop-filter: blur(9px); }
}

@media (prefers-reduced-motion: reduce) {
  .world-atmosphere { opacity: .2; }
  .world-beacon > span::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .discovery,
  .discovery .icon {
    animation: none;
  }
}

/* Version 7 · short, selectable professional explorations */
.module-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(210px, .5fr);
  gap: 40px;
  align-items: center;
  padding: 46px 0 34px;
}

.module-hero h1 {
  max-width: 780px;
  margin: 17px 0 22px;
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  line-height: 1.14;
  letter-spacing: -.055em;
}

.module-hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.module-hero > div:first-child > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.module-hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid #adc4b1;
  border-radius: 50%;
  color: var(--teal);
  background: #e8efdc;
}

.module-hero-mark::before,
.module-hero-mark::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px dashed #8da88f;
  border-radius: 50%;
  animation: orbit 80s linear infinite;
}

.module-hero-mark::after {
  inset: 25%;
  animation-direction: reverse;
}

.module-hero-mark .icon {
  z-index: 1;
  width: 76px;
  height: 76px;
}

.module-hero-mark span {
  position: absolute;
  bottom: 19%;
  z-index: 1;
  font-size: .63rem;
  font-weight: 750;
  line-height: 1.55;
  letter-spacing: .14em;
  text-align: center;
}

.test-library {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.test-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 17px;
  min-height: 238px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: #fffef9;
  text-align: left;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}

.test-card:hover,
.test-card:focus-visible {
  border-color: #73947b;
  box-shadow: 0 16px 34px #1c443112;
  transform: translateY(-3px);
}

.test-card.selected {
  border-color: var(--teal);
  background: #edf3e9;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.test-card.flagship {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 210px;
  color: #fff7df;
  background: #102b27 url('./cave-dungeon.webp') 72% center / cover;
  border-color: #b49a55;
}

.test-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  color: var(--teal);
  background: #e2ebdf;
}

.flagship .test-icon {
  color: #f0d47c;
  background: #ffffff10;
  border: 1px solid #d8bd6d4d;
}

.test-icon .icon {
  width: 31px;
  height: 31px;
}

.test-copy {
  display: block;
}

.test-copy small,
.test-copy strong,
.test-copy em,
.test-copy > span {
  display: block;
}

.test-copy small {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .71rem;
  font-weight: 750;
  letter-spacing: .035em;
}

.test-copy strong {
  font-size: 1.25rem;
}

.test-copy em {
  margin: 14px 0 9px;
  color: var(--teal);
  font-size: .95rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.7;
}

.test-copy > span {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.75;
}

.flagship .test-copy em {
  color: #f3d984;
}

.flagship .test-copy > span {
  max-width: 700px;
  color: #d2dbd2;
}

.test-time {
  grid-column: 2;
  align-self: end;
  color: var(--muted);
  font-size: .75rem;
}

.flagship .test-time {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  color: #e7dcc1;
}

.test-time b {
  margin-left: 8px;
  color: var(--gold);
  font-size: 1rem;
}

.age-choice {
  scroll-margin-top: 20px;
  margin: 38px 0;
  padding: 32px;
  border: 1px solid #c3b274;
  border-radius: 22px;
  background: #f5edcf;
}

.selected-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  margin: -8px 0 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d8cda8;
}

.selected-path > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: var(--teal);
}

.selected-path .icon {
  width: 27px;
  height: 27px;
}

.selected-path small,
.selected-path strong {
  display: block;
}

.selected-path small {
  color: var(--gold);
  font-size: .69rem;
}

.selected-path strong {
  margin: 4px 0;
  font-size: 1rem;
}

.selected-path p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0;
  border-block: 1px solid var(--line);
}

.principles > div {
  padding: 27px;
}

.principles > div + div {
  border-left: 1px solid var(--line);
}

.principles strong {
  font-size: .92rem;
}

.principles p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.75;
}

.module-setup .back-link {
  margin-bottom: 32px;
}

.setup-path-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--teal);
  background: #e7efe1;
}

.setup-path-icon .icon {
  width: 38px;
  height: 38px;
}

.setup-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.setup-facts > div {
  padding: 17px;
}

.setup-facts > div + div {
  border-left: 1px solid var(--line);
}

.setup-facts strong,
.setup-facts span {
  display: block;
}

.setup-facts strong {
  font-size: .85rem;
}

.setup-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .73rem;
}

.modular-journey {
  grid-template-columns: 230px minmax(0, 780px);
}

.compact-route {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f2f4ea;
}

.compact-route ol {
  display: grid;
  gap: 13px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.compact-route li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: .75rem;
}

.compact-route li i {
  width: 9px;
  height: 9px;
  border: 1px solid #9eae98;
  border-radius: 50%;
  background: transparent;
}

.compact-route li.visited i {
  background: #9eb290;
}

.compact-route li.current {
  color: var(--ink);
  font-weight: 700;
}

.compact-route li.current i {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 0 0 4px #d9e6d5;
}

.compact-route > p {
  margin: 19px 0 7px;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 700;
}

.compact-route > small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.65;
}

body[data-chapter='dungeon'] .compact-route ol {
  border: 0;
}

body[data-chapter='dungeon'] .compact-route li {
  color: #aebdb4;
}

body[data-chapter='dungeon'] .compact-route li.current {
  color: #f2e7c6;
}

body[data-chapter='dungeon'] .compact-route li.current i {
  border-color: #e4c66c;
  background: #e4c66c;
  box-shadow: 0 0 0 4px #d9bd5d26;
}

body[data-chapter='dungeon'] .compact-route > p {
  color: #e8cd76;
}

body[data-chapter='dungeon'] .compact-route > small {
  color: #aebdb4;
}

.module-report {
  margin: 30px 0;
  padding: 35px;
  border: 1px solid #b9cdbd;
  border-radius: 22px;
  background: #fffef9;
}

.module-report-head {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
}

.module-report-head > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  align-items: center;
}

.module-report-head .icon {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  color: var(--teal);
}

.module-report-head h2 {
  margin: 5px 0 0;
  font-size: 1.7rem;
}

.module-report-head > strong {
  padding: 8px 11px;
  border: 1px solid #b69956;
  border-radius: 6px;
  color: #765d28;
  background: #f4e8bb;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .73rem;
  letter-spacing: .06em;
}

.module-summary {
  max-width: 900px;
  margin: 24px 0;
  font-size: 1rem;
  line-height: 1.9;
}

.module-dimensions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.module-dimensions article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f6f7f0;
}

.module-dimensions span {
  color: var(--gold);
  font-size: .69rem;
  font-weight: 700;
}

.module-dimensions h3 {
  margin: 9px 0;
  font-size: .98rem;
}

.module-dimensions p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.7;
}

.theory-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 4px 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.theory-note strong {
  grid-row: 1 / 3;
  font-size: .8rem;
}

.theory-note p,
.theory-note small {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.7;
}

.theory-note small {
  opacity: .86;
}

.full-link {
  display: flex;
  width: 100%;
  margin-bottom: 13px;
  justify-content: center;
}

.restrained-dungeon .relic-card > .icon {
  animation: none;
}

@media (max-width: 900px) {
  .module-dimensions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .module-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .module-hero h1 {
    font-size: 2.75rem;
  }

  .module-hero-mark {
    display: none;
  }

  .test-grid,
  .principles,
  .module-dimensions,
  .setup-facts {
    grid-template-columns: 1fr;
  }

  .test-card,
  .test-card.flagship {
    grid-column: auto;
    grid-template-columns: auto 1fr;
    min-height: auto;
    padding: 20px 17px;
  }

  .test-time,
  .flagship .test-time {
    grid-column: 2;
    grid-row: auto;
    align-self: auto;
  }

  .test-copy strong {
    font-size: 1.08rem;
  }

  .test-copy em {
    margin-top: 11px;
    font-size: .9rem;
  }

  .age-choice {
    padding: 24px 18px;
  }

  .selected-path {
    grid-template-columns: auto 1fr;
  }

  .selected-path .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .principles > div {
    padding: 20px 4px;
  }

  .principles > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .setup-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .modular-journey {
    display: block;
  }

  .compact-route {
    margin-bottom: 18px;
    padding: 15px;
  }

  .compact-route ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 17px 0 9px;
  }

  .compact-route li {
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
    font-size: .65rem;
  }

  .compact-route > p,
  .compact-route > small {
    display: none;
  }

  .module-report {
    padding: 25px 19px;
    border-radius: 17px;
  }

  .module-report-head {
    display: block;
  }

  .module-report-head > strong {
    display: inline-block;
    margin-top: 18px;
  }

  .module-report-head h2 {
    font-size: 1.4rem;
  }

  .module-dimensions article {
    min-height: auto;
  }

  .theory-note {
    grid-template-columns: 1fr;
  }

  .theory-note strong {
    grid-row: auto;
    margin-bottom: 7px;
  }
}

/* Six-world result system */
.route-map li {
  min-height: 72px;
}

.route-map li:not(:last-child)::after {
  top: 58px;
  height: 28px;
}

.world-report {
  margin: 36px 0 14px;
  padding: 34px;
  border: 1px solid #bed0c4;
  border-radius: 22px;
  background: #123f3b;
  color: #f9f6e9;
  box-shadow: 0 22px 50px #1437331a;
}

.world-report-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.world-report-head > div > .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  color: #f0d786;
}

.world-report .eyebrow,
.world-card > span {
  color: #e8cc78;
}

.world-report h2 {
  margin: 8px 0 0;
  color: #fffdf4;
}

.world-report-head > p {
  max-width: 450px;
  margin: 0;
  color: #c9d9d2;
  font-size: .84rem;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.world-card {
  position: relative;
  grid-column: span 2;
  min-height: 270px;
  padding: 22px;
  border: 1px solid #ffffff26;
  border-radius: 16px;
  background: #ffffff0b;
  overflow: hidden;
}

.world-card.pattern,
.world-card.beacon {
  grid-column: span 3;
}

.world-card.difficulty {
  grid-column: span 6;
  min-height: auto;
}

.world-card::after {
  content: '';
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border: 1px solid #ffffff13;
  border-radius: 50%;
}

.world-card > span {
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .05em;
}

.world-icon {
  margin: 18px 0 14px;
}

.world-icon .icon {
  width: 35px;
  height: 35px;
  color: #f1dda0;
}

.world-card h3 {
  margin-bottom: 12px;
  color: #fffdf4;
  font-size: 1.15rem;
}

.world-card p {
  margin-bottom: 14px;
  color: #dce6df;
  font-size: .84rem;
  line-height: 1.75;
}

.world-card small {
  display: block;
  color: #9ebbb2;
  font-size: .73rem;
  line-height: 1.7;
}

.world-card > strong {
  display: block;
  margin: 14px 0 4px;
  color: #e8cc78;
  font-size: .72rem;
}

.world-card.beacon {
  background: #443b25;
}

.world-card.pattern {
  background: #25443f;
}

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

.facet-grid span {
  padding: 9px;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  background: #061d1b2e;
}

.facet-grid span:last-child {
  grid-column: 1 / -1;
}

.facet-grid small,
.facet-grid b {
  display: block;
}

.facet-grid b {
  margin-top: 3px;
  color: #fff8df;
  font-size: .76rem;
}

.pattern-cycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 16px 0;
}

.pattern-cycle div {
  position: relative;
  min-height: 96px;
  padding: 10px;
  border: 1px solid #b9d4d352;
  border-radius: 9px;
  background: #061d1b38;
}

.pattern-cycle div:not(:last-child)::after {
  content: '›';
  position: absolute;
  z-index: 2;
  right: -8px;
  top: 36%;
  color: #e8cc78;
  font-size: 1.1rem;
}

.pattern-cycle b {
  display: block;
  margin-top: 7px;
  color: #fffdf4;
  font-size: .72rem;
  line-height: 1.55;
}

.pattern-loop {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 15px 0;
  color: #dfcf9b;
  font-size: .72rem;
}

.pattern-loop b {
  padding: 5px 7px;
  border: 1px solid #eadb9b42;
  border-radius: 6px;
}

.pattern-loop i {
  font-style: normal;
  color: #9ebbb2;
}

.world-card blockquote {
  margin: 16px 0;
  padding: 13px 15px;
  border-left: 3px solid #e8cc78;
  background: #061d1b4f;
  color: #fff8db;
  font-size: .86rem;
  line-height: 1.75;
}

.type-seal {
  border-color: #9b793d !important;
  background: #f1e4b5;
  color: #624b1f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .04em;
}

.action-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8faf3;
  overflow: hidden;
}

.action-ladder > div {
  position: relative;
  padding: 23px 24px;
}

.action-ladder > div + div {
  border-left: 1px solid var(--line);
}

.action-ladder > div:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -9px;
  top: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.action-ladder span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.action-ladder p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: .84rem;
  line-height: 1.75;
}

.assessment-guide {
  margin: 18px 0 36px;
  padding: 31px 34px;
  border: 1px solid #d6c58f;
  border-radius: 20px;
  background: #fbf4da;
}

.assessment-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.assessment-head > .icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.assessment-head h2 {
  margin: 7px 0 22px;
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.assessment-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  padding: 17px;
  border: 1px solid #e1d5ad;
  border-radius: 11px;
  background: #fffef9b8;
}

.assessment-grid span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 750;
}

.assessment-grid p {
  margin: 0;
  font-size: .83rem;
  line-height: 1.7;
}

.assessment-guide > .fine {
  margin: 18px 0 0;
}

@media (min-width: 761px) {
  body[data-screen='home'] .experience {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

.application {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 42px;
  margin: 28px 0 38px;
  padding: 38px;
  border: 1px solid #c9b36f;
  border-radius: 22px;
  background: #f7f1db;
}

.application-copy h2 {
  margin: 12px 0 17px;
  font-size: 1.65rem;
}

.application-copy > p {
  color: var(--muted);
  font-size: .92rem;
}

.application-route {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: #fffdf3a6;
}

.application-route span {
  color: var(--gold);
  font-size: .76rem;
}

.application-route strong {
  font-size: 1rem;
}

.application-route small {
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.65;
}

.application-form,
.application-form fieldset {
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.application-form label,
.application-form legend {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 650;
}

.application-form input[type='text'],
.application-form input[type='tel'],
.application-form textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #c9d4c8;
  border-radius: 9px;
  background: #fffef9;
  color: var(--ink);
}

.application-form textarea {
  min-height: 106px;
  resize: vertical;
  font: inherit;
  line-height: 1.65;
}

.textarea-label {
  display: block;
}

.privacy-nudge {
  margin: -3px 0 2px;
  padding: 10px 12px;
  border-left: 3px solid #c2a14d;
  color: var(--muted);
  background: #fff9e7;
  font-size: .72rem;
  line-height: 1.65;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.request-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.request-options label {
  position: relative;
}

.request-options input {
  position: absolute;
  opacity: 0;
}

.request-options span {
  display: grid;
  place-items: center;
  min-height: 49px;
  padding: 9px;
  border: 1px solid #c9d4c8;
  border-radius: 9px;
  background: #fffef9;
  text-align: center;
  font-weight: 550;
}

.request-options input:checked + span {
  border-color: var(--teal);
  background: #e7efe7;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.request-options input:focus-visible + span {
  outline: 3px solid #ac7437;
  outline-offset: 3px;
}

.contact-options label {
  position: relative;
}

.contact-options input {
  position: absolute;
  opacity: 0;
}

.contact-options span {
  display: grid;
  place-items: center;
  min-height: 47px;
  padding: 9px;
  border: 1px solid #c9d4c8;
  border-radius: 9px;
  background: #fffef9;
  text-align: center;
  font-weight: 500;
}

.contact-options input:checked + span {
  border-color: var(--teal);
  background: #e7efe7;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.contact-options input:focus-visible + span {
  outline: 3px solid #ac7437;
  outline-offset: 3px;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d4d8cd;
  border-radius: 9px;
  background: #fffef9b8;
  line-height: 1.65;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
  flex: 0 0 auto;
}

.consent-line span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 450;
}

.consent-line strong {
  color: var(--teal);
}

.honey {
  position: absolute;
  left: -9999px;
}

.application-form .primary {
  width: 100%;
}

.privacy-details {
  padding: 0 3px;
  color: var(--muted);
  font-size: .73rem;
}

.privacy-details summary {
  color: var(--teal);
  cursor: pointer;
  font-weight: 700;
}

.privacy-details p {
  margin: 9px 0 0;
  line-height: 1.75;
}

.no-store-contact {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed #aebda9;
  border-radius: 13px;
  background: #fffef9a8;
}

.no-store-contact > span {
  color: #8b6828;
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .05em;
}

.no-store-contact h3 {
  margin: 7px 0;
  font-size: .95rem;
}

.no-store-contact p {
  margin: 0;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.65;
}

.no-store-contact > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.no-store-contact a {
  min-height: 42px;
  font-size: .76rem;
}

.application-success {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid #87a482;
  border-radius: 14px;
  background: #eef4e9;
}

.application-success > .icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.application-success h3,
.application-success p {
  margin: 0;
}

.admin-link {
  color: var(--muted);
  font-size: .72rem;
  text-decoration: none;
  opacity: .72;
}

@media (max-width: 900px) {
  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-card,
  .world-card.pattern,
  .world-card.beacon,
  .world-card.difficulty {
    grid-column: span 1;
  }

  .action-ladder,
  .assessment-grid {
    grid-template-columns: 1fr;
  }

  .action-ladder > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .action-ladder > div:not(:last-child)::after {
    top: auto;
    right: 22px;
    bottom: -9px;
    rotate: 90deg;
  }

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

@media (max-width: 760px) {
  .route-map {
    gap: 8px;
    overflow-x: auto;
    padding: 5px 4px 14px;
    scrollbar-width: thin;
  }

  .route-map li {
    flex: 0 0 72px;
    min-width: 72px;
  }

  .world-report,
  .application,
  .assessment-guide {
    padding: 24px 20px;
    border-radius: 17px;
  }

  .world-report-head {
    display: block;
  }

  .world-report-head > p {
    margin-top: 14px;
  }

  .world-grid,
  .form-row,
  .contact-options,
  .request-options,
  .lens-intro,
  .lens-grid {
    grid-template-columns: 1fr;
  }

  .lens-card,
  .lens-card:first-child,
  .lens-card:nth-child(2) {
    grid-column: auto;
    min-height: auto;
  }

  .world-card {
    min-height: auto;
  }

  .contact-options span {
    justify-content: start;
    min-height: 44px;
  }

  .pattern-loop {
    flex-wrap: wrap;
  }

  .pattern-cycle {
    grid-template-columns: 1fr 1fr;
  }

  .pattern-cycle div:not(:last-child)::after {
    display: none;
  }

  .assessment-head h2 {
    font-size: 1.35rem;
  }
}

/* Unconscious cave dungeon */
body[data-chapter='dungeon'] {
  min-height: 100vh;
  background: #061618 url('./cave-dungeon.webp') 62% center / cover fixed no-repeat;
  color: #f8f3df;
}

body[data-chapter='dungeon']::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #061719e8;
}

body[data-chapter='dungeon'] header,
body[data-chapter='dungeon'] footer {
  border-color: #e8ce7e38;
  color: #f4ead1;
}

body[data-chapter='dungeon'] .header-controls button,
body[data-chapter='dungeon'] .text-button {
  border-color: #e8ce7e4f;
  color: #e9dcc1;
}

body[data-chapter='dungeon'] .route-panel {
  padding: 20px;
  border: 1px solid #d8bd6d3d;
  border-radius: 18px;
  background: #061719b8;
  backdrop-filter: blur(10px);
}

body[data-chapter='dungeon'] .route-heading span,
body[data-chapter='dungeon'] .route-heading strong,
body[data-chapter='dungeon'] .route-map li small,
body[data-chapter='dungeon'] .route-map li div > span,
body[data-chapter='dungeon'] .pocket .fine {
  color: #c8cbb8;
}

body[data-chapter='dungeon'] .route-heading > .icon,
body[data-chapter='dungeon'] .route-node {
  border-color: #d5bd725c;
  background: #132c2b;
  color: #e6cc7d;
}

body[data-chapter='dungeon'] .route-map .current .route-node {
  background: #b78837;
  color: #08191a;
  box-shadow: 0 0 0 6px #ddc16d29, 0 0 34px #f0ca5c50;
}

body[data-chapter='dungeon'] .route-map .visited .route-node {
  border-color: #6f9386;
  background: #173b35;
  color: #d9e4d4;
}

body[data-chapter='dungeon'] progress,
body[data-chapter='dungeon'] progress::-webkit-progress-bar {
  background: #d7d9be24;
}

body[data-chapter='dungeon'] progress::-webkit-progress-value,
body[data-chapter='dungeon'] progress::-moz-progress-bar {
  background: #d7b85f;
}

body[data-chapter='dungeon'] .pocket {
  border-color: #e8ce7e38;
}

body[data-chapter='dungeon'] .pocket .eyebrow,
body[data-chapter='dungeon'] .pocket .icon,
body[data-chapter='dungeon'] .chapter-label {
  color: #ebcf77;
}

body[data-chapter='dungeon'] .question-card {
  border-color: #e1c56d70;
  background: #071b1ddb;
  color: #fbf5df;
  box-shadow: 0 28px 80px #0008, inset 0 1px #fff1;
  backdrop-filter: blur(14px);
}

body[data-chapter='dungeon'] .journey-top,
body[data-chapter='dungeon'] .question-why {
  border-color: #e8ce7e38;
  color: #c8cbb8;
}

body[data-chapter='dungeon'] .question-meta,
body[data-chapter='dungeon'] .question-hint,
body[data-chapter='dungeon'] .question-card .fine,
body[data-chapter='dungeon'] .question-why summary,
body[data-chapter='dungeon'] .question-why p {
  color: #cfd2bf;
}

body[data-chapter='dungeon'] .choices label {
  border-color: #d9c27546;
  background: #0a2425d6;
  color: #f7f1dc;
}

body[data-chapter='dungeon'] .choices label:hover {
  border-color: #e8ce7e;
  background: #173433e8;
}

body[data-chapter='dungeon'] .choices label:has(input:checked) {
  border-color: #e8c861;
  background: #284737;
  box-shadow: inset 0 0 0 1px #e8c861, 0 0 24px #d8b94f26;
}

body[data-chapter='dungeon'] .choice-code,
body[data-chapter='dungeon'] .choice-check,
body[data-chapter='dungeon'] .choice-feedback {
  color: #e6c96f;
}

body[data-chapter='dungeon'] .primary {
  border-color: #e0c16a;
  background: #b28130;
  color: #071819;
  box-shadow: 0 5px 0 #644617;
}

.dungeon-report {
  margin: 36px 0 24px;
  padding: 42px;
  border: 1px solid #d7b85f70;
  border-radius: 24px;
  background: #082021 url('./cave-dungeon.webp') 68% center / cover no-repeat;
  color: #f8f2dd;
  box-shadow: 0 24px 65px #04111142;
  overflow: hidden;
}

.dungeon-hero {
  max-width: 780px;
}

.dungeon-hero .eyebrow,
.dungeon-findings .eyebrow,
.relic-card > span,
.meme-card > span {
  color: #e6c96f;
}

.dungeon-hero > p:first-of-type {
  margin: 24px 0 7px;
  color: #aebfb5;
  font-size: .78rem;
}

.dungeon-hero h2 {
  max-width: 760px;
  margin: 7px 0 18px;
  color: #fff9e8;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.dungeon-code {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #e1c46b73;
  border-radius: 5px;
  background: #0004;
  color: #f2d985;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem;
  letter-spacing: .08em;
}

.dungeon-hero > p:last-child {
  margin: 13px 0 0;
  color: #c8d1c7;
}

.dungeon-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 35px 0 24px;
}

.dungeon-path article {
  position: relative;
  min-height: 250px;
  padding: 20px 16px;
  border: 1px solid #e1c46b3b;
  border-radius: 14px;
  background: #051719ae;
  backdrop-filter: blur(8px);
}

.dungeon-path article:not(:last-child)::after {
  content: '›';
  position: absolute;
  z-index: 2;
  right: -9px;
  top: 48%;
  color: #e8ca70;
  font-size: 1.2rem;
}

.dungeon-path article > span,
.dungeon-path article > small {
  display: block;
  color: #b9c5bc;
  font-size: .68rem;
  letter-spacing: .04em;
}

.dungeon-path article > div {
  margin: 15px 0;
  color: #e7cb74;
}

.dungeon-path article .icon {
  width: 32px;
  height: 32px;
}

.dungeon-path h3 {
  min-height: 50px;
  margin: 8px 0 10px;
  color: #fff7df;
  font-size: .98rem;
}

.dungeon-path p {
  margin: 0;
  color: #cad2c8;
  font-size: .76rem;
  line-height: 1.75;
}

.dungeon-findings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dungeon-findings > div {
  padding: 23px;
  border: 1px solid #ffffff20;
  border-radius: 15px;
  background: #041416b8;
}

.dungeon-findings h3 {
  margin: 9px 0 8px;
  color: #fff8e2;
}

.dungeon-findings p {
  margin: 0;
  color: #cbd4c9;
  font-size: .84rem;
}

.relic-card {
  position: relative;
  background: #2f2a1a !important;
}

.relic-card > .icon {
  position: absolute;
  right: 19px;
  top: 19px;
  width: 45px;
  height: 45px;
  color: #f0d77e;
  filter: drop-shadow(0 0 12px #e8c65c80);
  animation: relic-glow 2.6s ease-in-out infinite;
}

.shadow-question {
  margin: 20px 0;
  padding: 19px 22px;
  border-left: 3px solid #dfc160;
  background: #071719cc;
  color: #f6e5ad;
  font-size: 1rem;
  line-height: 1.8;
}

.meme-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 22px;
  align-items: center;
  padding: 23px;
  border: 1px solid #d8bb6245;
  border-radius: 15px;
  background: #263b32;
}

.meme-card > span,
.meme-card > p,
.meme-card > small {
  grid-column: 1;
}

.meme-card p {
  margin: 0;
  color: #fff8df;
  font-weight: 650;
}

.meme-card .secondary {
  grid-column: 2;
  grid-row: 1 / 3;
  border-color: #e6ce7f;
  background: #f4e4a7;
  color: #17302d;
}

.meme-card small {
  min-height: 18px;
  color: #d1d9cb;
}

.dungeon-report > .fine {
  margin: 18px 0 0;
  color: #aebcb3;
}

@keyframes relic-glow {
  0%, 100% { transform: scale(.96) rotate(-4deg); opacity: .82; }
  50% { transform: scale(1.08) rotate(4deg); opacity: 1; }
}

@media (max-width: 960px) {
  .dungeon-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dungeon-path article:last-child {
    grid-column: 1 / -1;
  }

  .dungeon-path article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body[data-chapter='dungeon'] {
    background-position: 72% center;
  }

  body[data-chapter='dungeon']::before {
    background: #061719dc;
  }

  body[data-chapter='dungeon'] .route-panel {
    padding: 14px;
  }

  .dungeon-report {
    padding: 27px 20px;
    border-radius: 18px;
    background-position: 72% center;
  }

  .dungeon-path,
  .dungeon-findings,
  .meme-card {
    grid-template-columns: 1fr;
  }

  .dungeon-path article,
  .dungeon-path article:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .dungeon-path h3 {
    min-height: auto;
  }

  .meme-card .secondary,
  .meme-card > span,
  .meme-card > p,
  .meme-card > small {
    grid-column: 1;
  }

  .meme-card .secondary {
    grid-row: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-chapter='dungeon'] {
    background-attachment: scroll;
  }

  .relic-card > .icon {
    animation: none;
  }
}

/* Version 8 · character-led, short and professional */
.discovery-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: 42px 0 28px;
  border-bottom: 1px solid var(--line);
}

.discovery-intro h1 {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: clamp(2.55rem, 5.4vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -.06em;
}

.discovery-intro h1 em {
  color: var(--teal);
  font-style: normal;
}

.discovery-intro > div:last-child > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.test-library {
  padding: 26px 0 14px;
  border-top: 0;
}

.test-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 0;
}

.test-card,
.test-card.flagship {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 13px 17px;
  grid-column: auto;
  min-height: 252px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid #d4ddd0;
  border-radius: 20px;
  color: var(--ink);
  background: #fffef9;
}

.test-card.flagship {
  grid-column: span 2;
  grid-template-columns: 150px minmax(0, 1fr);
  background: #edf2e8;
  border-color: #9eb296;
}

.test-card::after {
  content: '';
  position: absolute;
  right: 17px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3b25a;
  opacity: .75;
}

.test-card:hover,
.test-card:focus-visible {
  border-color: #668d78;
  box-shadow: 0 15px 36px #244c4514;
  transform: translateY(-3px);
}

.test-card.selected {
  color: var(--ink);
  border-color: var(--teal);
  background: #eef4ea;
}

.character-crop {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fbf7ea;
  isolation: isolate;
}

.character-crop img {
  position: absolute;
  display: block;
  width: 200%;
  max-width: none;
  height: 200%;
  max-height: none;
  object-fit: fill;
}

.character-crop.tl img { left: 0; top: 0; }
.character-crop.tr img { left: -100%; top: 0; }
.character-crop.bl img { left: 0; top: -100%; }
.character-crop.br img { left: -100%; top: -100%; }

.test-character {
  grid-row: 1 / 3;
  align-self: start;
  width: 96px;
  border: 1px solid #dce3d7;
  box-shadow: inset 0 0 0 7px #ffffffa8;
}

.mystery-mark {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #cad7c8;
  border-radius: 28px;
  color: var(--teal);
  background:
    radial-gradient(circle at 72% 24%, #e3c86e 0 3px, transparent 4px),
    radial-gradient(circle at 25% 76%, #87a98a 0 2px, transparent 3px),
    linear-gradient(145deg, #f8f5e7, #e4eee1);
  box-shadow: inset 0 0 0 6px #ffffff78;
}

.mystery-mark::before {
  content: '';
  position: absolute;
  inset: 13%;
  border: 1px dashed #7d9a7c80;
  border-radius: 22px;
  rotate: -8deg;
}

.mystery-mark .icon {
  width: 42%;
  height: 42%;
  opacity: .88;
}

.mystery-mark b {
  position: absolute;
  right: 10%;
  top: 8%;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff8df;
  background: #99752f;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.mystery-mark small {
  position: absolute;
  bottom: 10%;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: .72;
}

.test-mystery {
  grid-row: 1 / 3;
  align-self: start;
  width: 96px;
}

.flagship .test-mystery {
  width: 150px;
}

.flagship .test-character {
  width: 150px;
}

.test-copy {
  min-width: 0;
}

.test-copy small,
.flagship .test-copy small {
  color: #8b6828;
}

.test-copy strong {
  padding-right: 15px;
  font-size: 1.16rem;
  line-height: 1.38;
}

.test-copy em,
.flagship .test-copy em {
  margin: 10px 0 7px;
  color: var(--teal);
  font-size: .86rem;
  line-height: 1.58;
}

.test-copy > span,
.flagship .test-copy > span {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.62;
}

.test-time,
.flagship .test-time {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  color: #5d756a;
}

.compact-principles {
  margin-top: 24px;
}

.compact-principles > div {
  padding: 21px 24px;
}

.question-card {
  animation: story-page-in .36s ease-out both;
}

@keyframes story-page-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.character-result-hero {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin: 20px 0 26px;
  padding: clamp(24px, 4.5vw, 54px);
  border-radius: 28px;
  color: #f6f1df;
  background: #123b36;
  box-shadow: 0 25px 60px #0f342628;
}

.character-stage {
  position: relative;
  padding: 14px 14px 18px;
  border: 1px solid #e2cb8170;
  border-radius: 23px;
  color: #183e38;
  background: #f9f4e4;
  text-align: center;
}

.result-character {
  width: 100%;
  border-radius: 17px;
  animation: character-reveal .7s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes character-reveal {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.character-stage > span {
  display: block;
  margin-top: 13px;
  color: #8b692a;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.character-stage > small {
  display: block;
  margin-top: 3px;
  font-weight: 750;
}

.character-result-copy .eyebrow {
  color: #e0c66f;
}

.character-result-copy .place {
  margin: 14px 0 4px;
  color: #b8cec2;
  font-size: .76rem;
  font-weight: 700;
}

.character-result-copy h1 {
  margin: 0 0 14px;
  color: #fffaf0;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.character-result-copy h1 small {
  display: block;
  margin-bottom: 8px;
  color: #d7e1da;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0;
}

.character-tagline {
  margin: 0 0 18px;
  color: #edd995;
  font-weight: 700;
}

.character-result-copy .story-text {
  color: #d6e2da;
}

.character-result-copy .result-tags span {
  border-color: #ffffff28;
  color: #eff5ee;
  background: #ffffff0d;
}

.character-result-copy .fine {
  color: #b8c9bf;
}

.character-result-copy .type-seal {
  color: #f2db8a !important;
}

.module-report {
  margin-top: 16px;
}

.counseling-lenses {
  margin: 28px 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid #c6d3c3;
  border-radius: 24px;
  background: #f5f4e9;
}

.lens-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: 12px 54px;
  align-items: end;
  margin-bottom: 26px;
}

.lens-intro .eyebrow {
  grid-column: 1 / -1;
}

.lens-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -.045em;
}

.lens-intro p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
}

.lens-card {
  grid-column: span 2;
  min-height: 285px;
  padding: 21px;
  border: 1px solid #d5ddcf;
  border-radius: 16px;
  background: #fffef9;
}

.lens-card:first-child,
.lens-card:nth-child(2) {
  grid-column: span 3;
  min-height: 255px;
}

.lens-card > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.lens-card > div span {
  color: #9b772f;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.lens-card > div small {
  color: var(--teal);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.lens-card h3 {
  margin: 16px 0 11px;
  font-size: 1.08rem;
}

.lens-card p,
.lens-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.75;
}

.lens-card blockquote {
  margin-top: 17px;
  padding: 12px 0 0 13px;
  border-top: 1px solid #e3e6dc;
  border-left: 2px solid #c5a24f;
  color: var(--ink);
}

.counseling-lenses > .fine {
  margin: 18px 0 0;
}

.next-exploration {
  margin: 30px 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #bdcdbb;
  border-radius: 24px;
  background: #eef3e8;
}

.next-exploration-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.next-exploration-head h2 {
  margin: 9px 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -.04em;
}

.next-exploration-head p {
  margin: 0;
  color: var(--muted);
}

.collection-count {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 17px;
  border-radius: 14px;
  color: #f8f4e7;
  background: var(--teal);
}

.collection-count strong {
  font-family: Georgia, serif;
  font-size: 2.1rem;
}

.collection-count span {
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.45;
}

.next-test-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.next-test-grid button {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid #ced9ca;
  border-radius: 17px;
  color: var(--ink);
  background: #fffef9;
  text-align: left;
  transition: transform .18s, border-color .18s;
}

.next-test-grid button:hover,
.next-test-grid button:focus-visible {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.next-character {
  width: 74px;
  border: 1px solid #dce2d7;
}

.next-mystery {
  width: 74px;
  border-radius: 20px;
}

.next-mystery b {
  width: 22px;
  height: 22px;
  font-size: .82rem;
}

.next-test-grid small,
.next-test-grid strong,
.next-test-grid em {
  display: block;
}

.next-test-grid small {
  margin-bottom: 3px;
  color: #8c692a;
  font-size: .62rem;
}

.next-test-grid strong {
  font-size: .91rem;
}

.next-test-grid em {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  font-style: normal;
  line-height: 1.5;
}

.next-test-grid b {
  color: var(--gold);
}

@media (max-width: 980px) {
  .test-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .test-card.flagship {
    grid-column: 1 / -1;
  }

  .character-result-hero {
    grid-template-columns: minmax(230px, .7fr) 1.3fr;
  }
}

@media (max-width: 720px) {
  .discovery-intro {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 27px 0 22px;
  }

  .discovery-intro h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .test-grid,
  .next-test-grid {
    grid-template-columns: 1fr;
  }

  .test-card,
  .test-card.flagship {
    grid-column: auto;
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 220px;
  }

  .test-character,
  .flagship .test-character,
  .test-mystery,
  .flagship .test-mystery {
    width: 88px;
  }

  .character-result-hero {
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 20px;
    border-radius: 22px;
  }

  .character-stage {
    max-width: 380px;
    margin-inline: auto;
  }

  .character-result-copy h1 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }

  .next-exploration-head {
    grid-template-columns: 1fr;
  }

  .collection-count {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .question-card,
  .result-character {
    animation: none;
  }
}

/* Clear reading order and narrow-screen resilience. */
.neuro-benefit { background: #edf5ec; border: 1px solid #ccdfcd; border-radius: 18px; padding: 22px; margin: 22px 0; }
.neuro-benefit > span { color: #36594b; font-weight: 700; font-size: .85rem; }
.neuro-benefit h3 { font-size: 1.35rem; line-height: 1.5; margin: 10px 0; }
.neuro-benefit a { text-decoration: underline; text-underline-offset: 3px; }
.neuro-benefit .fine { margin-bottom: 0; }
.result-shortcuts { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 24px 0; }
#application, #my-reasons { scroll-margin-top: 32px; }
.application-form small { font-weight: 400; color: #5b6f68; }
.result-layout > *, .application > *, .module-report-head > *, .state-board > * { min-width: 0; }
.module-report-head strong, .type-seal { overflow-wrap: anywhere; }
.detail-panel[open] > section { margin-top: 20px; }
@media (max-width: 600px) {
 .result-shortcuts { display: grid; grid-template-columns: minmax(0,1fr); }
 .result-shortcuts a { text-align: center; justify-content: center; }
 .neuro-benefit { padding: 18px; }
 .neuro-title { flex-wrap: wrap; }
 .module-report-head { flex-wrap: wrap; }
 .application-form input, .application-form textarea { font-size: 16px; min-width: 0; }
 .primary, .secondary, .text-button { min-height: 44px; white-space: normal; }
 .character-result-copy h1 { overflow-wrap: anywhere; }
 .result-tags { flex-wrap: wrap; }
}

@media (max-width: 600px) {
 .next-exploration-head > div, .lens-intro, .assessment-head > div { min-width: 0; }
 .eyebrow { white-space: normal; overflow-wrap: anywhere; }
 .detail-panel p { overflow-wrap: anywhere; }
}

.character-voice { margin: 18px 0; padding: 0 0 0 16px; border-left: 2px solid #d3b76c; color: #efe0a8; font-size: 1.3rem; font-weight: 600; line-height: 1.7; }
.character-voice span { display: block; color: #bed4c9; font-size: .875rem; font-weight: 400; margin-bottom: 6px; }
.program-match { margin: 24px 0; border-left: 3px solid #b59348; padding-left: 16px; }
.program-match p { font-size: 1rem; }
.first-visit { margin: 20px 0; }
.first-visit summary { cursor: pointer; font-weight: 700; padding-block: 12px; }
.first-visit li { margin: 12px 0; padding-left: 4px; line-height: 1.7; }
.first-visit ol { padding-left: 22px; }
.topic-picker { border-top: 1px solid #bdcbbf; padding: 32px 0 14px; margin-top: 28px; }
.topic-picker h2 { font-size: clamp(1.5rem,3vw,2rem); line-height: 1.5; margin: 10px 0; }
.topic-picker > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 20px; }
.topic-picker button { text-align: left; justify-content: space-between; min-height: 68px; line-height: 1.6; }
.topic-picker p { line-height: 1.8; }
.next-test-grid small { display:block; }
@media (max-width: 600px) { .topic-picker > div { grid-template-columns: minmax(0,1fr); } .character-voice { font-size: 1.1rem; } }

.inner-discovery { margin: 26px 0; padding: clamp(22px,4vw,40px); border: 1px solid #baaa75; border-radius: 24px; background: #f8f6eb; }
.discovery-heading h2 { font-size: clamp(1.65rem,3vw,2.3rem); line-height: 1.45; margin: 12px 0; }
.discovery-heading p { max-width: 640px; line-height: 1.8; }
.discovery-doors { display: grid; gap: 12px; margin: 24px 0; }
.discovery-door { border: 1px solid #ced8cb; border-radius: 16px; background: #fffef8; overflow: hidden; }
.discovery-door summary { display: grid; grid-template-columns: 38px minmax(0,1fr) 24px; gap: 15px; align-items: center; padding: 22px; cursor: pointer; list-style: none; }
.discovery-door summary::-webkit-details-marker { display: none; }
.door-number { font-size: .875rem; color: #806725; letter-spacing: .05em; }
.discovery-door small { display: block; color: #537062; font-size: .875rem; margin-bottom: 6px; word-break: keep-all; overflow-wrap: anywhere; }
.discovery-door strong { display: block; font-size: 1.18rem; line-height: 1.65; word-break: keep-all; overflow-wrap: anywhere; }
.door-toggle { font-size: 1.5rem; color: #355b4d; transition: transform .25s; }
.discovery-door[open] .door-toggle { transform: rotate(45deg); }
.discovery-door[open] { border-color: #8ba68e; }
.door-content { padding: 0 22px 22px 75px; animation: inner-reveal .35s ease-out; }
.door-content p, .door-content blockquote { line-height: 1.85; }
.door-content blockquote { margin: 18px 0 0; padding: 14px 18px; background: #edf3e9; border-left: 3px solid #7d9d83; border-radius: 0 10px 10px 0; }
.discovery-note { font-size: .875rem; line-height: 1.8; color: #5e7066; margin-bottom: 0; }
@keyframes inner-reveal { from { opacity: .3; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width:600px){ .discovery-door summary { padding:18px 14px; gap:10px; grid-template-columns:25px minmax(0,1fr) 20px; } .door-content { padding:0 18px 18px; } .discovery-door strong { font-size:1.05rem; } }
.calm-mode .door-content { animation:none; }
.calm-mode .door-toggle { transition:none; }
@media(prefers-reduced-motion:reduce){ .door-content { animation:none; } .door-toggle { transition:none; } }
/* Readable summaries and intentional exploration, without extra rewards. */
.result-shortcuts { display:flex; flex-wrap:wrap; align-items:center; gap:14px; }
.result-shortcuts a { min-height:44px; display:inline-flex; align-items:center; }
.character-voice { text-wrap:pretty; }
.state-board p, .action-ladder p, .online-service-grid p { font-size:1rem; line-height:1.8; }
.application input:not([type=checkbox]):not([type=radio]), .application textarea, .application select { font-size:16px; }
.module-card, .next-test-grid button, .choices label, .primary, .secondary { min-height:44px; }

.home-share {
  min-height: 52px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.home-share button {
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid #9db39a;
  border-radius: 999px;
  background: #fffef9;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 700;
}

.home-share button:hover {
  border-color: var(--teal);
  background: #edf3e8;
}

.home-share span {
  min-height: 20px;
  color: var(--gold);
  font-size: .76rem;
}

@media (max-width: 760px) {
  .home-share {
    display: grid;
    margin-top: -3px;
  }

  .home-share button {
    width: 100%;
  }
}
button:focus-visible, a:focus-visible, summary:focus-visible { outline:3px solid #946726; outline-offset:4px; }
@media(max-width:600px) { .result-shortcuts { align-items:stretch; flex-direction:column; } .result-shortcuts .primary { justify-content:center; } .character-result-copy h1 { overflow-wrap:anywhere; } }
/* Nationwide online consultation routes */
.online-connect{margin:34px 0;padding:34px;border:1px solid rgba(25,76,68,.16);border-radius:28px;background:linear-gradient(135deg,#eef7f3 0%,#fffaf0 100%)}
.online-connect-head{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:end;margin-bottom:22px}.online-connect-head h2{margin:.35rem 0 0;font-size:clamp(1.65rem,3vw,2.45rem);line-height:1.15}.online-connect-head>p{margin:0;color:var(--muted);line-height:1.7}
.online-service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.online-service-grid article{display:flex;flex-direction:column;min-height:250px;padding:22px;border:1px solid rgba(25,76,68,.14);border-radius:22px;background:rgba(255,255,255,.88)}.online-service-grid article.recommended{border-color:#b48a3c;box-shadow:0 14px 35px rgba(70,91,76,.1)}.online-service-grid article>div{display:flex;justify-content:space-between;gap:10px;align-items:center}.online-service-grid article>div span{color:#8a632c;font-size:.72rem;font-weight:800;letter-spacing:.08em}.online-service-grid article>div small{color:var(--muted)}.online-service-grid h3{margin:26px 0 10px;font-size:1.2rem}.online-service-grid p{margin:0 0 20px;color:var(--muted);line-height:1.65}.online-service-grid button{margin-top:auto;width:100%}.delivery-options{grid-template-columns:repeat(3,1fr)}
@media(max-width:820px){.online-connect{padding:24px 18px}.online-connect-head{grid-template-columns:1fr;gap:12px}.online-service-grid{grid-template-columns:1fr}.online-service-grid article{min-height:0}.delivery-options{grid-template-columns:1fr}}


/* Rich, answer-based participant portrait */
.self-portrait {
  margin: 34px 0;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid #c7d4c0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, #eadfac80 0 90px, transparent 91px),
    linear-gradient(145deg, #fffef8, #f0f4e9);
  box-shadow: 0 16px 42px #214f4310;
}
.self-portrait-head {
  max-width: 760px;
  margin-bottom: 26px;
}
.self-portrait-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -.035em;
}
.self-portrait-head > p {
  color: var(--muted);
  line-height: 1.8;
}
.self-portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid #cbd6c3;
}
.self-portrait-grid article {
  padding: 24px 22px 26px;
}
.self-portrait-grid article + article {
  border-left: 1px solid #cbd6c3;
}
.self-portrait-grid span,
.self-portrait blockquote span {
  display: block;
  margin-bottom: 11px;
  color: #8a672b;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .025em;
}
.self-portrait-grid p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.9;
}
.self-portrait blockquote {
  margin: 25px 0 14px;
  padding: 19px 22px;
  border-left: 4px solid var(--teal);
  background: #e5eee0;
  color: #244d44;
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.8;
}
.self-portrait blockquote span {
  margin-bottom: 5px;
}
.self-portrait > .fine {
  margin: 0;
}
@media (max-width: 760px) {
  .self-portrait {
    margin: 27px 0;
    padding: 24px 20px;
    border-radius: 17px;
  }
  .self-portrait-grid {
    grid-template-columns: 1fr;
  }
  .self-portrait-grid article {
    padding: 20px 3px;
  }
  .self-portrait-grid article + article {
    border-left: 0;
    border-top: 1px solid #cbd6c3;
  }
  .self-portrait-grid p {
    font-size: .96rem;
  }
}
