@font-face {
  font-family: DM Sans;
  src: url("assets/dm-sans.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("assets/dm-sans-medium.ttf") format("truetype");
  font-weight: 500 700;
  font-display: swap;
}
@font-face {
  font-family: Instrument Serif;
  src: url("assets/instrument-serif.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Instrument Serif;
  src: url("assets/instrument-serif-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #f8f8f1;
  --ink: #243f36;
  --body: #46514b;
  --muted: #6b7268;
  --line: #dbdfd2;
  --lime: #d6ee98;
  --pale: #eef1e6;
  --white: #fffef9;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #628338;
  outline-offset: 5px;
}
button {
  color: inherit;
}
p {
  color: var(--body);
  margin: 0 0 16px;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  line-height: 0.99;
  letter-spacing: -1.7px;
}
h1 {
  font-size: clamp(70px, 6.5vw, 96px);
}
h2 {
  font-size: 64px;
  margin: 19px 0 22px;
}
h1 em,
h2 em {
  font-weight: 400;
  color: #608052;
}
h3 {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
}
em {
  font-family: var(--serif);
}
ul {
  padding-left: 20px;
}
button {
  border: 0;
}
b,
strong {
  font-weight: 600;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 12px 24px;
}
.skip-link:focus {
  top: 10px;
}
.sidebar {
  width: 238px;
  height: 100dvh;
  position: fixed;
  inset: 0 auto 0 0;
  background: #f0f2e8;
  border-right: 1px solid var(--line);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 31px;
  letter-spacing: -1.4px;
  font-weight: 600;
  line-height: 1;
}
.brand-period {
  color: #668250;
}
.sidebar-subtitle {
  font-size: 8px;
  letter-spacing: 1.3px;
  margin: 16px 0 28px;
  white-space: nowrap;
}
.nav-label {
  font-size: 9px;
  color: #56644d;
  letter-spacing: 1.7px;
  margin: 0 12px 13px;
}
.nav-label.second {
  margin-top: 22px;
}
nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.2;
  padding: 10px 10px;
  margin-bottom: 3px;
  border-radius: 5px;
  min-height: 35px;
  white-space: nowrap;
}
nav a > span:first-child {
  font-size: 10px;
  letter-spacing: 1px;
  color: #56644d;
}
nav a:hover {
  background: #e5e9dc;
}
nav a.active {
  background: #dce7c8;
  color: #274030;
  font-weight: 600;
}
.nav-dot {
  width: 5px;
  height: 5px;
  margin-left: auto;
  background: var(--ink);
  border-radius: 50%;
  display: none;
}
nav a.active .nav-dot {
  display: block;
}
nav i {
  font-size: 7px;
  font-style: normal;
  background: var(--paper);
  padding: 3px 4px;
  letter-spacing: 0.3px;
  margin-left: auto;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 20px 8px 0;
}
.edition {
  font-size: 8px;
  letter-spacing: 0.8px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.small-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #729453;
  flex: none;
}
.sidebar-bottom p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  margin: 13px 0 16px;
}
.download-link {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  font-size: 10px;
  text-decoration: none;
  border-top: 1px solid #d4dac8;
  padding-top: 16px;
}
.mobile-menu {
  display: none;
}
.page {
  margin-left: 238px;
}
.topbar {
  height: 77px;
  border-bottom: 1px solid var(--line);
  margin: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.5px;
}
.slash {
  padding: 0 15px;
  color: #9caa97;
}
.topbar a {
  font-size: 10px;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.topbar a span {
  margin-left: 15px;
  font-size: 17px;
}
.section {
  padding: 77px 48px 74px;
  border-bottom: 1px solid var(--line);
  max-width: 1530px;
  margin: auto;
}
.section.hero {
  padding-top: 34px;
  padding-bottom: 40px;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-description {
  max-width: 370px;
  font-size: 13px;
  line-height: 1.85;
  margin: 25px 0;
}
.button {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  text-decoration: none;
  font-size: 11px;
  border-radius: 4px;
  font-weight: 500;
  line-height: 1.5;
}
.button span {
  font-size: 18px;
}
.primary {
  background: var(--ink);
  color: var(--white);
}
.primary:hover {
  background: #355647;
}
.light {
  background: var(--lime);
  color: var(--ink);
}
.quiet-link {
  font-size: 10px;
  text-decoration: none;
  display: inline-flex;
  gap: 12px;
  margin-left: 16px;
}
.quiet-link:hover,
.download-link:hover {
  text-decoration: underline;
}
.hero-art {
  height: 441px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: absolute;
  border: 1px solid #d3dbc7;
  border-radius: 50%;
  width: 380px;
  height: 380px;
  transform: rotate(-20deg);
}
.orbit-two {
  height: 310px;
  width: 430px;
  transform: rotate(-35deg);
}
.orbit-one:before,
.orbit-two:before {
  content: "";
  position: absolute;
  left: 58px;
  top: 35px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a6bc88;
}
.orbit-two:before {
  left: 320px;
  top: 3px;
  width: 6px;
  height: 6px;
  background: #738b56;
}
.orbit-label {
  position: absolute;
  font-size: 7px;
  letter-spacing: 1.4px;
  color: #6c7e60;
}
.orbit-label.top {
  top: 12px;
  right: 14px;
}
.orbit-label.bottom {
  bottom: 3px;
  left: 88px;
}
.hero-chat {
  width: 284px;
  background: var(--white);
  border: 1px solid #d2d9c8;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 30px #253c3610;
  transform: rotate(-4deg);
  overflow: hidden;
}
.hero-chat-head {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #e2e6d8;
  padding: 13px;
  background: #fffef9;
  font-size: 12px;
  line-height: 1.4;
}
.chat-logo {
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
}
.hero-chat-head small {
  display: block;
  font-size: 6.5px;
  color: #56644d;
}
.chat-menu {
  margin-left: auto;
  font-size: 20px;
}
.hero-chat-body {
  padding: 15px 12px 20px;
  background: #f0f3e8;
}
.chat-day {
  text-align: center;
  font-size: 6px;
  letter-spacing: 1px;
  color: #56644d;
  margin-bottom: 15px;
}
.bubble {
  font-size: 10px;
  line-height: 1.65;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 9px;
  max-width: 91%;
  box-shadow: 0 2px 3px #00000003;
}
.bubble.customer {
  margin-left: auto;
  background: #dcebc7;
  border-bottom-right-radius: 2px;
}
.bubble.assistant {
  background: #fffef9;
  border-bottom-left-radius: 2px;
}
.bubble.short {
  max-width: 78%;
}
.bubble time {
  display: block;
  text-align: right;
  font-size: 6px;
  line-height: 1.1;
  color: #56644d;
  margin-top: 4px;
}
.demo-choices {
  display: flex;
  gap: 6px;
  font-size: 7px;
  color: #506344;
}
.demo-choices span {
  border: 1px solid #c2d0b5;
  padding: 5px 10px;
  border-radius: 4px;
}
.mini-note {
  position: absolute;
  background: var(--white);
  border: 1px solid #d8ddce;
  border-radius: 7px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 5px 15px #243f3607;
  font-size: 10px;
  line-height: 1.6;
}
.mini-note small {
  display: block;
  font-size: 7.5px;
  color: #697563;
}
.note-one {
  top: 37px;
  left: -20px;
  transform: rotate(-6deg);
}
.note-symbol {
  font-size: 27px;
  color: #75925b;
  line-height: 1;
}
.note-two {
  bottom: 21px;
  right: -7px;
  transform: rotate(3deg);
}
.check-symbol {
  border: 1px solid #adbd97;
  background: #eaf2d9;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}
.principle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 42px;
  padding: 22px 0;
  gap: 20px;
}
.principle-strip > div {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 4px 8px;
  border-right: 1px solid var(--line);
}
.principle-strip > div:last-child {
  border: 0;
}
.strip-number {
  font-size: 9px;
  padding-top: 3px;
  color: #56644d;
}
.principle-strip strong {
  font-size: 12px;
  font-weight: 500;
}
.principle-strip div > span:last-child {
  grid-column: 2;
  font-size: 10px;
  color: #56644d;
}
.editor-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  margin-top: 30px;
}
.editor-note > span {
  font-size: 8px;
  letter-spacing: 1.2px;
  padding-top: 5px;
}
.editor-note p {
  font-size: 12px;
  line-height: 1.9;
}
.scope-note {
  font-size: 10px;
  color: #56644d;
  line-height: 1.8;
  padding: 13px 0 0;
}
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.pill {
  border: 1px solid #d3dac7;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 0.2px;
  line-height: 1.4;
  white-space: nowrap;
}
.section-intro {
  max-width: 655px;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.persona-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 30px 0 18px;
}
.persona-tab {
  text-align: left;
  background: transparent;
  border: 1px solid #d6dccd;
  border-radius: 6px;
  padding: 13px 11px;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.persona-tab:hover {
  background: #eef1e5;
}
.persona-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.persona-tab strong {
  font-size: 12px;
  margin-top: 7px;
}
.persona-tab small {
  font-size: 9px;
  opacity: 0.85;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8d5;
  color: #354b35;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  border: 1px solid #c8d4b5;
}
.persona-tab:nth-child(2) .avatar {
  background: #e5d9c6;
}
.persona-tab:nth-child(3) .avatar {
  background: #d5e0e2;
}
.persona-tab:nth-child(4) .avatar {
  background: #ead9d1;
}
.persona-tab:nth-child(5) .avatar {
  background: #e1dced;
}
.persona-tab:nth-child(6) .avatar {
  background: #ece3b7;
}
.story-panel {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  border: 1px solid #d5ddca;
  border-radius: 10px;
  overflow: hidden;
  min-height: 555px;
}
.story-context {
  background: #eaf0df;
  padding: 29px 27px;
  display: flex;
  flex-direction: column;
}
.story-context h3 {
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1.1;
  font-weight: 400;
  margin: 12px 0;
}
.story-context .story-description {
  font-size: 12px;
  line-height: 1.9;
}
.story-facts {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 9px;
  font-size: 10px;
  border-top: 1px solid #d0d9c4;
  border-bottom: 1px solid #d0d9c4;
  padding: 17px 0;
  margin: 4px 0 17px;
}
.story-facts dt {
  color: #56644d;
}
.story-facts dd {
  margin: 0;
}
.story-context h4 {
  font-size: 10px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin: 0 0 8px;
}
.story-context ul {
  font-size: 11px;
  color: #465b3f;
  line-height: 1.8;
  padding-left: 14px;
  margin: 0 0 20px;
}
.story-outcome {
  margin-top: auto;
  background: #dce8cb;
  padding: 14px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.75;
}
.story-outcome b {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.story-conversation {
  background: var(--white);
  padding: 0 24px 23px;
  display: flex;
  flex-direction: column;
}
.story-chat-title {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.5;
}
.story-chat-title small {
  display: block;
  font-size: 8px;
  color: #56644d;
}
.story-chat-title .pill {
  margin-left: auto;
  font-size: 7px;
}
.story-conversation .event-label {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.5px;
  color: #6d7964;
  margin: 19px 0 13px;
}
.event-label:before,
.event-label:after {
  content: "";
  width: 20px;
  height: 1px;
  background: #d6dfcb;
}
.story-conversation .bubble {
  font-size: 11px;
  max-width: 91%;
  padding: 12px 14px;
}
.story-conversation .bubble.assistant {
  background: #f0f2e9;
}
.story-conversation .bubble.customer {
  background: #e2edce;
}
.story-conversation .bubble time {
  font-size: 7px;
  margin-top: 5px;
}
.story-footer {
  margin-top: auto;
  font-size: 9px;
  padding-top: 15px;
  color: #65725d;
  border-top: 1px solid #e6e9dd;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.story-footer .text-button {
  font-size: 9px;
}
.insight-note {
  display: flex;
  gap: 16px;
  padding: 20px 0 0;
}
.insight-note > span {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  color: #7f956b;
}
.insight-note p {
  font-size: 11px;
  line-height: 1.9;
}
.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 32px 0 10px;
}
.number-card > span {
  display: grid;
  place-items: center;
  border: 1px solid #b6c5a5;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 17px;
}
.number-card h3 {
  font-size: 15px;
  margin-bottom: 12px;
}
.number-card p {
  font-size: 12px;
  line-height: 1.9;
}
.source-note {
  font-size: 10px;
  line-height: 1.85;
  color: #56644d;
  margin: 15px 0;
}
.source-note a {
  color: #456a40;
}
.journey-board {
  border: 1px solid #d4dcc8;
  border-radius: 9px;
  overflow: hidden;
  margin: 30px 0;
}
.board-heading {
  background: #edf1e4;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board-heading h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  margin-top: 6px;
}
.status-label {
  font-size: 9px;
  color: #56644d;
}
.timeline-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 22px;
  background: #edf1e4;
  gap: 7px;
}
.timeline-tabs button {
  background: transparent;
  text-align: left;
  padding: 13px 4px 17px;
  border-bottom: 3px solid transparent;
  font-size: 10px;
  color: #56644d;
}
.timeline-tabs button[aria-selected="true"] {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 600;
}
.timeline-tabs button span {
  display: block;
  font-size: 8px;
  margin-top: 5px;
  font-weight: 400;
}
.journey-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 28px;
  background: var(--white);
  min-height: 230px;
}
.journey-panel h3 {
  font-size: 19px;
  margin-bottom: 11px;
}
.journey-panel p {
  font-size: 12px;
  line-height: 1.9;
}
.journey-panel blockquote {
  margin: 0;
  background: #f0f3e8;
  border-left: 2px solid #94ad70;
  padding: 18px;
  font-size: 13px;
  line-height: 1.85;
}
.journey-panel .sample-label {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
  margin-top: 33px;
}
.two-col article > h3 {
  margin-bottom: 17px;
}
.two-col p {
  font-size: 12px;
  line-height: 1.9;
}
.two-col .source-note {
  font-size: 10px;
}
.rule-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 25px;
}
.clean-list {
  margin: 0;
  padding-left: 16px;
  line-height: 1.85;
  font-size: 12px;
  color: var(--body);
}
.clean-list li {
  padding-left: 4px;
  margin-bottom: 11px;
}
.clean-list li::marker {
  color: #91a277;
}
.definition-list {
  margin: 0;
}
.definition-list dt {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 6px;
}
.definition-list dd {
  margin: 0 0 20px;
  font-size: 12px;
  color: var(--body);
  line-height: 1.9;
}
.decision-section {
  background: #f1f3e9;
}
.decision-lab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #d0dac2;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.decision-controls {
  padding: 26px;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
}
.form-heading h3 {
  font-size: 15px;
}
.text-button {
  background: transparent;
  padding: 2px 0;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.field {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 7px;
  margin-bottom: 17px;
  color: #57634c;
}
.field select,
.field input {
  background: #fafbf5;
  border: 1px solid #d8dfcf;
  border-radius: 4px;
  min-height: 40px;
  font-size: 11px;
  color: var(--ink);
  padding: 9px;
  width: 100%;
  max-width: 100%;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.decision-output {
  background: var(--ink);
  color: var(--white);
  padding: 33px 29px;
  display: flex;
  flex-direction: column;
}
.decision-output .eyebrow {
  color: #bfd6a5;
}
.decision-status {
  font-family: var(--serif);
  font-size: 47px;
  line-height: 1.05;
  margin: 25px 0 17px;
}
.decision-output .decision-reason {
  color: #d4dfca;
  font-size: 13px;
  line-height: 1.9;
}
.decision-checks {
  list-style: none;
  padding: 0;
  font-size: 11px;
  line-height: 1.8;
  margin: 6px 0 26px;
}
.decision-checks li {
  border-top: 1px solid #54705f;
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.decision-checks span {
  color: var(--lime);
  font-size: 13px;
}
.decision-message {
  background: #375347;
  border: 1px solid #56715e;
  padding: 20px;
  border-radius: 5px;
  margin-top: auto;
}
.decision-message .eyebrow {
  font-size: 8px;
  margin-bottom: 12px;
}
.decision-message p {
  font-size: 12px;
  color: #f5f8ed;
  line-height: 1.9;
  margin: 0;
}
.decision-output .decision-next {
  font-size: 10px;
  color: #d3e0c7;
  margin: 17px 0 0;
}
.micro-copy {
  font-size: 10px;
  color: #56644d;
  margin: 16px 0 0;
}
.voice-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d5ddc9;
  border-radius: 7px;
  overflow: hidden;
  margin: 30px 0;
}
.voice-demo > div {
  padding: 28px;
}
.voice-bad {
  background: #f2efe7;
}
.voice-good {
  background: #eaf0de;
}
.voice-demo .eyebrow {
  font-size: 8px;
  letter-spacing: 1px;
}
.voice-demo p {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
  margin: 18px 0 0;
}
.voice-bad p {
  color: #857f70;
}
.voice-good p {
  color: var(--ink);
}
.voice-caption {
  font-size: 9px;
  display: block;
  margin-top: 15px;
  color: #596b47;
}
.tinted-card {
  padding: 26px;
  border-radius: 7px;
  background: #edf1e4;
}
.tinted-card blockquote {
  font-size: 14px;
  line-height: 1.9;
  margin: 18px 0;
}
.subsection-heading {
  margin: 39px 0 19px;
  font-size: 19px;
}
.support-accordion {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
  font-size: 13px;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span:last-child {
  margin-left: auto;
  color: #71855e;
  font-size: 18px;
  line-height: 1;
}
details[open] > summary > span:last-child {
  transform: rotate(45deg);
}
.support-icon {
  font-family: var(--serif);
  font-size: 19px;
  width: 29px;
  flex: none;
}
details > div {
  padding: 0 0 20px 42px;
  font-size: 12px;
  color: var(--body);
}
details p {
  font-size: 12px;
  line-height: 1.9;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 620px;
  font-size: 11px;
}
caption {
  text-align: left;
  font-size: 9px;
  letter-spacing: 0.6px;
  background: #eef1e5;
  padding: 14px 18px;
}
th {
  font-size: 10px;
  font-weight: 500;
  color: #56644d;
  background: #f1f4e9;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.8;
  color: var(--body);
}
tbody tr:last-child td {
  border: 0;
}
td:first-child {
  min-width: 160px;
  color: var(--ink);
}
td small {
  display: block;
  font-size: 9px;
  color: #56644d;
  margin-top: 4px;
}
.small-heading {
  font-size: 15px;
  margin: 26px 0 12px !important;
}
.code-card {
  margin-top: 30px;
  background: #edf1e5;
  border: 1px solid #d4ddc5;
  border-radius: 6px;
  padding: 23px;
}
.code-card-label {
  font-size: 9px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  line-height: 2;
  overflow: auto;
  margin: 0;
  color: #546546;
}
.architecture {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  padding: 24px 19px;
  border-radius: 8px;
  background: #f1f4e9;
}
.arch-node {
  flex: 1;
  padding: 18px 13px;
  background: var(--white);
  border: 1px solid #d7dfcd;
  border-radius: 5px;
  min-height: 161px;
}
.arch-num {
  font-size: 9px;
  letter-spacing: 1px;
  color: #56644d;
  display: block;
  margin-bottom: 15px;
}
.arch-node h3 {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 9px;
}
.arch-node p {
  font-size: 9px;
  color: #6b7a5e;
  line-height: 1.8;
  margin: 0;
}
.arch-node.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.arch-node.dark .arch-num,
.arch-node.dark p {
  color: #c2d7ab;
}
.arch-arrow {
  font-size: 16px;
  color: #8b9d74;
}
.number-list {
  font-size: 12px;
  line-height: 1.85;
  padding-left: 18px;
  color: var(--body);
}
.number-list li {
  padding-left: 5px;
  margin-bottom: 14px;
}
.technical-details {
  margin-top: 25px;
}
.technical-details details > div {
  padding-left: 0;
}
.value-section {
  background: #f1f3e9;
}
.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #ccd7be;
  border-radius: 9px;
  overflow: hidden;
}
.calculator form {
  padding: 26px;
  background: var(--white);
}
.range-field {
  display: block;
  font-size: 11px;
  margin: 23px 0;
}
.range-field output {
  float: right;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.range-field input {
  width: 100%;
  display: block;
  margin-top: 13px;
  accent-color: #47633c;
}
.value-output {
  background: #e2edce;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.value-output .eyebrow {
  font-size: 8px;
  letter-spacing: 1px;
}
.value-amount {
  font-family: var(--serif);
  font-size: 75px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 24px 0 3px;
}
.value-amount.negative {
  color: #8b4036;
}
.value-output .value-caption {
  font-size: 11px;
  color: #56644d;
}
.value-bars {
  margin: 25px 0;
}
.value-bar {
  margin-bottom: 17px;
}
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  gap: 10px;
  margin-bottom: 7px;
}
.bar-track {
  height: 9px;
  background: #cddcbb;
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  background: #7e9e5b;
  height: 100%;
  width: 0;
  min-width: 0;
}
.bar-fill.treatment {
  background: var(--ink);
}
.value-summary {
  border-top: 1px solid #bdcca9;
  padding-top: 15px;
  font-size: 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.value-result {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12px !important;
  line-height: 1.9;
  color: #3d5832;
}
.formula-note {
  padding: 22px 0 0;
}
.formula-note > span {
  font-size: 8px;
  letter-spacing: 1px;
}
.formula-note p {
  font-size: 10px;
  line-height: 1.9;
  margin: 8px 0;
}
.metric-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #d7dfcb;
}
.metric-row > span {
  font-size: 9px;
  font-weight: 600;
  color: #56644d;
  padding-top: 3px;
}
.metric-row p {
  font-size: 11px;
  margin: 0;
}
.small-text {
  font-size: 10px !important;
  margin-top: 19px;
}
.standalone-details {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.standalone-details > div {
  padding-left: 0;
}
.rollout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0;
}
.rollout-grid article {
  padding: 23px 19px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rollout-grid article:last-child {
  border: 0;
  background: #edf2e2;
}
.phase {
  font-size: 8px;
  letter-spacing: 1px;
  background: #e5ecd8;
  border: 1px solid #cdd9bb;
  padding: 3px 7px;
  border-radius: 3px;
  margin-bottom: 17px;
}
.rollout-grid h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 17px;
}
.rollout-grid p {
  font-size: 11px;
  line-height: 1.9;
}
.phase-owner {
  font-size: 7px;
  letter-spacing: 0.5px;
  color: #56644d;
  margin: auto 0 13px;
  padding-top: 10px;
}
.rollout-grid .exit-rule {
  font-size: 10px;
  border-top: 1px solid #d4ddc6;
  padding-top: 13px;
  margin: 0;
  color: #556944;
}
.closing-card {
  margin-top: 38px;
  border-radius: 7px;
  background: var(--ink);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.closing-card .eyebrow {
  color: #c5d7b2;
  font-size: 8px;
}
.closing-card h3 {
  font-family: var(--serif);
  font-size: 36px;
  color: #f2f7e9;
  font-weight: 400;
  line-height: 1.17;
  margin-top: 16px;
}
.closing-card h3 em {
  color: #d3e89f;
}
.closing-card .button {
  font-size: 10px;
  flex: none;
}
.sources-list {
  border-top: 1px solid var(--line);
}
.sources-list > a {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.sources-list > a > span {
  font-size: 10px;
  color: #56644d;
}
.sources-list > a > span:last-child {
  margin-left: auto;
  font-size: 20px;
}
.sources-list h3 {
  font-size: 12px;
  font-weight: 500;
}
.sources-list p {
  font-size: 10px;
  color: #56644d;
  margin: 5px 0 0;
}
.sources-list a:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.assumptions {
  margin: 28px 0 0;
  background: #eef1e5;
  padding: 23px;
  border-radius: 6px;
}
.assumptions h3 {
  font-size: 14px;
  margin-bottom: 14px;
}
.assumptions p {
  font-size: 11px;
  line-height: 1.9;
}
.assumptions p:last-child {
  margin: 0;
}
footer {
  padding: 28px 48px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -1px;
  text-decoration: none;
}
footer > span {
  font-size: 9px;
  color: #56644d;
}
footer button {
  white-space: nowrap;
}
.print-stories {
  display: none;
}
@media (min-width: 1450px) {
  .sidebar {
    width: 260px;
    padding: 36px 28px;
  }
  .page {
    margin-left: 260px;
  }
  .section {
    padding-left: 70px;
    padding-right: 70px;
  }
  .topbar {
    margin: 0 70px;
  }
  .hero-art {
    height: 490px;
  }
  .hero-chat {
    width: 318px;
  }
  .hero-chat-body {
    padding: 18px;
  }
  .hero-chat .bubble {
    font-size: 12px;
  }
  .hero-chat-head small {
    font-size: 8px;
  }
  .note-one {
    left: 10px;
    top: 35px;
  }
  .note-two {
    right: 0;
    bottom: 34px;
  }
  .orbit {
    width: 440px;
    height: 440px;
  }
  .orbit-two {
    width: 480px;
    height: 360px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 410px;
  }
  .hero-grid {
    margin-top: 40px;
    gap: 45px;
  }
  .hero-chat-head {
    padding: 16px;
  }
  .hero-chat .chat-day {
    font-size: 7px;
  }
  .hero-chat .demo-choices {
    font-size: 9px;
  }
  .mini-note {
    font-size: 12px;
  }
  .mini-note small {
    font-size: 9px;
  }
  .principle-strip strong {
    font-size: 14px;
  }
  .principle-strip div > span:last-child {
    font-size: 12px;
  }
  .editor-note p {
    font-size: 14px;
  }
  .hero .scope-note {
    font-size: 11px;
  }
}
@media (max-width: 1150px) {
  .sidebar {
    width: 211px;
    padding: 29px 16px;
  }
  .page {
    margin-left: 211px;
  }
  .sidebar-subtitle {
    font-size: 7px;
  }
  .section {
    padding-left: 34px;
    padding-right: 34px;
  }
  .topbar {
    margin: 0 34px;
  }
  .hero-grid {
    gap: 0;
  }
  h1 {
    font-size: 76px;
  }
  .hero-art {
    transform: scale(0.85);
    transform-origin: center right;
    width: 100%;
    margin-left: -12px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 300px;
  }
  .quiet-link {
    display: flex;
    margin: 15px 0 0;
  }
  .principle-strip {
    gap: 13px;
  }
  .principle-strip > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .principle-strip div > span:last-child {
    grid-column: 1;
  }
  .strip-number {
    margin-bottom: 5px;
  }
  h2 {
    font-size: 58px;
  }
  .persona-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  .persona-tab {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1px 10px;
  }
  .persona-tab .avatar {
    grid-row: 1 / 3;
  }
  .persona-tab strong {
    margin: 0;
    align-self: end;
  }
  .story-context {
    padding: 24px 20px;
  }
  .story-conversation {
    padding: 0 18px 20px;
  }
  .rollout-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rollout-grid article:nth-child(2) {
    border-right: 0;
  }
  .rollout-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .architecture {
    padding: 17px 12px;
    gap: 7px;
  }
  .arch-node {
    padding: 14px 10px;
  }
  .arch-node h3 {
    font-size: 11px;
  }
  .arch-node p {
    font-size: 8px;
  }
  .closing-card {
    padding: 30px;
  }
  .closing-card h3 {
    font-size: 30px;
  }
  .button {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 65px;
  }
  .hero-art {
    transform: scale(0.74);
    width: 340px;
    margin-left: -50px;
    transform-origin: center;
  }
  .hero-grid {
    margin-top: 18px;
  }
  .section.hero {
    padding-top: 24px;
  }
  .hero > .eyebrow {
    font-size: 7px;
  }
  .hero-description {
    font-size: 11px;
  }
  .story-panel {
    grid-template-columns: 1fr;
  }
  .story-context {
    display: block;
  }
  .story-facts {
    grid-template-columns: 100px 1fr;
  }
  .story-context ul {
    columns: 2;
    column-gap: 30px;
  }
  .story-context .story-description {
    max-width: 500px;
  }
  .story-conversation .bubble {
    max-width: 85%;
    font-size: 12px;
  }
  .story-conversation {
    min-height: 460px;
  }
  .story-outcome {
    margin-top: 0;
  }
  .two-col {
    gap: 22px;
  }
  .two-col p,
  .clean-list,
  .definition-list dd {
    font-size: 11px;
  }
  .rule-card,
  .tinted-card {
    padding: 20px;
  }
  .onboarding-grid {
    gap: 17px;
  }
  .number-card h3 {
    font-size: 13px;
  }
  .number-card p {
    font-size: 11px;
  }
  .decision-lab,
  .calculator {
    grid-template-columns: 1fr;
  }
  .decision-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
  .decision-controls .form-heading {
    grid-column: 1 / -1;
  }
  .decision-controls .field-pair {
    grid-column: 1 / -1;
    order: 1;
  }
  .decision-output {
    min-height: 470px;
  }
  .decision-status {
    margin: 18px 0;
  }
  .decision-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .calculator form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .calculator .form-heading,
  .calculator .field-pair {
    grid-column: 1 / -1;
  }
  .calculator form > .field {
    grid-column: 1 / -1;
  }
  .calculator form .range-field:first-of-type {
    grid-column: 1 / -1;
  }
  .value-output {
    min-height: 445px;
  }
  .journey-panel {
    gap: 22px;
    padding: 22px;
  }
  .board-heading {
    gap: 12px;
  }
  .status-label {
    max-width: 130px;
    text-align: right;
  }
  .closing-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .architecture {
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
  }
  .arch-node {
    padding: 18px;
    min-height: 140px;
  }
  .arch-node h3 {
    font-size: 15px;
  }
  .arch-node p {
    font-size: 11px;
  }
  .arch-arrow:nth-of-type(4) {
    display: none;
  }
  .arch-node:nth-of-type(3) {
    grid-column: 1;
  }
  .arch-arrow:nth-child(4) {
    display: none;
  }
  .arch-node:nth-child(5) {
    grid-column: 1;
  }
  .editor-note {
    grid-template-columns: 90px 1fr;
    gap: 15px;
  }
  .topbar {
    font-size: 8px;
  }
  .topbar a {
    font-size: 9px;
  }
  .slash {
    padding: 0 7px;
  }
  footer {
    padding: 24px 34px;
    flex-wrap: wrap;
  }
  footer > span {
    display: none;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 93px;
  }
  .sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    display: block;
    padding: 15px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand {
    font-size: 27px;
    width: max-content;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .sidebar-subtitle,
  .sidebar-bottom {
    display: none;
  }
  .mobile-menu {
    display: flex;
    position: absolute;
    right: 22px;
    top: 22px;
    background: transparent;
    font-size: 10px;
    gap: 15px;
    align-items: center;
  }
  .mobile-menu > span {
    font-size: 16px;
  }
  .sidebar nav {
    display: none;
    padding-top: 26px;
    max-height: calc(100dvh - 80px);
    overflow: auto;
  }
  .sidebar nav.open {
    display: block;
  }
  .nav-label.second {
    margin-top: 18px;
  }
  nav a {
    font-size: 13px;
    min-height: 43px;
  }
  .nav-label {
    font-size: 9px;
  }
  nav i {
    margin-left: 10px;
  }
  .page {
    margin: 0;
  }
  .topbar {
    height: 54px;
    margin: 0 22px;
    font-size: 7px;
  }
  .topbar a {
    font-size: 8px;
  }
  .topbar a span {
    font-size: 13px;
    margin-left: 4px;
  }
  .section {
    padding: 53px 22px;
  }
  .section.hero {
    padding: 25px 22px 29px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
  }
  .hero-copy {
    max-width: 450px;
  }
  h1 {
    font-size: 80px;
    line-height: 0.99;
    letter-spacing: -1.5px;
  }
  .hero h1 br:first-child {
    display: initial;
  }
  .hero-description {
    font-size: 13px;
    max-width: 380px;
    margin: 22px 0;
  }
  .hero-art {
    height: 365px;
    transform: scale(0.92);
    width: 100%;
    margin: 0;
    transform-origin: center;
  }
  .hero-chat {
    width: 270px;
  }
  .note-one {
    top: 5px;
    left: 0;
  }
  .note-two {
    bottom: -6px;
    right: 0;
  }
  .orbit {
    width: 320px;
    height: 320px;
  }
  .orbit-two {
    width: 370px;
    height: 270px;
  }
  .orbit-label.top {
    top: -9px;
    right: 0;
    font-size: 6px;
  }
  .orbit-label.bottom {
    bottom: -25px;
    left: 75px;
    font-size: 6px;
  }
  .hero > .eyebrow {
    font-size: 7px;
    letter-spacing: 1.05px;
  }
  .quiet-link {
    display: inline-flex;
    margin: 0 0 0 17px;
    font-size: 10px;
  }
  .button {
    font-size: 11px;
  }
  .principle-strip {
    margin-top: 30px;
    gap: 12px;
    padding: 20px 0;
  }
  .principle-strip strong {
    font-size: 10px;
    line-height: 1.5;
  }
  .principle-strip div > span:last-child {
    font-size: 9px;
    line-height: 1.6;
  }
  .principle-strip > div {
    padding-right: 8px;
  }
  .strip-number {
    font-size: 8px;
  }
  .editor-note {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 24px;
  }
  .editor-note p {
    font-size: 12px;
  }
  .scope-note {
    font-size: 9px;
  }
  .section-kicker {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .section-kicker .pill {
    font-size: 8px;
    padding: 4px 8px;
  }
  h2 {
    font-size: 51px;
    line-height: 1.03;
    margin: 20px 0;
  }
  .section-intro {
    font-size: 13px;
    line-height: 1.85;
  }
  .persona-tabs {
    gap: 7px;
    margin-top: 24px;
  }
  .persona-tab {
    padding: 10px 8px;
    grid-template-columns: 23px 1fr;
    gap: 2px 7px;
  }
  .persona-tab .avatar {
    width: 23px;
    height: 23px;
    font-size: 15px;
  }
  .persona-tab strong {
    font-size: 10px;
  }
  .persona-tab small {
    font-size: 8px;
  }
  .story-context {
    padding: 24px;
  }
  .story-context ul {
    columns: auto;
  }
  .story-context .story-description {
    font-size: 12px;
  }
  .story-context h3 {
    font-size: 34px;
  }
  .story-conversation {
    padding: 0 18px 20px;
  }
  .story-conversation .bubble {
    font-size: 12px;
  }
  .story-facts {
    font-size: 11px;
    grid-template-columns: 82px 1fr;
  }
  .story-outcome {
    font-size: 12px;
  }
  .story-footer {
    font-size: 8px;
  }
  .insight-note p {
    font-size: 11px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .two-col p,
  .clean-list,
  .definition-list dd {
    font-size: 12px;
  }
  .two-col article > h3 {
    font-size: 18px;
  }
  .onboarding-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .number-card {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0 15px;
  }
  .number-card > span {
    grid-row: 1 / 3;
  }
  .number-card h3 {
    font-size: 15px;
    margin: 2px 0 8px;
  }
  .number-card p {
    font-size: 12px;
  }
  .board-heading {
    padding: 20px;
  }
  .board-heading .eyebrow {
    font-size: 7px;
  }
  .board-heading h3 {
    font-size: 29px;
  }
  .status-label {
    display: none;
  }
  .timeline-tabs {
    padding: 0 15px;
    gap: 0;
  }
  .timeline-tabs button {
    font-size: 10px;
  }
  .timeline-tabs button span {
    font-size: 7px;
  }
  .journey-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px;
    min-height: 390px;
  }
  .journey-panel blockquote {
    font-size: 13px;
  }
  .rule-card,
  .tinted-card {
    padding: 23px;
  }
  .decision-controls {
    display: block;
    padding: 23px;
  }
  .field {
    font-size: 11px;
  }
  .field select,
  .field input {
    font-size: 12px;
    min-height: 43px;
  }
  .decision-output {
    padding: 26px;
    min-height: 490px;
  }
  .decision-status {
    font-size: 45px;
  }
  .decision-checks {
    grid-template-columns: 1fr;
  }
  .decision-output .decision-reason {
    font-size: 12px;
  }
  .decision-checks {
    margin-bottom: 13px;
  }
  .decision-checks li {
    font-size: 10px;
    padding: 7px 0;
  }
  .decision-message {
    padding: 16px;
  }
  .voice-demo {
    grid-template-columns: 1fr;
  }
  .voice-demo > div {
    padding: 25px;
  }
  .voice-demo p {
    font-size: 28px;
  }
  .subsection-heading {
    font-size: 18px;
    line-height: 1.5;
  }
  summary {
    font-size: 12px;
    line-height: 1.7;
    gap: 10px;
  }
  .support-icon {
    width: 22px;
  }
  details > div {
    padding-left: 0;
  }
  table {
    font-size: 11px;
    min-width: 620px;
  }
  .code-card {
    padding: 18px;
  }
  .code-card pre {
    font-size: 9px;
  }
  .arch-node {
    min-height: 145px;
    padding: 16px;
  }
  .architecture {
    gap: 10px;
    padding: 15px;
    grid-template-columns: 1fr 12px 1fr;
  }
  .arch-node h3 {
    font-size: 14px;
  }
  .arch-node p {
    font-size: 10px;
  }
  .arch-arrow {
    font-size: 15px;
  }
  .calculator form {
    padding: 23px;
    display: block;
  }
  .calculator .range-field {
    font-size: 11px;
  }
  .value-output {
    padding: 28px;
    min-height: 465px;
  }
  .value-amount {
    font-size: 75px;
  }
  .value-summary {
    font-size: 11px;
  }
  .metric-row {
    grid-template-columns: 68px 1fr;
  }
  .rollout-grid {
    grid-template-columns: 1fr;
  }
  .rollout-grid article {
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .rollout-grid article:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }
  .rollout-grid h3 {
    font-size: 31px;
    margin-bottom: 12px;
  }
  .rollout-grid p {
    font-size: 12px;
  }
  .phase-owner {
    font-size: 8px;
  }
  .rollout-grid .exit-rule {
    font-size: 11px;
    width: 100%;
  }
  .closing-card {
    padding: 29px 24px;
  }
  .closing-card h3 {
    font-size: 32px;
  }
  .sources-list > a {
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
  }
  .sources-list h3 {
    font-size: 12px;
  }
  .sources-list p {
    font-size: 10px;
  }
  .sources-list > a > span {
    padding-top: 2px;
  }
  .assumptions {
    padding: 23px;
  }
  .assumptions p {
    font-size: 11px;
  }
  footer {
    padding: 24px 22px;
  }
  .source-note {
    font-size: 10px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 71px;
  }
  h2 {
    font-size: 46px;
  }
  .section-kicker .pill {
    font-size: 7px;
  }
  .persona-tab {
    display: flex;
    align-items: flex-start;
  }
  .hero-art {
    transform: scale(0.82);
    height: 350px;
  }
  .quiet-link {
    margin-left: 10px;
    font-size: 9px;
  }
  .hero .button {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  body {
    background: white;
    font-size: 11pt;
    color: #17291f;
  }
  .sidebar,
  .topbar,
  .hero-art,
  .quiet-link,
  .hero .button,
  .persona-tabs,
  .timeline-tabs,
  .decision-controls,
  .calculator form,
  .download-link,
  .closing-card .button,
  footer button,
  .story-footer button {
    display: none !important;
  }
  .page {
    margin: 0;
  }
  .section,
  .section.hero {
    padding: 24px 0;
    border-bottom: 1px solid #aaa;
    max-width: none;
    break-before: page;
  }
  .section.hero {
    break-before: auto;
  }
  .hero-grid {
    display: block;
  }
  .hero-description {
    max-width: 500px;
  }
  .hero h1 {
    font-size: 56pt;
  }
  h2 {
    font-size: 35pt;
  }
  h3 {
    break-after: avoid;
  }
  .section-kicker {
    font-size: 8pt;
  }
  .two-col {
    gap: 20px;
  }
  .story-panel,
  .journey-panel,
  .decision-lab,
  .calculator {
    display: block;
    min-height: 0;
  }
  .story-panel {
    break-inside: avoid;
    margin-bottom: 24px;
  }
  .story-panel .story-context {
    display: block;
  }
  .story-conversation {
    display: block;
    min-height: 0;
  }
  .decision-output,
  .value-output {
    color: #17291f;
    background: #edf2e7;
    min-height: 0;
  }
  .decision-output p,
  .decision-output .eyebrow,
  .decision-next {
    color: #17291f !important;
  }
  .decision-message {
    background: #edf2e7;
  }
  .decision-message p {
    color: #17291f;
  }
  .decision-checks span {
    color: #355128;
  }
  .principle-strip {
    margin-top: 20px;
  }
  .rollout-grid {
    grid-template-columns: 1fr 1fr;
  }
  .closing-card {
    background: #edf2e7;
    color: #17291f;
  }
  .closing-card h3,
  .closing-card .eyebrow,
  .closing-card h3 em {
    color: #17291f;
  }
  .print-stories {
    display: block;
  }
  .print-stories h3 {
    margin: 22px 0 12px;
  }
  .print-stories p {
    font-size: 10pt;
  }
  a {
    text-decoration: none;
  }
  .table-wrap {
    overflow: visible;
  }
  table {
    min-width: 0;
  }
  details {
    break-inside: avoid;
  }
  .hero .scope-note {
    margin-top: 20px;
  }
  .support-accordion details > div {
    padding-left: 0;
  }
  footer {
    padding: 20px 0;
  }
  #story-panel {
    display: none;
  }
}

/* Keep the chapter list reachable on shorter viewports. */
@media (min-width: 701px) {
  .sidebar nav {
    min-height: 0;
    overflow-y: auto;
  }
  .sidebar-bottom {
    flex-shrink: 0;
  }
}

.hero {
  overflow: hidden;
}
@media (max-width: 700px) {
  h1 {
    font-size: 74px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 66px;
  }
}

@media print {
  .journey-board {
    display: none;
  }
}
