@font-face {
  font-family: "PFG Heading";
  src: url("/assets/fonts/lora.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "PFG Body";
  src: url("/assets/fonts/oswald.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --cream: #f4efe5;
  --white: #fffdf9;
  --dark: #323231;
  --brown: #97764f;
  --muted: #5f5a53;
  --muted-strong: #4c4842;
  --muted-soft: #716a61;
  --cream-muted: rgba(244, 239, 229, 0.82);
  --cream-soft: rgba(244, 239, 229, 0.68);
  --line: rgba(151, 118, 79, 0.16);
  --red: #c0392b;
  --yellow: #d4a843;
  --green: #2d7d46;
  --orange: #d47f43;
  --font-display: "PFG Heading", Impact, sans-serif;
  --font-body: "PFG Body", Georgia, serif;
  --topo: url("/assets/images/pfg-topographic.svg");
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  color: var(--dark);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
}

button,
input,
select {
  font: inherit;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.font-heading,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.score-number {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

p,
li {
  font-kerning: normal;
}

.eyebrow,
.button,
.muted-link,
.small-muted,
.progress-labels,
.fundamental-kicker,
.number-badge,
.question-index,
.option-button,
.field label,
.score-row-name,
.score-out-of,
.tier-pill,
.next-steps-title,
.mini-label,
.statement-count,
.milestone-dot,
.report-meta,
.report-section-label,
.achievement-card span,
.achievement-card small,
.score-tile-top,
.profile-focus span {
  font-family: var(--font-display);
  font-variant-caps: all-small-caps;
  font-weight: 800;
}

.button,
.muted-link,
.score-row-name,
.score-out-of,
.tier-pill,
.start-cta {
  text-transform: uppercase;
}

.header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1px 12px rgba(50, 50, 49, 0.04);
}

.header.sticky {
  position: sticky;
  top: 0;
  background: rgba(244, 239, 229, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, 1088px);
  margin: 0 auto;
  padding: 16px 24px;
}

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

.logo {
  display: block;
  width: auto;
  height: 40px;
  opacity: 0.92;
}

.logo.small {
  height: 32px;
}

.logo.footer-logo {
  height: 48px;
  margin: 0 auto 16px;
}

.muted-link,
.small-muted {
  color: var(--muted-strong);
  font-size: 15px;
  text-decoration: none;
}

.small-muted {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.muted-link {
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.muted-link:hover {
  color: var(--brown);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(50, 50, 49, 0.96) 0%, rgba(50, 50, 49, 0.9) 50%, rgba(50, 50, 49, 0.82) 100%),
    var(--topo) center / cover;
  color: var(--cream);
}

.hero::after,
.results-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 22%, rgba(151, 118, 79, 0.2), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(50, 50, 49, 0.2) 100%);
  content: "";
}

.hero-inner,
.narrow {
  width: min(100%, 816px);
  margin: 0 auto;
  padding: 64px 24px;
}

.hero-inner {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
  z-index: 1;
}

.hero .eyebrow {
  margin-bottom: 18px;
  font-size: 21px;
  letter-spacing: 0.13em;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--cream);
  font-size: 68px;
  font-weight: 800;
  line-height: 1.04;
}

.accent {
  color: var(--brown);
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--cream-muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.62;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.1;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-cta {
  min-height: 74px;
  margin-top: 2px;
  background: var(--cream);
  color: var(--dark);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 22px 44px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(244, 239, 229, 0.32);
}

.hero-cta:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(151, 118, 79, 0.34);
  outline-offset: 3px;
}

.hero-cta:focus-visible {
  outline-color: rgba(244, 239, 229, 0.72);
}

.button-arrow {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.hero-cta:hover .button-arrow {
  transform: translateX(3px);
}

.button:not(:disabled):hover {
  background: var(--dark);
}

.hero .button:hover,
.button.light:hover {
  background: var(--white);
  color: var(--dark);
}

.button.dark {
  background: var(--dark);
}

.button.dark:hover {
  background: rgba(50, 50, 49, 0.82);
}

.button.light {
  background: var(--cream);
  color: var(--brown);
}

.button.text {
  min-height: auto;
  background: transparent;
  color: var(--muted-strong);
  padding: 0;
}

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

.hero-note {
  margin: 20px 0 0;
  color: var(--cream-muted);
  font-family: var(--font-display);
  font-size: 19px;
  font-variant-caps: all-small-caps;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  border-top: 1px solid var(--line);
}

.section.white {
  background: var(--white);
}

.section-soft {
  background: rgba(255, 253, 249, 0.45);
}

.wide {
  width: min(100%, 1088px);
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

.section-copy {
  max-width: 700px;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  text-align: center;
}

.fundamentals-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 10px;
}

.fundamental-card,
.panel,
.result-card,
.breakdown-card,
.recommendation-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fundamental-card {
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fundamental-card:hover {
  border-color: rgba(151, 118, 79, 0.34);
  box-shadow: 0 12px 26px rgba(50, 50, 49, 0.07);
  transform: translateY(-1px);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.card-heading::-webkit-details-marker {
  display: none;
}

.number-badge {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(151, 118, 79, 0.12);
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.number-badge.solid {
  background: var(--brown);
  color: var(--cream);
}

.card-title {
  margin: 0;
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.card-title-wrap {
  display: grid;
  flex: 1;
  gap: 4px;
}

.statement-count {
  color: var(--muted-soft);
  font-size: 14px;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card-description {
  margin: 0;
  border-top: 1px solid rgba(151, 118, 79, 0.14);
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  padding: 18px 22px 22px;
}

.accordion-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151, 118, 79, 0.26);
  border-radius: 50%;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.fundamental-card[open] {
  border-color: rgba(151, 118, 79, 0.4);
  box-shadow: 0 12px 26px rgba(50, 50, 49, 0.06);
}

.fundamental-card[open] .accordion-icon {
  background: var(--brown);
  color: var(--cream);
}

.fundamental-card[open] .accordion-icon::before {
  content: "";
  width: 10px;
  height: 2px;
  background: currentColor;
}

.fundamental-card[open] .accordion-icon {
  font-size: 0;
}

.divider-band {
  height: 16px;
  background: linear-gradient(90deg, rgba(151, 118, 79, 0.24), rgba(45, 125, 70, 0.18), rgba(212, 127, 67, 0.2));
}

.how-section {
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(244, 239, 229, 0.74) 100%);
}

.how-section .narrow {
  width: min(100%, 900px);
  padding-top: 76px;
  padding-bottom: 72px;
}

.how-header {
  margin-bottom: 38px;
}

.how-header .section-title {
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(151, 118, 79, 0.14);
  border-left: 6px solid var(--step-color, var(--brown));
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  padding: 22px 24px;
}

.step:nth-child(1) {
  --step-color: var(--brown);
}

.step:nth-child(2) {
  --step-color: var(--green);
}

.step:nth-child(3) {
  --step-color: var(--orange);
}

.step-number {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--step-color, var(--brown)) 44%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--step-color, var(--brown)) 10%, transparent);
  color: var(--step-color, var(--brown));
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  padding: 10px 12px;
  text-transform: uppercase;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.18;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.66;
}

.cta-row {
  margin-top: 38px;
  text-align: center;
}

.start-cta {
  min-height: 84px;
  min-width: min(100%, 408px);
  border-color: rgba(50, 50, 49, 0.18);
  background: var(--dark);
  color: var(--cream);
  font-size: 31px;
  letter-spacing: 0.12em;
  padding: 26px 58px;
  box-shadow: 0 22px 42px rgba(50, 50, 49, 0.22), 0 0 0 6px rgba(151, 118, 79, 0.09);
}

.start-cta:hover {
  background: var(--brown);
  color: var(--cream);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: var(--cream-muted);
}

.footer-inner {
  width: min(100%, 1088px);
  margin: 0 auto;
  padding: 32px 24px;
  text-align: center;
}

.footer p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.footer .copyright {
  color: var(--cream-soft);
  font-size: 14px;
}

.progress-meta {
  margin-top: 12px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted-strong);
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 1.2;
}

.progress-track {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.16);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--brown));
  transition: width 420ms ease;
}

