:root {
  --bg: #f5efe3;
  --surface: rgba(255, 250, 241, 0.86);
  --surface-strong: #fff9f0;
  --ink: #15233b;
  --muted: #5f6e7f;
  --line: rgba(21, 35, 59, 0.14);
  --accent: #c35b2c;
  --accent-soft: #efc3a4;
  --accent-2: #0e7c86;
  --accent-3: #d8a227;
  --navy: #1d3557;
  --green: #315c52;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 22px 60px rgba(17, 26, 43, 0.12);
  --content-width: 1180px;
  --title-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(195, 91, 44, 0.18), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(14, 124, 134, 0.18), transparent 20%),
    linear-gradient(180deg, #f7f1e6 0%, #efe4d3 100%);
  font-family: var(--body-font);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 35, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 59, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
}

body[data-page="home"] {
  color: #151515;
  background: #fffefa;
}

body[data-page="home"]::before {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px 20px 60px;
}

body[data-page="home"] .site-shell {
  max-width: 1470px;
  padding: 22px 20px 54px;
}

.home-language-bar {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto 10px;
  max-width: 1180px;
}

.language-toggle {
  min-width: 72px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.9);
  color: #151515;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 21, 21, 0.45);
  background: #fff;
}

.language-toggle-inline {
  min-width: 62px;
  min-height: 38px;
  padding-inline: 12px;
  background: rgba(255, 250, 241, 0.72);
}

.home-hero {
  min-height: 640px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  padding-top: 8px;
}

.home-title {
  margin: 0;
  max-width: 980px;
  font-family: var(--title-font);
  font-size: clamp(4.4rem, 7.3vw, 8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-title span {
  color: #caa544;
  font-style: italic;
}

.home-subtitle {
  max-width: 760px;
  margin: 30px auto 0;
  color: #454545;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 650;
  line-height: 1.65;
}

.home-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.home-button {
  min-width: 206px;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border-radius: 16px;
  border: 1px solid #bfbfbf;
  background: #fffefa;
  color: #151515;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  font-weight: 750;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-button:hover {
  transform: translateY(-1px);
  border-color: #151515;
  background: #ffffff;
}

.home-button.primary {
  border-color: #b8b8b8;
}

.home-button.secondary {
  font-weight: 600;
}

.home-meta {
  margin: 26px 0 0;
  color: #74706a;
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 700;
}

.home-path-preview {
  max-width: 1180px;
  margin: 26px auto 0;
  padding-top: 34px;
}

.home-preview-head {
  margin-bottom: 26px;
  align-items: start;
}

.home-preview-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.home-preview-note {
  margin: 12px 0 0;
  max-width: 760px;
  color: #66615a;
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-preview-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  background: #fffdf7;
  color: #2e2a24;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-preview-link:hover {
  transform: translateY(-1px);
  border-color: #bfb4a3;
  background: #ffffff;
}

.home-pole-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-pole-card {
  --preview-accent: #caa544;
  --preview-surface: #f7eddd;
  --preview-accent-soft: rgba(202, 165, 68, 0.18);
  min-height: 236px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8d2c8;
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 14px 36px rgba(41, 31, 16, 0.04);
}

.home-pole-top {
  min-height: 154px;
  padding: 28px 32px 26px;
  background: var(--preview-surface);
}

.home-pole-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-pole-heading h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--preview-heading, #3e2f14);
}

.home-pole-top p {
  margin: 0;
  max-width: 480px;
  color: var(--preview-copy, #76501d);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  font-weight: 650;
  line-height: 1.55;
  white-space: pre-line;
}

.home-pole-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: var(--preview-accent);
}

.home-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 22px 32px 30px;
}

.home-path-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid #d9d5cf;
  border-radius: 999px;
  background: #fffefa;
  color: var(--preview-heading, #47433e);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-pill-section-label {
  flex: 0 0 100%;
  margin: 2px 0 0;
  color: #77746d;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.home-pill-section-label + .home-path-pill {
  margin-left: 0;
}

.home-path-pill:hover {
  transform: translateY(-1px);
  border-color: #bfb4a3;
  background: #ffffff;
}

.home-path-pill-static {
  cursor: default;
}

.home-path-pill-static:hover {
  transform: none;
  border-color: #d9d5cf;
  background: #fffefa;
}

.pole-capital {
  --preview-accent: #e7793d;
  --preview-surface: #f3e4cf;
  --preview-heading: #74320e;
  --preview-copy: #88451d;
}

.pole-relationship {
  --preview-accent: #2e7fc5;
  --preview-surface: #d9eaf8;
  --preview-heading: #153c6b;
  --preview-copy: #1c4b7e;
}

.pole-corporate {
  --preview-accent: #caa544;
  --preview-surface: #f4ecc9;
  --preview-heading: #5a4118;
  --preview-copy: #6a4c1a;
}

.pole-professional {
  --preview-accent: #2ca36f;
  --preview-surface: #d1f0df;
  --preview-heading: #134d35;
  --preview-copy: #1e6648;
}

.pole-data {
  --preview-accent: #647edc;
  --preview-surface: #dde4fb;
  --preview-heading: #233b8e;
  --preview-copy: #2f4998;
}

.pole-risk {
  --preview-accent: #a174c6;
  --preview-surface: #ebdef6;
  --preview-heading: #5a2f7f;
  --preview-copy: #6c3f92;
}

.home-footer {
  max-width: 1180px;
  margin: 72px auto 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #e8a974);
  color: #fff;
  font-family: var(--title-font);
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topnav a:not(.button) {
  color: var(--muted);
}

.panel,
.strip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.panel {
  padding: 32px;
}

.strip {
  padding: 24px 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero h1,
.section-head h2,
.strip h2,
.final-cta h2,
.quiz-sidebar h1,
.empty-state h1 {
  margin: 0;
  font-family: var(--title-font);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 12ch;
}

.hero-text,
.mini-summary,
.info-card p,
.step-card p,
.comparison-card li,
.path-card p,
.quiz-sidebar p,
.empty-state p,
.body-copy {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #2e537f);
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 14px 28px rgba(29, 53, 87, 0.18);
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.quiz-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics li,
.score-stack div,
.stat-pill,
.kpi-card,
.score-breakdown-card,
.score-tile,
.selection-card,
.axis-card,
.guidance-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(21, 35, 59, 0.08);
}

.hero-metrics strong,
.score-stack strong,
.score-tile strong,
.selection-card strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--title-font);
}

.hero-metrics span,
.score-stack label,
.selection-card span,
.kpi-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
}

