:root {
  --pine-950: #102e27;
  --pine-800: #1f4a3f;
  --pine-600: #3f7062;
  --sage-300: #a9bcaf;
  --sage-100: #e8f0eb;
  --ink-950: #17211e;
  --ink-700: #45524e;
  --ink-500: #68736f;
  --line-300: #d7deda;
  --cloud: #eef2f0;
  --paper: #f7f3ec;
  --white: #ffffff;
  --terracotta: #9c4f3b;
  --ochre: #7a5a16;
  --blue: #2d6078;
  --success: #2f6b4f;
  --error: #9d3838;
  --focus: #2457d6;
  --font-display: "Source Serif 4", Georgia, Cambria, serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --shadow-1: 0 1px 2px rgba(16, 46, 39, 0.08);
  --shadow-2: 0 18px 48px rgba(16, 46, 39, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--pine-600);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--focus);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

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

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

.section {
  padding-block: 96px;
}

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

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

.section-sage {
  background: var(--sage-100);
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.14;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 650;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  color: var(--ink-700);
  font-size: 1.11rem;
  line-height: 1.5;
}

.section-pine .lead,
.guide-section .lead {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e7c1b3;
}

.section-heading h2 + .lead {
  margin-top: 20px;
}

.section-heading > p:last-child:not(.eyebrow) {
  margin-top: 20px;
}

.narrow-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(247, 243, 236, 0.94);
  border-bottom: 1px solid rgba(215, 222, 218, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  height: 100%;
}

.brand-name {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--pine-950);
  text-decoration: none;
}

.brand-tree-mark {
  --tree-primary: var(--pine-800);
  --tree-accent: var(--terracotta);
  position: relative;
  width: 42px;
  height: 44px;
  flex: 0 0 42px;
}

.tree-trunk,
.tree-limb,
.tree-root {
  position: absolute;
  display: block;
  height: 3px;
  background: var(--tree-primary);
  border-radius: 999px;
}

.tree-trunk {
  top: 10px;
  left: 20px;
  width: 3px;
  height: 25px;
}

.tree-limb-left-high {
  top: 11px;
  left: 5px;
  width: 17px;
  transform: rotate(43deg);
  transform-origin: right center;
}

.tree-limb-left-low {
  top: 21px;
  left: 7px;
  width: 15px;
  transform: rotate(25deg);
  transform-origin: right center;
}

.tree-limb-right-high {
  top: 11px;
  left: 21px;
  width: 18px;
  transform: rotate(-48deg);
  transform-origin: left center;
}

.tree-limb-right-low {
  top: 22px;
  left: 21px;
  width: 19px;
  background: var(--tree-accent);
  transform: rotate(-32deg);
  transform-origin: left center;
}

.tree-root-left {
  top: 34px;
  left: 7px;
  width: 15px;
  transform: rotate(-21deg);
  transform-origin: right center;
}

.tree-root-right {
  top: 34px;
  left: 21px;
  width: 15px;
  transform: rotate(21deg);
  transform-origin: left center;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-wordmark-top {
  color: var(--pine-600);
  font-family: var(--font-body);
  font-size: 0.58rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.brand-wordmark-main {
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.main-nav {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  align-items: center;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
  color: var(--ink-700);
  font-size: 0.83rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--pine-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--pine-950);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.89rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--pine-800);
  border-color: var(--pine-800);
}

.button-primary:hover {
  background: var(--pine-950);
  border-color: var(--pine-950);
}

.button-secondary {
  color: var(--pine-800);
  background: var(--white);
  border-color: var(--pine-800);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--pine-800);
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
}

.button-on-dark {
  color: var(--pine-950);
  background: var(--paper);
  border-color: var(--paper);
}

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

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--pine-800);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.placeholder-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus {
  color: var(--ink-700);
  background: var(--cloud);
  border-color: var(--line-300);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(360px, 5fr);
  gap: 72px;
  align-items: center;
}

.hero-copy > .lead {
  max-width: 610px;
  margin-top: 28px;
  color: var(--ink-950);
}

.hero-copy > p:not(.eyebrow, .lead, .trust-line) {
  max-width: 650px;
  color: var(--ink-700);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  color: var(--ink-500);
  font-size: 0.77rem;
  line-height: 1.4;
  font-weight: 600;
}

.trust-line span {
  position: relative;
}

.trust-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.52em;
  right: -12px;
  width: 3px;
  height: 3px;
  background: var(--sage-300);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;
  width: 220px;
  height: 220px;
  background: var(--sage-100);
  border-radius: 50%;
}

.image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 180px 180px var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-2);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 36px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  box-shadow: var(--shadow-1);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: 96px;
  align-items: start;
}

.prose-column {
  max-width: 660px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line-300);
  border-radius: var(--radius-lg);
}

.signal-strip span {
  display: flex;
  min-height: 118px;
  padding: 18px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  background: var(--paper);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.signal-strip span:not(:last-child) {
  border-right: 1px solid var(--line-300);
}

.signal-strip b {
  color: var(--pine-600);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.everyday-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.everyday-signals article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 138px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-md);
}

