:root {
  --ink: #101814;
  --ink-soft: #34413a;
  --paper: #f7f8f3;
  --white: #ffffff;
  --line: #d7ddd5;
  --line-dark: rgba(255, 255, 255, 0.17);
  --green: #176b4d;
  --green-dark: #0d4d37;
  --accent: #d7f56f;
  --accent-ink: #17200f;
  --muted: #606c65;
  --header-height: 76px;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(16, 24, 20, 0.12);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

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

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  line-height: 1.18;
  font-weight: 570;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

h1 {
  font-size: 64px;
  max-width: 790px;
  margin-bottom: 24px;
}

h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

h3 {
  font-size: 22px;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button svg,
.text-link svg,
.icon-button svg,
.text-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 1.8;
}

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

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

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

.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-accent:hover {
  background: #e2fa91;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 670;
}

.text-link-light {
  color: var(--white);
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  transition:
    background-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: none;
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 760;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 34px;
  display: block;
}

.brand-dot {
  color: var(--accent);
}

.is-scrolled .brand-dot,
.menu-open .brand-dot,
.brand-footer .brand-dot {
  color: var(--green);
}

.brand-mark {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark span {
  position: absolute;
  bottom: 7px;
  width: 3px;
  background: currentColor;
  transform: rotate(34deg);
  transform-origin: bottom;
}

.brand-mark span:first-child {
  left: 10px;
  height: 9px;
}

.brand-mark span:last-child {
  left: 16px;
  height: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 620;
  opacity: 0.84;
}

.desktop-nav a:hover {
  opacity: 1;
}

.button-nav {
  min-height: 44px;
  border-color: var(--green);
  color: var(--green);
}

.is-scrolled .button-nav,
.menu-open .button-nav {
  border-color: var(--green);
  color: var(--green);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  height: 88svh;
  min-height: 620px;
  max-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background: rgba(8, 14, 11, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  display: flex;
  gap: 28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.hero-foot p {
  margin: 0;
}

.hero-foot p + p::before {
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 14px 3px 0;
  border-radius: 50%;
  background: var(--accent);
}

.audience-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-track {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.audience-track span {
  color: var(--muted);
  font-size: 13px;
}

.audience-track strong {
  font-size: 14px;
  font-weight: 650;
}

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

.check-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 58px;
}

.check-heading > *,
.story-opening > *,
.section-heading > *,
.process-grid > *,
.ai-grid > *,
.access-grid > *,
.faq-layout > * {
  min-width: 0;
}

.check-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.check-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

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

.symptom-option {
  min-height: 142px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.symptom-option:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.symptom-option svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--green);
  stroke-width: 1.7;
}

.symptom-option span {
  font-weight: 680;
  line-height: 1.4;
}

.symptom-option.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.symptom-option.is-active svg {
  color: var(--accent);
}

.check-result {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 0;
  margin-top: 18px;
  padding: 46px;
  border: 1px solid rgba(23, 107, 77, 0.45);
  border-radius: var(--radius);
  background: #f0f5ee;
  transition: opacity 140ms ease, transform 140ms ease;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.check-result.is-changing {
  opacity: 0.35;
  transform: translateY(4px);
}

.check-result-main {
  min-width: 0;
  padding-right: 54px;
}

.check-result-main .eyebrow {
  margin-bottom: 14px;
}

.check-result-main h3 {
  max-width: 700px;
  margin: 0 0 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 38px;
}

.check-result-main > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.check-result-action {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 46px;
  border-left: 1px solid rgba(23, 107, 77, 0.24);
}

.check-result-action > span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.check-result-action > span svg {
  width: 17px;
  height: 17px;
}

.check-result-action > strong {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.5;
}

.check-disclaimer {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 107, 77, 0.18);
  color: var(--muted);
  font-size: 11px;
}

.check-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-reassurance span {
  min-height: 72px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.check-reassurance span + span {
  border-left: 1px solid var(--line);
}

.check-reassurance svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--green);
}

.section-story {
  padding-top: 150px;
  background: var(--paper);
}

.story-opening {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 110px;
}

.story-opening h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.story-opening-copy {
  color: var(--ink-soft);
  font-size: 17px;
}

.story-opening-copy p:last-child {
  margin: 26px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 650;
}

.story-gallery {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 68px;
  margin-top: 110px;
}

.story-figure {
  margin: 0;
}

.story-rider {
  margin-top: 180px;
}

.story-image-wrap {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe4dd;
}

.story-rider .story-image-wrap {
  aspect-ratio: 4 / 3;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.story-figure:hover .story-image-wrap img {
  transform: scale(1.018);
}

.story-index {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 780;
}

.story-figure figcaption {
  max-width: 570px;
  padding: 30px 8px 0;
}

.story-figure figcaption .eyebrow {
  margin-bottom: 14px;
}

.story-figure figcaption h3 {
  margin: 0 0 16px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 34px;
  line-height: 1.18;
}

.story-figure figcaption > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.story-bridge {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 70px;
  margin-top: 140px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.story-bridge > p {
  margin: 13px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.story-bridge h2 {
  max-width: 880px;
  margin-bottom: 22px;
}

.story-bridge .text-link {
  grid-column: 2;
  justify-self: start;
}

.section-intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
}

.intro-copy {
  max-width: 930px;
}

.intro-copy > p {
  max-width: 700px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 19px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 96px;
  border-top: 1px solid var(--line);
}

.principles > div {
  min-height: 220px;
  padding: 30px 34px 0 0;
}

.principles > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.principles span {
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
}

.principles h3 {
  margin: 42px 0 10px;
  font-size: 25px;
}

.principles p {
  max-width: 250px;
  color: var(--muted);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 66px;
}

.section-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

.experience-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.persona-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.persona-tab {
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-weight: 670;
  cursor: pointer;
}

.persona-tab:hover {
  color: var(--ink);
}

.persona-tab.is-active {
  background: var(--ink);
  color: var(--white);
}

.experience-panel {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  transition: opacity 150ms ease, transform 150ms ease;
}

.experience-panel.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.persona-story {
  display: flex;
  flex-direction: column;
  padding: 54px;
  border-right: 1px solid var(--line);
}

.persona-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.persona-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 760;
}

.persona-meta strong,
.persona-meta span {
  display: block;
}

.persona-meta strong {
  font-size: 17px;
}

.persona-meta div span {
  color: var(--muted);
  font-size: 13px;
}

.persona-story blockquote {
  max-width: 560px;
  margin: 58px 0 50px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 34px;
  line-height: 1.26;
}

.focus-label {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.focus-label span,
.focus-label strong {
  display: block;
}

.focus-label span {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.focus-label strong {
  font-size: 15px;
}

.journey-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--white);
}

.journey-grid > div {
  display: grid;
  grid-template-columns: 50px 130px 1fr;
  align-items: center;
  gap: 14px;
  padding: 34px 38px;
}

.journey-grid > div + div {
  border-top: 1px solid var(--line);
}

.journey-number {
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
}

.journey-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-grid > div > p:last-child {
  margin: 0;
  font-size: 15px;
}

.section-process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.process-intro {
  position: sticky;
  top: 126px;
  align-self: start;
}

.process-intro > p:last-child {
  max-width: 490px;
  color: var(--muted);
  font-size: 18px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 190px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
}

.process-symbol {
  width: 50px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.process-symbol svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.process-symbol small {
  color: var(--muted);
  font-size: 10px;
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 30px;
}

.process-list p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.section-ai {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.ai-copy h2 {
  max-width: 570px;
}

.ai-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.check-list svg {
  width: 18px;
  flex: 0 0 18px;
  color: var(--accent);
}

.ai-console {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f4f6ef;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.console-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 760;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 107, 77, 0.12);
}

.console-body {
  padding: 42px;
}

.console-kicker {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.console-body h3 {
  max-width: 480px;
  margin: 0 0 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 35px;
}

.console-message {
  max-width: 500px;
  margin-bottom: 34px;
  color: var(--muted);
}

.dimension-row {
  display: grid;
  grid-template-columns: 74px 1fr 28px;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 12px;
}

.dimension-row > div {
  height: 5px;
  overflow: hidden;
  border-radius: 2px;
  background: #dce1d9;
}

.dimension-row i {
  display: block;
  height: 100%;
  background: var(--green);
}

.dimension-row strong {
  text-align: right;
}

.console-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.console-action span,
.console-action strong {
  display: block;
}

.console-action span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.console-action strong {
  font-size: 14px;
}

.icon-button-dark {
  flex: 0 0 44px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.ecosystem-story {
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 118px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.ecosystem-story > img,
.ecosystem-story-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ecosystem-story > img {
  object-fit: cover;
}

.ecosystem-story-overlay {
  background: rgba(7, 13, 10, 0.48);
}

.ecosystem-story figcaption {
  max-width: 710px;
  position: absolute;
  z-index: 1;
  left: 58px;
  bottom: 52px;
}

.ecosystem-story figcaption .eyebrow {
  margin-bottom: 15px;
}

.ecosystem-story h3 {
  margin: 0 0 16px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 54px;
  line-height: 1.14;
}

.ecosystem-story figcaption > p:last-child {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.ecosystem-map {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

.ecosystem-side {
  display: grid;
  gap: 72px;
}

.ecosystem-side article {
  position: relative;
  min-height: 150px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.ecosystem-side article::after {
  content: "";
  position: absolute;
  top: 52px;
  width: 70px;
  height: 1px;
  background: var(--line);
}

.ecosystem-left article::after {
  right: -70px;
}

.ecosystem-right article::after {
  left: -70px;
}

.ecosystem-side article > p {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.ecosystem-side h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.ecosystem-side span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.ecosystem-core {
  width: 190px;
  height: 190px;
  position: relative;
  display: grid;
  place-content: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--paper);
  text-align: center;
}

.ecosystem-core strong {
  position: relative;
  z-index: 1;
  font-size: 19px;
}

.ecosystem-core p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.core-pulse {
  width: 128px;
  height: 128px;
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(23, 107, 77, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.section-impact {
  background: var(--paper);
}

.impact-heading {
  max-width: 790px;
  margin-left: calc((100% - min(1240px, calc(100% - 64px))) / 2);
}

.impact-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.impact-grid > div {
  min-height: 260px;
  padding: 32px 28px 0 0;
}

.impact-grid > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.impact-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.impact-grid h3 {
  margin: 70px 0 12px;
}

.impact-grid p {
  color: var(--muted);
  font-size: 14px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

.faq-heading > p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > p {
  max-width: 680px;
  margin: 0 58px 28px 0;
  color: var(--muted);
}

.section-access {
  padding: 108px 0;
  background: var(--accent);
  color: var(--accent-ink);
}

.section-access .eyebrow {
  color: var(--green-dark);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 100px;
}

.access-grid h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.access-copy > p {
  margin-bottom: 28px;
  color: rgba(23, 32, 15, 0.76);
  font-size: 17px;
}

.access-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 78px 0 24px;
  border-top: 1px solid var(--line);
  background: #eef1ea;
  color: var(--ink);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 70px;
}

.footer-top > div > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-brand-logo {
  width: 142px;
  height: auto;
  display: block;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 60px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #cbd2cc;
  color: var(--muted);
  font-size: 11px;
}

.assessment-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(820px, calc(100svh - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
}

[hidden] {
  display: none !important;
}

.assessment-dialog::backdrop {
  background: rgba(8, 14, 11, 0.7);
  backdrop-filter: blur(5px);
}

.dialog-shell {
  padding: 28px 34px 34px;
}

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

.dialog-header > div {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}

.dialog-label {
  color: var(--green);
  font-weight: 760;
  text-transform: uppercase;
}

.dialog-close {
  flex: 0 0 44px;
  background: transparent;
}

.dialog-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 40px;
}

.dialog-progress i {
  height: 3px;
  border-radius: 2px;
  background: var(--line);
}

.dialog-progress i.is-active {
  background: var(--green);
}

.dialog-step {
  display: none;
}

.dialog-step.is-active {
  display: block;
  animation: step-in 220ms ease both;
}

.dialog-step h2 {
  max-width: 540px;
  margin-bottom: 32px;
  font-size: 42px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.choice-grid label {
  min-width: 0;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid label > span {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 680;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.choice-grid label > span svg {
  width: 20px;
  color: var(--green);
}

.choice-grid input:checked + span {
  border-color: var(--green);
  background: rgba(23, 107, 77, 0.07);
  box-shadow: inset 0 0 0 1px var(--green);
}

.range-wrap {
  padding: 12px 0 30px;
}

.range-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.range-value output {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.range-value span {
  color: var(--muted);
}

#energy-range {
  width: 100%;
  accent-color: var(--green);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.reflection-text span {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
}

.reflection-text textarea {
  width: 100%;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.reflection-text textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 77, 0.1);
}

.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 670;
  cursor: pointer;
}

.result-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.result-loading {
  min-height: 390px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.result-loading > span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.questionnaire-panel h2 {
  margin-bottom: 24px;
  font-size: 36px;
}

.questionnaire-options {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.questionnaire-hint {
  margin: -14px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.questionnaire-option {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font-weight: 680;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.questionnaire-option:hover,
.questionnaire-option:focus-visible {
  border-color: var(--green);
  background: rgba(23, 107, 77, 0.06);
  outline: 0;
}

.questionnaire-option.is-selected {
  border-color: var(--green);
  background: rgba(23, 107, 77, 0.09);
  box-shadow: inset 0 0 0 1px var(--green);
}

.questionnaire-option.is-selected svg {
  color: var(--green);
}

.questionnaire-option svg {
  width: 18px;
  flex: 0 0 18px;
  color: var(--green);
}

.questionnaire-other {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.questionnaire-other label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
}

.questionnaire-other textarea {
  width: 100%;
  margin-bottom: 12px;
  resize: vertical;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  outline: 0;
}

.questionnaire-other textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 77, 0.1);
}

.questionnaire-back {
  margin-top: 2px;
}

.questionnaire-multi-submit {
  width: 100%;
  margin-bottom: 18px;
}

.loading-spinner {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border: 3px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: result-spin 800ms linear infinite;
}

.result-copy {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.result-action {
  margin-bottom: 28px;
  padding: 20px;
  border-left: 3px solid var(--green);
  background: var(--white);
}

.result-action span,
.result-action strong {
  display: block;
}

.result-action span {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.result-question {
  margin: -8px 0 24px;
}

.result-question span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.result-question p {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 20px;
  line-height: 1.45;
}

.understanding-notes {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.understanding-notes summary {
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.understanding-notes p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.understanding-notes ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.result-support,
.result-status {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.55;
}

.result-support {
  border-left: 3px solid #b64032;
  background: #fff2ef;
  color: #74251d;
}

.result-status {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.demo-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1080px) {
  h1 {
    font-size: 60px;
    max-width: 720px;
  }

  h2 {
    font-size: 46px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .check-heading {
    gap: 58px;
  }

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

  .check-result {
    padding: 38px;
  }

  .check-result-main {
    padding-right: 38px;
  }

  .check-result-action {
    padding-left: 38px;
  }

  .faq-layout {
    gap: 70px;
  }

  .story-opening {
    gap: 70px;
  }

  .story-gallery {
    gap: 42px;
  }

  .story-bridge {
    gap: 44px;
  }

  .ecosystem-story {
    height: 560px;
  }

  .process-grid,
  .ai-grid {
    gap: 72px;
  }

  .ecosystem-map {
    grid-template-columns: 1fr 150px 1fr;
    gap: 42px;
  }

  .ecosystem-core {
    width: 150px;
    height: 150px;
  }

  .core-pulse {
    width: 104px;
    height: 104px;
  }

  .ecosystem-left article::after {
    right: -42px;
    width: 42px;
  }

  .ecosystem-right article::after {
    left: -42px;
    width: 42px;
  }

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

  .impact-grid > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .impact-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .access-grid {
    gap: 64px;
  }
}

@media (min-width: 861px) and (max-height: 760px) {
  .hero {
    height: 88svh;
    min-height: 0;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 720px;
    margin-bottom: 16px;
    font-size: 52px;
  }

  .hero-lead {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-note {
    margin-top: 12px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 40px, 720px);
  }

  .section {
    padding: 96px 0;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 42px;
  }

  .desktop-nav,
  .button-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
  }

  .is-scrolled .menu-toggle,
  .menu-open .menu-toggle {
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 26px 20px 30px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(16, 24, 20, 0.12);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a:not(.button) {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-weight: 650;
  }

  .mobile-nav .button {
    margin-top: 10px;
  }

  .hero {
    height: 90svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-lead {
    max-width: 580px;
  }

  .hero-foot {
    display: none;
  }

  .audience-track {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .audience-track::-webkit-scrollbar {
    display: none;
  }

  .audience-track span,
  .audience-track strong {
    flex: 0 0 auto;
  }

  .intro-grid,
  .check-heading,
  .story-opening,
  .story-gallery,
  .story-bridge,
  .section-heading,
  .process-grid,
  .ai-grid,
  .access-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .check-heading {
    gap: 24px;
  }

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

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

  .check-result-main {
    padding-right: 0;
  }

  .check-result-action {
    margin-top: 30px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(23, 107, 77, 0.24);
    border-left: 0;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .intro-grid {
    gap: 22px;
  }

  .story-opening {
    gap: 30px;
  }

  .story-gallery {
    gap: 72px;
    margin-top: 74px;
  }

  .story-rider {
    margin-top: 0;
  }

  .story-image-wrap,
  .story-rider .story-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .story-bridge {
    gap: 22px;
    margin-top: 96px;
  }

  .story-bridge .text-link {
    grid-column: 1;
  }

  .intro-copy > p {
    margin-left: 0;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
  }

  .principles {
    margin-top: 70px;
  }

  .experience-demo {
    overflow-x: auto;
  }

  .persona-tabs {
    min-width: 700px;
  }

  .experience-panel {
    min-width: 700px;
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    gap: 48px;
  }

  .process-intro {
    position: static;
  }

  .ai-grid {
    gap: 54px;
  }

  .ecosystem-map {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ecosystem-story {
    height: 520px;
    margin-bottom: 80px;
  }

  .ecosystem-story figcaption {
    left: 36px;
    bottom: 36px;
  }

  .ecosystem-story h3 {
    font-size: 46px;
  }

  .ecosystem-core {
    grid-row: 1;
    margin-inline: auto;
  }

  .ecosystem-side {
    gap: 0;
  }

  .ecosystem-side article {
    min-height: 0;
    padding: 28px 0;
  }

  .ecosystem-side article::after {
    display: none;
  }

  .access-grid {
    align-items: start;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    height: 92svh;
    min-height: 0;
    max-height: none;
  }

  .hero-overlay {
    background: rgba(8, 14, 11, 0.6);
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

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

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

  .audience-track {
    min-height: 70px;
  }

  .check-heading {
    margin-bottom: 36px;
  }

  .check-heading > p {
    font-size: 16px;
  }

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

  .symptom-option {
    min-height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 18px;
  }

  .check-result {
    padding: 24px;
  }

  .check-result-main h3 {
    font-size: 30px;
  }

  .check-result-action > strong {
    font-size: 16px;
  }

  .check-result-action .button {
    width: 100%;
  }

  .check-disclaimer {
    margin-top: 26px;
  }

  .check-reassurance {
    grid-template-columns: 1fr;
  }

  .check-reassurance span {
    min-height: 58px;
    justify-content: flex-start;
    text-align: left;
  }

  .check-reassurance span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .principles > div {
    min-height: 0;
    padding: 24px 0;
  }

  .principles > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles h3 {
    margin-top: 28px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-story {
    padding-top: 88px;
  }

  .story-opening-copy {
    font-size: 16px;
  }

  .story-gallery {
    gap: 64px;
    margin-top: 62px;
  }

  .story-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .story-rider .story-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .story-figure figcaption {
    padding: 24px 0 0;
  }

  .story-figure figcaption h3 {
    font-size: 29px;
  }

  .story-bridge {
    margin-top: 82px;
    padding-top: 38px;
  }

  .story-bridge h2 {
    font-size: 32px;
  }

  .experience-demo {
    overflow: hidden;
  }

  .persona-tabs {
    min-width: 0;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .persona-tabs::-webkit-scrollbar {
    display: none;
  }

  .persona-tab {
    min-width: 112px;
    flex: 0 0 112px;
  }

  .experience-panel {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .persona-story {
    padding: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .persona-story blockquote {
    margin: 42px 0;
    font-size: 29px;
  }

  .journey-grid > div {
    grid-template-columns: 40px 1fr;
    gap: 8px 12px;
    padding: 28px;
  }

  .journey-grid > div > p:last-child {
    grid-column: 2;
  }

  .process-list li {
    min-height: 170px;
    grid-template-columns: 54px 1fr;
  }

  .console-body {
    padding: 28px 22px;
  }

  .console-body h3 {
    font-size: 30px;
  }

  .console-action {
    align-items: flex-start;
  }

  .ecosystem-story {
    height: 450px;
    margin-bottom: 64px;
  }

  .ecosystem-story > img {
    object-position: 52% center;
  }

  .ecosystem-story-overlay {
    background: rgba(7, 13, 10, 0.58);
  }

  .ecosystem-story figcaption {
    right: 24px;
    left: 24px;
    bottom: 24px;
  }

  .ecosystem-story h3 {
    font-size: 36px;
  }

  .ecosystem-story figcaption > p:last-child {
    font-size: 15px;
  }

  .impact-heading {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

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

  .impact-grid > div,
  .impact-grid > div + div,
  .impact-grid > div:nth-child(3) {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .impact-grid h3 {
    margin-top: 36px;
  }

  .section-access {
    padding: 78px 0;
  }

  .footer-top {
    gap: 42px;
    flex-direction: column;
    padding-bottom: 48px;
  }

  .footer-brand-logo {
    width: 128px;
  }

  .footer-top nav {
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }

  .footer-bottom {
    gap: 18px;
    flex-direction: column;
  }

  .faq-list summary {
    min-height: 74px;
    gap: 18px;
    font-size: 16px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .assessment-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .dialog-shell {
    padding: 20px;
  }

  .dialog-progress {
    margin-bottom: 28px;
  }

  .dialog-step h2 {
    font-size: 34px;
  }

  .questionnaire-panel h2 {
    font-size: 30px;
  }

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

  .choice-grid label > span {
    min-height: 58px;
  }
}

@media (max-width: 360px) and (max-height: 650px) {
  .hero {
    height: 94svh;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.18;
  }

  .hero-lead {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 2px;
  }

  .hero-actions .text-link {
    min-height: 36px;
    font-size: 13px;
  }

  .hero-actions .button {
    font-size: 14px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tree of Life landing experience */
.concept-main {
  background: var(--paper);
}

.brand-footer .brand-dot {
  color: var(--accent);
}

.footer-top nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.tree-hero :focus-visible,
.tree-growth :focus-visible,
.access-section :focus-visible,
.site-footer :focus-visible,
.site-header:not(.is-scrolled) :focus-visible {
  outline-color: var(--accent);
}

.tree-hero {
  height: 92svh;
  min-height: 650px;
  max-height: 920px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b100d;
  color: var(--white);
}

.tree-hero-image,
.tree-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tree-hero-image {
  object-fit: cover;
  object-position: center center;
}

.tree-hero-shade {
  background: rgba(5, 9, 7, 0.26);
}

.tree-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.tree-hero h1 {
  margin-bottom: 12px;
  font-size: 74px;
  line-height: 1.04;
}

.tree-hero-title {
  max-width: 650px;
  margin-bottom: 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 30px;
  line-height: 1.3;
}

.tree-hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.tree-hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.journey-rail {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.journey-rail .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.journey-rail svg {
  width: 16px;
  color: var(--green);
}

.concept-section {
  padding: 108px 0;
}

.section-intro {
  max-width: 790px;
  margin-bottom: 56px;
}

.section-intro > p:last-child,
.dimensions-heading > p:last-child,
.commitment-heading > p:last-child,
.impact-intro > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.opening-story {
  padding-top: 120px;
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 8vw;
  align-items: start;
}

.opening-grid h2 {
  margin-bottom: 0;
  font-size: 54px;
}

.opening-copy {
  padding-top: 34px;
  color: var(--ink-soft);
  font-size: 18px;
}

.opening-copy p:last-child {
  margin-bottom: 0;
}

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

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.journey-steps li {
  min-height: 330px;
  position: relative;
  padding: 32px 28px;
}

.journey-steps li + li {
  border-left: 1px solid var(--line);
}

.journey-steps .step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--muted);
  font-size: 11px;
}

.journey-steps li > svg {
  width: 34px;
  height: 34px;
  margin: 78px 0 32px;
  color: var(--green);
  stroke-width: 1.5;
}

.journey-steps h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.journey-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.dimensions-section {
  background: #eef1ed;
}

.dimensions-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 7vw;
  align-items: start;
}

.dimensions-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.dimensions-heading h2 {
  font-size: 48px;
}

.dimension-illustration {
  max-width: 370px;
  margin: 34px 0 0;
}

.dimension-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.dimension-illustration figcaption {
  max-width: 390px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.dimension-branches path {
  fill: none;
  stroke: #b8c2b9;
  stroke-width: 2;
  stroke-linecap: round;
}

.dimension-node circle {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 5;
}

.dimension-node path {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.node-meaning circle { fill: #5f8a46; }
.node-physical circle { fill: #b4863e; }
.node-mental circle { fill: #4a7d89; }
.node-relational circle { fill: #aa6757; }
.node-vocational circle { fill: #6279a3; }
.node-financial circle { fill: #7b6d86; }
.node-impact circle { fill: #3f7565; }

.dimension-center circle {
  fill: var(--white);
  stroke: #c9d1ca;
  stroke-width: 2;
}

.dimension-center path {
  fill: var(--green);
}

.dimension-list {
  border-top: 1px solid #cbd2cb;
}

.dimension-list article {
  min-height: 114px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #cbd2cb;
}

.dimension-list article > svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  stroke-width: 1.5;
}

.dimension-list h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.dimension-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-journey {
  background: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: stretch;
}

.story-layout figure {
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

.story-layout figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: #19241f;
  color: var(--white);
}

.story-content .eyebrow {
  color: var(--accent);
}

.story-content h2 {
  font-size: 44px;
}

.story-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.story-content blockquote {
  margin: 32px 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 25px;
  line-height: 1.45;
}

.story-outcome {
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.story-outcome span,
.story-outcome strong {
  display: block;
}

.story-outcome span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.story-outcome span svg {
  width: 17px;
}

.commitment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 9vw;
}

.commitment-heading h2 {
  font-size: 50px;
}

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

.commitment-list > div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 20px;
}

.commitment-list svg {
  width: 24px;
  color: var(--green);
}

.tree-growth {
  padding: 108px 0 68px;
  background: #101814;
  color: var(--white);
}

.tree-growth-heading {
  max-width: 800px;
  margin-bottom: 68px;
  text-align: center;
}

.tree-growth-heading h2 {
  font-size: 54px;
}

.tree-growth-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.growth-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 64px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.growth-stages li {
  min-height: 270px;
  position: relative;
  padding: 30px;
}

.growth-stages li + li {
  border-left: 1px solid var(--line-dark);
}

.growth-stages li > span {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.growth-stages li > svg {
  width: 38px;
  height: 38px;
  margin: 62px 0 34px;
  color: var(--accent);
  stroke-width: 1.4;
}

.growth-stages h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.growth-stages p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.tree-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: center;
}

.tree-privacy svg {
  width: 20px;
  flex: 0 0 20px;
  color: var(--accent);
}

.tree-privacy p {
  margin: 0;
}

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

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 7vw;
  align-items: center;
}

.guide-copy h2 {
  font-size: 49px;
}

.guide-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.guide-copy .icon-list {
  margin: 30px 0 36px;
}

.guide-conversation {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f2f4f0;
}

.guide-header {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.guide-header > span:last-child {
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.guide-message {
  margin-bottom: 22px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 25px;
  line-height: 1.45;
}

.guide-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.guide-options span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.guide-action {
  padding: 20px;
  border-left: 3px solid var(--green);
  background: var(--white);
}

.guide-action span,
.guide-action strong {
  display: block;
}

.guide-action span {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.impact-section-new {
  background: #eef1ed;
}

.impact-intro {
  max-width: 850px;
  margin-bottom: 56px;
}

.impact-intro h2 {
  font-size: 54px;
}

.impact-measures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cbd2cb;
  border-bottom: 1px solid #cbd2cb;
}

.impact-measures article {
  min-height: 300px;
  position: relative;
  padding: 34px 28px;
}

.impact-measures article + article {
  border-left: 1px solid #cbd2cb;
}

.impact-measures svg {
  width: 32px;
  height: 32px;
  margin-bottom: 60px;
  color: var(--green);
  stroke-width: 1.5;
}

.impact-measures h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.impact-measures p {
  color: var(--muted);
  font-size: 13px;
}

.impact-measures article > span {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.access-section {
  background: #194a38;
  color: var(--white);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 10vw;
  align-items: center;
}

.access-layout .eyebrow {
  color: var(--accent);
}

.access-layout h2 {
  font-size: 54px;
}

.access-layout > div:first-child > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.access-actions {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.access-actions .button {
  width: 100%;
  margin-bottom: 28px;
}

.access-actions p {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.access-actions p svg {
  width: 18px;
  flex: 0 0 18px;
  color: var(--accent);
}

@media (max-width: 1080px) {
  .tree-hero h1 {
    font-size: 62px;
  }

  .journey-steps,
  .growth-stages,
  .impact-measures {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps li:nth-child(3),
  .journey-steps li:nth-child(4),
  .growth-stages li:nth-child(3),
  .growth-stages li:nth-child(4),
  .impact-measures article:nth-child(3),
  .impact-measures article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .growth-stages li:nth-child(3),
  .impact-measures article:nth-child(3) {
    border-left: 0;
  }

  .guide-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .concept-section {
    padding: 82px 0;
  }

  .tree-hero {
    height: 92svh;
    min-height: 680px;
    max-height: none;
    align-items: flex-end;
  }

  .tree-hero-image {
    object-position: 64% center;
  }

  .tree-hero-shade {
    background: rgba(5, 9, 7, 0.48);
  }

  .tree-hero-content {
    padding-top: 110px;
    padding-bottom: 42px;
  }

  .tree-hero h1 {
    font-size: 46px;
  }

  .tree-hero-title {
    font-size: 24px;
  }

  .tree-hero-lead {
    font-size: 15px;
  }

  .tree-hero .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .journey-rail .container {
    min-height: 64px;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    font-size: 11px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .journey-rail .container::-webkit-scrollbar {
    display: none;
  }

  .journey-rail svg {
    width: 13px;
    flex: 0 0 13px;
  }

  .opening-story {
    padding-top: 90px;
  }

  .opening-grid,
  .dimensions-layout,
  .story-layout,
  .commitment-layout,
  .guide-layout,
  .access-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .opening-grid h2,
  .dimensions-heading h2,
  .commitment-heading h2,
  .tree-growth-heading h2,
  .guide-copy h2,
  .impact-intro h2,
  .access-layout h2 {
    font-size: 38px;
  }

  .opening-copy {
    padding-top: 0;
    font-size: 16px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .journey-steps,
  .growth-stages,
  .impact-measures {
    grid-template-columns: 1fr;
  }

  .journey-steps li,
  .growth-stages li,
  .impact-measures article {
    min-height: 0;
  }

  .journey-steps li + li,
  .growth-stages li + li,
  .impact-measures article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-steps li > svg,
  .growth-stages li > svg,
  .impact-measures svg {
    margin: 24px 0;
  }

  .dimensions-heading {
    position: static;
  }

  .story-layout figure {
    min-height: 420px;
  }

  .story-content {
    padding: 40px 28px;
  }

  .story-content h2 {
    font-size: 35px;
  }

  .commitment-list > div {
    font-size: 18px;
  }

  .tree-growth {
    padding: 84px 0 54px;
  }

  .tree-privacy {
    align-items: flex-start;
    text-align: left;
  }

  .guide-conversation {
    padding: 24px 20px;
  }

  .guide-message {
    font-size: 21px;
  }

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

  .impact-measures article {
    padding: 28px 0 56px;
  }

  .impact-measures article > span {
    right: 0;
  }

  .access-actions {
    padding: 28px 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .tree-hero h1 {
    font-size: 40px;
  }

  .tree-hero-title {
    font-size: 21px;
  }

  .tree-hero-note {
    max-width: 280px;
  }

  .dimension-list article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }
}

/* Digital Sanctuary */
.sanctuary-main {
  background: var(--paper);
}

.sanctuary-main section {
  position: relative;
}

.sanctuary-hero {
  min-height: 920px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b120e;
  color: var(--white);
}

.sanctuary-hero-image,
.sanctuary-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sanctuary-hero-image {
  object-fit: cover;
  object-position: center;
}

.sanctuary-hero-shade {
  background: rgba(4, 9, 6, 0.58);
}

.sanctuary-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.72fr);
  gap: 80px;
  align-items: center;
  padding-top: 136px;
  padding-bottom: 116px;
}

.sanctuary-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 72px;
}

.sanctuary-hero-copy h1 .no-break {
  white-space: nowrap;
}

.sanctuary-hero-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.62;
}

.sanctuary-reflection {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(8, 16, 11, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.reflection-heading > span,
.reflection-response span,
.story-shift span,
.guide-new-insight span,
.impact-measures-new > span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

.reflection-heading > span {
  color: var(--accent);
}

.reflection-heading h2 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 27px;
  line-height: 1.25;
}

.reflection-heading p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.reflection-choices button {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.reflection-choices button:last-child {
  grid-column: 1 / -1;
}

.reflection-choices button:hover,
.reflection-choices button.is-selected {
  border-color: var(--accent);
  background: rgba(215, 245, 111, 0.13);
  color: var(--white);
}

.reflection-choices svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--accent);
  stroke-width: 1.8;
}

.reflection-response {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.reflection-response[hidden] {
  display: none;
}

.reflection-response span {
  color: var(--accent);
}

.reflection-response p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.reflection-response .button {
  width: 100%;
}

.sanctuary-scroll {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  left: 50%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
  transform: translateX(-50%);
}

.sanctuary-scroll svg {
  width: 18px;
}

.sanctuary-opening,
.sanctuary-dimensions,
.human-story,
.guide-new,
.ecosystem-new,
.movement-closing {
  padding: 116px 0;
}

.sanctuary-opening {
  background: #eef1ea;
}

.sanctuary-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
  gap: 112px;
  align-items: start;
}

.opening-statement h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 54px;
}

.opening-narrative {
  padding-top: 35px;
}

.opening-narrative > p {
  color: var(--muted);
  font-size: 17px;
}

.opening-narrative .opening-lead {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 29px;
  line-height: 1.4;
}

.movement-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #cbd2ca;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 730;
}

.movement-line svg {
  width: 15px;
  flex: 0 0 15px;
  color: #8e9b92;
}

.sanctuary-dimensions {
  background: var(--white);
}

.dimensions-new-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.1fr);
  gap: 86px;
  align-items: center;
}

.dimensions-new-copy h2 {
  max-width: 580px;
  font-size: 52px;
}

.dimensions-new-copy > p:last-of-type {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}

.life-map {
  min-width: 0;
}

.life-map-illustration {
  width: min(100%, 610px);
  margin: 0 auto;
}

.life-map-illustration img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  mix-blend-mode: multiply;
}

.life-map-illustration figcaption {
  max-width: 470px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.life-map-svg {
  width: min(100%, 590px);
  height: auto;
  display: block;
  margin-inline: auto;
  overflow: visible;
}

.life-map-lines path {
  fill: none;
  stroke: #a7b5ac;
  stroke-width: 2;
  stroke-linecap: round;
}

.life-map-ring {
  fill: none;
  stroke: #d7ded8;
  stroke-width: 1.5;
  stroke-dasharray: 5 8;
}

.life-map-center circle {
  fill: var(--green-dark);
}

.life-map-center path {
  fill: var(--accent);
}

.life-node circle {
  fill: #176b4d;
}

.life-node:nth-of-type(4) circle,
.life-node:nth-of-type(8) circle {
  fill: #356d7a;
}

.life-node:nth-of-type(5) circle,
.life-node:nth-of-type(9) circle {
  fill: #866d35;
}

.life-node:nth-of-type(6) circle {
  fill: #895b62;
}

.life-node:nth-of-type(7) circle {
  fill: #506b3a;
}

.life-node path {
  fill: none;
  stroke: var(--white);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.life-node text {
  fill: var(--ink);
  font-size: 17px;
  font-weight: 700;
  text-anchor: middle;
}

.dimension-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 92px;
  border-top: 1px solid var(--line);
}

.dimension-index article {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 25px 26px 25px 0;
  border-bottom: 1px solid var(--line);
}

.dimension-index article:nth-child(even) {
  padding-right: 0;
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.dimension-index article > span {
  padding-top: 3px;
  color: #79857e;
  font-size: 12px;
  font-weight: 750;
}

.dimension-index article > svg {
  width: 25px;
  height: 25px;
  color: var(--green);
  stroke-width: 1.7;
}

.dimension-index h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.dimension-index p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.transformation-journey {
  padding: 116px 0 126px;
  overflow: hidden;
  background: #18231e;
  color: var(--white);
}

.transformation-heading {
  max-width: 820px;
  margin-bottom: 70px;
}

.transformation-heading h2 {
  margin-bottom: 20px;
  font-size: 52px;
}

.transformation-heading > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.transformation-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  position: relative;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.transformation-track::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.transformation-track li {
  position: relative;
  min-width: 0;
  padding-right: 18px;
}

.transformation-track li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 23px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: #18231e;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.transformation-track li:nth-child(4) > span,
.transformation-track li:last-child > span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.transformation-track h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.transformation-track p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
  line-height: 1.5;
}

.human-story {
  background: #edf0ec;
}

.human-story-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.human-story-photo {
  margin: 0;
}

.human-story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.human-story-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.human-story-photo figcaption span {
  color: var(--ink);
  font-weight: 700;
}

.human-story-copy h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 48px;
}

.human-story-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.story-shift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 38px 0;
  padding: 26px 0;
  border-top: 1px solid #cbd2cc;
  border-bottom: 1px solid #cbd2cc;
}

.story-shift span {
  color: var(--green);
}

.story-shift strong {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.story-shift > svg {
  width: 22px;
  color: #829087;
}

.human-story-copy blockquote {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--green-dark);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 26px;
  line-height: 1.45;
}

.tree-movement {
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #09100c;
  color: var(--white);
}

.tree-movement-image,
.tree-movement-shade {
  position: absolute;
  inset: 0;
}

.tree-movement-image {
  background-image: url("assets/tree-of-life-hero.webp");
  background-position: center;
  background-size: cover;
}

.tree-movement-shade {
  background: rgba(4, 9, 6, 0.72);
}

.tree-movement-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.65fr);
  gap: 100px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
}

.tree-movement-copy h2 {
  max-width: 760px;
  font-size: 54px;
}

.tree-movement-copy > p:last-of-type {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.tree-identity {
  max-width: 620px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.tree-identity svg {
  width: 21px;
  flex: 0 0 21px;
  color: var(--accent);
}

.leaf-stages {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  list-style: none;
}

.leaf-stages li {
  display: grid;
  grid-template-columns: 28px 38px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.leaf-stages li > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.leaf-stages li > svg {
  width: 27px;
  height: 27px;
  color: var(--accent);
  stroke-width: 1.6;
}

.leaf-stages h3 {
  margin-bottom: 2px;
  font-size: 18px;
}

.leaf-stages p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.guide-new {
  background: var(--white);
}

.guide-new-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  gap: 110px;
  align-items: center;
}

.guide-new-copy h2 {
  max-width: 650px;
  font-size: 52px;
}

.guide-new-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.guide-new-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.guide-new-copy li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
}

.guide-new-copy li svg {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--green);
}

.guide-new-demo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f1f4ef;
  box-shadow: var(--shadow);
}

.guide-new-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.guide-new-header span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 730;
}

.guide-new-header span svg {
  width: 18px;
  color: var(--green);
}

.guide-new-header small {
  color: var(--muted);
  font-size: 12px;
}

.guide-bubble {
  width: calc(100% - 50px);
  margin: 25px 25px 16px;
  padding: 18px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.guide-new-options {
  display: grid;
  gap: 8px;
  padding: 0 25px 24px;
}

.guide-new-options span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid #c6d0c8;
  border-radius: 5px;
  background: transparent;
  color: #3e4c44;
  font-size: 13px;
}

.guide-new-insight {
  padding: 20px 25px 24px;
  background: var(--green-dark);
  color: var(--white);
}

.guide-new-insight span {
  color: var(--accent);
}

.guide-new-insight p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
}

.ecosystem-new {
  background: #eef1ea;
}

.ecosystem-new-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.72fr);
  column-gap: 100px;
  margin-bottom: 60px;
}

.ecosystem-new-heading .eyebrow {
  grid-column: 1 / -1;
}

.ecosystem-new-heading h2 {
  margin-bottom: 0;
  font-size: 52px;
}

.ecosystem-new-heading > p:last-child {
  align-self: end;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
}

.ecosystem-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd2cc;
}

.ecosystem-paths article {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 42px minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: start;
  padding: 28px 26px 28px 0;
  border-bottom: 1px solid #cbd2cc;
}

.ecosystem-paths article:nth-child(even) {
  padding-right: 0;
  padding-left: 26px;
  border-left: 1px solid #cbd2cc;
}

.ecosystem-paths article > span {
  color: #76847b;
  font-size: 11px;
  font-weight: 800;
}

.ecosystem-paths article > svg:first-of-type {
  width: 27px;
  height: 27px;
  color: var(--green);
  stroke-width: 1.7;
}

.ecosystem-paths article > svg:last-of-type {
  width: 18px;
  color: #829087;
}

.ecosystem-paths h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.ecosystem-paths p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.movement-impact {
  padding: 116px 0;
  background: #17221d;
  color: var(--white);
}

.movement-impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 0.9fr);
  gap: 100px;
  align-items: start;
}

.movement-impact-copy h2 {
  max-width: 650px;
  font-size: 52px;
}

.movement-impact-copy > p:last-child {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 17px;
}

.impact-ladder {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-ladder article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-ladder article > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.impact-ladder h3 {
  margin-bottom: 2px;
  font-size: 18px;
}

.impact-ladder p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.impact-ladder strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 650;
  text-align: right;
}

.impact-measures-new {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.impact-measures-new > span {
  color: var(--accent);
}

.impact-measures-new ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.impact-measures-new li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.impact-measures-new li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.movement-closing {
  background: var(--white);
}

.movement-closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.57fr);
  gap: 112px;
  align-items: center;
}

.movement-closing h2 {
  max-width: 770px;
  margin-bottom: 0;
  font-size: 55px;
}

.movement-closing-layout > div:last-child > p {
  color: var(--muted);
  font-size: 17px;
}

.movement-closing small {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.movement-closing small svg {
  width: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  color: var(--green);
}

.sanctuary-hero :focus-visible,
.transformation-journey :focus-visible,
.tree-movement :focus-visible,
.movement-impact :focus-visible {
  outline-color: var(--accent);
}

@media (max-width: 1080px) {
  .sanctuary-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
    gap: 42px;
  }

  .sanctuary-hero-copy h1 {
    font-size: 60px;
  }

  .dimensions-new-layout,
  .guide-new-layout {
    gap: 54px;
  }

  .transformation-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 46px;
  }

  .transformation-track::before {
    display: none;
  }

  .human-story-layout,
  .tree-movement-layout,
  .movement-impact-layout {
    gap: 58px;
  }
}

@media (max-width: 820px) {
  .sanctuary-hero {
    min-height: auto;
  }

  .sanctuary-hero-shade {
    background: rgba(4, 9, 6, 0.64);
  }

  .sanctuary-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .sanctuary-hero-copy h1 {
    max-width: 680px;
    font-size: 54px;
  }

  .sanctuary-reflection {
    max-width: 650px;
  }

  .sanctuary-scroll {
    display: none;
  }

  .sanctuary-opening,
  .sanctuary-dimensions,
  .human-story,
  .guide-new,
  .ecosystem-new,
  .movement-closing,
  .movement-impact {
    padding: 88px 0;
  }

  .sanctuary-opening-grid,
  .dimensions-new-layout,
  .human-story-layout,
  .tree-movement-layout,
  .guide-new-layout,
  .movement-impact-layout,
  .movement-closing-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .opening-narrative {
    padding-top: 0;
  }

  .opening-statement h2,
  .dimensions-new-copy h2,
  .transformation-heading h2,
  .human-story-copy h2,
  .tree-movement-copy h2,
  .guide-new-copy h2,
  .ecosystem-new-heading h2,
  .movement-impact-copy h2,
  .movement-closing h2 {
    font-size: 43px;
  }

  .dimensions-new-layout {
    align-items: start;
  }

  .life-map-svg {
    width: min(100%, 520px);
  }

  .dimension-index {
    margin-top: 62px;
  }

  .transformation-journey {
    padding: 88px 0 96px;
  }

  .transformation-heading {
    margin-bottom: 52px;
  }

  .human-story-photo {
    max-width: 520px;
  }

  .tree-movement {
    min-height: auto;
  }

  .tree-movement-layout {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .leaf-stages {
    max-width: 560px;
  }

  .guide-new-demo {
    max-width: 560px;
  }

  .ecosystem-new-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .impact-measures-new ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .sanctuary-hero-image {
    object-position: 54% center;
  }

  .sanctuary-hero-layout {
    gap: 18px;
    padding-top: 96px;
    padding-bottom: 20px;
  }

  .sanctuary-hero-copy h1 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .sanctuary-hero-copy > p:last-child {
    font-size: 16px;
    line-height: 1.52;
  }

  .sanctuary-reflection {
    padding: 18px;
    backdrop-filter: blur(10px);
  }

  .reflection-heading h2 {
    font-size: 23px;
  }

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

  .reflection-choices button:last-child {
    grid-column: 1 / -1;
  }

  .reflection-choices button {
    min-height: 46px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .sanctuary-opening,
  .sanctuary-dimensions,
  .human-story,
  .guide-new,
  .ecosystem-new,
  .movement-closing,
  .movement-impact {
    padding: 76px 0;
  }

  .opening-statement h2,
  .dimensions-new-copy h2,
  .transformation-heading h2,
  .human-story-copy h2,
  .tree-movement-copy h2,
  .guide-new-copy h2,
  .ecosystem-new-heading h2,
  .movement-impact-copy h2,
  .movement-closing h2 {
    font-size: 36px;
  }

  .opening-narrative .opening-lead {
    font-size: 24px;
  }

  .movement-line {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .movement-line::-webkit-scrollbar {
    display: none;
  }

  .life-map-svg {
    width: 100%;
  }

  .life-node text {
    font-size: 20px;
  }

  .dimension-index {
    grid-template-columns: 1fr;
  }

  .dimension-index article,
  .dimension-index article:nth-child(even) {
    padding: 22px 0;
    border-left: 0;
  }

  .transformation-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .transformation-track li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
    padding: 0 0 30px;
  }

  .transformation-track li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 48px;
    bottom: 0;
    left: 23px;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
  }

  .transformation-track li > span {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .transformation-track h3 {
    margin: 2px 0 4px;
  }

  .human-story-layout,
  .tree-movement-layout,
  .guide-new-layout,
  .movement-impact-layout,
  .movement-closing-layout {
    gap: 40px;
  }

  .human-story-photo figcaption {
    flex-direction: column;
    gap: 2px;
  }

  .story-shift {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-shift > svg {
    transform: rotate(90deg);
  }

  .tree-movement-layout {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .ecosystem-paths {
    grid-template-columns: 1fr;
  }

  .ecosystem-paths article,
  .ecosystem-paths article:nth-child(even) {
    grid-template-columns: 24px 35px minmax(0, 1fr);
    padding: 24px 0;
    border-left: 0;
  }

  .ecosystem-paths article > svg:last-of-type {
    display: none;
  }

  .impact-ladder article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .impact-ladder strong {
    grid-column: 2;
    text-align: left;
  }

  .impact-measures-new {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 52px;
  }

  .impact-measures-new ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .sanctuary-hero-copy h1 {
    font-size: 36px;
  }
}

.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--green);
}