.mini-report {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(29, 53, 87, 0.92), rgba(18, 73, 82, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  color: #f7f4ed;
  min-height: 100%;
}

.mini-label,
.path-pole {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(247, 244, 237, 0.74);
}

.mini-path {
  margin: 8px 0 16px;
  font-family: var(--title-font);
  font-size: 2rem;
}

.score-stack {
  display: grid;
  gap: 12px;
}

.score-stack div {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.grid-three,
.steps-grid,
.comparison-grid,
.path-grid,
.results-grid,
.selection-grid,
.axis-grid,
.guidance-grid {
  display: grid;
  gap: 18px;
}

.grid-three,
.steps-grid,
.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.comparison-card,
.path-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.step-card span {
  font-family: var(--title-font);
  font-size: 1.6rem;
  color: var(--accent);
}

.section-head {
  margin-bottom: 22px;
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.inline-link {
  display: inline-flex;
  margin-top: 12px;
}

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

.path-card {
  min-height: 210px;
}

.compact-list {
  color: var(--muted);
  margin-top: 12px;
}

.accent-capital {
  box-shadow: inset 0 0 0 1px rgba(231, 121, 61, 0.18);
}

.accent-relationship {
  box-shadow: inset 0 0 0 1px rgba(46, 127, 197, 0.18);
}

.accent-corporate {
  box-shadow: inset 0 0 0 1px rgba(211, 162, 39, 0.2);
}

.accent-professional {
  box-shadow: inset 0 0 0 1px rgba(44, 163, 111, 0.18);
}

.accent-data {
  box-shadow: inset 0 0 0 1px rgba(100, 126, 220, 0.2);
}

.accent-risk {
  box-shadow: inset 0 0 0 1px rgba(161, 116, 198, 0.2);
}

.path-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.path-family-card {
  --path-neutral-bg: #f3f0e7;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 342px;
  padding: 24px 26px;
  border: 1px solid rgba(106, 101, 89, 0.2);
  border-radius: 18px;
  background: var(--path-neutral-bg);
  box-shadow: 0 14px 34px rgba(41, 31, 16, 0.05);
}

.path-family-kicker {
  margin: 0;
  color: #737169;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.path-family-title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.path-family-title-row h3 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

.path-family-title-row span {
  color: #75736c;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.path-family-summary {
  margin: 0;
  color: #42413d;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 650;
  line-height: 1.45;
}

.path-family-section-stack {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.path-family-section {
  display: grid;
  gap: 8px;
}

.path-family-section-title {
  margin: 0;
  color: #77746d;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.path-family-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
}

.path-family-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  max-width: 100%;
  padding: 0 16px;
  border: 1px solid #d9d5cc;
  border-radius: 999px;
  background: var(--path-neutral-bg);
  color: #3d3c38;
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 750;
  line-height: 1.15;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

a.path-family-tag:hover {
  transform: translateY(-1px);
  border-color: #b7aea0;
  background: var(--path-neutral-bg);
}

.path-family-tag.is-emphasized {
  border-color: #d9d5cc;
  background: var(--path-neutral-bg);
  color: #3d3c38;
}

a.path-family-tag.is-emphasized:hover {
  border-color: #b7aea0;
  background: var(--path-neutral-bg);
}

.final-cta,
.empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-title {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  margin: 0;
  font-family: var(--title-font);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.max-copy {
  max-width: 720px;
}

.quiz-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.progress-shell {
  margin-top: 26px;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(29, 53, 87, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #e9b66d);
  transition: width 240ms ease;
}

.muted-list li {
  color: var(--muted);
}

.quiz-main {
  min-height: 560px;
}

.quiz-step-intro {
  margin-bottom: 18px;
}

.quiz-step-intro h2 {
  margin: 0 0 8px;
  font-family: var(--title-font);
  font-size: clamp(2rem, 3vw, 3rem);
}

.profile-grid,
.profile-sections,
.question-stack,
.options-grid {
  display: grid;
  gap: 16px;
}

.profile-sections {
  gap: 22px;
}

.question-group {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.question-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.question-group-header h3 {
  margin: 0;
  font-family: var(--title-font);
  font-size: 1.3rem;
}

.question-group-stack {
  display: grid;
  gap: 16px;
}

.profile-section {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.profile-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.profile-section-header h3 {
  margin: 0 0 6px;
  font-family: var(--title-font);
  font-size: 1.35rem;
}

.profile-section-header p:last-child {
  margin: 0;
  color: var(--muted);
}

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

.field,
.question-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.field-wide {
  grid-column: 1 / -1;
}

.profile-options-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.field label,
.question-card h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.question-hint {
  margin: -2px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.field select,
.slider-input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(21, 35, 59, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(21, 35, 59, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.field select:disabled,
.field input:disabled {
  color: rgba(21, 35, 59, 0.42);
  border-style: dashed;
  background: rgba(244, 241, 233, 0.72);
  cursor: not-allowed;
}

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

.option-card {
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.option-card label {
  display: block;
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.option-card label span {
  display: block;
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.option-card input:checked + label {
  border-color: rgba(195, 91, 44, 0.42);
  background: linear-gradient(180deg, rgba(255, 242, 233, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 10px 24px rgba(195, 91, 44, 0.12);
  transform: translateY(-1px);
}

.slider-wrap {
  display: grid;
  gap: 12px;
}

.slider-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.slider-value {
  font-family: var(--title-font);
  color: var(--ink);
  font-size: 1.45rem;
}

.quiz-actions {
  margin-top: 24px;
  justify-content: space-between;
}

.results-root {
  display: grid;
  gap: 22px;
}

.result-block {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.result-block-separated {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.result-block-title {
  margin: 0;
  color: #6c6a63;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.result-path-panel {
  padding: 56px 48px;
  border: 1px solid var(--line);
  background: #f3f0e7;
}

.now-path-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 18px;
}

@media (max-width: 1180px) {
  .now-path-stack {
    grid-template-columns: 1fr;
  }
}

.now-path-card {
  overflow: hidden;
  border: 1px solid rgba(47, 122, 53, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.now-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(47, 122, 53, 0.14), rgba(226, 241, 220, 0.82));
}

.now-card-head > span {
  color: #2f7a35;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.now-card-body {
  padding: 26px 24px 28px;
}

.now-card-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.now-path-card h3 {
  margin: 0;
  color: #111;
  font-family: var(--title-font);
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.now-path-meta {
  margin: 6px 0 0;
  color: #353535;
  font-size: 1.22rem;
}

.now-role-line {
  margin: 8px 0 0;
  color: #5b5b55;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.now-card-comp {
  display: grid;
  justify-items: start;
  gap: 6px;
  text-align: left;
}

.now-card-comp strong {
  color: #111;
  font-size: clamp(1.2rem, 2.25vw, 1.5rem);
  line-height: 1.05;
  font-weight: 800;
}

.now-card-comp span {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.now-timeline-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(47, 122, 53, 0.22);
  border-radius: 999px;
  background: rgba(47, 122, 53, 0.08);
  color: #2f7a35;
  font-size: 0.95rem;
  font-weight: 800;
}

.now-proof-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.now-proof-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #343434;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.45;
}

.now-proof-list li span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2f7a35;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.now-path-cta {
  display: grid;
  place-items: center;
  margin-top: 18px;
  min-height: 58px;
  border: 1px solid rgba(21, 35, 59, 0.18);
  border-radius: 14px;
  color: #111;
  background: #fff;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.now-path-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 122, 53, 0.5);
  background: rgba(47, 122, 53, 0.05);
}

.fit-card {
  padding: 38px 44px;
  border: 1px solid rgba(21, 35, 59, 0.16);
  border-left: 6px solid var(--accent-3);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(21, 35, 59, 0.08);
}

.best-path-card {
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(204, 158, 50, 0.95);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: none;
}

.persona-card {
  overflow: hidden;
  border: 2px solid rgba(124, 91, 32, 0.86);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 24px 70px rgba(21, 35, 59, 0.12);
}

.persona-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 28px;
  align-items: start;
  padding: 36px 40px 32px;
  border-bottom: 1px solid rgba(124, 91, 32, 0.18);
  background: linear-gradient(135deg, rgba(255, 250, 238, 0.96), rgba(247, 243, 234, 0.82));
}

.persona-title-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.persona-index {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(124, 91, 32, 0.34);
  border-radius: 18px;
  color: #6a4614;
  background: rgba(255, 255, 255, 0.58);
  font-family: var(--title-font);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.persona-primary-label {
  margin: 2px 0 8px;
  color: #827a6c;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.persona-card h1 {
  margin: 0;
  color: #111;
  font-family: var(--title-font);
  font-size: 3.3rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.persona-card h1 span {
  display: inline-block;
  margin-left: 10px;
  color: #6a665d;
  font-size: 0.58em;
  font-weight: 800;
  vertical-align: baseline;
}

.persona-definition {
  max-width: 720px;
  margin: 18px 0 0 80px;
  color: #37322a;
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1.45;
}

.persona-score {
  min-width: 116px;
  padding: 18px 20px;
  border: 1px solid rgba(124, 91, 32, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.persona-score strong {
  display: block;
  color: #6a4614;
  font-family: var(--title-font);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.persona-score span {
  display: block;
  margin-top: 6px;
  color: #766d5d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-side-panel {
  display: grid;
  gap: 14px;
}

.persona-side-panel .persona-score {
  justify-self: end;
}

.persona-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(124, 91, 32, 0.16);
}

.persona-detail {
  min-height: 156px;
  padding: 28px 32px;
  border-top: 1px solid rgba(124, 91, 32, 0.12);
}

.persona-detail:nth-child(odd) {
  border-right: 1px solid rgba(124, 91, 32, 0.12);
}

.persona-detail > span,
.persona-path-panel > span,
.persona-alternatives > span {
  display: block;
  margin-bottom: 12px;
  color: #746d61;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-detail p {
  margin: 0;
  color: #39352e;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.55;
}

.persona-chip-row,
.persona-path-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.persona-chip-row em,
.persona-path-list em {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid rgba(124, 91, 32, 0.22);
  border-radius: 999px;
  color: #3f3b34;
  background: #f4f2ec;
  font-size: 1rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0;
}

.persona-path-list em.is-current {
  border-color: rgba(124, 91, 32, 0.88);
  color: #5b3907;
  background: #fbf1dc;
}

.persona-mbti-panel p {
  color: #5d4218;
  font-family: var(--title-font);
  font-size: 1.42rem;
  letter-spacing: 0;
}

.persona-path-panel {
  padding: 28px 32px 30px;
  border-bottom: 1px solid rgba(124, 91, 32, 0.16);
}

.persona-alternatives {
  display: grid;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding: 22px 32px 26px;
  background: rgba(246, 243, 237, 0.68);
}

.persona-alternatives > span {
  margin: 0;
  align-self: center;
}

.persona-alternatives div {
  padding: 14px 16px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.persona-alternatives strong,
.persona-alternatives small {
  display: block;
}

.persona-alternatives strong {
  color: #171717;
  font-size: 1rem;
}

.persona-alternatives small {
  margin-top: 5px;
  color: #68645d;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
}

.persona-spectrum-panel,
.persona-narrative-panel {
  padding: 28px 40px;
  border-top: 1px solid rgba(124, 91, 32, 0.14);
}

.persona-spectrum-panel-compact {
  padding: 18px;
  border: 1px solid rgba(124, 91, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.persona-spectrum-panel > span,
.persona-narrative-panel > span {
  display: block;
  margin-bottom: 18px;
  color: #746d61;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-spectrum-panel-compact > span {
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.persona-spectrum-grid {
  display: grid;
  gap: 16px;
}

.persona-spectrum-panel-compact .persona-spectrum-grid {
  gap: 10px;
}

.persona-spectrum-row {
  display: grid;
  gap: 8px;
}

.persona-spectrum-labels {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) minmax(120px, auto) minmax(82px, 1fr);
  gap: 12px;
  align-items: center;
  color: #777168;
  font-size: 0.88rem;
  font-weight: 760;
}

.persona-spectrum-panel-compact .persona-spectrum-labels {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  font-size: 0.74rem;
}

.persona-spectrum-panel-compact .persona-spectrum-labels strong {
  display: none;
}

.persona-spectrum-labels strong {
  color: #34302a;
  font-size: 0.96rem;
  text-align: center;
}

.persona-spectrum-labels span:last-child {
  text-align: right;
}

.persona-spectrum-track {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6e0d4;
}

.persona-spectrum-panel-compact .persona-spectrum-track {
  height: 7px;
}

.persona-spectrum-track::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 94, 132, 0.9), rgba(196, 145, 43, 0.92));
  content: "";
}

.persona-spectrum-track i {
  position: absolute;
  top: 50%;
  left: calc(var(--spectrum) * 1%);
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #5b3907;
  box-shadow: 0 6px 14px rgba(24, 20, 14, 0.24);
  transform: translate(-50%, -50%);
}

.persona-spectrum-panel-compact .persona-spectrum-track i {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.persona-narrative-panel p {
  max-width: 820px;
  margin: 0;
  color: #37322a;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.72;
}

.result-module-card {
  padding: 34px 40px 38px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 18px 48px rgba(21, 35, 59, 0.07);
}

.result-module-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.result-module-head h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.tension-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(21, 35, 59, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 246, 240, 0.94)),
    #fffdf8;
}

.tension-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.tension-card-head span,
.tension-card-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tension-card-head span {
  color: #5b3907;
  background: #f4f2ec;
}

.tension-card-head strong {
  color: #fff;
  background: #2f4b69;
}

.tension-high .tension-card-head strong {
  background: #7a3f2a;
}

.tension-medium .tension-card-head strong {
  background: #6a4614;
}

.tension-card h3 {
  margin: 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.34rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.tension-card p {
  margin: 0;
  color: #3d3932;
  font-size: 0.98rem;
  font-weight: 630;
  line-height: 1.58;
}

.tension-action {
  align-self: end;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 91, 32, 0.14);
}

.tension-action span {
  display: block;
  color: #746d61;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tension-action strong {
  display: block;
  margin-top: 7px;
  color: #5b3907;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.5;
}

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

.direction-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(124, 91, 32, 0.18);
  border-radius: 18px;
  background: #fffdf8;
}

.direction-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(124, 91, 32, 0.12);
}

.direction-card-head > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #6a4614;
  background: #f4f2ec;
  font-family: var(--title-font);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
}

.direction-card h3 {
  margin: 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.52rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.direction-card-head em {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(124, 91, 32, 0.18);
  border-radius: 999px;
  color: #5f5546;
  background: #f4f2ec;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.direction-card-body {
  padding: 20px;
}

.direction-card-body strong,
.direction-card-metric span {
  display: block;
  color: #746d61;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.direction-card-body p {
  margin: 10px 0 0;
  color: #39352e;
  font-size: 1rem;
  font-weight: 630;
  line-height: 1.55;
}

.direction-card-metric {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(124, 91, 32, 0.12);
  background: rgba(246, 243, 237, 0.62);
}

.direction-card-metric strong {
  display: block;
  margin-top: 5px;
  color: #5b3907;
  font-family: var(--title-font);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.direction-card-money .direction-card-head > span,
.direction-card-money .direction-card-metric {
  background: #f9efd7;
}

.horizontal-path-stack {
  display: grid;
  gap: 12px;
}

.horizontal-path-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.horizontal-path-row > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  background: #2f4b69;
  font-weight: 900;
}

.horizontal-path-row h3 {
  margin: 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.horizontal-path-row p,
.horizontal-path-row small {
  display: block;
  margin: 5px 0 0;
  color: #6b655c;
  font-weight: 700;
  line-height: 1.45;
}

.horizontal-path-row strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: #5b3907;
  background: #f4f2ec;
  white-space: nowrap;
}

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

.vertical-card {
  padding: 24px;
  border: 1px solid rgba(124, 91, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.vertical-card > span {
  display: block;
  color: #746d61;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vertical-card h3 {
  margin: 12px 0 10px;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.7rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.vertical-card p {
  margin: 0;
  color: #39352e;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.6;
}

.vertical-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.vertical-chip-row em {
  padding: 8px 12px;
  border: 1px solid rgba(124, 91, 32, 0.18);
  border-radius: 999px;
  color: #5b3907;
  background: #f4f2ec;
  font-style: normal;
  font-weight: 820;
}

.vertical-timeline {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.vertical-timeline div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(124, 91, 32, 0.12);
}

.vertical-timeline strong {
  color: #3a352d;
  font-size: 0.95rem;
}

.vertical-timeline span {
  color: #5b3907;
  font-weight: 900;
  text-align: right;
}

.progressive-results {
  display: grid;
  gap: 18px;
  width: 100%;
}

.reference-report {
  display: grid;
  gap: 10px;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  background: #fffdf8;
  color: #15120e;
  box-shadow: 0 24px 70px rgba(21, 35, 59, 0.08);
}

.reference-card {
  border: 1px solid rgba(124, 91, 32, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 240, 0.86)),
    #fffdf8;
}

.reference-kicker,
.reference-section-title,
.reference-mini-label {
  margin: 0;
  color: #6a5030;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-subcopy {
  margin: 7px 0 0;
  color: #231f19;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.42;
}

.reference-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 86px minmax(340px, 0.92fr);
  gap: 20px;
  align-items: start;
  min-height: 342px;
  padding: 26px 26px 20px;
}

.reference-persona-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}

.reference-persona-index {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(124, 91, 32, 0.32);
  border-radius: 13px;
  color: #5b3907;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--title-font);
  font-size: 1.35rem;
  font-weight: 950;
}

.reference-profile-card h1 {
  margin: 5px 0 8px;
  color: #070707;
  font-family: var(--title-font);
  font-size: clamp(2.4rem, 5vw, 3.55rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.reference-profile-card h1 span {
  margin-left: 10px;
  color: #15365c;
  font-size: 0.52em;
  font-weight: 850;
}

.reference-profile-card strong {
  display: block;
  color: #111;
  font-size: 1.18rem;
  line-height: 1.35;
}

.reference-description {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(124, 91, 32, 0.14);
}

.reference-description p:last-child {
  max-width: 640px;
  margin: 10px 0 0;
  color: #17130f;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.58;
}

.reference-match-pill {
  justify-self: center;
  min-width: 76px;
  padding: 10px 8px;
  border: 1px solid rgba(124, 91, 32, 0.22);
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.reference-match-pill strong {
  color: #6a4614;
  font-family: var(--title-font);
  font-size: 1.65rem;
  line-height: 1;
}

.reference-match-pill span {
  display: block;
  margin-top: 3px;
  color: #5b3907;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-spectrum {
  padding-top: 5px;
}

.reference-spectrum-row {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.reference-spectrum-row div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #17130f;
  font-size: 0.72rem;
  font-weight: 850;
}

.reference-spectrum-row i {
  position: relative;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 75, 105, 0.95), rgba(194, 139, 35, 0.94));
}

.reference-spectrum-row i::after {
  position: absolute;
  top: 50%;
  left: calc(var(--spectrum) * 1%);
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #5b3907;
  content: "";
  transform: translate(-50%, -50%);
}

.reference-row {
  display: grid;
  gap: 10px;
}

.reference-row-heart-money,
.reference-row-switches,
.reference-row-vertical-comp {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reference-tension-card,
.reference-heart-card,
.reference-money-card,
.reference-intersection-card,
.reference-gps-card,
.reference-switch-card,
.reference-vertical-card,
.reference-comp-card,
.reference-takeaway-card {
  padding: 18px;
}

.reference-tension-grid,
.reference-heart-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

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

.reference-heart-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-tension-item,
.reference-path-card {
  display: grid;
  align-content: start;
  min-height: 265px;
  padding: 15px;
  border: 1px solid rgba(124, 91, 32, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.reference-pill-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.reference-pill-row span,
.reference-pill-row strong,
.reference-path-head span,
.reference-path-head em {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-pill-row span,
.reference-path-head span {
  color: #5b3907;
  background: #f4f2ec;
}

.reference-pill-row strong {
  color: #fff;
  background: #6a4614;
}

.reference-tension-item h3,
.reference-path-card h3,
.reference-money-row h3 {
  margin: 0;
  color: #111;
  font-family: var(--title-font);
  font-size: 1.08rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.reference-tension-item p,
.reference-tension-item b,
.reference-path-card p {
  margin: 12px 0 0;
  color: #17130f;
  font-size: 0.83rem;
  font-weight: 730;
  line-height: 1.5;
}

.reference-tension-item small {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 91, 32, 0.14);
  color: #6a5030;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-tension-item b {
  margin-top: 8px;
  color: #5b3907;
}

.reference-path-head {
  display: grid;
  gap: 8px;
  min-height: 94px;
}

.reference-path-head em {
  width: fit-content;
  color: #6a5030;
  background: #f4f2ec;
  font-style: normal;
  text-transform: none;
}

.reference-path-metric {
  margin: auto -15px -15px;
  padding: 14px 15px;
  border-top: 1px solid rgba(124, 91, 32, 0.12);
  background: rgba(246, 243, 237, 0.62);
}

.reference-path-metric small {
  color: #6a5030;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-path-metric strong {
  display: block;
  margin-top: 5px;
  color: #5b3907;
  font-size: 1rem;
  line-height: 1.25;
}

.reference-money-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.reference-money-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 13px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.64);
}

.reference-money-row > span {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: #fff;
  background: #2f4b69;
  font-weight: 950;
}

.reference-money-row p {
  margin: 3px 0 0;
  color: #6b655c;
  font-size: 0.72rem;
  font-weight: 820;
}

.reference-money-row > strong {
  color: #5b3907;
  font-family: var(--title-font);
  font-size: 1.08rem;
  white-space: nowrap;
}

.reference-note {
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid rgba(124, 91, 32, 0.12);
  border-radius: 9px;
  background: rgba(246, 243, 237, 0.64);
  color: #17130f;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.45;
}

.reference-table {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 9px;
}

.reference-table-head,
.reference-table .intersection-table-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.25fr) repeat(4, minmax(70px, 0.7fr));
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
}

.reference-table-head {
  color: #6a5030;
  background: rgba(246, 243, 237, 0.72);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-table .intersection-table-row {
  border-top: 1px solid rgba(124, 91, 32, 0.1);
  color: #b17817;
  font-size: 0.88rem;
  font-weight: 950;
}

.reference-table .intersection-table-row strong {
  color: #111;
  font-size: 0.86rem;
  line-height: 1.18;
}

.reference-legend {
  font-size: 0.76rem;
}

.reference-gps-card {
  padding-bottom: 16px;
}

.reference-gps-layout {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.reference-you-are-here,
.reference-route-card,
.reference-mini-panel {
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.62);
}

.reference-you-are-here {
  padding: 18px 15px;
}

.reference-you-are-here strong,
.reference-you-are-here span {
  display: block;
}

.reference-you-are-here strong {
  margin-top: 12px;
  color: #111;
  font-size: 1rem;
}

.reference-you-are-here span {
  margin-top: 4px;
  color: #5b3907;
  font-size: 0.82rem;
  font-weight: 850;
}

.reference-you-are-here ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: #111;
  font-size: 0.82rem;
  font-weight: 780;
}

.reference-route-card {
  padding: 0 18px 18px;
}

.reference-route-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 24px;
  transform: translateY(-1px);
}

.reference-route-tabs span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(47, 75, 105, 0.18);
  border-radius: 0 0 8px 8px;
  color: #15365c;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-route-tabs span:first-child {
  color: #fff;
  background: #15365c;
}

.reference-route-card h3 {
  margin: 16px 0;
  color: #15365c;
  font-family: var(--title-font);
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.reference-route-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reference-route-steps article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 12px;
  border: 1px solid rgba(124, 91, 32, 0.12);
  border-radius: 9px;
  text-align: center;
}

.reference-route-steps span {
  justify-self: center;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #15365c;
  background: #f4f2ec;
  font-weight: 950;
}

.reference-route-steps .is-destination span {
  color: #fff;
  background: #b17817;
}

.reference-route-steps strong {
  color: #15365c;
  font-size: 0.9rem;
  line-height: 1.2;
}

.reference-route-steps p {
  margin: 0;
  color: #3f3a32;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.reference-gps-side {
  display: grid;
  gap: 10px;
}

.reference-mini-panel {
  padding: 13px;
}

.reference-mini-panel p:not(.reference-section-title) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 10px 0 0;
  color: #111;
  font-size: 0.78rem;
  font-weight: 780;
}

.reference-mini-panel span {
  color: #6b655c;
  font-size: 0.72rem;
  font-weight: 760;
  text-align: right;
}

.reference-switch-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.reference-switch-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.62);
}

.reference-switch-list strong {
  color: #111;
  font-size: 0.9rem;
  line-height: 1.2;
}

.reference-switch-list span {
  color: #6b655c;
  font-size: 0.78rem;
  font-weight: 780;
}

.reference-switch-list em {
  color: #5b3907;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.reference-vertical-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.reference-vertical-steps article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 95px;
  padding-inline: 8px;
  border-right: 1px solid rgba(124, 91, 32, 0.16);
  text-align: center;
}

.reference-vertical-steps article:last-child {
  border-right: 0;
}

.reference-vertical-steps span {
  color: #6a5030;
  font-size: 0.75rem;
  font-weight: 950;
}

.reference-vertical-steps strong {
  color: #111;
  font-size: 0.8rem;
  line-height: 1.25;
}

.reference-vertical-steps p {
  margin: 0;
  color: #5b3907;
  font-size: 0.72rem;
  font-weight: 850;
}

.reference-comp-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.reference-comp-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(124, 91, 32, 0.12);
  color: #111;
  font-size: 0.78rem;
  font-weight: 780;
}

.reference-comp-list p:last-child {
  border-bottom: 0;
}

.reference-comp-list strong {
  color: #17130f;
  white-space: nowrap;
}

.reference-takeaway-card {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(249, 239, 215, 0.82)),
    #fffdf8;
}

.reference-takeaway-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #17130f;
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.35;
}

.result-duo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.result-duo-grid-wide-right {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
}

.result-bottom-grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(260px, 0.72fr) minmax(230px, 0.62fr);
  align-items: stretch;
}

.result-module-card-compact {
  padding: 28px;
}

.result-module-card-compact .result-module-head {
  margin-bottom: 18px;
}

.result-module-card-compact .result-module-head h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.72rem);
  line-height: 1.16;
}

.path-choice-module {
  display: grid;
  align-content: start;
}

.path-choice-module .result-path-list-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.path-choice-module-dense .result-path-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-choice-module .direction-card {
  grid-template-rows: auto auto;
  min-height: 0;
}

.path-choice-module-dense .direction-card {
  grid-template-rows: auto 1fr auto;
  min-height: 310px;
}

.path-choice-module .direction-card-head {
  padding: 17px 18px;
}

.path-choice-module .direction-card h3 {
  font-size: 1.22rem;
  line-height: 1.15;
}

.path-choice-module-dense .direction-card h3 {
  font-size: 1.08rem;
}

.path-choice-module .direction-card-body {
  display: none;
}

.path-choice-module-dense .direction-card-body {
  display: block;
  padding: 16px;
}

.path-choice-module-dense .direction-card-body p {
  font-size: 0.88rem;
  line-height: 1.45;
}

.path-choice-module .direction-card-metric {
  padding: 14px 18px 16px;
}

.path-choice-module-dense .direction-card-metric {
  padding: 14px 16px 16px;
}

.path-choice-module-dense .direction-card-metric strong {
  font-size: 1rem;
}

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

.tension-module .tension-card {
  min-height: 330px;
  padding: 20px;
}

.tension-module .tension-card h3 {
  font-size: 1.25rem;
}

.money-rank-list {
  display: grid;
  gap: 10px;
}

.money-rank-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.money-rank-row > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #fff;
  background: #2f4b69;
  font-size: 0.88rem;
  font-weight: 900;
}

.money-rank-row h3 {
  margin: 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.money-rank-row p {
  margin: 4px 0 0;
  color: #6b655c;
  font-size: 0.82rem;
  font-weight: 760;
}

.money-rank-row strong {
  color: #5b3907;
  font-family: var(--title-font);
  font-size: 1.1rem;
  text-align: right;
  white-space: nowrap;
}

.money-list-note {
  margin: 12px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(124, 91, 32, 0.12);
  border-radius: 14px;
  color: #4f4a42;
  background: rgba(246, 243, 237, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.intersection-module {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 234, 0.78)),
    #fffdf8;
}

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

.intersection-table {
  overflow: hidden;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.intersection-table-head,
.intersection-table-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.4fr) repeat(4, minmax(72px, 0.75fr));
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
}

.intersection-table-head {
  color: #746d61;
  background: rgba(246, 243, 237, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intersection-table-row {
  border-top: 1px solid rgba(124, 91, 32, 0.1);
  color: #5b3907;
  font-size: 0.92rem;
  font-weight: 900;
}

.intersection-table-row strong {
  color: #171717;
  font-size: 0.94rem;
  line-height: 1.2;
}

.intersection-table-row span {
  letter-spacing: 0;
  white-space: nowrap;
}

.intersection-table-row em {
  color: #2f4b69;
  font-style: normal;
}

.intersection-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  color: #6b655c;
  font-size: 0.82rem;
  font-weight: 800;
}

.intersection-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(124, 91, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.intersection-card > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  background: #2f4b69;
  font-weight: 900;
}

.intersection-card h3,
.compact-move-row h3 {
  margin: 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.intersection-card p,
.compact-move-row p {
  margin: 6px 0 0;
  color: #6b655c;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.intersection-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.intersection-metrics em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #5b3907;
  background: #f4f2ec;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 850;
}

.career-gps-module {
  padding-bottom: 30px;
}

.career-gps-shell {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr) 285px;
  gap: 18px;
  align-items: stretch;
}

.career-gps-current {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(47, 75, 105, 0.2);
  border-radius: 18px;
  background: rgba(47, 75, 105, 0.07);
}

.career-gps-current span,
.career-gps-step span {
  color: #2f4b69;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-gps-current strong {
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.28rem;
  line-height: 1.12;
}

.career-gps-current p,
.career-gps-step p,
.comp-ceiling-note {
  margin: 0;
  color: #514c43;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.5;
}

.career-gps-route {
  display: grid;
  gap: 18px;
}

.career-gps-route h3 {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 16px;
  color: #15365c;
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--title-font);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.career-gps-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.career-gps-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.career-gps-side .result-module-card {
  padding: 18px;
  border-radius: 18px;
  box-shadow: none;
}

.career-gps-side .result-module-head {
  margin-bottom: 12px;
}

.career-gps-side .result-module-head h2 {
  font-family: var(--body-font);
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 800;
}

.career-gps-side .result-block-title {
  font-size: 0.78rem;
}

.career-gps-side .industry-switch-row,
.career-gps-side .compact-move-row {
  min-height: 0;
  padding: 10px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.career-gps-side .industry-switch-row:last-child,
.career-gps-side .compact-move-row:last-child {
  border-bottom: 0;
}

.career-gps-side .compact-move-row {
  grid-template-columns: auto minmax(0, 1fr);
}

.career-gps-side .compact-move-row > strong {
  display: none;
}

.career-gps-side .industry-switch-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.career-gps-side .industry-switch-row span {
  display: none;
}

.career-gps-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(124, 91, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.career-gps-step.is-current {
  border-color: rgba(47, 75, 105, 0.32);
}

.career-gps-step.is-destination {
  border-color: rgba(196, 145, 43, 0.42);
  background: rgba(249, 239, 215, 0.62);
}

.career-gps-step h4 {
  margin: 0;
  color: #171717;
  font-family: var(--title-font);
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.compact-move-list,
.industry-switch-list,
.compact-salary-list,
.key-takeaway-list {
  display: grid;
  gap: 12px;
}

.compact-move-row,
.industry-switch-row {
  display: grid;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(124, 91, 32, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.compact-move-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.compact-move-row > span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  color: #fff;
  background: #2f4b69;
  font-weight: 900;
}

.compact-move-row > strong {
  color: #5b3907;
  font-weight: 900;
  text-align: right;
}

.industry-switch-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.industry-switch-row strong {
  color: #171717;
  font-size: 1rem;
}

.industry-switch-row span {
  color: #6b655c;
  font-size: 0.88rem;
  font-weight: 750;
}

.industry-switch-row em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #5b3907;
  background: #f9efd7;
  font-style: normal;
  font-weight: 900;
}

.progression-ladder {
  display: grid;
  gap: 10px;
}

.progression-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(124, 91, 32, 0.12);
}

.progression-step span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #5b3907;
  background: #f4f2ec;
  font-weight: 900;
}

.progression-step.is-current span {
  color: #fff;
  background: #2f4b69;
}

.progression-step strong {
  color: #171717;
  line-height: 1.2;
}

.progression-step p {
  margin: 0;
  color: #5b3907;
  font-weight: 900;
  text-align: right;
}

.compact-salary-list .salary-row {
  padding: 12px 0;
}

.comp-ceiling-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f4f2ec;
}

.key-takeaways-module {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(249, 239, 215, 0.78)),
    #fffdf8;
}

.key-takeaway-list p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  color: #39352e;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.key-takeaway-list span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(124, 91, 32, 0.24);
  border-radius: 999px;
  color: #6a4614;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 900;
}

.fit-card-main {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.best-path-hero {
  padding: 34px 40px 32px;
  border-bottom: 1px solid var(--line);
}

.fit-eyebrow {
  margin: 0 0 10px;
  color: var(--accent-3);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.star-rating {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0;
  vertical-align: middle;
}

.star-icons {
  display: inline-flex;
  gap: 2px;
  color: #d0c8b4;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.star-icons span {
  position: relative;
  display: inline-block;
}

.star-icons .is-full {
  color: var(--accent-3);
}

.star-icons .is-half {
  color: #d0c8b4;
}

.star-icons .is-half::before {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent-3);
  content: "★";
}

.star-rating strong {
  color: #111;
  font-size: 1rem;
  letter-spacing: 0;
}

.star-rating-header {
  padding: 4px 0;
}

.star-rating-header .star-icons {
  font-size: 1rem;
}

.star-rating-header strong {
  color: #2f7a35;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.star-rating-card {
  gap: 6px;
}

.star-rating-card .star-icons {
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
}

.star-rating-card strong {
  color: #2f7a35;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 900;
}

.star-rating-hero {
  gap: 20px;
  margin-top: 28px;
}

.star-rating-hero .star-icons {
  gap: 6px;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
}

.star-rating-hero strong {
  color: var(--accent-3);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
}

.star-rating-hero strong small {
  margin-left: 4px;
  color: #7b776d;
  font-size: 0.52em;
}

.star-rating-compact {
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.star-rating-compact .star-icons {
  font-size: clamp(1.18rem, 3vw, 1.55rem);
}

.star-rating-compact strong {
  color: #2f7a35;
  font-size: 1.08rem;
}

.fit-card h1 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.best-path-card h1 {
  color: #141414;
  font-size: clamp(3.4rem, 7vw, 5.7rem);
  letter-spacing: 0;
}

.fit-subtitle {
  margin: 14px 0 0;
  color: #363b40;
  font-size: 1.3rem;
}

.current-status-note {
  max-width: 720px;
  margin: 16px 0 0;
  color: #6a5c3c;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
}

.best-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 34px 40px;
}

.best-insight-card {
  min-height: 214px;
  padding: 28px 30px;
  border-radius: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.best-insight-love {
  border: 1px solid rgba(195, 91, 44, 0.34);
  background: rgba(255, 249, 245, 0.86);
}

.best-insight-money {
  border: 1px solid rgba(204, 158, 50, 0.38);
  background: rgba(255, 252, 241, 0.86);
}

.best-insight-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #a53c24;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
}

.best-insight-money .best-insight-icon {
  color: #735512;
}

.best-insight-card p {
  margin: 0;
  color: #70462c;
  font-size: 1.02rem;
  font-weight: 800;
}

.best-insight-money p {
  color: #6c5218;
}

.best-insight-card strong {
  color: #8d3f25;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.best-insight-money strong {
  color: #6b5015;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.best-insight-card > span:last-child {
  color: #3f3f3d;
  font-size: 1.18rem;
  line-height: 1.55;
}

.career3d-panel {
  padding: 26px 40px 30px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.career3d-head strong {
  color: #4f4b42;
  font-size: 1.03rem;
}

.career3d-block {
  display: grid;
  gap: 10px;
}

.career3d-block h3 {
  margin: 0;
  color: #141414;
  font-size: clamp(1.35rem, 2.7vw, 1.75rem);
}

.career3d-block p {
  margin: 0;
  color: #3f3f3b;
  font-size: 1.02rem;
  line-height: 1.52;
}

.career3d-label {
  color: #6b6558 !important;
  font-size: 0.95rem !important;
  font-weight: 800;
}

.career3d-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career3d-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid rgba(40, 61, 90, 0.18);
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.95);
  color: #2f3034;
  font-size: 0.9rem;
  font-weight: 700;
}

.career3d-note {
  color: #66531c !important;
  font-weight: 700;
}

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

.career3d-strategy-card {
  padding: 14px 14px 12px;
  border: 1px solid rgba(21, 35, 59, 0.18);
  border-radius: 10px;
  background: rgba(248, 248, 246, 0.9);
  display: grid;
  gap: 10px;
}

.career3d-strategy-card.is-primary {
  border-color: rgba(44, 118, 49, 0.48);
  background: rgba(239, 248, 240, 0.88);
}

.career3d-strategy-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.career3d-strategy-head strong {
  color: #1d1d1a;
  font-size: 1.05rem;
}

.career3d-strategy-head span {
  color: #2f7a35;
  font-size: 0.78rem;
  font-weight: 800;
}

.career3d-strategy-card p {
  margin: 0;
  color: #3f3f3b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.career3d-strategy-card ul {
  margin: 0;
  padding-left: 18px;
  color: #383837;
  font-size: 0.9rem;
  line-height: 1.45;
}

.career3d-strategy-card li + li {
  margin-top: 4px;
}

.fit-reference-panel {
  padding: 30px 40px 0;
  border-top: 1px solid var(--line);
}

.fit-reference-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  color: #6a675f;
}

.fit-reference-head strong {
  color: #67645e;
  font-size: 1.08rem;
}

.fit-reference-head span {
  font-size: 1rem;
  font-weight: 700;
}

.fit-role-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  padding: 8px 12px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 999px;
  background: rgba(243, 240, 231, 0.72);
}

.meta-pill small {
  color: #777168;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.meta-pill strong {
  color: #171717;
  font-size: 0.95rem;
}

.fit-ring-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 56px);
  justify-items: center;
  margin: 32px -44px -28px;
  padding: 36px 44px 38px;
  border-top: 1px solid var(--line);
}

.best-fit-rings {
  margin: 22px 0 0;
  padding: 8px 0 30px;
  border-top: 0;
}

.fit-ring-score {
  --ring-color: var(--accent-3);
  display: grid;
  place-items: center;
}

.fit-ring-blue {
  --ring-color: #5b9bed;
}

.fit-ring-green {
  --ring-color: #62b875;
}

.fit-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(126px, 15vw, 156px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(var(--ring-color) calc(var(--score) * 1%), #e5e2dc 0);
}

.best-fit-rings .fit-ring {
  width: clamp(118px, 14vw, 142px);
}

.fit-ring::after {
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.94);
  content: "";
}

.fit-ring span,
.fit-ring strong {
  position: relative;
  z-index: 1;
}

.fit-ring span {
  color: #6a675f;
  font-size: 1rem;
  font-weight: 700;
}

.fit-ring strong {
  margin-top: 3px;
  color: var(--ring-color);
  font-size: 1.35rem;
  line-height: 1;
}

.path-distance-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: 24px;
  align-items: center;
  padding: 24px 40px;
  border-top: 1px solid var(--line);
}

.path-distance-row span {
  color: #3a3a37;
  font-size: 1.18rem;
  font-weight: 800;
}

.path-distance-row strong {
  font-size: 1.05rem;
  white-space: nowrap;
}

.path-distance-row strong.is-ready {
  color: #2f7a35;
}

.path-distance-row strong.is-effort {
  color: #9a740e;
}

.career-switch-distance-note {
  grid-column: 2 / -1;
  color: #73694f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.distance-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dedbd5;
}

.distance-meter i {
  display: block;
  width: calc(var(--distance) * 1%);
  height: 100%;
  border-radius: inherit;
  background: #2f7a35;
}

.fit-score-row {
  display: flex;
  gap: clamp(28px, 8vw, 76px);
  margin-top: 28px;
  flex-wrap: wrap;
}

.fit-score-row strong {
  display: inline-block;
  color: #111;
  font-size: 2.5rem;
  line-height: 1;
}

.fit-score-row small {
  margin-left: 4px;
  color: #777;
  font-size: 0.95rem;
  font-weight: 700;
}

.fit-score-row span {
  display: block;
  color: #545454;
  font-size: 1.02rem;
}

.salary-box {
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: 22px;
  background: #f3f0e7;
}

.best-salary-box {
  margin-top: 0;
  padding: 30px 40px;
  border-radius: 0;
  border-top: 1px solid var(--line);
  background: #f2f0e7;
}

.salary-box h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.salary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(21, 35, 59, 0.16);
}