.everyday-signals span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--pine-800);
  background: var(--sage-100);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.everyday-signals p {
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.signal-note {
  max-width: none;
}

.simulator-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(520px, 6fr);
  gap: 80px;
  align-items: start;
}

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

.simulator-benefits {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.simulator-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.simulator-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pine-600);
  font-weight: 800;
}

.assessment-card {
  min-height: 520px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1);
}

.assessment-intro h3,
.assessment-result > h3 {
  margin-bottom: 18px;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.assessment-intro > p:not(.eyebrow, .assessment-disclaimer) {
  color: var(--ink-700);
}

.assessment-preview {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.assessment-preview li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.assessment-preview span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--pine-800);
  background: var(--sage-100);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.assessment-disclaimer {
  margin-top: 20px;
  color: var(--ink-500);
  font-size: 0.76rem;
  line-height: 1.5;
}

.assessment-progress {
  height: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--cloud);
  border-radius: 999px;
}

.assessment-progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--terracotta);
  border-radius: inherit;
  transition: width 220ms ease-out;
}

.assessment-counter {
  margin-bottom: 28px;
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.assessment-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.assessment-step legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.25;
  font-weight: 600;
}

.assessment-step label {
  position: relative;
  display: block;
  margin-top: 12px;
  cursor: pointer;
}

.assessment-step input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.assessment-step label > span {
  position: relative;
  display: block;
  min-height: 58px;
  padding: 16px 18px 16px 52px;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.45;
  transition: border-color 160ms ease-out, background 160ms ease-out, box-shadow 160ms ease-out;
}

.assessment-step label > span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--sage-300);
  border-radius: 50%;
}

.assessment-step input:checked + span {
  color: var(--pine-950);
  background: var(--sage-100);
  border-color: var(--pine-600);
  box-shadow: 0 0 0 1px var(--pine-600);
}

.assessment-step input:checked + span::before {
  background: var(--pine-600);
  border: 5px solid var(--white);
  box-shadow: 0 0 0 2px var(--pine-600);
}

.assessment-step input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.assessment-error {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--error);
  font-size: 0.84rem;
  font-weight: 650;
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.assessment-result .result-summary {
  color: var(--ink-700);
  font-size: 1.05rem;
}

.result-priority {
  margin-top: 28px;
  padding: 24px;
  background: var(--sage-100);
  border-left: 4px solid var(--pine-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

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

.result-priority span {
  margin-bottom: 6px;
  color: var(--pine-600);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-priority strong {
  margin-bottom: 8px;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.result-priority p {
  color: var(--ink-700);
  font-size: 0.86rem;
}

.result-timing {
  margin-top: 18px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.result-timing strong {
  color: var(--terracotta);
}

.result-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-300);
}

.result-block h4 {
  margin: 0 0 14px;
  color: var(--pine-800);
  font-size: 1rem;
}

.result-block ul,
.result-block ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.result-safety {
  margin-top: 28px;
  padding: 20px;
  color: var(--ink-950);
  background: #fff2ec;
  border: 1px solid var(--terracotta);
  border-radius: var(--radius-md);
}

.result-safety strong {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
}

.result-safety p {
  font-size: 0.88rem;
}

.result-actions {
  justify-content: flex-start;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-lg);
}

.numbered-card {
  position: relative;
  min-height: 340px;
}

.card-number {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--pine-800);
  background: var(--sage-100);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.numbered-card h3 {
  margin-bottom: 16px;
  color: var(--pine-950);
}

.numbered-card p {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.section-conclusion {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: center;
}

.section-conclusion .button {
  margin-top: 12px;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

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

.signal-card {
  position: relative;
  padding: 32px 32px 32px 88px;
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-md);
}

.signal-index {
  position: absolute;
  top: 32px;
  left: 32px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.signal-card h3 {
  margin-bottom: 12px;
  color: var(--pine-800);
}

.signal-card p {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.card-question {
  padding-top: 16px;
  border-top: 1px solid var(--line-300);
  font-weight: 500;
}

.callout {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 32px auto 0;
  padding: 24px;
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
}

.callout-info {
  background: #e7f2f7;
}

.callout-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.callout h3 {
  margin-bottom: 6px;
  color: var(--blue);
}

.callout p {
  color: var(--ink-950);
  font-size: 0.92rem;
}

.center-action {
  margin-top: 32px;
  text-align: center;
}

.method-heading {
  max-width: 800px;
  margin-bottom: 56px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.method-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--pine-950);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--pine-950);
  background: var(--sage-300);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.method-steps h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.method-steps p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.principle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 32px;
  align-items: center;
  margin-top: 32px;
  padding: 32px;
  background: var(--pine-800);
  border-radius: var(--radius-lg);
}

.principle-card .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.principle-card > p:last-of-type {
  grid-column: 1;
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.3;
}

.principle-card .button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: 48px 96px;
}

.why-copy {
  max-width: 640px;
}

.why-copy p {
  color: var(--ink-700);
}

.why-copy .emphasis-line {
  color: var(--pine-950);
  font-weight: 650;
}

.three-paths {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-lg);
}

.path {
  position: relative;
  min-height: 88px;
  padding: 12px;
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.path i {
  position: absolute;
  right: 12px;
  bottom: 24px;
  left: 12px;
  height: 3px;
  background: var(--line-300);
  border-radius: 3px;
}

.path-strong i {
  height: 14px;
  background: var(--terracotta);
}

.path-balanced i {
  background: var(--pine-600);
}

.path-balanced b {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 39px 20% 0 0;
  background: var(--paper);
  border: 3px solid var(--pine-600);
  border-radius: 50%;
}

.support-grid article {
  padding-top: 24px;
  border-top: 2px solid var(--sage-300);
}

.support-grid span {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.support-grid h3 {
  margin: 20px 0 12px;
  color: var(--pine-800);
}

.support-grid p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.decision-heading {
  margin-bottom: 48px;
}

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

.decision-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-lg);
}

.decision-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--pine-800);
  background: var(--sage-100);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.decision-card h3 {
  margin-bottom: 14px;
  color: var(--pine-800);
}