.milestone-rail {
  position: relative;
  display: flex;
  justify-content: space-between;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.milestone-rail::before {
  position: absolute;
  right: 8px;
  left: 8px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.18);
  content: "";
  transform: translateY(-50%);
}

.milestone-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(244, 239, 229, 0.42);
  border-radius: 50%;
  background: var(--dark);
  color: var(--muted-soft);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.milestone-dot.complete {
  border-color: rgba(244, 239, 229, 0.88);
  background: var(--green);
  color: var(--green);
}

.milestone-dot.current {
  border-color: var(--cream);
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 0 0 5px rgba(151, 118, 79, 0.2);
}

.assessment-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(31, 31, 30, 0.98), rgba(50, 50, 49, 0.96)),
    var(--topo) center top / cover fixed;
  color: var(--cream);
}

.assessment-header {
  border-bottom-color: rgba(244, 239, 229, 0.12);
  background: rgba(31, 31, 30, 0.94);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.assessment-header.sticky {
  background: rgba(31, 31, 30, 0.92);
}

.assessment-header .small-muted,
.assessment-header .progress-labels {
  color: var(--cream-muted);
}

.assessment-header .logo {
  opacity: 0.96;
}

.assessment-wrap {
  width: min(100%, 936px);
  margin: 0 auto;
  padding: 46px 24px 64px;
}

.fundamental-heading {
  margin-bottom: 28px;
}

.fundamental-kicker {
  margin: 0;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.fundamental-heading h1 {
  margin: 12px 0 6px;
  color: var(--cream);
  font-size: 42px;
  line-height: 1.1;
}

.fundamental-heading p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 17px;
  line-height: 1.66;
}

.assessment-trail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 22px;
  align-items: stretch;
  margin: 0 0 30px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(31, 31, 30, 0.94), rgba(50, 50, 49, 0.9));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  padding: 18px 20px;
}

