:root {
  --ink: #173238;
  --muted: #6d7472;
  --paper: #f3e8e2;
  --panel: #fffdfa;
  --panel-2: #eadbd3;
  --line: #decfc8;
  --teal: #0c3238;
  --teal-dark: #173238;
  --teal-soft: #d7c9c1;
  --forest-panel: #0c3238;
  --accent: #c76555;
  --peach: #f2b89a;
  --honey: #d9a13b;
  --hero-bg: #f3e8e2;
  --shadow: 0 18px 50px rgba(23, 50, 56, 0.1);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 50, 56, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 50, 56, 0.035) 1px, transparent 1px), var(--paper);
  background-size: 34px 34px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  min-height: 100vh;
}

.access-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px 16px;
  background:
    linear-gradient(90deg, rgba(23, 50, 56, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 50, 56, 0.035) 1px, transparent 1px), var(--paper);
  background-size: 34px 34px;
}

.access-shell {
  width: min(100%, 460px);
}

.access-card {
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--panel);
  box-shadow: 10px 10px 0 #527b77;
}

.access-mark {
  margin-bottom: 24px;
}

.access-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.08;
}

.access-card p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.access-form {
  display: grid;
  gap: 12px;
}

.access-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.access-form input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(23, 50, 56, 0.22);
  border-radius: 6px;
  padding: 0 16px;
  background: #fff8f4;
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 6px;
  outline: none;
}

.access-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(82, 123, 119, 0.16);
}

.access-form input[aria-invalid="true"] {
  border-color: var(--accent);
  background: #fff1ea;
}

.access-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.access-form input[aria-invalid="true"] + .access-meta {
  color: var(--accent);
}

.container {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(37, 42, 44, 0.09);
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(16px);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--teal-dark);
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff8f4;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--accent);
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-btn,
.solid-btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.solid-btn {
  border-color: var(--teal-dark);
  background: var(--teal);
  color: #fff8f4;
  box-shadow: 5px 5px 0 var(--accent);
}

.ghost-btn:hover,
.solid-btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
}

.solid-btn:hover {
  box-shadow: 7px 7px 0 var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  padding: 34px 0 22px;
  background: var(--hero-bg);
}

.home-page .topbar {
  border-bottom-color: rgba(23, 50, 56, 0.09);
  background: rgba(255, 253, 250, 0.94);
}

.home-page .brand {
  color: var(--ink);
}

.home-page .brand-mark {
  border-color: var(--peach);
  background: var(--peach);
  color: var(--teal);
  box-shadow: 3px 3px 0 var(--honey);
}

.home-page .nav-actions .ghost-btn {
  border-color: rgba(23, 50, 56, 0.44);
  color: var(--ink);
}

.home-cover {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 760px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(23, 50, 56, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 253, 250, 0.78);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 760;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 5px rgba(217, 161, 59, 0.16);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 920;
  color: var(--teal);
}

.hero-title span {
  color: var(--accent);
}

.hero-description {
  max-width: 720px;
  margin: 18px 0 0;
  color: #536263;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 22px;
}

.home-page .hero-actions .solid-btn {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff8f4;
  box-shadow: 5px 5px 0 var(--honey);
}

.home-page .hero-actions .solid-btn:hover {
  box-shadow: 7px 7px 0 var(--honey);
}

.home-page .hero-actions .ghost-btn {
  border-color: rgba(23, 50, 56, 0.56);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(242, 184, 154, 0.64);
  border-radius: var(--radius);
  background: #f3e8e2;
}

