:root {
  color-scheme: light;
  --bg: #f4f1e8;
  --bg-elevated: rgba(255, 253, 247, 0.88);
  --surface: #fffdf7;
  --surface-strong: #ffffff;
  --ink: #17312c;
  --ink-soft: #5c6e68;
  --line: rgba(23, 49, 44, 0.13);
  --line-strong: rgba(23, 49, 44, 0.23);
  --green: #11534a;
  --green-2: #247a6c;
  --coral: #ee725b;
  --yellow: #f2ca52;
  --cream: #fff4cf;
  --shadow: 0 24px 70px rgba(29, 52, 46, 0.12);
  --shadow-soft: 0 12px 30px rgba(29, 52, 46, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1a18;
  --bg-elevated: rgba(21, 34, 31, 0.9);
  --surface: #172622;
  --surface-strong: #1c2e29;
  --ink: #eef7f2;
  --ink-soft: #a9bbb4;
  --line: rgba(230, 245, 238, 0.12);
  --line-strong: rgba(230, 245, 238, 0.22);
  --green: #73c7b5;
  --green-2: #4ca08f;
  --coral: #ff8d75;
  --yellow: #f4d35e;
  --cream: #4b4020;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(23, 49, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 49, 44, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 36px 36px;
  color: var(--ink);
  font-family: "Microsoft YaHei UI", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 280ms ease, color 280ms ease;
}

button,
input,
textarea {
  font: inherit;
}

button,
label,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--yellow) 75%, transparent);
  outline-offset: 3px;
}

.atmosphere {
  position: fixed;
  z-index: -1;
  width: min(34rem, 100vw);
  height: 34rem;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  opacity: 0.42;
}

.atmosphere--one {
  top: -15rem;
  right: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--yellow) 32%, transparent), transparent 68%);
}

.atmosphere--two {
  bottom: -16rem;
  left: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--green-2) 22%, transparent), transparent 68%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 8px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 6px color-mix(in srgb, var(--surface) 16%, transparent);
}

.brand__needle {
  width: 13px;
  height: 13px;
  background: var(--coral);
  clip-path: polygon(50% 0, 75% 48%, 100% 100%, 52% 75%, 0 100%, 25% 48%);
  transform: rotate(22deg);
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  transform: rotate(8deg);
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon--moon,
html[data-theme="dark"] .icon--sun {
  display: none;
}

html[data-theme="dark"] .icon--moon {
  display: block;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.screen {
  display: none;
}

.screen--active {
  display: block;
  animation: screen-in 520ms var(--ease) both;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 188px);
}

.intro-column {
  position: relative;
  padding: 28px 0;
}

.intro-column::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -46px;
  width: 168px;
  height: 168px;
  border: 1px solid color-mix(in srgb, var(--green) 20%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px color-mix(in srgb, var(--green) 5%, transparent),
    0 0 0 46px color-mix(in srgb, var(--green) 4%, transparent);
  content: "";
}

.eyebrow,
.micro-label,
.dimension-label {
  margin: 0;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
}

.eyebrow span {
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 10px;
  background: var(--coral);
}

.intro-column h1,
.result-identity h1 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(3.15rem, 7vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.intro-column h1 em {
  color: var(--green);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
}

.intro-copy {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.axis-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.axis-ribbon i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.start-card {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}

.start-card::after {
  position: absolute;
  top: -58px;
  right: -58px;
  width: 150px;
  height: 150px;
  border: 28px solid color-mix(in srgb, var(--yellow) 22%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.card-heading,
.panel-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.card-heading h2,
.panel-heading h2,
.result-panel h2,
.result-reflection h2 {
  margin: 4px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.time-chip {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green) 10%, transparent);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.length-options {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.length-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-strong) 76%, transparent);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.length-option:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.length-option:has(input:checked) {
  border-color: var(--green-2);
  background: color-mix(in srgb, var(--green-2) 8%, var(--surface-strong));
  box-shadow: inset 4px 0 0 var(--green-2);
}

.length-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.length-option__main {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.length-option__number {
  min-width: 60px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.2;
}

.length-option__number small {
  font-family: inherit;
  font-size: 0.7rem;
}

.length-option__name,
.length-option__meta {
  font-size: 0.82rem;
  font-weight: 800;
}

.length-option__meta {
  align-self: center;
  color: var(--green-2);
  text-align: right;
}

.length-option__note {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.recommend-badge {
  position: absolute;
  top: -7px;
  right: 14px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
}

.primary-button,
.secondary-button,
.text-button,
.info-button {
  border: 0;
  cursor: pointer;
}

.primary-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fffdf7;
  font-weight: 800;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--green) 25%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--green) 32%, transparent);
}

.primary-button svg,
.text-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accuracy-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.accuracy-note summary {
  cursor: pointer;
  font-weight: 700;
  text-align: center;
}

.accuracy-note p {
  margin: 10px 4px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--yellow) 11%, transparent);
}