.salary-row.is-current {
  margin: 4px -10px;
  padding: 13px 10px;
  border: 1px solid rgba(204, 158, 50, 0.38);
  border-radius: 14px;
  background: rgba(255, 246, 219, 0.72);
}

.salary-row span {
  color: #424242;
  font-size: 1.2rem;
}

.salary-current-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(154, 116, 14, 0.34);
  border-radius: 999px;
  color: #9a740e;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.salary-row strong {
  color: #111;
  font-size: 1.35rem;
}

.salary-row small {
  color: #444;
  font-size: 0.82rem;
  font-weight: 500;
}

.salary-note {
  margin-top: 16px;
  color: #3f3f3d;
  font-size: 1.05rem;
  line-height: 1.55;
}

.salary-note p {
  margin: 4px 0;
}

.salary-note strong {
  color: var(--accent-3);
}

.result-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.best-path-card .result-tags {
  margin-top: 0;
  padding: 26px 40px 24px;
  border-top: 1px solid var(--line);
}

.result-tag {
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.result-tag.green {
  border: 1px solid #2f7a35;
  color: #2f7a35;
  background: rgba(47, 122, 53, 0.06);
}

.result-tag.gold {
  border: 1px solid var(--accent-3);
  color: #9a740e;
  background: rgba(216, 162, 39, 0.08);
}

.result-tag.red {
  border: 1px solid rgba(195, 91, 44, 0.48);
  color: #bd5534;
  background: rgba(195, 91, 44, 0.06);
}

.best-path-cta {
  margin: 4px 40px 30px;
}

.p0-panel {
  border: 1px solid rgba(28, 46, 78, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 18px;
}

.p0-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.p0-margin-pill {
  padding: 5px 10px;
  border: 1px solid rgba(35, 88, 38, 0.35);
  border-radius: 999px;
  color: #2f7a35;
  font-size: 0.82rem;
  font-weight: 800;
}

.p0-section {
  display: grid;
  gap: 10px;
}

.p0-section h3 {
  margin: 0;
  color: #2d2d2a;
  font-size: 1.08rem;
}

.p0-core-label {
  margin: 0;
  color: #141414;
  font-size: 1.25rem;
  font-weight: 800;
}

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

.p0-overlay-grid article {
  padding: 10px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 10px;
  background: rgba(248, 247, 243, 0.8);
}

.p0-overlay-grid strong {
  color: #4f4b42;
  font-size: 0.9rem;
}

.p0-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p0-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(21, 35, 59, 0.17);
  border-radius: 999px;
  color: #2f3034;
  background: rgba(243, 242, 236, 0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.p0-path-card {
  padding: 12px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 6px;
}

.p0-path-card h4 {
  margin: 0;
  color: #1b1b19;
  font-size: 1rem;
}

.p0-path-card p {
  margin: 0;
  color: #666259;
  font-size: 0.87rem;
}

.p0-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p0-metrics span {
  color: #373734;
  font-size: 0.82rem;
  font-weight: 700;
}

.p0-empty {
  margin: 0;
  color: #6c685f;
  font-size: 0.92rem;
}

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

.p0-strategy-card {
  padding: 12px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 10px;
  background: rgba(248, 248, 245, 0.9);
  display: grid;
  gap: 8px;
}

.p0-strategy-card h3 {
  margin: 0;
  color: #1f1f1d;
  font-size: 1rem;
}

.p0-strategy-card p {
  margin: 0;
  color: #474741;
  font-size: 0.9rem;
  line-height: 1.5;
}

.p0-strategy-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3a3a36;
  font-size: 0.86rem;
  line-height: 1.45;
}

.p0-challenge-title {
  color: #b06422 !important;
}

.p0-overlay-list {
  display: grid;
  gap: 8px;
}

.p0-overlay-list p {
  margin: 0;
  color: #3d3b35;
  font-size: 0.92rem;
}

.p0-subline {
  margin: 0;
  color: #5f5a4f;
  font-size: 0.82rem;
}

.p0-warning {
  color: #b44f2f;
  font-weight: 700;
}

.p0-collapse {
  border-top: 1px solid rgba(21, 35, 59, 0.12);
  padding-top: 12px;
}

.p0-collapse > summary {
  cursor: pointer;
  color: #30302d;
  font-weight: 800;
  list-style: none;
}

.p0-collapse > summary::-webkit-details-marker {
  display: none;
}

.p0-collapse > summary::after {
  content: "▾";
  float: right;
  color: #6a675f;
}

.p0-collapse[open] > summary::after {
  transform: rotate(180deg);
}

.effort-stack {
  display: grid;
  gap: 22px;
}

.effort-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(204, 158, 50, 0.42);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.effort-card-head,
.effort-salary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.effort-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.effort-role-line,
.effort-track-line {
  margin-top: 6px !important;
  color: #5d5240 !important;
  font-size: 0.95rem !important;
  line-height: 1.35 !important;
}

.effort-track-line {
  color: #8a690d !important;
  font-weight: 800;
}

.effort-card p,
.result-cta-panel p {
  margin: 0;
  color: #3d4148;
  line-height: 1.62;
  font-size: 1.06rem;
}

.effort-card-head {
  padding: 22px 30px;
  color: #8a690d;
  background: #fff4d8;
}

.effort-card-head > span {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #8a690d;
  font-weight: 800;
  white-space: nowrap;
}

.effort-card-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #bd5534;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.effort-salary-row {
  padding: 26px 30px 10px;
}

.effort-salary-row span {
  color: #3e3e3e;
  font-size: 1.15rem;
}

.effort-salary-row strong {
  color: #111;
  font-size: 1.55rem;
  text-align: right;
}

.effort-ceiling {
  margin: 0 30px !important;
  padding: 0 0 18px;
  color: var(--accent-3) !important;
  font-weight: 800;
  border-bottom: 1px dashed rgba(21, 35, 59, 0.15);
}

.effort-gap-panel {
  padding: 22px 30px 0;
}

.effort-section-label {
  margin: 0 0 14px !important;
  color: #bd5534 !important;
  font-size: 0.98rem !important;
  font-weight: 700;
}

.effort-gap-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(21, 35, 59, 0.12);
}

