:root {
  --forest-950: #102a25;
  --forest-900: #173b34;
  --forest-800: #245247;
  --forest-700: #2f6758;
  --sage-200: #cbd9d1;
  --sage-100: #e5ece7;
  --gold-500: #bd9852;
  --gold-400: #cfad6c;
  --gold-200: #ead9b5;
  --cream: #fbf8f1;
  --hero-cream: #f4ede1;
  --hero-ivory: #faf6ed;
  --paper: #fffdf9;
  --mist: #f0f2ef;
  --ink: #26332f;
  --muted: #66736e;
  --line: #dfe4df;
  --warning: #8a5c24;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 51, 44, 0.09);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 0.3em;
  font-size: clamp(3.1rem, 14vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--forest-700);
  font-weight: 400;
}

h2 {
  margin-bottom: 0.55em;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.5em;
  font-size: 1.45rem;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow-shell {
  max-width: 850px;
}

.section {
  padding: 84px 0;
}

.section-muted {
  background: var(--mist);
}

.eyebrow,
.panel-kicker {
  margin-bottom: 14px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(26, 60, 52, 0.1);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  width: min(1240px, calc(100% - 28px));
  margin-inline: auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--gold-200);
  background: var(--forest-900);
  border-radius: 50% 50% 45% 45%;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--forest-950);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--forest-950);
  transition: 0.2s ease;
}

.main-nav {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 36px 24px;
  background: var(--paper);
}

.main-nav.open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.main-nav a {
  padding: 14px 8px;
  color: var(--forest-950);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  text-decoration: none;
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
}

.language-option {
  min-width: 31px;
  height: 30px;
  padding: 0 6px;
  color: var(--muted);
  border: 0;
  border-radius: 100px;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.active {
  color: var(--white);
  background: var(--forest-900);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  padding-bottom: 72px;
  align-items: center;
  gap: 58px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  border-bottom: 1px solid rgba(189, 152, 82, 0.16);
  background:
    radial-gradient(circle at 78% 20%, rgba(234, 217, 181, 0.48), transparent 30%),
    linear-gradient(135deg, var(--hero-ivory) 0%, var(--hero-cream) 100%);
  content: "";
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 6vw, 2rem);
  font-style: italic;
}

.hero-description {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:not(.button-disabled):not(.is-disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(20, 55, 46, 0.16);
}

.button:focus-visible,
.language-option:focus-visible,
.menu-toggle:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--forest-900);
}

.button-secondary {
  color: var(--forest-900);
  border-color: var(--forest-800);
  background: transparent;
}

.button-gold {
  color: var(--forest-950);
  background: var(--gold-400);
}

.button-wide {
  width: 100%;
}

.button.is-disabled {
  color: #8a938f;
  background: #dbe0dd;
  pointer-events: none;
}

.trust-note {
  display: flex;
  max-width: 600px;
  margin-top: 28px;
  align-items: flex-start;
  gap: 12px;
}

.trust-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--forest-700);
  border-radius: 50%;
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--forest-900);
  border-radius: 180px 180px 28px 28px;
  box-shadow: var(--shadow);
}

.halo {
  position: absolute;
  border: 1px solid rgba(234, 217, 181, 0.25);
  border-radius: 50%;
}