.trail-map {
  display: block;
  width: 100%;
  min-height: 190px;
}

.trail-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trail-path-shadow {
  stroke: rgba(0, 0, 0, 0.3);
  stroke-width: 18;
}

.trail-path-base {
  stroke: rgba(244, 239, 229, 0.74);
  stroke-width: 10;
}

.trail-path-progress {
  stroke: var(--green);
  stroke-width: 10;
  transition: stroke-dasharray 460ms ease;
}

.trail-map-marker circle:first-of-type {
  fill: var(--dark);
  stroke: rgba(244, 239, 229, 0.86);
  stroke-width: 4;
}

.trail-map-marker circle:last-of-type {
  fill: rgba(244, 239, 229, 0.86);
}

.trail-map-marker.complete circle:first-of-type {
  fill: var(--green);
}

.trail-map-marker.current circle:first-of-type {
  fill: var(--brown);
  filter: drop-shadow(0 0 8px rgba(151, 118, 79, 0.55));
  animation: trailPulse 1800ms ease-in-out infinite;
}

.trail-map-marker.current circle:last-of-type {
  fill: var(--cream);
}

@keyframes trailPulse {
  0%,
  100% {
    stroke-width: 4;
  }

  50% {
    stroke-width: 7;
  }
}

.trail-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
}

.trail-line::before {
  position: absolute;
  right: 14px;
  left: 14px;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: rgba(151, 118, 79, 0.28);
  content: "";
  transform: translateY(-50%);
}

.trail-point {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 1px solid rgba(151, 118, 79, 0.38);
  border-radius: 50%;
  background: var(--cream);
  color: var(--muted-strong);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.trail-point.complete {
  border-color: rgba(45, 125, 70, 0.54);
  background: var(--green);
  color: var(--cream);
}

.trail-point.current {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--cream);
  box-shadow: 0 0 0 5px rgba(151, 118, 79, 0.16);
}