.effort-gap-row:last-child {
  border-bottom: 0;
}

.effort-gap-dot {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: #bd5534;
}

.effort-gap-row strong {
  color: #1b1b1b;
  font-size: 1.02rem;
}

.effort-gap-row p {
  margin-top: 5px;
  color: #4a4a46;
  font-size: 1rem;
  line-height: 1.55;
}

.effort-gap-row em {
  color: #bd5534;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.effort-first-step {
  margin: 24px 30px 30px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #f3f0e7;
}

.effort-first-step strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
}

.effort-first-step p {
  color: #252525;
  font-size: 1.08rem;
  line-height: 1.7;
}

.result-cta-panel {
  display: grid;
  gap: 26px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 42px 46px;
  border-radius: 26px;
  background: #f2f0e7;
  border: 1px solid rgba(21, 35, 59, 0.1);
}

.result-cta-panel h2 {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.cta-actions .button {
  width: 100%;
  border-radius: 14px;
  min-height: 64px;
  font-size: 1.15rem;
  font-weight: 800;
}

.cta-primary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid rgba(21, 35, 59, 0.18);
  box-shadow: none;
}

.cta-secondary {
  background: transparent;
}

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

.proof-grid span {
  padding: 12px 14px;
  border: 1px solid rgba(21, 35, 59, 0.12);
  border-radius: 999px;
  color: #52504a;
  text-align: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.38);
}