.decision-card p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.decision-card strong {
  display: block;
  margin: 22px 0 6px;
  color: var(--terracotta);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-case-study {
  max-width: 900px;
}

.method-case-study p {
  color: var(--ink-700);
}

.method-case-study .lead {
  color: var(--ink-950);
}

.method-case-principle {
  margin-top: 40px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--pine-800);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.3;
}

.contextual-guide-cta {
  color: var(--ink-950);
  background: var(--sage-100);
  text-align: center;
}

.contextual-guide-cta-inner {
  max-width: 820px;
}

.contextual-guide-cta h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.contextual-guide-cta .lead {
  max-width: 680px;
  margin: 22px auto 30px;
  color: var(--ink-700);
}

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

.product-card {
  display: flex;
  min-height: 470px;
  padding: 32px;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-lg);
}

.product-featured {
  background: var(--sage-100);
  border-color: var(--sage-300);
}

.product-cover {
  display: block;
  width: min(100%, 180px);
  height: auto;
  margin: 0 auto 26px;
  border: 1px solid rgba(23, 61, 53, 0.14);
  border-radius: 4px 10px 10px 4px;
  box-shadow: 12px 16px 28px rgba(23, 61, 53, 0.16);
}

.product-bundle {
  grid-column: span 2;
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  padding: 38px;
  background: linear-gradient(145deg, #edf3ef 0%, #f7f3ec 100%);
  border-color: var(--sage-300);
  box-shadow: 0 24px 60px rgba(23, 61, 53, 0.1);
}

.bundle-visual {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  padding: 24px 10px 32px;
}

.bundle-visual::before {
  position: absolute;
  inset: 10% 3% 5%;
  background: rgba(145, 166, 154, 0.16);
  border-radius: 48% 48% 28px 28px;
  content: "";
}

.bundle-book {
  position: relative;
  display: flex;
  width: 180px;
  aspect-ratio: 0.67;
  padding: 24px 20px 20px;
  flex-direction: column;
  color: var(--pine-950);
  background: linear-gradient(160deg, #f8f3e8 0%, #dce5dd 100%);
  border: 1px solid rgba(23, 61, 53, 0.16);
  border-radius: 3px 10px 10px 3px;
  box-shadow: 16px 20px 32px rgba(23, 61, 53, 0.2);
  transform: rotate(-4deg);
  z-index: 2;
}

.bundle-book::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: rgba(23, 61, 53, 0.14);
  content: "";
}

.bundle-book-secondary {
  width: 160px;
  margin-left: -28px;
  background: linear-gradient(160deg, #fffdf9 0%, #eee4d6 100%);
  transform: translateY(34px) rotate(5deg);
  z-index: 1;
}

.bundle-book-label {
  color: var(--terracotta);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle-book-title {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.04;
}

.bundle-book-secondary .bundle-book-title { font-size: 1.32rem; }

.bundle-book-subtitle {
  margin-top: 14px;
  color: var(--pine-800);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-style: italic;
  line-height: 1.45;
}

.bundle-book-author {
  margin-top: auto;
  color: var(--pine-800);
  font-size: 0.58rem;
  font-weight: 700;
}

.bundle-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-card.product-bundle h3 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.bundle-includes {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.bundle-includes li {
  padding: 13px 15px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.5;
}

.bundle-includes strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pine-950);
}

.bundle-offer {
  display: flex;
  gap: 18px;
  margin-top: auto;
  align-items: center;
  flex-wrap: wrap;
}

.bundle-price {
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.bundle-price small {
  display: block;
  color: var(--ink-500);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}

.product-stage {
  color: var(--pine-600);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  padding: 5px 10px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 750;
}

.badge-paid {
  color: var(--white);
  background: var(--pine-800);
}

.badge-coming {
  color: var(--ochre);
  background: #f2e8cf;
}

.product-card h3 {
  margin-bottom: 14px;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.22;
}

.product-card p {
  color: var(--ink-700);
  font-size: 0.88rem;
}

.product-card .product-for {
  color: var(--pine-800);
  font-weight: 700;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 24px;
  padding: 24px 0 0;
  list-style: none;
}

.product-details li {
  padding: 6px 9px;
  color: var(--pine-800);
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.product-card .button:disabled {
  margin-top: auto;
  color: var(--ink-700);
  background: var(--cloud);
  border-color: var(--line-300);
  cursor: not-allowed;
  opacity: 1;
}

.product-status {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink-500);
  border-top: 1px solid var(--line-300);
  font-size: 0.76rem;
  line-height: 1.5;
}

.collection-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 64px;
  margin-top: 32px;
  padding: 36px;
  color: var(--white);
  background: var(--pine-950);
  border-radius: var(--radius-lg);
}

.collection-roadmap h3 {
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.collection-roadmap ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-roadmap li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.collection-roadmap li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.collection-roadmap li span,
.collection-roadmap li strong {
  display: block;
}

.collection-roadmap li span {
  margin-bottom: 4px;
  color: var(--sage-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collection-roadmap li strong {
  font-size: 0.9rem;
  font-weight: 650;
}

.collection-promise {
  max-width: 880px;
  margin: 24px 0 0;
  color: var(--ink-500);
  font-size: 0.78rem;
}

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

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(360px, 4fr);
  gap: 80px;
  align-items: start;
}

.guide-content h2 {
  max-width: 13ch;
}

.guide-content > p:not(.eyebrow, .lead) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.guide-content h3 {
  margin: 32px 0 16px;
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--pine-950);
  background: var(--sage-300);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.guide-preview {
  position: relative;
  height: 280px;
  max-width: 620px;
  margin-top: 48px;
}

.guide-page {
  position: absolute;
  top: 0;
  width: 185px;
  height: 250px;
  padding: 24px 18px;
  color: var(--pine-950);
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.guide-page span {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.page-one { left: 0; transform: rotate(-7deg); }
.page-two { left: 145px; z-index: 2; transform: translateY(8px); }
.page-three { left: 290px; transform: rotate(7deg); }

.guide-page i {
  display: block;
  height: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--line-300);
  border-radius: 3px;
}

.guide-page b {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  place-items: center;
  color: var(--white);
  background: var(--pine-800);
  border-radius: 50%;
  font-size: 0.7rem;
}

.form-card {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding: 40px;
  color: var(--ink-950);
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding-block: 80px 48px;
  background: var(--sage-100);
  border-bottom: 1px solid var(--sage-300);
}

.legal-hero .container,
.legal-content .container {
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 18ch;
  margin-top: 12px;
}

.legal-updated {
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.legal-content {
  padding-block: 64px 96px;
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line-300);
}

.legal-content h2 {
  margin-bottom: 16px;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: var(--pine-900);
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-700);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-note {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--sage-300);
  border-radius: var(--radius-md);
}

.company-data {
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.6;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.89rem;
  font-weight: 700;
}

.field-group input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  color: var(--ink-950);
  background: var(--white);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-sm);
}

.field-group input:hover {
  border-color: var(--pine-800);
}

.field-group input[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 1px var(--error);
}

.help-text,
.privacy-copy,
.field-error {
  font-size: 0.76rem;
  line-height: 1.5;
}

.help-text {
  margin-top: 8px;
  color: var(--ink-700);
}

.field-error {
  min-height: 1.5em;
  margin-top: 4px;
  color: var(--error);
  font-weight: 600;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 20px;
}

.checkbox-group input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--pine-800);
}