.trail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(244, 239, 229, 0.18);
  padding-left: 22px;
}

.trail-copy .mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 14px;
  letter-spacing: 0.09em;
}

.trail-copy strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.trail-copy p {
  margin: 8px 0 0;
  color: var(--cream-muted);
  font-size: 16px;
  line-height: 1.5;
}

.question-list {
  display: grid;
  gap: 24px;
}

.question-card {
  border: 1px solid rgba(244, 239, 229, 0.12);
  border-radius: 8px;
  background: rgba(31, 31, 30, 0.88);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  padding: 24px;
  transform: translateY(0);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.question-card:hover {
  border-color: rgba(151, 118, 79, 0.34);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.assessment-shell .button.text {
  color: var(--cream-muted);
}

.assessment-shell .button.text:hover {
  color: var(--cream);
}

.assessment-shell .button:not(.text):not(:disabled):hover {
  background: var(--cream);
  color: var(--dark);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.question-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.question-index {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.question-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

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

.option-button {
  min-height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding: 10px;
  text-align: center;
  transition: transform 140ms ease, background 140ms ease, border 140ms ease;
}

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

.option-button.selected {
  color: #fff;
  box-shadow: inset 0 0 0 1px currentColor, 0 10px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

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

.lead-shell {
  min-height: 100vh;
  background: var(--cream);
}

.lead-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.ready-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(151, 118, 79, 0.12);
  color: var(--brown);
  font-size: 34px;
}

.lead-intro {
  text-align: center;
}

.lead-intro h1 {
  margin: 18px 0 12px;
  font-size: 42px;
  line-height: 1.1;
}

.sneak-peek {
  margin: 24px auto 32px;
  border: 1px solid rgba(45, 125, 70, 0.28);
  border-radius: var(--radius);
  background: rgba(45, 125, 70, 0.06);
  padding: 20px;
  text-align: left;
}

.sneak-peek p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.62;
}

.sneak-peek .eyebrow {
  color: var(--green);
}

.lead-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(50, 50, 49, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  padding: 12px 14px;
}

.field input::placeholder {
  color: #8a8176;
}

.field input:focus,
.field select:focus {
  border-color: var(--brown);
  outline: 2px solid rgba(151, 118, 79, 0.18);
}

.error-text {
  margin: 4px 0 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 14px;
  font-variant-caps: all-small-caps;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.results-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(50, 50, 49, 0.97), rgba(50, 50, 49, 0.9)),
    var(--topo) center / cover;
  color: var(--cream);
}

.results-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 220px minmax(260px, 0.78fr);
  gap: 28px;
  align-items: center;
}

.report-title-block h1 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 52px;
  line-height: 1.04;
}

.report-title-block .section-copy {
  max-width: 560px;
  margin: 18px 0 24px;
  text-align: left;
  color: var(--cream-muted);
}

.report-kicker {
  margin-bottom: 12px;
  font-size: 17px;
}

.results-hero .small-muted {
  color: var(--cream-muted);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.results-hero .button.dark {
  min-height: 58px;
  background: var(--cream);
  color: var(--dark);
  font-size: 19px;
  padding: 17px 30px;
}

.results-hero .button.dark:hover {
  background: var(--white);
  color: var(--dark);
}

.report-meta {
  margin: 0;
  color: var(--cream-muted);
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.score-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  border: 1px solid rgba(151, 118, 79, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.82);
  padding: 22px 16px;
}

.score-ring {
  display: flex;
  width: 176px;
  height: 176px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 4px solid var(--brown);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.8);
}

.score-number {
  display: block;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
}