.stat-card,
.dim-card,
.type-card,
.result-panel,
.question-card,
.history-card {
  border: 1px solid rgba(23, 50, 56, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 8px 28px rgba(23, 50, 56, 0.06);
}

.stat-card {
  min-height: 70px;
  padding: 11px 18px;
}

.hero-stats .stat-card {
  border: 0;
  border-right: 1px solid rgba(23, 50, 56, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-stats .stat-card:last-child {
  border-right: 0;
}

.stat-value {
  font-size: 27px;
  line-height: 1;
  font-weight: 910;
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero-result-teaser {
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(242, 184, 154, 0.74);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #fff3ed;
  box-shadow: 8px 8px 0 rgba(217, 161, 59, 0.72);
  color: var(--ink);
  text-align: left;
}

.teaser-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
}

.hero-result-teaser h3 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
}

.teaser-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid rgba(23, 50, 56, 0.12);
  border-bottom: 1px solid rgba(23, 50, 56, 0.12);
  padding: 11px 0;
}

.teaser-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.teaser-points span::before {
  width: 3px;
  height: 13px;
  background: var(--honey);
  content: "";
}

.hero-result-teaser p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.home-disclaimer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.sections {
  padding: 62px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.section-header p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dim-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.dim-card {
  min-height: 224px;
  padding: 18px;
  overflow: hidden;
}

.dim-card img,
.talent-thumb,
.profile-img,
.history-card img {
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.dim-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border: 1px solid rgba(23, 26, 24, 0.11);
  background: var(--paper);
}

.dim-card h3,
.type-card h3 {
  margin: 0;
  font-size: 17px;
}

.dim-card p,
.type-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.type-card {
  min-height: 176px;
  padding: 20px;
}

.type-badge {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.cta-band {
  margin-top: 62px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--ink);
  color: #fff8f4;
  box-shadow: 10px 10px 0 var(--teal-soft);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.cta-band .solid-btn {
  border-color: #fff8f4;
  background: #fff8f4;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--accent);
}

.test-shell {
  padding: 18px 0 56px;
}

.test-head {
  display: block;
  margin: 12px 0 16px;
}

.progress-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.progress-track {
  height: 12px;
  border: 1px solid rgba(21, 23, 20, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.progress-runway {
  position: relative;
  padding-top: 34px;
}

.progress-cat-runner {
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--cat-to);
  width: 32px;
  transform: translateX(var(--cat-to-shift));
  pointer-events: none;
  animation: cat-travel 170ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.progress-cat {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 2px rgba(37, 42, 44, 0.16));
  transform-origin: 50% 100%;
  animation: cat-trot 520ms ease-in-out infinite;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 260ms ease;
}

@keyframes cat-travel {
  from {
    left: var(--cat-from);
    transform: translateX(var(--cat-from-shift));
  }

  to {
    left: var(--cat-to);
    transform: translateX(var(--cat-to-shift));
  }
}

@keyframes cat-trot {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-3px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .progress-cat-runner,
  .progress-cat {
    animation: none;
  }
}

.question-card {
  padding: 28px;
}

.question-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(37, 42, 44, 0.1);
  margin-bottom: 18px;
  padding: 0 0 10px;
  color: var(--muted);
}

.question-meta-title {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 12px;
}

.question-meta h2 {
  margin: 0;
  color: #70797b;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.question-dim {
  overflow: hidden;
  color: #8a9293;
  font-size: 11px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.question-main {
  width: min(100%, 820px);
  margin: 0 auto;
  min-width: 0;
}

.question-text {
  margin: 0 0 22px;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.22;
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-btn {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(21, 23, 20, 0.14);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.option-btn:hover {
  transform: translateX(3px);
  border-color: var(--teal);
}

.option-btn.is-selected {
  border-color: var(--accent);
  background: #fff3ed;
  box-shadow: 5px 5px 0 rgba(199, 101, 85, 0.26);
}

.option-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 820;
}

.option-score {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--muted);
  font-size: 12px;
}

.test-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.analysis-view {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  padding: 40px 16px;
}

.analysis-box {
  width: min(560px, 100%);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--panel);
  box-shadow: 10px 10px 0 var(--teal-soft);
  text-align: center;
}

.loader {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border: 2px solid rgba(21, 23, 20, 0.14);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.result-hero {
  padding: 40px 0 30px;
}

.result-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 12px 12px 0 rgba(12, 50, 56, 0.66);
  overflow: hidden;
}

.profile-visual {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--panel-2);
}

.profile-visual::after {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 0;
  width: 92px;
  height: 6px;
  background: var(--accent);
  content: "";
}

.profile-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
}

.result-copy {
  padding: 28px 32px 32px;
}

.result-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.result-copy h2 {
  min-width: 0;
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
}

.result-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4f5a5a;
  font-size: 18px;
  line-height: 1.72;
}