.halo-one {
  width: 350px;
  height: 350px;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.halo-two {
  width: 255px;
  height: 255px;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
}

.journey-card {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 220px;
  padding: 28px;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 110px 110px 18px 18px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.journey-number {
  display: block;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.9;
}

.journey-label {
  color: var(--sage-200);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.journey-line {
  width: 45px;
  height: 1px;
  margin: 20px auto;
  background: var(--gold-400);
}

.journey-card p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.45;
}

.scripture-fragment {
  position: absolute;
  right: 24px;
  bottom: 23px;
  margin: 0;
  color: rgba(255,255,255,0.52);
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-style: italic;
  text-align: right;
}

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

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.feature-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #b8c1bd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--gold-500);
  border: 1px solid var(--gold-200);
  border-radius: 50%;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.journey-steps {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 16px 0;
  align-items: center;
  column-gap: 14px;
  border-bottom: 1px solid var(--line);
}

.journey-steps li > span {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest-700);
  border: 1px solid var(--sage-200);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.journey-steps strong {
  color: var(--forest-950);
}

.journey-steps small {
  color: var(--muted);
}

.consent-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.consent-intro {
  display: flex;
  padding-bottom: 22px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.consent-intro h3,
.consent-intro p {
  margin: 0;
}

.consent-intro p {
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--forest-700);
  border-radius: 50%;
  font-size: 1.2rem;
}

.consent-list {
  display: grid;
  margin: 24px 0;
  padding: 0;
  gap: 12px;
  border: 0;
}

.consent-list label {
  position: relative;
  display: grid;
  min-height: 68px;
  padding: 15px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.consent-list label:has(input:checked) {
  border-color: var(--forest-700);
  background: #f3f8f5;
}

.consent-checkbox {
  position: absolute;
  opacity: 0;
}

.custom-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid #aab4af;
  border-radius: 7px;
}

.consent-checkbox:focus-visible + .custom-check {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.consent-checkbox:checked + .custom-check {
  border-color: var(--forest-700);
  background: var(--forest-700);
}

.consent-checkbox:checked + .custom-check::after {
  color: var(--white);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.attention-box,
.callout,
.diagnosis-warning {
  padding: 18px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #faf5e9;
}

.attention-box {
  margin-bottom: 24px;
}

.attention-box p,
.callout p,
.diagnosis-warning p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-hint,
.test-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.section-test {
  position: relative;
  color: var(--ink);
  border-top: 1px solid #d2ddd6;
  border-bottom: 1px solid #d2ddd6;
  background:
    radial-gradient(circle at 90% 8%, rgba(189, 152, 82, 0.13), transparent 27%),
    linear-gradient(145deg, #e9f0eb 0%, #f4f3eb 52%, #e5ede8 100%);
}

.section-test::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  height: 5px;
  background: linear-gradient(90deg, var(--forest-800), var(--gold-400), transparent);
  content: "";
  transform: translateX(-50%);
}

.section-test h2,
.section-test h3 {
  color: var(--forest-950);
}

.test-header {
  display: grid;
  margin-bottom: 22px;
  gap: 16px;
}

.test-counter {
  margin: 0;
  color: var(--muted);
}

.test-counter strong {
  color: var(--forest-800);
  font-size: 1.6rem;
}

.progress-track {
  height: 8px;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: 100px;
  border: 1px solid rgba(36, 82, 71, 0.08);
  background: #d5dfd8;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--forest-800), var(--gold-400));
  border-radius: inherit;
  transition: width 0.35s ease;
}

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

.question-card {
  margin: 0;
  padding: 22px 18px;
  border: 1px solid #cbd8d0;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 8px 28px rgba(22, 59, 52, 0.07);
}

.question-card legend {
  display: flex;
  width: 100%;
  padding: 0;
  align-items: flex-start;
  gap: 12px;
  color: var(--forest-950);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.question-card legend span {
  flex: 0 0 auto;
  color: var(--gold-400);
  font-family: "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.scale-options {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 7px;
}

.scale-options label {
  position: relative;
}

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

.scale-options label span {
  display: grid;
  aspect-ratio: 1;
  max-width: 50px;
  margin: auto;
  place-items: center;
  color: var(--forest-800);
  border: 2px solid #9fb5aa;
  border-radius: 50%;
  background: #f4f7f4;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.scale-options input:checked + span {
  color: var(--forest-950);
  border-color: var(--gold-400);
  background: var(--gold-200);
  box-shadow: 0 0 0 4px rgba(189, 152, 82, 0.18);
  transform: scale(1.08);
}

.scale-options input:focus-visible + span {
  outline: 3px solid var(--forest-700);
  outline-offset: 3px;
}

.scale-edge {
  grid-row: 2;
  color: var(--muted);
  font-size: 0.67rem;
}

.scale-edge:first-child {
  grid-column: 1 / 3;
}

.scale-edge:last-child {
  grid-column: 4 / 6;
  text-align: right;
}

.test-note {
  color: var(--muted);
}

.result-section {
  background: var(--cream);
}

.result-hero {
  display: grid;
  margin-bottom: 40px;
  gap: 24px;
}

.result-badge {
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  color: var(--gold-200);
  background: var(--forest-900);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 0 10px rgba(36,82,71,0.08);
}

.result-badge span,
.result-badge small {
  display: block;
}

.result-badge span {
  font-family: Georgia, serif;
  font-size: 3.3rem;
  line-height: 0.9;
}

.result-badge small {
  margin-top: 4px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.result-hero h2 {
  margin-bottom: 12px;
}

.result-quote {
  color: var(--forest-700);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-tags span {
  padding: 7px 12px;
  color: var(--forest-800);
  border: 1px solid var(--sage-200);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.76rem;
}

.result-tags .exploratory-tag {
  color: var(--warning);
  border-color: var(--gold-200);
  background: #faf4e7;
}

.result-grid {
  display: grid;
  gap: 18px;
}

.result-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(20, 54, 46, 0.05);
}

.panel-heading {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.panel-heading h3,
.panel-heading p {
  margin-bottom: 0;
}

.legend-dot {
  display: none;
  color: var(--muted);
  font-size: 0.7rem;
}

.legend-dot::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: var(--forest-700);
  border-radius: 50%;
  content: "";
}

.bar-chart {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
}

.bar-row > span {
  color: var(--muted);
}

.bar-row > div {
  height: 9px;
  overflow: hidden;
  border-radius: 100px;
  background: var(--mist);
}

.bar-row i {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--forest-800), var(--forest-700));
  border-radius: inherit;
}

.bar-row:first-child i {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

.bar-row strong {
  color: var(--forest-950);
  text-align: right;
}

.compact-bars .bar-row {
  grid-template-columns: minmax(98px, 1.2fr) 1fr 40px;
}

.callout {
  margin-top: 25px;
  border-left-color: var(--forest-700);
  background: #f0f6f2;
}

.callout-gold {
  border-left-color: var(--gold-500);
  background: #faf5e9;
}

.zone-list {
  display: grid;
  gap: 22px;
}

.zone-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
}

.zone-list span {
  color: var(--muted);
  font-size: 0.83rem;
}

.zone-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
}

.zone-dot.healthy { background: var(--forest-700); }
.zone-dot.intermediate { background: var(--gold-500); }
.zone-dot.defensive { background: #9a6858; }

.zone-list progress {
  grid-column: 1 / 3;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 100px;
  background: var(--mist);
  appearance: none;
}

.zone-list progress::-webkit-progress-bar {
  background: var(--mist);
  border-radius: 100px;
}

.zone-list progress::-webkit-progress-value {
  background: var(--forest-700);
  border-radius: 100px;
}

.zone-list progress::-moz-progress-bar {
  background: var(--forest-700);
  border-radius: 100px;
}

.zone-list > div:nth-child(2) progress::-webkit-progress-value { background: var(--gold-500); }
.zone-list > div:nth-child(3) progress::-webkit-progress-value { background: #9a6858; }
.zone-list > div:nth-child(2) progress::-moz-progress-bar { background: var(--gold-500); }
.zone-list > div:nth-child(3) progress::-moz-progress-bar { background: #9a6858; }

.zone-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.truth-card {
  display: grid;
  margin-top: 18px;
  padding: 32px 24px;
  gap: 20px;
  color: var(--sage-100);
  border-radius: var(--radius-md);
  background: var(--forest-900);
}

.truth-symbol {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
}

.truth-card .eyebrow {
  color: var(--gold-400);
}

.truth-card blockquote {
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 6vw, 2.25rem);
  line-height: 1.3;
}

.truth-card cite {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-200);
  font-style: normal;
  font-weight: 700;
}

.truth-card div > p:last-child {
  margin: 0;
  color: var(--sage-200);
}

.reflection-grid {
  display: grid;
  margin-top: 18px;
  gap: 18px;
}

.reflection-grid > article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.reflection-grid ol {
  margin: 24px 0 0;
  padding-left: 24px;
}

.reflection-grid ol li {
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
}

.reflection-grid ol li::marker {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-weight: 800;
}

.action-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.action-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.action-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest-700);
  border: 1px solid var(--sage-200);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.action-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.report-actions {
  display: grid;
  margin: 20px 0;
  gap: 10px;
}

.button-disabled {
  justify-content: space-between;
  color: #7c8782;
  border-color: var(--line);
  background: #eceeec;
  cursor: not-allowed;
}

.button-disabled span {
  padding: 3px 8px;
  border-radius: 100px;
  background: #dfe3e0;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.diagnosis-warning {
  border-left-color: #a8725d;
  background: #f8efeb;
}

.next-steps {
  display: grid;
  gap: 42px;
}

.next-steps > div:first-child > p:last-child {
  max-width: 570px;
  color: var(--muted);
}

.next-list {
  display: grid;
  gap: 14px;
}

.next-list > div {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  border-bottom: 1px solid #ccd3cf;
}

.next-list > div > span {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.next-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.next-list .next-summary {
  margin: 12px 0 0;
  padding: 18px 20px;
  color: var(--forest-800);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 253, 249, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer {
  padding: 45px 0;
  color: var(--sage-200);
  background: var(--forest-950);
}

.footer-inner {
  display: grid;
  gap: 20px;
  text-align: center;
}

.brand-footer {
  margin-inline: auto;
  text-align: left;
}

.brand-footer .brand-mark {
  background: var(--gold-500);
  color: var(--forest-950);
}

.brand-footer strong {
  color: var(--white);
}

.brand-footer small {
  color: var(--sage-200);
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
}

.prototype-label {
  color: var(--gold-200);
}

.language-toast {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.language-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 620px) {
  .hero-actions,
  .report-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-width: 210px;
  }

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

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }

  .consent-card {
    padding: 36px;
  }

  .test-header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .question-card {
    padding: 28px;
  }

  .question-card legend {
    font-size: 1.25rem;
  }

  .scale-options {
    grid-template-columns: 70px repeat(5, 1fr) 70px;
  }

  .scale-edge {
    grid-row: 1;
  }

  .scale-edge:first-child {
    grid-column: 1;
  }

  .scale-edge:last-child {
    grid-column: 7;
  }

  .result-hero {
    grid-template-columns: 125px 1fr;
    align-items: center;
  }

  .legend-dot {
    display: inline;
  }

  .bar-row {
    grid-template-columns: 75px 1fr 48px;
    font-size: 0.85rem;
  }

  .truth-card {
    grid-template-columns: 70px 1fr;
    padding: 42px;
  }

  .report-actions .button {
    flex: 1;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 112px 0;
  }

  .header-inner {
    min-height: 80px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    margin-left: auto;
    padding: 0;
    align-items: center;
    gap: 2px;
    background: transparent;
  }

  .main-nav a {
    padding: 10px 8px;
    color: var(--muted);
    border: 0;
    font-family: "Segoe UI", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .main-nav a:hover {
    color: var(--forest-900);
  }

  .hero {
    min-height: calc(100vh - 80px);
    padding-top: 90px;
    padding-bottom: 90px;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 80px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .halo-one {
    width: 460px;
    height: 460px;
  }

  .halo-two {
    width: 330px;
    height: 330px;
    top: 110px;
  }

  .journey-card {
    top: 104px;
    width: 270px;
    padding: 40px 34px;
  }

  .journey-number {
    font-size: 6.5rem;
  }

  .journey-card p {
    font-size: 1.2rem;
  }

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

  .journey-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

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

  .wide-panel {
    grid-column: 1 / 3;
  }

  .wide-panel .bar-chart {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }

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

  .next-steps {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .brand-footer {
    margin: 0;
  }

  .prototype-label {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