.score-out-of {
  display: block;
  color: var(--muted-strong);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.tier-pill {
  display: inline-block;
  border-radius: var(--radius);
  color: white;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  white-space: nowrap;
}

.profile-card {
  border: 1px solid rgba(151, 118, 79, 0.2);
  border-top: 6px solid var(--profile-color, var(--brown));
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(50, 50, 49, 0.09);
}

.profile-card .mini-label {
  margin: 0 0 10px;
  color: var(--profile-color, var(--brown));
  font-size: 16px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-card h2 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.08;
}

.profile-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.62;
}

.profile-focus {
  margin-top: 18px;
  border-left: 4px solid var(--profile-color, var(--brown));
  padding-left: 14px;
}

.profile-focus span {
  display: block;
  color: var(--muted-soft);
  font-size: 15px;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.profile-focus strong {
  display: block;
  margin-top: 4px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.45;
}

.report-summary .wide {
  padding-top: 52px;
}

.report-intro {
  margin-bottom: 26px;
}

.report-copy {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.achievement-card {
  border: 1px solid rgba(151, 118, 79, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.achievement-card span,
.achievement-card small {
  display: block;
  color: var(--muted-soft);
  font-size: 15px;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.achievement-card strong {
  display: block;
  margin: 8px 0 7px;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

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

.score-tile {
  border: 1px solid rgba(151, 118, 79, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
}

.score-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--tile-color, var(--brown));
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.score-tile-top .number-badge {
  width: 28px;
  height: 28px;
  background: color-mix(in srgb, var(--tile-color, var(--brown)) 14%, transparent);
  color: var(--tile-color, var(--brown));
  font-size: 15px;
}

.score-tile h3 {
  min-height: 44px;
  margin: 14px 0 12px;
  font-size: 19px;
  line-height: 1.12;
}

.score-tile-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(50, 50, 49, 0.09);
}

.score-tile-meter div {
  height: 100%;
  border-radius: inherit;
  background: var(--tile-color, var(--brown));
}

.score-tile > strong {
  display: block;
  margin-top: 10px;
  color: var(--tile-color, var(--brown));
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

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

.result-card {
  padding: 24px;
}

.result-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.18;
}

.empty-card-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.score-row-name {
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.35;
}

.score-row-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.recommendations {
  display: grid;
  gap: 24px;
}

.recommendation-card {
  padding: 28px;
}

.report-section-label {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.recommendation-card h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.recommendation-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.recommendation-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.next-steps {
  border-radius: var(--radius);
  background: var(--cream);
  padding: 18px;
}

.next-steps-title {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.next-steps ul,
.next-steps li {
  margin: 0;
}

.next-steps ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.55;
}

.inline-link {
  color: var(--brown);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.breakdown-list {
  display: grid;
  gap: 16px;
}

.breakdown-card {
  padding: 18px;
}

.breakdown-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.breakdown-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.breakdown-title h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
}

.mini-label {
  color: var(--muted-strong);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(50, 50, 49, 0.08);
}

.meter-fill {
  height: 100%;
  border-radius: inherit;
}

.cta {
  border-top: 1px solid var(--line);
  background: var(--brown);
  color: var(--cream);
  text-align: center;
}

.cta .narrow {
  padding-top: 48px;
  padding-bottom: 56px;
}

.cta h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.cta p {
  margin: 0 0 24px;
  color: var(--cream-muted);
  font-size: 17px;
  line-height: 1.58;
}

.calendly-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(31, 31, 31, 0.42);
  padding: 16px;
}

.calendly-window {
  position: relative;
  width: min(calc(100vw - 32px), 1180px);
  height: min(calc(100vh - 32px), 790px);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.calendly-window iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.loading,
.empty-state {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.empty-state .panel {
  max-width: 480px;
  padding: 28px;
}

@media (max-width: 820px) {
  .results-grid,
  .results-hero-inner {
    grid-template-columns: 1fr;
  }

  .score-panel {
    max-width: 360px;
    margin: 0 auto;
  }

  .profile-card {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .fundamental-card {
    min-height: 0;
  }

  .hero-inner,
  .narrow,
  .wide {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .header-inner,
  .assessment-wrap,
  .lead-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .report-title-block h1 {
    font-size: 46px;
  }

  .section-title {
    font-size: 34px;
  }

  .fundamental-heading h1,
  .lead-intro h1 {
    font-size: 38px;
  }

  .card-title {
    font-size: 21px;
  }

  .card-description {
    padding-left: 22px;
  }
}

@media (max-width: 620px) {
  .header-row {
    align-items: flex-start;
  }

  .logo {
    height: 34px;
  }

  .option-row,
  .two-col,
  .assessment-trail-card,
  .achievement-grid,
  .score-map {
    grid-template-columns: 1fr;
  }

  .assessment-trail-card {
    gap: 16px;
  }

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

  .trail-line::before {
    display: none;
  }

  .trail-copy {
    border-left: 0;
    border-top: 1px solid rgba(244, 239, 229, 0.18);
    padding-top: 16px;
    padding-left: 0;
  }

  .trail-map {
    min-height: 150px;
  }

  .question-card {
    padding: 20px;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .nav-actions .button {
    width: 100%;
  }

  .breakdown-heading,
  .score-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .score-ring {
    width: 152px;
    height: 152px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .report-title-block h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero .eyebrow {
    font-size: 16px;
  }

  .hero-cta {
    width: 100%;
    max-width: 408px;
    justify-self: center;
  }

  .start-cta {
    font-size: 27px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero-note {
    font-size: 15px;
  }

  .hero-copy,
  .section-copy {
    font-size: 17px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.16;
  }

  .fundamental-heading h1,
  .lead-intro h1 {
    font-size: 32px;
  }

  .card-description,
  .next-steps li {
    font-size: 15px;
  }

  .card-description {
    padding: 16px 18px 20px;
  }

  .milestone-rail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media print {
  @page {
    size: Letter;
    margin: 0.52in;
  }

  .header,
  .cta,
  .footer,
  .button,
  .no-print {
    display: none !important;
  }

  body {
    background: white;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.45;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .wide,
  .narrow {
    width: 100%;
    padding: 14px 0;
  }

  .section {
    border-top: 0;
  }

  .results-hero {
    border: 1px solid rgba(151, 118, 79, 0.22);
    background:
      linear-gradient(90deg, rgba(50, 50, 49, 0.97), rgba(50, 50, 49, 0.9)),
      var(--topo) center / cover;
    color: var(--cream);
  }

  .results-hero-inner {
    grid-template-columns: 1.15fr 160px 0.95fr;
    gap: 18px;
    padding: 22px;
  }

  .report-title-block h1 {
    font-size: 36px;
  }

  .report-title-block .section-copy {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .profile-card,
  .score-panel,
  .achievement-card,
  .score-tile {
    box-shadow: none;
  }

  .profile-card {
    padding: 16px;
  }

  .profile-card h2 {
    font-size: 22px;
  }

  .profile-card p,
  .profile-focus strong,
  .report-copy,
  .section-copy {
    font-size: 14px;
    line-height: 1.45;
  }

  .score-ring {
    width: 132px;
    height: 132px;
  }

  .score-number {
    font-size: 46px;
  }

  .report-summary .wide {
    padding-top: 18px;
  }

  .achievement-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .achievement-card,
  .score-tile,
  .result-card,
  .recommendation-card,
  .breakdown-card {
    padding: 12px;
  }

  .achievement-card strong {
    font-size: 18px;
  }

  .score-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .score-tile h3 {
    min-height: 32px;
    font-size: 14px;
  }

  .results-grid {
    gap: 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .recommendations,
  .breakdown-list {
    gap: 10px;
  }

  .recommendation-card h3,
  .recommendation-card h4 {
    font-size: 16px;
  }

  .recommendation-card p,
  .next-steps li {
    font-size: 14px;
    line-height: 1.38;
  }

  .result-card,
  .recommendation-card,
  .breakdown-card,
  .achievement-card,
  .score-tile,
  .profile-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