.result-evidence {
  display: block;
  max-width: 760px;
  margin-top: 10px;
  color: var(--teal);
  font-size: 14px;
  line-height: 1.65;
}

.result-badge {
  display: inline-flex;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
  padding-bottom: 24px;
}

.result-end-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(23, 50, 56, 0.12);
  padding-top: 22px;
  padding-bottom: 48px;
}

.result-panel {
  padding: 24px;
}

.result-panel h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.top-talents-panel {
  min-width: 0;
}

.top-talents-intro {
  margin: -5px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.talent-feature {
  border-left: 5px solid #527b77;
  border-radius: 6px;
  padding: 16px;
  background: #edf3f1;
}

.talent-rank {
  display: block;
  color: #527b77;
  font-size: 12px;
  font-weight: 850;
}

.talent-feature-main {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

.talent-feature-image {
  display: block;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(23, 50, 56, 0.08);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.52);
  object-fit: cover;
}

.talent-feature h4,
.talent-secondary h4 {
  margin: 0;
  color: var(--ink);
}

.talent-feature h4 {
  font-size: 21px;
}

.talent-feature strong {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 40px;
  line-height: 1;
}

.talent-action {
  display: block;
  margin-top: 9px;
  color: #527b77;
  font-size: 13px;
  font-weight: 800;
}

.talent-feature p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.talent-secondary {
  min-width: 0;
  border-radius: 6px;
  padding: 13px;
  background: #fff1ea;
  text-align: center;
}

.talent-secondary:nth-child(2) {
  background: #faf2dd;
}

.talent-secondary .talent-rank {
  color: var(--accent);
  text-align: left;
}

.talent-secondary:nth-child(2) .talent-rank,
.talent-secondary:nth-child(2) .talent-action,
.talent-secondary:nth-child(2) strong {
  color: #b48632;
}

.talent-secondary img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 10px auto 8px;
  border-radius: 6px;
  object-fit: cover;
}

.talent-secondary h4 {
  font-size: 16px;
  line-height: 1.25;
}

.talent-secondary strong {
  display: block;
  margin-top: 7px;
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
}

.talent-secondary .talent-action {
  color: var(--accent);
}

.talent-secondary p {
  display: -webkit-box;
  min-height: 56px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.radar-panel {
  min-width: 0;
}

.radar-intro {
  margin: -5px 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.radar-chart-wrap {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.radar-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.radar-fallback {
  display: none;
}

.radar-chart-wrap.is-fallback canvas {
  display: none;
}

.radar-chart-wrap.is-fallback .radar-fallback {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 24px 0;
}

.radar-fallback span {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.radar-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff3ed;
}

.radar-summary-title {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.radar-summary-title i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--honey);
}

.radar-top-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.radar-top-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--panel);
  color: var(--teal);
  font-size: 11px;
}

.guide-panel {
  display: grid;
  align-content: start;
}

.panel-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.work-map,
.career-list,
.relationship-notes,
.guide-bullets {
  display: grid;
  gap: 10px;
}

.guide-row,
.career-row,
.relationship-notes div,
.guide-bullets p {
  border: 1px solid rgba(23, 50, 56, 0.11);
  border-radius: 6px;
  padding: 13px 14px;
  background: #f7fbf7;
}

.guide-row:nth-child(2),
.career-row:nth-child(2),
.relationship-notes div:nth-child(2) {
  background: #fff3ed;
}

.guide-row:nth-child(3),
.career-row:nth-child(3),
.relationship-notes div:nth-child(3) {
  background: #faf2dd;
}

.guide-row span,
.career-row span,
.relationship-notes span {
  display: block;
  margin-bottom: 6px;
  color: #527b77;
  font-size: 12px;
  font-weight: 850;
}