.welcome-footnote {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
}

.test-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 780px;
  margin: 0 auto 10px;
}

.text-button,
.info-button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 7px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-button:hover,
.info-button:hover {
  color: var(--ink);
}

.test-counter {
  font-family: Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.progress-track {
  max-width: 780px;
  height: 6px;
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green) 10%, transparent);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-2), var(--yellow));
  transition: width 320ms var(--ease);
}

.question-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.question-card {
  min-height: 565px;
  padding: clamp(24px, 5vw, 48px);
}

.question-card.is-changing {
  animation: question-change 300ms var(--ease) both;
}

.dimension-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green-2) 9%, transparent);
}

.question-instruction {
  margin: 18px 0 6px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.question-context {
  max-width: 590px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.28;
}

.choice-pair {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: stretch;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-option {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.choice-option--left {
  box-shadow: inset 0 4px 0 var(--green-2);
}

.choice-option--right {
  box-shadow: inset 0 4px 0 var(--coral);
}

.choice-statement {
  min-height: 142px;
  padding: 24px 20px 18px;
}

.choice-letter {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 7%, transparent);
  color: var(--ink-soft);
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-statement p {
  margin: 14px 0 0;
  font-weight: 700;
  line-height: 1.7;
}

.choice-divider {
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.choice-divider span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.choice-strengths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 2.5%, transparent);
}

.answer-button {
  display: flex;
  min-width: 0;
  min-height: 54px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-strong);
  color: var(--ink-soft);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-option--left .answer-button.is-selected {
  border-color: var(--green-2);
  background: color-mix(in srgb, var(--green-2) 9%, var(--surface-strong));
  color: var(--ink);
  transform: translateY(-2px);
}

.choice-option--right .answer-button.is-selected {
  border-color: var(--coral);
  background: color-mix(in srgb, var(--coral) 9%, var(--surface-strong));
  color: var(--ink);
  transform: translateY(-2px);
}

.strength-mark {
  display: inline-flex;
  min-height: 13px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.strength-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.answer-button.is-selected .strength-dot {
  background: currentColor;
  box-shadow: inset 0 0 0 2px var(--surface-strong);
}

.answer-button--strong small {
  font-weight: 900;
}

.answer-button small {
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.question-card.is-resetting-selection .answer-button {
  transition: none;
}

@media (hover: hover) {
  .choice-option--left .answer-button:hover {
    border-color: var(--green-2);
    background: color-mix(in srgb, var(--green-2) 9%, var(--surface-strong));
    color: var(--ink);
    transform: translateY(-2px);
  }

  .choice-option--right .answer-button:hover {
    border-color: var(--coral);
    background: color-mix(in srgb, var(--coral) 9%, var(--surface-strong));
    color: var(--ink);
    transform: translateY(-2px);
  }
}

.question-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.secondary-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease;
}

.secondary-button:hover:not(:disabled) {
  border-color: var(--green-2);
  transform: translateY(-1px);
}

.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.question-actions p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.result-hero {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  overflow: hidden;
}

.result-compass {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.6%, var(--line) 49.6%, var(--line) 50.4%, transparent 50.4%),
    linear-gradient(transparent 49.6%, var(--line) 49.6%, var(--line) 50.4%, transparent 50.4%),
    radial-gradient(circle, color-mix(in srgb, var(--yellow) 28%, transparent), transparent 65%);
  box-shadow:
    inset 0 0 0 13px color-mix(in srgb, var(--surface) 55%, transparent),
    0 20px 60px color-mix(in srgb, var(--green) 15%, transparent);
}

.result-compass::before,
.result-compass::after,
.result-compass__orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.result-compass::before {
  inset: 17%;
}

.result-compass::after {
  inset: 30%;
  border-color: var(--coral);
  border-style: dashed;
  opacity: 0.55;
}

.result-compass__orbit {
  inset: 7%;
  border-color: var(--green-2);
  border-right-color: var(--yellow);
  transform: rotate(18deg);
}

.result-compass__code {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface-strong);
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-soft);
}