.checkbox-group label {
  font-size: 0.82rem;
  line-height: 1.5;
}

.consent-help {
  margin-left: 36px;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-submit[aria-busy="true"] .button-spinner {
  display: inline-block;
}

.button-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.privacy-copy {
  margin-top: 20px;
  padding-top: 20px;
  color: var(--ink-700);
  border-top: 1px solid var(--line-300);
}

.form-result {
  padding-block: 24px;
  text-align: center;
}

.form-result[hidden] {
  display: none;
}

.result-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}

.form-result h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.form-result p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.form-result .button {
  margin-top: 12px;
}

.form-result-error .result-mark {
  background: var(--error);
}

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

.assistant-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(520px, 6fr);
  gap: 80px;
  align-items: start;
}

.assistant-heading {
  position: static;
}

.assistant-heading h2 {
  max-width: 13ch;
}

.assistant-promises {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.assistant-promises li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.assistant-promises li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pine-600);
  font-weight: 800;
}

.assistant-widget {
  min-height: 590px;
  background: var(--paper);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.assistant-start {
  display: grid;
  padding: 48px;
  justify-items: start;
}

.assistant-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--pine-800);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.assistant-start h3 {
  max-width: 22ch;
  margin-bottom: 14px;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.assistant-start > p:not(.assistant-privacy) {
  max-width: 580px;
  color: var(--ink-700);
}

.assistant-disclaimer {
  width: 100%;
  margin: 22px 0 28px;
  padding: 22px 24px;
  background: var(--white);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.assistant-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pine-950);
}