.guide-row p,
.career-row p,
.relationship-notes p,
.guide-bullets p {
  margin: 0;
  color: #4f5a5a;
  font-size: 13px;
  line-height: 1.65;
}

.guide-row.is-warning span {
  color: var(--accent);
}

.career-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.career-row span {
  margin: 0;
  color: var(--ink);
}

.relationship-notes .relationship-tip {
  border-color: rgba(185, 87, 75, 0.28);
}

.guide-bullets {
  counter-reset: collaboration;
}

.guide-bullets p {
  position: relative;
  padding-left: 42px;
  background: #edf3f1;
}

.guide-bullets p::before {
  counter-increment: collaboration;
  content: counter(collaboration, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 13px;
  color: #527b77;
  font-size: 12px;
  font-weight: 900;
}

.action-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: action;
}

.action-steps li {
  position: relative;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  padding: 4px 0 12px 46px;
  color: #4f5a5a;
  font-size: 13px;
  line-height: 1.65;
}

.action-steps li::before {
  counter-increment: action;
  content: counter(action);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.verdict-list,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.chip,
.verdict-list span {
  border: 1px solid rgba(21, 23, 20, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: #fbf2ed;
  color: #5b6665;
  font-size: 13px;
}

.sharp-copy {
  display: grid;
  gap: 12px;
  color: #4f5a5a;
  line-height: 1.7;
}

.sharp-copy strong {
  color: var(--ink);
}

.profile-type-panel,
.career-fit-panel,
.dimension-details-panel,
.caution-panel,
.role-model-panel,
.verdict-panel {
  grid-column: 1 / -1;
}

.profile-type-panel,
.career-fit-panel,
.dimension-details-panel,
.caution-panel {
  border: 0;
  border-top: 1px solid rgba(23, 50, 56, 0.13);
  border-radius: 0;
  padding: 32px 0 10px;
  background: transparent;
  box-shadow: none;
}

.profile-tone,
.career-fit-intro,
.dimension-details-intro,
.caution-intro {
  max-width: 720px;
  margin: -7px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.profile-tone {
  color: var(--teal);
  font-size: 18px;
  font-weight: 750;
}

.profile-advantage-tags,
.career-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-advantage-tags {
  margin-bottom: 18px;
}

.profile-advantage-tags span,
.career-traits span {
  border: 1px solid rgba(23, 50, 56, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--panel);
  color: #527b77;
  font-size: 12px;
  font-weight: 750;
}

.profile-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.insight-card {
  min-width: 0;
  border-left: 5px solid #527b77;
  border-radius: 6px;
  padding: 20px;
  background: #edf3f1;
}

.insight-card.is-potential {
  border-left-color: var(--accent);
  background: #fff1ea;
}

.insight-label {
  display: block;
  margin-bottom: 11px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.insight-card.is-potential .insight-label {
  color: var(--accent);
}

.insight-card p {
  margin: 0;
  color: #4f5a5a;
  font-size: 14px;
  line-height: 1.78;
}

.insight-card p + p {
  margin-top: 10px;
}

.career-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.career-fit-card {
  min-width: 0;
  border: 1px solid rgba(23, 50, 56, 0.13);
  border-radius: 6px;
  padding: 18px;
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(23, 50, 56, 0.05);
}

.career-fit-card:nth-child(2n) {
  background: #fff8f3;
}

.career-fit-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.career-fit-head span {
  display: block;
  margin-bottom: 5px;
  color: #527b77;
  font-size: 11px;
  font-weight: 800;
}

.career-fit-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.career-fit-head > strong {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 29px;
  line-height: 1;
}

.career-fit-head > strong small {
  font-size: 12px;
}

.career-fit-card > p {
  min-height: 68px;
  margin: 14px 0;
  color: #4f5a5a;
  font-size: 13px;
  line-height: 1.7;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  border-top: 1px solid rgba(23, 50, 56, 0.1);
  padding-top: 11px;
  color: var(--muted);
  font-size: 11px;
}

.career-traits {
  margin-top: 13px;
  gap: 6px;
}

.career-traits span {
  padding: 5px 8px;
  background: #edf3f1;
  font-size: 10px;
}

.career-action {
  margin-top: 13px;
  border-radius: 5px;
  padding: 10px 12px;
  background: #faf2dd;
  color: #5b6665;
  font-size: 12px;
  line-height: 1.6;
}

.career-action strong {
  margin-right: 8px;
  color: #a37628;
}

.dimension-details-list {
  overflow: hidden;
  border: 1px solid rgba(23, 50, 56, 0.13);
  border-radius: 6px;
  background: var(--panel);
}

.dimension-detail + .dimension-detail {
  border-top: 1px solid rgba(23, 50, 56, 0.1);
}

.dimension-detail summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 18px;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px 16px;
  cursor: pointer;
  list-style: none;
}

.dimension-detail summary::-webkit-details-marker {
  display: none;
}

.dimension-rank {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.dimension-detail summary strong,
.dimension-detail summary small {
  display: block;
}

.dimension-detail summary strong {
  color: var(--ink);
  font-size: 15px;
}

.dimension-detail summary small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.dimension-detail summary b {
  color: var(--teal);
  font-size: 17px;
}

.dimension-detail summary i {
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.dimension-detail[open] summary i {
  transform: rotate(225deg);
}

.dimension-detail[open] summary {
  background: #edf3f1;
}

.dimension-detail-body {
  padding: 18px 62px 22px;
}

.dimension-detail-body > p {
  margin: 0 0 14px;
  color: #4f5a5a;
  font-size: 13px;
  line-height: 1.7;
}

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

.dimension-insight-columns section {
  border-left: 3px solid #527b77;
  padding: 2px 0 2px 14px;
}

.dimension-insight-columns section:nth-child(2) {
  border-left-color: var(--accent);
}

.dimension-insight-columns h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 13px;
}

.dimension-insight-columns ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

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

.caution-list section,
.balanced-note {
  border-left: 5px solid var(--accent);
  border-radius: 6px;
  padding: 17px;
  background: #fff1ea;
}

.caution-list span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
}

.caution-list h4 {
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: 17px;
}

.caution-list p,
.balanced-note {
  margin: 0;
  color: #5b6665;
  font-size: 13px;
  line-height: 1.7;
}

.balanced-note {
  max-width: 760px;
}

.role-model-panel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.role-model-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 6px;
  background: var(--teal);
  color: var(--panel);
  box-shadow: 5px 5px 0 var(--honey);
  font-size: 28px;
  font-weight: 900;
}

.role-model-panel h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 7px;
}

.role-model-panel h3 small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.role-model-identity {
  color: #527b77;
  font-size: 12px;
  font-weight: 750;
}

.role-model-panel p,
.role-model-panel blockquote {
  margin: 12px 0 0;
  color: #4f5a5a;
  font-size: 13px;
  line-height: 1.7;
}

.role-model-panel blockquote {
  border-left: 3px solid var(--honey);
  padding-left: 13px;
  color: var(--ink);
}

.result-method-note {
  border-top: 1px solid rgba(23, 50, 56, 0.1);
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.history-view {
  padding: 42px 0 64px;
}

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

.history-card {
  padding: 14px;
}

.history-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}

.history-card h3 {
  margin: 0;
}

.history-card p {
  color: var(--muted);
}

.empty {
  border: 1px dashed rgba(21, 23, 20, 0.25);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer {
  border-top: 1px solid rgba(21, 23, 20, 0.1);
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 56px;
  }

  .dim-grid,
  .type-grid,
  .history-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .access-card {
    padding: 24px;
    box-shadow: 6px 6px 0 #527b77;
  }

  .access-card h1 {
    font-size: 31px;
  }

  .access-card p {
    font-size: 13px;
  }

  .access-form input {
    height: 52px;
    font-size: 23px;
    letter-spacing: 5px;
  }

  .topbar .container {
    min-height: 64px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand h1 {
    font-size: 15px;
  }

  .brand p,
  .nav-actions .ghost-btn {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 65px);
    padding: 20px 0 12px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.72;
  }

  .type-grid,
  .history-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 18px;
  }

  .hero-stats .stat-card {
    min-height: 62px;
    padding: 9px 8px;
  }

  .hero-stats .stat-value {
    font-size: 25px;
    line-height: 1;
  }

  .hero-stats .stat-label {
    font-size: 11px;
  }

  .hero-result-teaser {
    margin-top: 16px;
    padding: 18px;
  }

  .hero-result-teaser h3 {
    margin: 4px 0 6px;
    font-size: 27px;
    line-height: 1.25;
  }

  .hero-result-teaser p {
    font-size: 12px;
  }

  .home-disclaimer {
    margin-top: 12px;
    font-size: 10px;
  }

  .dim-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 10px;
  }

  .question-card,
  .result-panel,
  .cta-band {
    padding: 20px;
  }

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

  .result-card {
    display: block;
  }

  .profile-visual {
    height: 172px;
    padding: 0;
    background: var(--panel-2);
  }

  .profile-visual::after {
    right: 18px;
    width: 62px;
    height: 5px;
  }

  .profile-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .result-copy {
    min-width: 0;
    padding: 18px 20px 20px;
  }

  .result-title-row {
    gap: 12px;
  }

  .result-copy h2 {
    margin: 0;
    white-space: nowrap;
    font-size: 28px;
    line-height: 1.05;
  }

  .result-copy p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .result-evidence {
    margin-top: 8px;
    font-size: 12px;
  }

  .result-badge {
    padding: 5px 8px;
    font-size: 10px;
  }

  .result-copy .chip-list {
    gap: 6px;
    margin-top: 12px;
  }

  .result-copy .chip {
    padding: 5px 7px;
    font-size: 10px;
  }

  .result-end-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: end;
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 34px;
  }

  .result-end-actions .ghost-btn,
  .result-end-actions .solid-btn {
    min-height: 36px;
    padding: 0 9px;
    font-size: 11px;
  }

  .profile-type-panel,
  .career-fit-panel,
  .dimension-details-panel,
  .caution-panel {
    padding: 26px 0 4px;
  }

  .profile-insight-grid,
  .career-fit-grid,
  .dimension-insight-columns,
  .caution-list {
    grid-template-columns: 1fr;
  }

  .profile-tone {
    font-size: 16px;
  }

  .insight-card {
    padding: 17px;
  }

  .insight-card p {
    font-size: 13px;
  }

  .career-fit-card {
    padding: 16px;
  }

  .career-fit-card > p {
    min-height: 0;
  }

  .dimension-detail summary {
    grid-template-columns: 26px minmax(0, 1fr) auto 14px;
    gap: 8px;
    min-height: 62px;
    padding: 9px 11px;
  }

  .dimension-detail summary b {
    font-size: 14px;
  }

  .dimension-detail-body {
    padding: 16px 14px 20px 45px;
  }

  .role-model-panel {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .role-model-mark {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .test-shell {
    padding-top: 8px;
  }

  .test-head {
    margin: 8px 0 12px;
  }

  .question-meta {
    margin-bottom: 13px;
    padding: 0 0 8px;
  }

  .question-meta-title {
    gap: 8px;
  }

  .question-meta h2 {
    font-size: 12px;
  }

  .question-dim {
    font-size: 9px;
  }

  .question-text {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .score-bar {
    grid-template-columns: 72px 1fr 36px;
  }

  .talent-row {
    grid-template-columns: 68px 1fr;
  }

  .talent-thumb {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 640px) and (max-height: 720px) {
  .hero {
    align-items: start;
    padding-top: 14px;
  }

  .eyebrow {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    margin-top: 10px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-stats {
    margin-top: 14px;
  }

  .hero-stats .stat-card {
    min-height: 56px;
    padding: 7px 6px;
  }

  .hero-stats .stat-value {
    font-size: 23px;
  }

  .hero-result-teaser {
    margin-top: 12px;
    padding: 11px 14px;
  }

  .hero-result-teaser h3 {
    font-size: 20px;
  }

  .teaser-points {
    display: none;
  }

  .home-disclaimer {
    margin-top: 8px;
    font-size: 9px;
  }
}