.result-identity h1 {
  margin-top: 7px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  color: var(--green);
}

.result-identity > p:not(.micro-label) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.result-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  gap: 20px;
  margin-top: 20px;
}

.result-panel {
  padding: clamp(24px, 4vw, 38px);
}

.result-panel--accent {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--green) 94%, #000), color-mix(in srgb, var(--green-2) 76%, #0d3c35));
  color: #fffdf7;
}

.result-panel--accent .micro-label {
  color: var(--yellow);
}

.info-button {
  color: var(--green-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-info {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--yellow) 12%, transparent);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.dimension-results {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.dimension-result__heading,
.dimension-result__labels {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.dimension-result__heading strong {
  font-size: 0.92rem;
}

.dimension-result__heading span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.dimension-result__track {
  position: relative;
  height: 12px;
  margin: 9px 0 7px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--coral) 65%, var(--yellow));
}

.dimension-result__fill {
  width: 50%;
  height: 100%;
  border-radius: inherit 0 0 inherit;
  background: var(--green-2);
  transform-origin: left;
  animation: bar-grow 800ms var(--ease) both;
}

.dimension-result__marker {
  position: absolute;
  top: -3px;
  width: 3px;
  height: 18px;
  border-radius: 4px;
  background: var(--surface-strong);
  box-shadow: 0 0 0 1px var(--line-strong);
  transform: translateX(-1px);
}

.dimension-result__labels {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.dimension-result__labels strong {
  color: var(--ink);
}

.action-notes {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.action-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.action-note__number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #17312c;
  font-family: Georgia, serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.action-note strong,
.action-note p {
  display: block;
  margin: 0;
}

.action-note strong {
  font-size: 0.86rem;
}

.action-note p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
  line-height: 1.6;
}

.result-reflection {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  margin-top: 20px;
}

.result-reflection > p {
  margin: 0;
  color: var(--ink-soft);
}

.ai-handoff {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 32px;
  background: #123f39;
  color: #fffaf0;
  box-shadow: 0 28px 76px rgba(10, 46, 41, 0.2);
}

.ai-handoff::before {
  position: absolute;
  top: -150px;
  left: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025), 0 0 0 88px rgba(255, 255, 255, 0.018);
  content: "";
}

.ai-handoff__intro,
.ai-handoff__builder {
  position: relative;
  z-index: 1;
}

.ai-handoff__intro {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 58px);
}

.ai-handoff__seal {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 42px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-7deg);
}