.assistant-disclaimer p,
.assistant-privacy,
.assistant-session-note {
  color: var(--ink-700);
  font-size: 0.8rem;
}

.assistant-privacy {
  margin-top: 18px;
}

.assistant-chat {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  background: var(--white);
}

.assistant-toolbar {
  display: flex;
  min-height: 72px;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--pine-950);
  color: var(--white);
}

.assistant-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.assistant-toolbar strong {
  font-size: 0.88rem;
}

.assistant-status-dot {
  width: 9px;
  height: 9px;
  background: #93c7a9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(147, 199, 169, 0.16);
}

.assistant-progress {
  color: var(--sage-300);
  font-size: 0.75rem;
  white-space: nowrap;
}

.assistant-notice {
  padding: 10px 20px;
  color: var(--ochre);
  background: #fff6dd;
  border-bottom: 1px solid #eadba7;
  font-size: 0.76rem;
  line-height: 1.4;
}

.assistant-messages {
  display: flex;
  height: 350px;
  padding: 28px 24px;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--cloud), var(--white));
  scrollbar-color: var(--sage-300) transparent;
}

.assistant-message {
  max-width: 88%;
  padding: 15px 17px;
  border-radius: var(--radius-lg);
}

.assistant-message p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.assistant-message-assistant {
  align-self: flex-start;
  color: var(--ink-950);
  background: var(--white);
  border: 1px solid var(--line-300);
  border-bottom-left-radius: 4px;
}

.assistant-message-user {
  align-self: flex-end;
  color: var(--white);
  background: var(--pine-800);
  border-bottom-right-radius: 4px;
}

.assistant-message-label {
  display: block;
  margin-bottom: 6px;
  color: var(--pine-600);
  font-size: 0.67rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.assistant-message-user .assistant-message-label {
  color: var(--sage-300);
}

.assistant-message .assistant-health-notice {
  margin-top: 12px;
  padding-top: 12px;
  color: var(--pine-800);
  border-top: 1px solid var(--line-300);
  font-size: 0.79rem;
  font-weight: 700;
}

.assistant-form {
  padding: 20px 24px 16px;
  background: var(--white);
  border-top: 1px solid var(--line-300);
}

.assistant-form textarea {
  display: block;
  width: 100%;
  min-height: 92px;
  padding: 14px 16px;
  resize: vertical;
  color: var(--ink-950);
  background: var(--paper);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-md);
  line-height: 1.5;
}

.assistant-form textarea:focus {
  border-color: var(--pine-600);
  outline: 3px solid rgba(36, 87, 214, 0.2);
  outline-offset: 1px;
}

.assistant-form textarea:disabled {
  opacity: 0.7;
}

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

.assistant-form-row > span {
  color: var(--ink-500);
  font-size: 0.72rem;
}

.assistant-error {
  min-height: 1.3em;
  margin: 10px 0 0;
  color: var(--error);
  font-size: 0.78rem;
}

.assistant-session-note {
  margin: 0;
  padding: 0 24px 18px;
  text-align: center;
}

.assistant-result {
  padding: 44px;
  background: var(--white);
}

.assistant-result-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-300);
}

.assistant-result-head h3 {
  max-width: 24ch;
  color: var(--pine-950);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.assistant-result > section {
  padding-block: 24px;
  border-bottom: 1px solid var(--line-300);
}

.assistant-result h4 {
  margin: 0 0 10px;
  color: var(--pine-800);
  font-size: 1rem;
}

.assistant-result p,
.assistant-result li {
  color: var(--ink-700);
  font-size: 0.89rem;
}

.assistant-result ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
}

.assistant-emergency {
  margin: 24px 0 0;
  padding: 20px;
  color: #6d2020;
  background: #fff0f0;
  border: 2px solid var(--error);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.assistant-resource {
  background: linear-gradient(90deg, var(--sage-100), transparent);
  padding-inline: 20px;
}

.assistant-result-disclaimer {
  margin-top: 24px;
  font-size: 0.76rem !important;
}

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

.text-button {
  min-height: 48px;
  padding: 8px 12px;
  color: var(--pine-800);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.assistant-action-status {
  min-height: 1.5em;
  margin-top: 12px;
  color: var(--success) !important;
  font-size: 0.78rem !important;
}

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

.commitments-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line-300);
}