.results-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.result-hero h1,
.panel h2,
.selection-card h3,
.guidance-card h3,
.score-breakdown-card h3 {
  font-family: var(--title-font);
}

.result-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.hero-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 124, 134, 0.1);
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-hero-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.kpi-card strong {
  display: block;
  font-family: var(--title-font);
  font-size: 1.6rem;
}

.pole-bars {
  display: grid;
  gap: 14px;
}

.pole-row {
  display: grid;
  grid-template-columns: 160px 1fr 56px;
  gap: 12px;
  align-items: center;
}

.pole-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(29, 53, 87, 0.08);
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), #83d2cd);
}

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

.selection-card p,
.guidance-card p,
.axis-card p,
.score-breakdown-card p {
  color: var(--muted);
}

.score-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.score-tile label {
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

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

.axis-bar {
  height: 10px;
  background: rgba(29, 53, 87, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.axis-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f1c078);
}

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

.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  cursor: pointer;
}

.chip.is-active {
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.96), rgba(46, 83, 127, 0.96));
  color: #fff;
  border-color: transparent;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.light-list {
  color: rgba(247, 244, 237, 0.85);
}

.flat-list {
  padding-left: 18px;
  margin: 0;
}

.status-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 640ms cubic-bezier(0.21, 1, 0.32, 1) forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .quiz-layout,
  .results-grid,
  .proof-grid,
  .grid-three,
  .steps-grid,
  .comparison-grid,
  .selection-grid,
  .axis-grid,
  .guidance-grid,
  .p0-overlay-grid,
	  .p0-path-grid,
	  .p0-strategy-grid,
	  .path-grid,
	  .path-family-grid,
	  .profile-grid,
	  .result-duo-grid,
	  .result-bottom-grid,
	  .intersection-grid,
	  .career-gps-shell,
	  .career-gps-steps,
	  .results-hero-card,
	  .score-breakdown,
	  .waitlist-form,
	  .tension-grid,
	  .result-path-list-grid,
  .vertical-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .split-head,
  .final-cta,
  .footer,
  .progress-copy,
  .quiz-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .pole-row {
    grid-template-columns: 1fr;
  }

  .fit-card,
  .result-path-panel,
  .result-cta-panel,
  .result-module-card {
    padding: 28px;
  }

  .best-path-card {
    padding: 0;
  }

  .persona-hero,
  .persona-detail-grid,
  .persona-alternatives {
    grid-template-columns: 1fr;
  }

  .persona-hero {
    padding: 28px 24px;
  }

  .persona-definition {
    margin-left: 0;
  }

	  .persona-score {
	    justify-self: start;
	  }

	  .persona-side-panel .persona-score {
	    justify-self: start;
	  }

  .persona-detail {
    min-height: auto;
    padding: 24px;
  }

  .persona-detail:nth-child(odd) {
    border-right: 0;
  }

  .persona-path-panel,
  .persona-alternatives,
  .persona-spectrum-panel,
  .persona-narrative-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .result-module-head {
    display: grid;
  }

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

  .horizontal-path-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

	  .horizontal-path-row strong {
	    grid-column: 2;
	    width: fit-content;
	  }

	  .career-gps-current {
	    max-width: none;
	  }

	  .progression-step,
	  .compact-move-row,
	  .industry-switch-row,
	  .money-rank-row,
	  .intersection-table-head,
	  .intersection-table-row {
	    grid-template-columns: 1fr;
	    justify-items: start;
	  }

	  .progression-step p,
	  .compact-move-row > strong,
	  .money-rank-row strong {
	    text-align: left;
	  }

	  .path-choice-module-dense .result-path-list-grid,
	  .tension-module .tension-grid {
	    grid-template-columns: 1fr;
	  }

	  .career-gps-side .industry-switch-row,
	  .career-gps-side .compact-move-row {
	    grid-template-columns: 1fr;
	  }

  .best-path-hero,
  .best-insight-grid,
  .career3d-panel,
  .fit-reference-panel,
  .path-distance-row,
  .best-salary-box,
  .best-path-card .result-tags {
    padding-left: 24px;
    padding-right: 24px;
  }

  .best-insight-grid {
    grid-template-columns: 1fr;
  }

  .career3d-strategy-grid {
    grid-template-columns: 1fr;
  }

  .path-distance-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .career-switch-distance-note {
    grid-column: auto;
  }

  .fit-reference-head {
    display: grid;
    gap: 6px;
  }

  .best-path-cta {
    margin-inline: 24px;
  }

  .star-rating-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .fit-ring-row {
    grid-template-columns: 1fr;
    margin-inline: -28px;
    padding-inline: 28px;
  }

  .best-fit-rings {
    margin: 22px 0 0;
    padding-inline: 0;
  }

  .now-path-stack,
  .now-card-main {
    grid-template-columns: 1fr;
  }

  .now-card-head {
    align-items: flex-start;
    padding: 18px 22px;
  }

  .now-card-body {
    padding: 24px 22px;
  }

  .now-card-comp {
    justify-items: start;
    text-align: left;
  }

  .salary-row,
  .effort-card-head,
  .effort-salary-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .effort-salary-row strong {
    text-align: left;
  }

  .effort-gap-row {
    grid-template-columns: 18px 1fr;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(21, 35, 59, 0.12);
  }

  .effort-gap-row em {
    grid-column: 2;
    width: fit-content;
  }

  .hero h1,
  .result-hero h1 {
    max-width: none;
  }

  .home-hero {
    min-height: auto;
    padding: 28px 0 70px;
  }

  .home-language-bar {
    margin-bottom: 4px;
  }

  .home-title {
    max-width: 760px;
    font-size: clamp(3.7rem, 11vw, 6rem);
  }

  .home-actions {
    gap: 16px;
  }

	  .home-pole-grid {
	    grid-template-columns: 1fr;
	  }

	  .reference-report {
	    padding: 12px;
	  }

	  .reference-profile-card,
		  .reference-row-heart-money,
		  .reference-row-switches,
		  .reference-row-vertical-comp,
		  .reference-gps-layout,
	  .reference-heart-grid,
	  .reference-tension-grid,
	  .reference-route-steps,
	  .reference-vertical-steps {
	    grid-template-columns: 1fr;
	  }

	  .reference-match-pill {
	    justify-self: start;
	    border-radius: 12px;
	  }

	  .reference-route-tabs {
	    margin-inline: 0;
	    grid-template-columns: 1fr;
	  }

		  .reference-table-head,
		  .reference-table .intersection-table-row,
		  .reference-money-row,
		  .reference-switch-list article,
		  .reference-mini-panel p:not(.reference-section-title),
		  .reference-comp-list p {
		    grid-template-columns: 1fr;
		  }

		  .reference-money-row > strong,
		  .reference-switch-list span,
		  .reference-switch-list em,
		  .reference-mini-panel span {
		    text-align: left;
		  }

	  .reference-vertical-steps article {
	    border-right: 0;
	    border-bottom: 1px solid rgba(124, 91, 32, 0.16);
	  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 18px 14px 40px;
  }

  .panel,
  .strip {
    padding: 22px;
    border-radius: 22px;
  }

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

  .hero-actions .button,
  .quiz-actions .button,
  .home-button {
    width: 100%;
  }

  body[data-page="home"] .site-shell {
    padding: 14px 16px 38px;
  }

  .home-language-bar {
    margin-bottom: 0;
  }

  .language-toggle {
    min-width: 64px;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .home-hero {
    padding-top: 18px;
  }

  .home-title {
    font-size: clamp(3.2rem, 14vw, 4.4rem);
    line-height: 1.03;
  }

  .home-subtitle {
    margin-top: 24px;
    font-size: 1.22rem;
  }

  .home-preview-link {
    width: 100%;
    justify-content: center;
  }

  .home-pole-card {
    min-height: auto;
    padding: 0;
    border-radius: 22px;
  }

  .home-pole-top {
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .home-pill-row {
    padding: 20px 22px 24px;
  }

  .home-pole-heading {
    gap: 12px;
    margin-bottom: 14px;
  }

  .home-pole-heading h3 {
    font-size: 1.5rem;
  }

  .home-path-pill {
    min-height: 40px;
    font-size: 0.96rem;
  }

  .path-family-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .path-family-title-row {
    gap: 8px;
  }

  .path-family-title-row h3 {
    font-size: 1.72rem;
  }

  .path-family-summary {
    font-size: 1.04rem;
  }

  .path-family-tag {
    min-height: 34px;
    padding-inline: 13px;
    font-size: 0.95rem;
  }

  .home-actions {
    margin-top: 42px;
  }

  .home-button {
    min-height: 64px;
    font-size: 1.2rem;
  }

  .home-path-preview {
    margin-top: 48px;
  }
}