.ai-handoff__seal span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.ai-handoff__seal small {
  margin-top: 4px;
  color: #f0c44e;
  font-size: 0.46rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ai-handoff .section-index {
  color: #f0c44e;
}

.ai-handoff__intro h2 {
  margin: 8px 0 18px;
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ai-handoff__intro > p:not(.section-index) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.handoff-deliverables {
  margin-top: auto;
  padding-top: 42px;
}

.handoff-deliverables > span {
  color: #f0c44e;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.handoff-deliverables ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  margin: 12px 0 0;
  padding: 0;
  counter-reset: handoff-files;
  list-style: none;
}

.handoff-deliverables li {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 0.76rem;
  counter-increment: handoff-files;
}

.handoff-deliverables li::before {
  color: #f0c44e;
  content: "0" counter(handoff-files);
  font-family: Georgia, serif;
  font-size: 0.64rem;
}

.ai-handoff__builder {
  margin: 14px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: #f8f2e6;
  color: #17312c;
}

.handoff-step {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.handoff-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #f0c44e;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.handoff-step small,
.handoff-step strong {
  display: block;
}

.handoff-step small {
  color: #6b7771;
  font-size: 0.66rem;
  font-weight: 800;
}

.handoff-step strong {
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: 1.2rem;
}

.focus-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.focus-option {
  position: relative;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(23, 49, 44, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  color: #17312c;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.focus-option::after {
  position: absolute;
  top: 14px;
  right: 13px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(23, 49, 44, 0.32);
  border-radius: 50%;
  content: "";
}

.focus-option:hover {
  border-color: rgba(17, 83, 74, 0.44);
  transform: translateY(-1px);
}

.focus-option.is-selected {
  border-color: #17685c;
  background: #e0eee8;
  box-shadow: inset 4px 0 #17685c;
}

.focus-option.is-selected::after {
  border-color: #17685c;
  background: #17685c;
  box-shadow: inset 0 0 0 2px #e0eee8;
}

.focus-option strong,
.focus-option small {
  display: block;
  padding-right: 16px;
}

.focus-option strong {
  font-size: 0.8rem;
}

.focus-option small {
  margin-top: 2px;
  color: #6b7771;
  font-size: 0.64rem;
}

.focus-option--wide {
  grid-column: 1 / -1;
}

.focus-goal {
  position: relative;
  display: block;
  margin-top: 22px;
}

.focus-goal > span {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 9px;
  font-size: 0.76rem;
  font-weight: 800;
}

.focus-goal > span b {
  color: #d75542;
  font-family: Georgia, serif;
  font-size: 0.68rem;
}

.focus-goal > span small {
  margin-left: auto;
  color: #7b8580;
  font-size: 0.62rem;
  font-weight: 500;
}

.focus-goal textarea {
  display: block;
  width: 100%;
  min-height: 90px;
  resize: vertical;
  padding: 13px 15px 26px;
  border: 1px solid rgba(23, 49, 44, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #17312c;
  font-size: 0.76rem;
  line-height: 1.55;
}

.focus-goal textarea::placeholder {
  color: #8d9792;
}

.focus-goal > i {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #8d9792;
  font-size: 0.59rem;
  font-style: normal;
}

.handoff-copy {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 62px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 52px 11px 18px;
  border: 0;
  border-radius: 15px;
  background: #ec7059;
  color: #fff;
  box-shadow: 0 12px 24px rgba(177, 65, 44, 0.2);
  text-align: left;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms var(--ease), opacity 180ms ease;
}

.handoff-copy::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #fff;
  content: "↗";
  font-family: Georgia, serif;
  font-size: 1.45rem;
  transform: translateY(-50%);
}

.handoff-copy:hover:not(:disabled) {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.handoff-copy:disabled {
  cursor: not-allowed;
  filter: grayscale(0.5);
  opacity: 0.48;
  box-shadow: none;
}

.handoff-copy > span {
  font-size: 0.86rem;
  font-weight: 900;
}

.handoff-copy > small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.61rem;
}

.handoff-preview {
  margin-top: 15px;
  border-top: 1px dashed rgba(23, 49, 44, 0.2);
}

.handoff-preview summary {
  padding: 13px 0 4px;
  color: #52645e;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.handoff-preview pre {
  max-height: 330px;
  margin: 10px 0 0;
  overflow: auto;
  padding: 14px;
  border-radius: 12px;
  background: #102f2b;
  color: #dcebe5;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.65rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.handoff-privacy {
  margin: 10px 0 0;
  color: #75827d;
  font-size: 0.61rem;
  text-align: center;
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 620px;
  margin: 26px auto 0;
}

.result-actions .secondary-button {
  min-height: 54px;
}

.result-disclaimer {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 20;
  bottom: 22px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes question-change {
  0% { opacity: 0.3; transform: translateX(12px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .app-shell {
    padding-top: 20px;
  }

  .welcome-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .welcome-grid {
    min-height: auto;
    gap: 34px;
  }

  .intro-column {
    padding: 24px 0 0;
  }

  .intro-column h1 {
    font-size: clamp(3rem, 12vw, 5.3rem);
  }

  .start-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .welcome-footnote {
    margin-top: 20px;
  }

  .result-hero {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media (max-width: 650px) {
  .site-header,
  .app-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding-top: 14px;
  }

  .app-shell {
    padding-bottom: 38px;
  }

  .intro-column::before {
    left: auto;
    right: 0;
  }

  .intro-copy {
    margin-top: 22px;
  }

  .axis-ribbon {
    margin-top: 24px;
  }

  .start-card,
  .question-card,
  .result-hero,
  .result-panel {
    border-radius: var(--radius-lg);
  }

  .length-option {
    grid-template-columns: 1fr;
  }

  .length-option__meta {
    text-align: left;
  }

  .question-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .choice-pair {
    grid-template-columns: 1fr;
  }

  .question-instruction {
    margin-top: 16px;
  }

  .question-context {
    margin-bottom: 20px;
    font-size: clamp(1.48rem, 7vw, 1.92rem);
  }

  .choice-statement {
    min-height: 0;
    padding: 17px 17px 14px;
  }

  .choice-divider {
    height: 28px;
  }

  .choice-divider span {
    width: 27px;
    height: 27px;
  }

  .choice-strengths {
    gap: 7px;
    padding: 9px;
  }

  .answer-button {
    min-height: 48px;
    padding: 5px;
  }

  .question-actions {
    align-items: flex-start;
  }

  .question-actions p {
    max-width: 160px;
    text-align: right;
  }

  .result-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .result-compass {
    width: min(210px, 70vw);
    margin: 0 auto;
  }

  .result-meta {
    justify-content: center;
  }

  .result-reflection {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* V2 — relationship archetype editorial system */
.persona-preview {
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.persona-preview__portrait {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 20px rgba(19, 55, 49, 0.14);
}

.persona-preview__portrait--one {
  background-image: url("./assets/roles-web/asdc-bridge-builder.jpg");
}

.persona-preview__portrait--two {
  margin-left: -13px;
  background-image: url("./assets/roles-web/aebo-spark-convener.jpg");
}

.persona-preview__portrait--three {
  margin-left: -13px;
  background-image: url("./assets/roles-web/rebo-relationship-wanderer.jpg");
}

.persona-preview p {
  display: grid;
  margin: 0 0 0 14px;
  line-height: 1.45;
}

.persona-preview strong {
  font-family: "STSong", "Songti SC", serif;
  font-size: 0.96rem;
}

.persona-preview span {
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.report {
  max-width: 1100px;
  margin: 0 auto;
}

.identity-dossier {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  min-height: 610px;
  overflow: hidden;
  border-radius: 34px;
  background: #0e3f39;
  color: #fffaf0;
  box-shadow: 0 32px 90px rgba(10, 46, 41, 0.24);
}

.identity-dossier::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(255, 255, 255, 0.026),
    0 0 0 104px rgba(255, 255, 255, 0.018);
  content: "";
}

.role-art-frame {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: #f0c44e;
}

.role-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  border-radius: 22px 22px 8px 8px;
  background-image: url("./assets/roles-web/asdc-bridge-builder.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 28px rgba(28, 39, 35, 0.18);
}

.role-art__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px 0;
  color: #17312c;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.identity-dossier__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}

.report-kicker,
.section-index {
  margin: 0;
  color: #f0c44e;
  font-family: Georgia, serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.type-lockup {
  margin-top: 15px;
}

.latin-code {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.7rem, 10vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.identity-dossier h1 {
  margin: 26px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.role-motto {
  margin: 16px 0 0;
  color: #f4d778;
  font-family: "STSong", "Songti SC", serif;
  font-size: 1rem;
  font-weight: 700;
}

.role-summary {
  max-width: 640px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.8;
}

.letter-key {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.letter-key > span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.letter-key b {
  grid-row: 1 / 3;
  color: #f0c44e;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}

.letter-key i {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, serif;
  font-size: 0.64rem;
  font-style: normal;
  text-overflow: ellipsis;
}

.letter-key small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  white-space: nowrap;
}

.identity-dossier .result-meta {
  margin-top: 20px;
}

.identity-dossier .result-meta span {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.57);
}

.report-intro {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  margin: 46px 0;
  padding: 0 clamp(8px, 4vw, 46px);
}

.report-intro span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.report-intro p {
  max-width: 790px;
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.55;
}

.report-intro--closing {
  grid-template-columns: 140px 1fr;
  gap: 28px;
  margin: 38px 0 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.report-intro--closing span {
  padding-top: 0.35em;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.report-intro--closing p {
  font-size: clamp(1.12rem, 2.2vw, 1.48rem);
  color: var(--ink-soft);
}

.report-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.report-split--first {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.report-section {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(28, 52, 46, 0.075);
}

.report-section__heading {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.report-section h2 {
  margin: 8px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.25;
}

.report-section .section-index {
  color: var(--green-2);
}

.dimension-section .dimension-results {
  margin-top: 30px;
}

.combination-section {
  background: #f0c44e;
  color: #17312c;
}

.combination-section .section-index {
  color: #8c4d30;
}

.combination-insights {
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.combination-insights article {
  padding: 18px 0;
  border-top: 1px solid rgba(23, 49, 44, 0.17);
}

.combination-insights h3 {
  margin: 0;
  font-size: 0.9rem;
}

.combination-insights p {
  margin: 6px 0 0;
  color: rgba(23, 49, 44, 0.74);
  font-size: 0.875rem;
  line-height: 1.75;
}

.axis-analysis {
  margin-top: 18px;
  background: color-mix(in srgb, var(--surface) 92%, var(--green-2));
}

.axis-analysis__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.axis-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
}

.axis-card__letter {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: #fffaf0;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.axis-card span {
  color: var(--green-2);
  font-family: Georgia, serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.axis-card h3 {
  margin: 5px 0 0;
  font-size: 0.95rem;
}

.axis-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.7;
}

.axis-card small {
  display: block;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.strength-section,
.blindspot-section {
  min-height: 100%;
}

.blindspot-section {
  border-color: color-mix(in srgb, var(--coral) 32%, var(--line));
}

.report-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.report-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.report-list span {
  color: var(--green-2);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.blindspot-section .report-list span {
  color: var(--coral);
}

.report-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.75;
}

.action-plan {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 64px);
  margin-top: 18px;
  background: #17312c;
  color: #fffaf0;
}

.handoff-personalizer {
  padding: 0 0 22px;
  border-bottom: 1px dashed rgba(23, 49, 44, 0.2);
  color: #17312c;
}

.handoff-personalizer__heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.handoff-personalizer__heading > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0c44e;
  font-size: 0.62rem;
  font-weight: 900;
}

.handoff-personalizer__heading strong,
.handoff-personalizer__heading small {
  display: block;
}

.handoff-personalizer__heading strong {
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: 1.05rem;
}

.handoff-personalizer__heading small {
  margin-top: 1px;
  color: #74807b;
  font-size: 0.65rem;
}

.handoff-personalizer .focus-options {
  grid-template-columns: 1fr 1fr;
}

.handoff-personalizer .focus-option--wide {
  grid-column: span 2;
}

.handoff-personalizer .focus-goal {
  margin-top: 16px;
}

.action-plan .section-index {
  color: #f0c44e;
}

.action-plan__lead > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.75;
}

.action-plan .action-notes {
  margin: 0;
}

.action-plan .action-note {
  grid-template-columns: 38px 1fr;
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.action-plan .action-note p {
  font-size: 0.86rem;
}

.action-note__basis {
  display: block;
  margin: 5px 0 4px;
  color: #8fd4c3;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.action-note__calibration {
  display: block;
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.55;
}

.action-note small {
  display: block;
  margin-bottom: 2px;
  color: #f0c44e;
  font-size: 0.65rem;
  font-weight: 800;
}

.action-note__number {
  width: 34px;
  height: 34px;
}

.result-reflection {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 32px;
  align-items: center;
  margin-top: 18px;
  background: transparent;
  box-shadow: none;
}

.result-reflection > p {
  margin: 0;
  color: var(--ink-soft);
}

.reflection-reading {
  display: grid;
  gap: 9px;
}

.reflection-reading > span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green-2) 12%, transparent);
  color: var(--green-2);
  font-size: 0.67rem;
  font-weight: 900;
}

.reflection-reading p {
  margin: 0;
  color: var(--ink-soft);
}

.reflection-reading small {
  padding-left: 11px;
  border-left: 2px solid var(--coral);
  color: var(--ink);
  font-size: 0.73rem;
  line-height: 1.65;
}

.handoff-focus-summary {
  margin: -6px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(17, 83, 74, 0.07);
  color: #5f706a;
  font-size: 0.7rem;
}

.handoff-plan-link {
  display: block;
  width: fit-content;
  margin: -8px 0 16px;
  color: #17685c;
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
}

.handoff-plan-link[hidden] {
  display: none;
}

.handoff-plan-link:hover {
  text-decoration: underline;
}

.report .result-actions {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .identity-dossier {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    min-height: 540px;
  }

  .identity-dossier__copy {
    padding: 36px;
  }

  .letter-key {
    grid-template-columns: 1fr 1fr;
  }

  .report-split,
  .report-split--first,
  .action-plan,
  .ai-handoff {
    grid-template-columns: 1fr;
  }

  .handoff-deliverables {
    margin-top: 0;
  }

  .handoff-personalizer .focus-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .persona-preview {
    margin-top: 26px;
  }

  .persona-preview__portrait {
    width: 54px;
    height: 54px;
  }

  .identity-dossier {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .role-art-frame {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 14px;
  }

  .role-art {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .role-art__caption {
    flex-direction: column-reverse;
    padding: 4px 0;
    writing-mode: vertical-rl;
  }

  .identity-dossier__copy {
    padding: 32px 22px 34px;
  }

  .latin-code {
    font-size: clamp(4.6rem, 23vw, 6.2rem);
  }

  .letter-key {
    gap: 6px;
  }

  .letter-key > span {
    padding: 9px;
  }

  .report-intro {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    margin: 34px 0;
    padding: 0 4px;
  }

  .report-intro--closing {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 30px 0 16px;
    padding-top: 24px;
  }

  .report-intro--closing span {
    padding-top: 0;
  }

  .report-intro--closing p {
    font-size: 1.08rem;
  }

  .report-section {
    padding: 24px 19px;
    border-radius: 20px;
  }

  .axis-analysis__grid {
    grid-template-columns: 1fr;
  }

  .axis-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 17px;
  }

  .axis-card__letter {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.45rem;
  }

  .result-reflection {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ai-handoff {
    border-radius: 24px;
  }

  .ai-handoff__intro {
    padding: 34px 24px 26px;
  }

  .ai-handoff__seal {
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
  }

  .handoff-deliverables {
    padding-top: 26px;
  }

  .ai-handoff__builder {
    margin: 8px;
    padding: 22px 16px;
    border-radius: 19px;
  }

  .focus-options {
    grid-template-columns: 1fr;
  }

  .handoff-personalizer__heading {
    align-items: flex-start;
  }

  .handoff-personalizer .focus-options {
    grid-template-columns: 1fr;
  }

  .focus-option--wide,
  .handoff-personalizer .focus-option--wide {
    grid-column: auto;
  }

  .focus-goal > span {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .focus-goal > span small {
    width: 100%;
    margin-left: 0;
  }

}