.commitments-list article > span {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.commitments-list h3 {
  margin-bottom: 12px;
  color: var(--pine-800);
}

.commitments-list p {
  max-width: 760px;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: 96px;
}

.experience-copy {
  max-width: 650px;
}

.experience-copy > p {
  color: var(--ink-700);
}

.independence-box {
  margin: 32px 0;
  padding: 28px;
  background: var(--sage-100);
  border-left: 4px solid var(--pine-600);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.independence-box h3 {
  margin-bottom: 12px;
  color: var(--pine-800);
}

.independence-box p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 96px;
  align-items: start;
}

.about-page-intro {
  max-width: 860px;
  margin-bottom: 64px;
}

.about-page-intro .lead {
  margin-top: 20px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: 80px;
  align-items: start;
}

.founder-card-large {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin: 0;
}

.about-narrative {
  max-width: 760px;
}

.about-narrative > section:not(.about-start) {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line-300);
}

.about-narrative h3 {
  margin-bottom: 18px;
  color: var(--pine-800);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.about-narrative p {
  color: var(--ink-700);
}

.about-narrative .independence-box {
  margin: 0 0 40px;
}

.about-promise .check-list {
  margin-top: 24px;
}

.about-promise .check-list li {
  color: var(--ink-700);
}

.about-start {
  padding: 32px;
  background: var(--paper);
  border-radius: var(--radius-lg);
}

.about-start .button {
  margin-top: 10px;
}

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

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

.about-copy > p {
  color: var(--ink-700);
}

.founder-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 36px 0 24px;
  padding: 28px;
  color: var(--white);
  background: var(--pine-950);
  border-radius: var(--radius-lg);
}

.founder-monogram {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--pine-950);
  background: var(--sage-300);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card strong {
  font-size: 1rem;
}

.founder-card span {
  color: var(--sage-300);
  font-size: 0.76rem;
}

.founder-card blockquote {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
}

.story-details {
  margin: 24px 0 32px;
  border: 1px solid var(--line-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-details summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  color: var(--pine-800);
  background: var(--paper);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.story-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
}

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

.story-details summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

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

.story-content p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: 96px;
  align-items: start;
}

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

.faq-heading .button {
  margin-top: 24px;
}

.accordion {
  border-top: 1px solid var(--sage-300);
}

