@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --font-body: 'DM Sans';
  --font-display: 'Manrope';
  --ink: #172a25;
  --forest: #123f35;
  --moss: #637f64;
  --sage: #b8cbb5;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --apricot: #ef9b70;
  --line: rgba(23, 42, 37, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px clamp(24px, 5vw, 76px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  width: fit-content;
}

.brand-mark {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(23, 42, 37, 0.22);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  font-size: 0.8rem;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  width: 34px;
  overflow: hidden;
  padding: 5px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.primary-nav {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  gap: clamp(22px, 3vw, 44px);
}

.primary-nav a,
.login-link { position: relative; }

.primary-nav a::after,
.login-link::after {
  background: var(--apricot);
  bottom: -6px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.login-link:hover::after,
.login-link:focus-visible::after { transform: scaleX(1); }

.login-link {
  font-size: 0.9rem;
  font-weight: 700;
  justify-self: end;
}

.hero {
  display: grid;
  gap: clamp(48px, 8vw, 124px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 740px;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 104px) 110px;
  position: relative;
}

.hero::before {
  background: var(--sage);
  border-radius: 50%;
  content: '';
  height: 300px;
  left: -205px;
  opacity: 0.36;
  position: absolute;
  top: 260px;
  width: 300px;
}

.hero-copy {
  align-self: center;
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

h1, h2 {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.15rem, 6vw, 6.5rem);
  font-weight: 650;
  line-height: 0.98;
  margin: 0;
}

h1 span { color: var(--forest); display: block; }

.hero-intro {
  color: #445c54;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.68;
  margin: 34px 0 0;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border: 1px solid var(--forest);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.93rem;
  font-weight: 800;
  gap: 20px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--paper); }
.button-primary:hover, .button-primary:focus-visible { background: #0b3028; }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--paper); }
.hero-note { color: #6c7d77; font-size: 0.8rem; margin: 18px 0 0 12px; }

.framework-preview {
  align-self: center;
  background-color: var(--forest);
  background-image:
    linear-gradient(rgba(184, 203, 181, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 203, 181, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px solid rgba(184, 203, 181, 0.18);
  border-radius: 28px;
  box-shadow: 0 36px 80px rgba(18, 63, 53, 0.18);
  color: var(--paper);
  min-height: 500px;
  overflow: hidden;
  padding: 52px clamp(28px, 4vw, 54px) 38px;
  position: relative;
}

.framework-preview::after {
  background: linear-gradient(90deg, transparent, rgba(239, 155, 112, 0.18));
  content: '';
  height: 1px;
  position: absolute;
  right: 0;
  top: 46%;
  transform: rotate(-12deg);
  transform-origin: right;
  width: 32%;
}

.preview-heading {
  display: grid;
  gap: 7px;
  max-width: 390px;
  position: relative;
  z-index: 2;
}

.preview-heading span {
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.preview-heading strong {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(56px, 1fr));
  list-style: none;
  margin: 72px -18px 28px;
  min-height: 190px;
  padding: 0 18px;
  position: relative;
  z-index: 2;
}

.roadmap-list li {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transform: translateY(var(--roadmap-rise));
}

.roadmap-list li:nth-child(1) { --roadmap-rise: 88px; }
.roadmap-list li:nth-child(2) { --roadmap-rise: 66px; }
.roadmap-list li:nth-child(3) { --roadmap-rise: 44px; }
.roadmap-list li:nth-child(4) { --roadmap-rise: 22px; }
.roadmap-list li:nth-child(5) { --roadmap-rise: 0px; }

.roadmap-list li::after {
  border-top: 1px dashed rgba(184, 203, 181, 0.65);
  content: '';
  left: calc(50% + 23px);
  position: absolute;
  top: 19px;
  transform: rotate(-15deg);
  transform-origin: left;
  width: calc(100% - 18px);
}

.roadmap-list li:last-child::after {
  border-color: var(--apricot);
  content: '→';
  color: var(--apricot);
  font-size: 1.1rem;
  line-height: 0;
  padding-left: 40px;
  width: 104px;
}

.roadmap-node {
  align-items: center;
  background: var(--forest);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 50%;
  display: flex;
  font-size: 0.76rem;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
  z-index: 2;
}

.roadmap-list li:last-child .roadmap-node {
  background: var(--apricot);
  border-color: var(--apricot);
  color: var(--forest);
}

.roadmap-name {
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 700;
  text-align: center;
}

.roadmap-number {
  color: var(--sage);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.preview-footnote {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  color: var(--sage);
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 20px 0 0;
  padding-top: 22px;
  position: relative;
  z-index: 2;
}

.purpose-strip {
  align-items: center;
  background: var(--apricot);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  gap: clamp(18px, 4vw, 56px);
  justify-content: center;
  padding: 25px 24px;
}

.purpose-strip p { margin: 0; }
.purpose-strip span { font-size: 0.7rem; }

.framework-section {
  background: var(--paper);
  padding: 130px clamp(24px, 7vw, 104px) 150px;
}

.section-heading {
  margin: 0 auto;
  max-width: 1230px;
}

.framework-heading {
  align-items: end;
  display: grid;
  gap: clamp(48px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
}

.framework-heading h2,
.example-copy h2,
.starter-copy h2,
.book-copy h2,
.story-statement h2,
.ai-copy h2,
.pathways-heading h2,
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  margin: 0;
}

.framework-heading > p,
.example-copy > p,
.starter-copy > p,
.book-copy > p,
.story-copy p,
.ai-copy > p {
  color: #536760;
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 0;
}

.pillar-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 90px auto 0;
  max-width: 1230px;
}

.pillar-card {
  border-left: 1px solid var(--line);
  min-height: 360px;
  padding: 25px clamp(18px, 2vw, 30px) 30px;
}

.pillar-card:nth-child(1),
.pillar-card:nth-child(2),
.pillar-card:nth-child(3) {
  grid-column: span 2;
}

.pillar-card:nth-child(4),
.pillar-card:nth-child(5) {
  border-top: 1px solid var(--line);
  grid-column: span 3;
}

.pillar-card:last-child { border-right: 1px solid var(--line); }

.card-topline {
  align-items: center;
  color: #82918c;
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  letter-spacing: 0.12em;
}

.card-letter {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.pillar-card h3,
.example-list h3 {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -0.035em;
}

.pillar-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin: 54px 0 15px;
}

.pillar-card p {
  color: #5d6e68;
  line-height: 1.65;
  margin: 0;
}

.pillar-details {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
}

.pillar-details summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
}

.pillar-details summary::-webkit-details-marker { display: none; }
.pillar-details summary span { color: var(--apricot); font-size: 1.2rem; transition: transform 180ms ease; }
.pillar-details[open] summary span { transform: rotate(45deg); }
.pillar-details-content { padding-top: 20px; }
.pillar-details-content p { font-size: 0.86rem; }
.pillar-details-content .detail-label {
  color: var(--moss);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 18px 0 5px;
  text-transform: uppercase;
}
.pillar-details-content .detail-label:first-child { margin-top: 0; }

.example-section {
  background: #e6eadf;
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  padding: 145px clamp(24px, 7vw, 104px);
}

.example-copy { max-width: 560px; }
.example-copy > p { margin-top: 28px; }

.text-link {
  border-bottom: 1px solid var(--forest);
  display: inline-flex;
  font-weight: 800;
  gap: 30px;
  margin-top: 36px;
  padding-bottom: 8px;
}

.example-list { list-style: none; margin: 0; padding: 0; }
.example-list li {
  align-items: start;
  border-top: 1px solid rgba(23, 42, 37, 0.22);
  display: grid;
  gap: 30px;
  grid-template-columns: 44px 1fr;
  padding: 22px 0 25px;
}
.example-list li:last-child { border-bottom: 1px solid rgba(23, 42, 37, 0.22); }
.example-list > li > span { color: var(--moss); font-size: 0.72rem; letter-spacing: 0.12em; padding-top: 5px; }
.example-list h3 { font-family: var(--font-display), sans-serif; font-size: clamp(1.05rem, 1.6vw, 1.35rem); letter-spacing: -0.035em; margin: 0 0 6px; }
.example-list p { color: #536760; line-height: 1.55; margin: 0; max-width: 570px; }

.starter-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(70px, 10vw, 160px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 0.8fr);
  padding: 150px clamp(24px, 9vw, 140px);
}

.workbook-visual { align-items: center; display: flex; height: 570px; justify-content: center; justify-self: center; max-width: 520px; position: relative; width: 100%; }
.workbook-visual::before {
  border: 1px solid rgba(18, 63, 53, 0.24);
  border-radius: 50%;
  content: '';
  height: 470px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 470px;
}
.workbook-visual img {
  border-radius: 5px;
  box-shadow: 0 30px 70px rgba(23, 42, 37, 0.18);
  display: block;
  height: min(500px, 88%);
  object-fit: contain;
  position: relative;
  transform: rotate(-3deg);
  width: auto;
}

.starter-copy { max-width: 580px; }
.starter-copy > p { margin-top: 26px; }
.starter-copy ul { color: #465b53; line-height: 1.8; list-style: none; margin: 26px 0 34px; padding: 0; }
.starter-copy li { padding-left: 26px; position: relative; }
.starter-copy li::before { color: var(--apricot); content: '✦'; font-size: 0.62rem; left: 0; position: absolute; top: 5px; }
.starter-copy > small { color: #778680; display: block; margin: 15px 0 0 12px; }

.book-section {
  align-items: center;
  background: var(--forest);
  color: var(--paper);
  display: grid;
  gap: clamp(70px, 12vw, 180px);
  grid-template-columns: 0.8fr 1fr;
  min-height: 780px;
  overflow: hidden;
  padding: 130px clamp(24px, 9vw, 140px);
}
.book-copy { max-width: 570px; }
.book-copy .eyebrow { color: var(--sage); }
.book-copy > p { color: #c6d2c8; margin-top: 24px; }
.book-copy .book-subtitle { color: var(--apricot); font-family: var(--font-display), sans-serif; font-size: 1.35rem; margin: 12px 0 0; }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--forest); margin-top: 35px; }
.button-light:hover, .button-light:focus-visible { background: var(--apricot); border-color: var(--apricot); }

.book-art { align-items: center; display: flex; height: 550px; justify-content: center; justify-self: center; perspective: 1200px; position: relative; width: min(100%, 460px); }
.book-art::after { background: rgba(0,0,0,.42); border-radius: 50%; bottom: -15px; content: ''; filter: blur(18px); height: 55px; left: 50%; position: absolute; transform: translateX(-50%); width: 350px; }
.book-cover-image {
  border-radius: 3px 9px 9px 3px;
  box-shadow: -20px 24px 55px rgba(0,0,0,.28);
  display: block;
  height: 520px;
  object-fit: contain;
  position: relative;
  transform: rotateY(-10deg) rotateZ(2deg);
  width: auto;
  z-index: 2;
}

.story-section {
  background: var(--paper);
  display: grid;
  gap: clamp(70px, 12vw, 190px);
  grid-template-columns: 1.1fr .7fr;
  padding: 150px clamp(24px, 8vw, 120px);
}
.story-statement { max-width: 800px; }
.story-copy { align-self: end; border-left: 1px solid var(--line); padding-left: clamp(30px, 5vw, 70px); }
.story-copy p + p { margin-top: 24px; }

.ai-section {
  align-items: center;
  background: #0f2822;
  color: var(--paper);
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  padding: 110px clamp(24px, 9vw, 140px);
}

.ai-support-card {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(184, 203, 181, 0.22);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
}

.ai-card-label {
  color: var(--sage);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.ai-support-card ol { list-style: none; margin: 0; padding: 0; }
.ai-support-card li {
  border-top: 1px solid rgba(184, 203, 181, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  padding: 21px 0;
}
.ai-support-card li:last-child { border-bottom: 1px solid rgba(184, 203, 181, 0.18); }
.ai-support-card li > span { color: var(--apricot); font-size: 0.66rem; letter-spacing: 0.1em; padding-top: 3px; }
.ai-support-card strong { font-family: var(--font-display), sans-serif; font-size: 1rem; }
.ai-support-card li p { color: #bdcac1; font-size: 0.83rem; line-height: 1.55; margin: 6px 0 0; }

.ai-copy { max-width: 700px; }
.ai-copy .eyebrow { color: var(--sage); }
.ai-copy > p { color: #c6d2c8; margin-top: 28px; }
.text-link-light { border-color: var(--sage); color: var(--paper); }

.human-control-note {
  align-items: start;
  border-left: 2px solid var(--apricot);
  display: flex;
  gap: 14px;
  margin-top: 30px;
  padding: 5px 0 5px 18px;
}
.human-control-note span { color: var(--apricot); font-size: 0.7rem; padding-top: 4px; }
.human-control-note p { color: #d8e1da; line-height: 1.5; margin: 0; }

.pathways-section {
  background: var(--cream);
  padding: 140px clamp(24px, 8vw, 120px) 155px;
}

.pathways-heading { margin: 0 auto; max-width: 930px; text-align: center; }
.pathways-heading h2 { margin: 0; }
.pathway-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 75px auto 0;
  max-width: 1120px;
}

.pathway-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(30px, 4vw, 52px);
}
.pathway-self { background: var(--paper); }
.pathway-ai { background: #dfe8dc; }
.pathway-label {
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pathway-card h3 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 34px 0 18px;
}
.pathway-card > p { color: #536760; line-height: 1.7; margin: 0; }
.pathway-card ul { color: #465b53; line-height: 1.75; list-style: none; margin: 30px 0 36px; padding: 0; }
.pathway-card li { padding-left: 23px; position: relative; }
.pathway-card li::before { color: var(--apricot); content: '✦'; font-size: 0.58rem; left: 0; position: absolute; top: 5px; }
.pathway-card .button { align-self: flex-start; margin-top: auto; }

.final-cta { background: var(--cream); padding: 145px 24px; text-align: center; }
.final-cta h2 { font-size: clamp(3rem, 6vw, 6rem); margin: 0 auto; max-width: 980px; }
.final-actions { justify-content: center; }

footer {
  align-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr auto 1fr;
  padding: 45px clamp(24px, 5vw, 76px);
}
.footer-brand { align-items: center; display: flex; gap: 12px; }
.footer-brand div { display: grid; }
.footer-brand strong { font-family: var(--font-display), sans-serif; letter-spacing: .14em; }
.footer-brand small { color: #788680; font-size: .67rem; margin-top: 3px; }
footer nav { display: flex; flex-wrap: wrap; font-size: .79rem; gap: 24px; justify-content: center; }
footer nav a:hover, footer nav a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
footer > p { color: #788680; font-size: .75rem; justify-self: end; }

.back-to-top {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(23, 42, 37, 0.22);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 12px 35px rgba(23, 42, 37, 0.16);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  opacity: 0;
  padding: 11px 15px;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  z-index: 50;
}

.back-to-top span { color: var(--apricot); font-size: 1rem; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--cream); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .hero { gap: 70px; grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { max-width: 700px; }
  .framework-preview {
    border-radius: 28px;
    justify-self: center;
    max-width: 560px;
    width: 100%;
  }
  .framework-heading,
  .example-section,
  .starter-section,
  .book-section,
  .story-section,
  .ai-section { grid-template-columns: 1fr; }
  .framework-heading { align-items: start; }
  .pillar-card:nth-child(n) { grid-column: span 3; }
  .example-section { gap: 70px; }
  .ai-support-card { max-width: 620px; width: 100%; }
  .pathway-grid { grid-template-columns: 1fr; max-width: 680px; }
  .starter-section { padding-left: 40px; padding-right: 40px; }
  .book-section { text-align: center; }
  .book-copy { justify-self: center; }
  .book-art { grid-row: 1; }
  .story-copy { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 45px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  footer > p { justify-self: center; }
}

@media (max-width: 560px) {
  .site-header { padding: 18px 20px; }
  .brand-mark { height: 30px; width: 30px; }
  .login-link { font-size: 0.82rem; }
  .hero { min-height: auto; padding: 64px 20px 72px; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .framework-preview { border-radius: 22px; min-height: 610px; padding: 42px 26px 32px; }
  .roadmap-list {
    gap: 16px;
    grid-template-columns: 1fr;
    margin: 34px 0 20px;
    min-height: 0;
    padding: 0;
  }
  .roadmap-list li,
  .roadmap-list li:nth-child(n) {
    display: grid;
    gap: 12px;
    grid-template-columns: 40px 1fr auto;
    transform: none;
  }
  .roadmap-list li::after {
    border-left: 1px dashed rgba(184, 203, 181, 0.65);
    border-top: 0;
    height: 18px;
    left: 19px;
    top: 40px;
    transform: none;
    width: 0;
  }
  .roadmap-list li:last-child::after { display: none; }
  .roadmap-name { font-size: 0.84rem; text-align: left; }
  .roadmap-number { justify-self: end; }
  .preview-footnote { margin-top: 28px; }
  .purpose-strip { gap: 10px 16px; }
  .purpose-strip p:last-child { flex-basis: 100%; text-align: center; }
  .framework-section,
  .example-section,
  .starter-section,
  .book-section,
  .story-section,
  .ai-section { padding: 90px 20px; }
  .pathways-section { padding: 90px 20px 100px; }
  .framework-heading { gap: 30px; }
  .pillar-cards { grid-template-columns: 1fr; margin-top: 55px; }
  .pillar-card:nth-child(n) { border: 0; border-top: 1px solid var(--line); grid-column: auto; min-height: 280px; padding: 25px 8px 35px; }
  .pillar-card:last-child { border-bottom: 1px solid var(--line); }
  .pillar-card h3 { margin-top: 40px; }
  .example-section { gap: 55px; }
  .example-list li { gap: 18px; grid-template-columns: 34px 1fr; }
  .ai-section { gap: 55px; }
  .ai-support-card { padding: 28px 22px; }
  .pathway-grid { margin-top: 50px; }
  .pathway-card { min-height: auto; padding: 32px 26px; }
  .pathway-card .button { align-self: stretch; margin-top: 12px; }
  .starter-section { gap: 40px; }
  .workbook-visual { height: 430px; }
  .workbook-visual::before { height: 340px; width: 340px; }
  .workbook-visual img { height: min(390px, 92%); }
  .starter-copy > small { margin-left: 0; }
  .book-section { min-height: auto; }
  .book-art { height: 465px; transform: scale(.84); transform-origin: center; width: 420px; }
  .story-section { gap: 50px; }
  .ai-section { min-height: auto; }
  .ai-copy h2 { font-size: 2.6rem; }
  .final-cta { padding: 100px 20px; }
  footer { padding: 40px 20px; }
  footer nav { gap: 16px 20px; }
  .back-to-top { bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