.faq-item {
  border-bottom: 1px solid var(--sage-300);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  padding: 24px 0;
  align-items: center;
  color: var(--pine-950);
  background: transparent;
  border: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 2px;
  background: var(--pine-800);
  transition: transform 180ms ease-out;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-panel {
  padding: 0 56px 28px 0;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.final-cta {
  background: var(--paper);
  text-align: center;
}

.final-cta-inner {
  max-width: 900px;
}

.final-cta h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.final-cta .lead {
  max-width: 720px;
  margin: 24px auto 0;
}

.final-guide-cta .button {
  margin-top: 32px;
}

.final-cta-note {
  margin: 14px auto 0;
  color: var(--ink-500);
  font-size: 0.78rem;
}

.final-guide-cta {
  background: var(--sage-100);
}

.final-guide-form {
  position: static;
  max-width: 640px;
  margin: 36px auto 0;
  text-align: left;
  background: var(--white);
}

.final-guide-form .button {
  width: 100%;
  margin-top: 0;
}

.field-group-spaced {
  margin-top: 20px;
}

.product-purchase-note {
  margin: 12px 0 0;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.45;
}

.centered-buttons {
  justify-content: center;
}

.trust-line-centered {
  justify-content: center;
}

.site-footer {
  padding-block: 72px 40px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--pine-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.footer-brand-lockup {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.brand-tree-mark-footer {
  --tree-primary: var(--white);
  --tree-accent: #d7a18f;
}

.site-footer .brand-wordmark-top {
  color: var(--sage-300);
}

.site-footer .brand-wordmark-main {
  color: var(--white);
  font-size: 1.28rem;
}

/* Architettura multipagina */
.page-hero { padding-block: 96px 80px; }
.page-hero .section-heading { max-width: 850px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 720px; }

.home-paths-heading {
  margin-bottom: 40px;
}

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

.home-path-card {
  display: flex;
  min-height: 330px;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1);
}

.home-path-number {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-path-label {
  margin: 30px 0 8px;
  color: var(--pine-600);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-path-card h3 {
  margin: 0 0 14px;
}

.home-path-card > p:last-of-type {
  margin: 0 0 28px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.home-path-card .text-link {
  margin-top: auto;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.home-conversation-preview {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
}

.preview-label, .preview-note { margin: 0; color: var(--ink-500); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; }
.preview-label { margin-bottom: 20px; text-transform: uppercase; }
.preview-message { width: fit-content; max-width: 86%; margin-top: 12px; padding: 14px 16px; border-radius: 14px; font-size: 0.88rem; line-height: 1.5; }
.preview-message-assistant { color: var(--pine-950); background: var(--sage-100); border-bottom-left-radius: 4px; }
.preview-message-user { margin-left: auto; color: var(--white); background: var(--pine-800); border-bottom-right-radius: 4px; }
.preview-note { margin-top: 24px; }

.home-method-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 44px 0 32px; padding: 0; list-style: none; }
.home-method-steps li { padding: 28px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-lg); }
.home-method-steps span { color: #d7a18f; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; }
.home-method-steps h3 { margin: 16px 0 8px; color: var(--white); }
.home-method-steps p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 0.88rem; }

.home-guide-list { padding: 32px; color: var(--ink-700); background: var(--paper); border-radius: var(--radius-xl); }
.home-guide-list > p { margin-top: 0; color: var(--pine-950); font-weight: 750; }
.home-guide-list .check-list li { color: var(--ink-700); }
.home-guide-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 40px 0 28px; }
.home-guide-cards article { padding: 30px; background: var(--paper); border: 1px solid var(--line-300); border-radius: var(--radius-lg); }
.home-guide-cards h3 { margin: 20px 0 10px; }
.home-guide-cards p { margin: 0; color: var(--ink-700); }

.page-assistant .assistant-section, .page-method .section-pine, .page-guides .guide-section, .page-about .about-section { padding-top: 88px; }
.page-assistant .assistant-widget { max-width: 760px; margin-inline: auto; }
.page-assistant .assistant-heading { max-width: 700px; }
.page-assistant .assistant-layout { grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr); }

@media (max-width: 960px) {
  .home-feature-grid, .home-trust-grid, .page-assistant .assistant-layout { grid-template-columns: 1fr; }
  .home-conversation-preview, .home-guide-list { max-width: 720px; }
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a,
.footer-link {
  font-size: 0.78rem;
  line-height: 1.6;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  text-underline-offset: 4px;
}

.footer-contact,
.footer-notes {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-contact p {
  margin-bottom: 4px;
}

.footer-notes {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 48px;
  justify-content: space-between;
  align-items: end;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  :root { --header-height: 72px; }

  .container { width: min(calc(100% - 48px), var(--container)); }
  .section { padding-block: 80px; }
  .header-inner { gap: 18px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 0.76rem; }
  .header-cta { display: none; }

  .hero-grid,
  .guide-grid {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 6fr) minmax(320px, 4fr);
  }

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

  .guide-grid {
    grid-template-columns: minmax(0, 5fr) minmax(340px, 4fr);
  }

  .simulator-grid {
    grid-template-columns: minmax(0, 4fr) minmax(440px, 6fr);
    gap: 48px;
  }

  .assistant-layout {
    grid-template-columns: minmax(0, 4fr) minmax(500px, 6fr);
    gap: 48px;
  }

  .faq-grid,
  .experience-grid,
  .split-intro,
  .why-grid {
    gap: 56px;
  }

  .about-grid { gap: 56px; }
  .about-story-grid { gap: 48px; }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 880px) {
  body { font-size: 17px; }
  .section { padding-block: 64px; }

  .site-header {
    height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
  }

  .brand-name {
    justify-self: center;
  }

  .main-nav {
    width: 100%;
    padding-top: 8px;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 12px 0 14px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-intro,
  .why-grid,
  .experience-grid,
  .guide-grid,
  .faq-grid,
  .simulator-grid,
  .collection-roadmap,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .assistant-layout,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .simulator-heading { position: static; }
  .about-intro { position: static; }
  .assistant-heading,
  .founder-card-large { position: static; }
  .assistant-heading h2 { max-width: 18ch; }
  .everyday-signals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-grid, .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; }
  .product-bundle { grid-column: auto; grid-template-columns: 1fr; }
  .bundle-visual { min-height: 350px; }
  .collection-roadmap { gap: 32px; }
  .collection-roadmap h3 { max-width: none; }

  .hero-grid { gap: 56px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 580px; margin-inline: auto; }
  .image-frame { aspect-ratio: 5 / 4; border-radius: 140px 140px var(--radius-xl) var(--radius-xl); }

  .cards-grid-three {
    grid-template-columns: 1fr;
  }

  .numbered-card { min-height: 0; }
  .card-number { margin-bottom: 24px; }
  .signal-strip { grid-template-columns: repeat(3, 1fr); }
  .signal-strip span:nth-child(3) { border-right: 0; }
  .signal-strip span:nth-child(-n+3) { border-bottom: 1px solid var(--line-300); }

  .method-steps { grid-template-columns: 1fr; }
  .principle-card { grid-template-columns: 1fr; }
  .principle-card .button { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 12px; }

  .three-paths { grid-column: 1; }
  .guide-grid { gap: 56px; }
  .form-card, .faq-heading { position: static; }
  .form-card { max-width: 620px; }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .footer-notes { grid-template-columns: 1fr; }
  .home-path-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { padding-block: 64px 56px; }
  .home-method-steps, .home-guide-cards { grid-template-columns: 1fr; }
  .home-conversation-preview, .home-guide-list { padding: 22px 18px; }
  .product-bundle { gap: 22px; padding: 24px 18px; }
  .bundle-visual { min-height: 300px; padding-inline: 0; }
  .bundle-book { width: 145px; padding: 20px 16px 16px; }
  .bundle-book-secondary { width: 128px; margin-left: -24px; }
  .bundle-book-title { margin-top: 24px; font-size: 1.18rem; }
  .bundle-book-secondary .bundle-book-title { font-size: 1.04rem; }
  .bundle-offer { align-items: stretch; }
  .bundle-offer .button { width: 100%; }
  :root { --header-height: 68px; }

  body {
    font-size: 16px;
    line-height: 1.5;
  }

  .container { width: calc(100% - 40px); }
  .section { padding-block: 56px; }
  h1 { font-size: 2.25rem; line-height: 1.16; }
  h2 { font-size: 1.88rem; line-height: 1.2; }
  h3 { font-size: 1.2rem; }
  .lead { font-size: 1.125rem; line-height: 1.55; }
  .brand-name { max-width: 190px; gap: 8px; }
  .brand-tree-mark { width: 35px; height: 38px; flex-basis: 35px; transform: scale(0.84); transform-origin: left center; }
  .brand-wordmark-top { font-size: 0.5rem; }
  .brand-wordmark-main { font-size: 0.98rem; }
  .home-path-card { min-height: 0; padding: 26px 22px; }

  .hero-grid { gap: 40px; }
  .button-group { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .trust-line { display: grid; gap: 6px; }
  .trust-line span::after { display: none; }
  .image-frame { aspect-ratio: 4 / 5; border-radius: 100px 100px var(--radius-lg) var(--radius-lg); }
  .hero-visual figcaption { right: 10px; bottom: 18px; }
  .hero-visual::before { width: 150px; height: 150px; }

  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-strip span:nth-child(3) { border-right: 1px solid var(--line-300); }
  .signal-strip span:nth-child(even) { border-right: 0; }
  .signal-strip span:nth-child(-n+4) { border-bottom: 1px solid var(--line-300); }
  .signal-strip span { min-height: 96px; }

  .signals-grid { grid-template-columns: 1fr; }
  .signal-card { padding: 28px 24px; }
  .signal-index { position: static; display: block; margin-bottom: 16px; }
  .callout { align-items: flex-start; padding: 20px; }
  .everyday-signals { grid-template-columns: 1fr; }
  .everyday-signals article { min-height: 0; padding: 20px; }
  .assessment-card { min-height: 0; padding: 28px 20px; }
  .assessment-step label > span { padding: 15px 14px 15px 48px; }
  .assessment-step label > span::before { left: 16px; }
  .assessment-actions { display: grid; grid-template-columns: 1fr; }
  .assistant-widget { min-height: 0; border-radius: var(--radius-lg); }
  .assistant-start, .assistant-result { padding: 28px 20px; }
  .assistant-chat { min-height: 0; }
  .assistant-toolbar { align-items: flex-start; flex-direction: column; gap: 4px; }
  .assistant-messages { height: 390px; padding: 22px 16px; }
  .assistant-message { max-width: 94%; }
  .assistant-form { padding: 16px; }
  .assistant-form-row { align-items: stretch; flex-direction: column; gap: 8px; }
  .assistant-form-row .button { width: 100%; }
  .assistant-session-note { padding-inline: 16px; }
  .assistant-result-actions { display: grid; }
  .assistant-result-actions .button, .assistant-result-actions .text-button { width: 100%; }
  .about-page-intro { margin-bottom: 40px; }
  .founder-card-large { margin-bottom: 8px; }
  .about-start { padding: 28px 22px; }
  .collection-roadmap { padding: 28px 22px; }
  .product-card { padding: 28px 22px; }

  .method-steps li { grid-template-columns: 1fr; padding: 28px 24px; }
  .principle-card { padding: 28px 24px; }

  .three-paths { grid-template-columns: 1fr; padding: 24px; }
  .path { min-height: 70px; }

  .cards-grid-four { grid-template-columns: 1fr; }
  .guide-preview {
    width: 100%;
    height: 205px;
    overflow: hidden;
    transform: none;
  }

  .guide-page {
    width: 132px;
    height: 184px;
    padding: 16px 12px;
  }

  .guide-page span {
    margin-bottom: 16px;
    font-size: 0.8rem;
  }

  .page-one { left: 0; }
  .page-two { left: 78px; }
  .page-three { left: 156px; }

  .guide-page i {
    height: 12px;
    margin-bottom: 8px;
  }

  .guide-page b {
    width: 22px;
    height: 22px;
    margin-right: 4px;
  }
  .form-card { padding: 28px 20px; }

  .commitments-list article { grid-template-columns: 48px minmax(0, 1fr); gap: 12px; }
  .faq-panel { padding-right: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .copyright { white-space: normal; }
}

@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;
  }
}

@media print {
  .site-header,
  .button,
  .menu-toggle,
  .guide-preview,
  .hero-visual {
    display: none !important;
  }

  body { color: #000; background: #fff; font-size: 11pt; }
  .section { padding-block: 24pt; break-inside: avoid; }
  .section-pine, .guide-section, .site-footer { color: #000; background: #fff; }
}
