:root {
  --ink: #101512;
  --ink-soft: #1b211d;
  --paper: #f4f2eb;
  --paper-bright: #fbfaf6;
  --stone: #dedbd1;
  --stone-dark: #8c9089;
  --green: #50b78b;
  --green-dark: #1d6e52;
  --amber: #d7a74a;
  --red: #ba6352;
  --white: #ffffff;
  --max-width: 1240px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 24px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-right: 10px;
  border: 1px solid currentColor;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
}

.brand-company {
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.desktop-nav a,
.header-cta {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--green);
  font-size: 14px;
  font-weight: 650;
}

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

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black 25%, transparent 88%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.62fr);
  gap: 72px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 700px;
  margin: 0 auto;
  padding: 96px 0 34px;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow,
.section-kicker,
.form-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: flex;
  align-items: center;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  margin-right: 12px;
  background: var(--green);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1.rotating-headline {
  min-height: 3.95em;
  font-size: 62px;
}

.headline-stage {
  display: block;
}

.headline-text {
  white-space: pre-line;
  opacity: 1;
  transition: opacity 140ms ease;
}

.headline-text.is-clearing {
  opacity: 0;
}

.headline-cursor {
  display: inline-block;
  width: 0.075em;
  height: 0.76em;
  margin-left: 0.1em;
  background: var(--green);
  transform: translateY(0.04em);
  animation: headline-cursor-blink 760ms steps(1, end) infinite;
}

@keyframes headline-cursor-blink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.hero-summary {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 20px;
  line-height: 1.58;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-proof span {
  position: relative;
}

.hero-proof span:not(:last-child)::after {
  position: absolute;
  top: 7px;
  right: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.lead-panel {
  position: relative;
  z-index: 10;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 6px;
  background: rgba(22, 28, 24, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.lead-heading {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-kicker {
  margin-bottom: 9px;
}

.lead-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}

.lead-heading p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lead-form label {
  display: grid;
  gap: 4px;
}

.lead-form label > span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 4px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition: border-color 150ms ease, background 150ms ease;
}

.lead-form input,
.lead-form select {
  height: 39px;
  padding: 0 11px;
}

.lead-form textarea {
  min-height: 64px;
  padding: 8px 11px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form input:-webkit-autofill,
.lead-form input:-webkit-autofill:hover,
.lead-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  box-shadow: 0 0 0 1000px #202722 inset;
}

.lead-form option {
  color: var(--ink);
}

.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #09251a;
  cursor: pointer;
  font-weight: 750;
  transition: background 160ms ease, transform 160ms ease;
}

.submit-button:hover {
  background: #65c79b;
  transform: translateY(-1px);
}

.submit-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-arrow {
  font-size: 21px;
  font-weight: 400;
}

.form-status {
  min-height: 16px;
  margin: -1px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  color: #83dbb5;
}

.form-status.error {
  color: #f0a597;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: max(24px, calc((100% - var(--max-width)) / 2));
  z-index: 8;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.model-visual {
  position: absolute;
  z-index: 1;
  top: 84px;
  right: -14%;
  width: 66%;
  height: 610px;
  opacity: 0.48;
  pointer-events: none;
}

.grid-plane {
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(80, 183, 139, 0.18);
  background-image:
    linear-gradient(rgba(80, 183, 139, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 183, 139, 0.09) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(900px) rotateY(-18deg) rotateX(7deg);
  transform-origin: center;
}

.model-core {
  position: absolute;
  top: 44%;
  left: 35%;
  display: grid;
  width: 220px;
  min-height: 128px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(80, 183, 139, 0.76);
  background: rgba(16, 21, 18, 0.94);
  box-shadow: 0 0 0 9px rgba(80, 183, 139, 0.07);
}

.model-core .core-kicker {
  color: var(--green);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.model-core strong {
  margin: 7px 0 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.model-core > span:last-child {
  color: rgba(255, 255, 255, 0.49);
  font-size: 11px;
}

.evidence-node {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 21, 18, 0.85);
  color: rgba(255, 255, 255, 0.69);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(215, 167, 74, 0.11);
}

.node-applicant {
  top: 13%;
  left: 11%;
}

.node-policy {
  top: 27%;
  left: 55%;
}

.node-records {
  top: 60%;
  left: 4%;
}

.node-decision {
  top: 69%;
  left: 51%;
}

.node-claim {
  top: 42%;
  left: 78%;
}

.node-outcome {
  top: 82%;
  left: 30%;
}

.model-line {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: rgba(80, 183, 139, 0.48);
  transform-origin: left center;
}

.line-one {
  top: 26%;
  left: 20%;
  width: 36%;
  transform: rotate(24deg);
}

.line-two {
  top: 60%;
  left: 15%;
  width: 28%;
  transform: rotate(-21deg);
}

.line-three {
  top: 52%;
  left: 52%;
  width: 32%;
  transform: rotate(-13deg);
}

.line-four {
  top: 59%;
  left: 46%;
  width: 26%;
  transform: rotate(48deg);
}

.evidence-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 25px max(24px, calc((100% - var(--max-width)) / 2));
  border-bottom: 1px solid var(--stone);
  background: var(--paper-bright);
}

.evidence-strip p {
  margin: 0;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.evidence-strip div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: #5f655f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.platform-section,
.outcomes-section,
.origin-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.platform-section {
  padding: 112px 0 124px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.82fr;
  gap: 46px;
  align-items: start;
}

.section-heading .section-kicker {
  margin-top: 11px;
}

.section-heading h2,
.products-intro h2,
.origin-copy h2,
.closing-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 47px;
  font-weight: 500;
  line-height: 1.08;
}

.section-heading > p:last-child,
.products-intro > p:last-child,
.origin-copy > p:last-child {
  margin: 8px 0 0;
  color: #626861;
  font-size: 16px;
  line-height: 1.72;
}

.truth-thesis {
  display: grid;
  grid-template-columns: 0.55fr 2.27fr;
  gap: 46px;
  align-items: baseline;
  margin-top: 64px;
  padding: 28px 0 30px;
  border-top: 1px solid #bfc1b9;
  border-bottom: 1px solid #bfc1b9;
}

.truth-thesis span {
  color: #747a73;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.truth-thesis strong {
  max-width: 920px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.3;
}

.truth-diagnostic {
  border-bottom: 1px solid #bfc1b9;
}

.truth-diagnostic-header,
.truth-diagnostic article {
  display: grid;
  grid-template-columns: 48px 0.82fr 1.15fr 0.72fr;
  column-gap: 28px;
  align-items: start;
}

.truth-diagnostic-header {
  padding: 22px 0 13px;
  color: #777d76;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.truth-diagnostic-header span:first-child {
  grid-column: 1 / 3;
}

.truth-diagnostic article {
  min-height: 116px;
  padding: 24px 0 26px;
  border-top: 1px solid #d6d4cc;
}

.truth-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #b9c8be;
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.truth-diagnostic h3 {
  margin: 2px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.24;
}

.truth-diagnostic article > p {
  margin: 3px 0 0;
  color: #676d66;
  font-size: 14px;
  line-height: 1.62;
}

.truth-diagnostic article > p:last-child {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}

.truth-resolution {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 42px 64px;
  margin-top: 64px;
  padding: 42px;
  background: var(--ink);
  color: var(--white);
}

.truth-resolution h3 {
  max-width: 470px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.14;
}

.truth-resolution > p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.truth-resolution-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.truth-resolution-flow span,
.truth-resolution-flow strong {
  position: relative;
  padding: 17px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.truth-resolution-flow span::after {
  position: absolute;
  top: 50%;
  right: -4px;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.truth-resolution-flow strong {
  border-right: 0;
  background: rgba(80, 183, 139, 0.12);
  color: var(--green);
}

.strategic-return {
  margin-top: 28px;
  border: 1px solid #c9c8c0;
  background: var(--paper-bright);
  box-shadow: 0 26px 60px rgba(31, 38, 33, 0.07);
}

.return-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  padding: 36px 38px 34px;
  border-bottom: 1px solid #d7d5cc;
}

.return-heading h3 {
  max-width: 690px;
  margin: 9px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.18;
}

.return-heading > p {
  margin: 3px 0 0;
  color: #6a7069;
  font-size: 14px;
  line-height: 1.68;
}

.return-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #d7d5cc;
}

.return-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 27px 25px 30px;
  border-right: 1px solid #e0ded6;
}

.return-grid article:last-child {
  border-right: 0;
}

.return-grid article > span {
  display: block;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.return-grid h4 {
  margin: 42px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.22;
}

.return-grid p {
  margin: 15px 0 0;
  color: #686e67;
  font-size: 13px;
  line-height: 1.68;
}

.return-equation {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 46px;
  align-items: center;
  padding: 30px 38px 32px;
}

.return-equation > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d4d4cc;
  border-bottom: 1px solid #d4d4cc;
}

.return-equation > div span,
.return-equation > div strong {
  position: relative;
  padding: 16px 9px;
  border-right: 1px solid #deddd5;
  color: #6d736c;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.return-equation > div span::after {
  position: absolute;
  top: 50%;
  right: -4px;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--green-dark);
  border-right: 1px solid var(--green-dark);
  background: var(--paper-bright);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.return-equation > div strong {
  border-right: 0;
  background: rgba(80, 183, 139, 0.09);
  color: var(--green-dark);
}

.return-equation > p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
}

.return-equation > p span {
  display: block;
  color: var(--green-dark);
}

.model-board {
  margin-top: 64px;
  border: 1px solid #c9c8c0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-bright);
  box-shadow: 0 26px 60px rgba(31, 38, 33, 0.08);
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid #d7d5cc;
  color: #6d726d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.board-header > div {
  display: flex;
  align-items: center;
}

.live-indicator {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(80, 183, 139, 0.13);
}

.board-body {
  display: grid;
  grid-template-columns: 1.22fr 110px 0.95fr 100px 0.85fr;
  min-height: 350px;
}

.board-column {
  padding: 27px 22px;
}

.board-column > p {
  margin: 0 0 18px;
  color: #777d76;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.board-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 73px;
  padding: 12px 0;
  border-top: 1px solid #e1dfd6;
}

.board-item:last-child {
  border-bottom: 1px solid #e1dfd6;
}

.item-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #b9c8be;
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.board-item div {
  display: grid;
}

.board-item strong {
  font-size: 13px;
}

.board-item div span {
  margin-top: 2px;
  color: #858a84;
  font-size: 11px;
}

.item-state {
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.board-connector {
  position: relative;
  display: grid;
  place-items: center;
  border-right: 1px solid #e3e1d8;
  border-left: 1px solid #e3e1d8;
  background: #eeece5;
}

.board-connector::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #aabeb1;
  content: "";
}

.board-connector span {
  position: absolute;
  left: -1px;
  width: 34px;
  height: 1px;
  background: #aabeb1;
  transform-origin: left;
}

.board-connector span:nth-child(1) {
  top: 25%;
  transform: rotate(37deg);
}

.board-connector span:nth-child(2) {
  top: 50%;
}

.board-connector span:nth-child(3) {
  top: 75%;
  transform: rotate(-37deg);
}

.board-connector strong {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--green-dark);
  border-radius: 50%;
  background: var(--paper-bright);
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
}

.decision-record,
.outcome-record {
  min-height: 238px;
  padding: 22px;
  border: 1px solid #d4d3cb;
  background: var(--white);
}

.decision-record > span,
.outcome-label {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.decision-record > strong,
.outcome-record > strong {
  display: block;
  margin-top: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.decision-record dl {
  margin: 28px 0 0;
}

.decision-record dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid #eceae4;
  font-size: 10px;
}

.decision-record dt {
  color: #8b8f8a;
}

.decision-record dd {
  margin: 0;
  text-align: right;
}

.outcome-connector span {
  display: none;
}

.outcome-connector strong {
  border-color: var(--amber);
  color: #8e6317;
}

.outcome-record > p {
  margin: 18px 0 0;
  color: #717770;
  font-size: 12px;
  line-height: 1.65;
}

.outcome-meter {
  height: 4px;
  margin-top: 32px;
  background: #e9e6de;
}

.outcome-meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--amber);
}

.objections-section {
  padding: 110px max(24px, calc((100% - var(--max-width)) / 2)) 120px;
  border-top: 1px solid #c8cbc4;
  border-bottom: 1px solid #c8cbc4;
  background: #e8eae3;
}

.objections-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.82fr;
  gap: 46px;
  align-items: start;
}

.objections-intro .section-kicker {
  margin-top: 10px;
}

.objections-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 47px;
  font-weight: 500;
  line-height: 1.08;
}

.objections-intro > p:last-child {
  margin: 8px 0 0;
  color: #626861;
  font-size: 16px;
  line-height: 1.72;
}

.objection-list {
  margin-top: 64px;
  border-top: 1px solid #bfc3bc;
}

.objection-list article {
  display: grid;
  grid-template-columns: 0.88fr 1.42fr 160px;
  gap: 42px;
  align-items: start;
  padding: 34px 0 36px;
  border-bottom: 1px solid #bfc3bc;
}

.objection-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.28;
}

.objection-list article div > strong {
  display: block;
  color: var(--green-dark);
  font-size: 14px;
}

.objection-list article div > p {
  max-width: 650px;
  margin: 9px 0 0;
  color: #626861;
  font-size: 14px;
  line-height: 1.68;
}

.objection-list article > span {
  justify-self: end;
  margin-top: 4px;
  color: #737972;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.objection-proof {
  display: grid;
  grid-template-columns: 0.88fr 1.42fr 160px;
  gap: 42px;
  align-items: center;
  margin-top: 38px;
  padding: 28px 0;
  border-top: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
}

.objection-proof span {
  color: #686e68;
  font-size: 13px;
}

.objection-proof strong {
  grid-column: 2 / 4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.products-section {
  padding: 110px max(24px, calc((100% - var(--max-width)) / 2)) 120px;
  background: var(--ink-soft);
  color: var(--white);
}

.products-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.82fr;
  gap: 46px;
  align-items: start;
}

.products-intro .section-kicker {
  margin-top: 10px;
}

.section-kicker.light {
  color: var(--amber);
}

.products-intro > p:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.product-list {
  margin-top: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.product-list article {
  display: grid;
  grid-template-columns: 90px 1fr 170px;
  gap: 28px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 170ms ease, padding 170ms ease;
}

.product-list article:hover {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.035);
}

.product-number {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.product-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.product-list p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 13px;
}

.product-tag {
  justify-self: end;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.outcomes-section {
  padding: 112px 0 124px;
}

.section-heading.compact {
  grid-template-columns: 0.48fr 1.52fr;
}

.section-heading.compact h2 {
  max-width: 720px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid #c8c7bf;
  border-bottom: 1px solid #c8c7bf;
}

.outcome-grid article {
  min-height: 285px;
  padding: 28px 24px;
  border-right: 1px solid #c8c7bf;
}

.outcome-grid article:first-child {
  padding-left: 0;
}

.outcome-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.outcome-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #aeb2ac;
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.outcome-grid h3 {
  margin: 74px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.outcome-grid p {
  margin: 0;
  color: #696f69;
  font-size: 13px;
  line-height: 1.65;
}

.origin-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.8fr;
  gap: 54px;
  align-items: end;
  padding: 110px 0;
  border-top: 1px solid #c8c7bf;
  overflow: hidden;
}

.origin-number {
  color: #dedbd1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 146px;
  line-height: 0.72;
}

.origin-copy .section-kicker {
  margin-bottom: 21px;
}

.origin-copy h2 {
  font-size: 39px;
}

.origin-quote {
  padding-left: 25px;
  border-left: 2px solid var(--amber);
}

.origin-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.42;
}

.origin-quote span {
  display: block;
  margin-top: 18px;
  color: #777c77;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.closing-section {
  padding: 92px max(24px, calc((100% - var(--max-width)) / 2)) 100px;
  background: var(--green-dark);
  color: var(--white);
}

.closing-section h2 {
  max-width: 950px;
  font-size: 52px;
}

.closing-support {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.closing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 390px);
  min-height: 58px;
  margin-top: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 700;
  transition: background 170ms ease, color 170ms ease;
}

.closing-cta:hover {
  background: var(--white);
  color: var(--green-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 30px max(24px, calc((100% - var(--max-width)) / 2));
  background: #0b0e0c;
  color: var(--white);
}

.footer-brand .brand-company {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  text-align: center;
}

.site-footer > div {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.site-footer > div a {
  color: rgba(255, 255, 255, 0.75);
}

@media (prefers-reduced-motion: no-preference) {
  .node-dot,
  .live-indicator {
    animation: pulse 2.8s ease-in-out infinite;
  }

  .node-decision .node-dot,
  .live-indicator {
    animation-delay: 0.7s;
  }

  @keyframes pulse {
    0%,
    100% {
      box-shadow: 0 0 0 4px rgba(80, 183, 139, 0.11);
    }
    50% {
      box-shadow: 0 0 0 9px rgba(80, 183, 139, 0.02);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .headline-cursor {
    display: none;
  }

  .headline-text {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero h1.rotating-headline {
    min-height: 4.25em;
    font-size: 54px;
  }

  .model-visual {
    right: -29%;
    width: 78%;
  }

  .section-heading,
  .products-intro,
  .objections-intro {
    grid-template-columns: 0.42fr 1.1fr 0.72fr;
    gap: 28px;
  }

  .section-heading h2,
  .products-intro h2,
  .objections-intro h2 {
    font-size: 39px;
  }

  .truth-thesis {
    grid-template-columns: 0.42fr 1.82fr;
    gap: 28px;
  }

  .truth-diagnostic-header,
  .truth-diagnostic article {
    grid-template-columns: 42px 0.8fr 1.08fr 0.7fr;
    column-gap: 20px;
  }

  .truth-resolution {
    gap: 36px;
    padding: 36px;
  }

  .return-heading {
    gap: 36px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .return-grid article {
    padding-right: 19px;
    padding-left: 19px;
  }

  .return-grid h4 {
    font-size: 22px;
  }

  .return-equation {
    gap: 30px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .board-body {
    grid-template-columns: 1.1fr 78px 0.9fr 72px 0.8fr;
  }

  .board-column {
    padding: 24px 16px;
  }

  .decision-record,
  .outcome-record {
    padding: 17px;
  }

  .origin-section {
    grid-template-columns: 0.72fr 1.25fr 0.72fr;
    gap: 35px;
  }

  .origin-number {
    font-size: 108px;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 36px), var(--max-width));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 38px;
    height: 38px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--white);
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 63px;
    left: -18px;
    right: -18px;
    display: grid;
    padding: 14px 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(16, 21, 18, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 14px;
  }

  .hero {
    min-height: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    width: min(calc(100% - 36px), var(--max-width));
    min-height: 0;
    padding: 116px 0 76px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero h1.rotating-headline {
    min-height: 4.2em;
    font-size: 50px;
  }

  .lead-panel {
    width: min(100%, 620px);
  }

  .model-visual {
    top: 70px;
    right: -52%;
    width: 110%;
    height: 660px;
    opacity: 0.3;
  }

  .hero-scroll {
    display: none;
  }

  .evidence-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .evidence-strip div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .platform-section,
  .outcomes-section,
  .origin-section {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .platform-section,
  .outcomes-section {
    padding: 84px 0 92px;
  }

  .section-heading,
  .products-intro,
  .objections-intro,
  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading .section-kicker,
  .products-intro .section-kicker,
  .objections-intro .section-kicker {
    margin: 0 0 4px;
  }

  .section-heading h2,
  .products-intro h2,
  .objections-intro h2 {
    max-width: 690px;
  }

  .section-heading > p:last-child,
  .products-intro > p:last-child,
  .objections-intro > p:last-child {
    max-width: 630px;
  }

  .truth-thesis {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
  }

  .truth-thesis strong {
    max-width: 710px;
  }

  .truth-diagnostic-header,
  .truth-diagnostic article {
    grid-template-columns: 40px 0.78fr 1.08fr 0.7fr;
    column-gap: 16px;
  }

  .truth-diagnostic h3 {
    font-size: 20px;
  }

  .truth-resolution {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
  }

  .truth-resolution > p {
    max-width: 660px;
  }

  .truth-resolution-flow {
    grid-column: auto;
  }

  .return-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .return-heading > p {
    max-width: 650px;
  }

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

  .return-grid article {
    border-bottom: 1px solid #e0ded6;
  }

  .return-grid article:nth-child(even) {
    border-right: 0;
  }

  .return-grid article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .return-equation {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .model-board {
    overflow-x: auto;
  }

  .board-header,
  .board-body {
    min-width: 810px;
  }

  .products-section {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .objections-section {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .objection-list {
    margin-top: 48px;
  }

  .objection-list article {
    grid-template-columns: 0.78fr 1.42fr;
    gap: 30px;
  }

  .objection-list article > span {
    display: none;
  }

  .objection-proof {
    grid-template-columns: 0.78fr 1.42fr;
    gap: 30px;
  }

  .objection-proof strong {
    grid-column: auto;
  }

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

  .outcome-grid article,
  .outcome-grid article:first-child,
  .outcome-grid article:last-child {
    min-height: 230px;
    padding: 24px;
  }

  .outcome-grid article:nth-child(2) {
    border-right: 0;
  }

  .outcome-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #c8c7bf;
  }

  .outcome-grid h3 {
    margin-top: 42px;
  }

  .origin-section {
    grid-template-columns: 0.56fr 1.44fr;
    align-items: start;
    padding: 85px 0;
  }

  .origin-quote {
    grid-column: 2;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 600px) {
  .brand-company {
    display: none;
  }

  .hero-layout {
    padding-top: 104px;
    padding-bottom: 52px;
  }

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

  .hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero h1.rotating-headline {
    min-height: 5.1em;
    font-size: 39px;
  }

  .hero-summary {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-proof {
    gap: 10px 20px;
    margin-top: 28px;
  }

  .hero-proof span:not(:last-child)::after {
    right: -12px;
  }

  .lead-panel {
    padding: 22px 18px;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .model-visual {
    right: -95%;
    width: 170%;
  }

  .evidence-strip {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .evidence-strip div {
    gap: 10px 18px;
    font-size: 13px;
  }

  .platform-section,
  .outcomes-section {
    padding: 68px 0 74px;
  }

  .section-heading h2,
  .products-intro h2,
  .objections-intro h2,
  .origin-copy h2 {
    font-size: 34px;
  }

  .truth-thesis {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .truth-thesis strong {
    font-size: 23px;
  }

  .truth-diagnostic-header {
    display: none;
  }

  .truth-diagnostic article {
    grid-template-columns: 38px 1fr;
    gap: 8px 14px;
    min-height: 0;
    padding: 23px 0 24px;
  }

  .truth-index {
    grid-row: 1 / 3;
  }

  .truth-diagnostic h3 {
    margin: 2px 0 0;
    font-size: 21px;
  }

  .truth-diagnostic article > p {
    grid-column: 2;
    margin-top: 0;
  }

  .truth-diagnostic article > p:last-child {
    margin-top: 5px;
  }

  .truth-resolution {
    gap: 18px;
    padding: 28px 22px;
  }

  .truth-resolution h3 {
    font-size: 29px;
  }

  .truth-resolution-flow span,
  .truth-resolution-flow strong {
    padding: 13px 5px;
    font-size: 8px;
  }

  .strategic-return {
    margin-top: 20px;
  }

  .return-heading {
    padding: 27px 20px 25px;
  }

  .return-heading h3 {
    font-size: 27px;
  }

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

  .return-grid article,
  .return-grid article:nth-child(even),
  .return-grid article:nth-child(n + 3) {
    min-height: 0;
    padding: 25px 20px 27px;
    border-right: 0;
    border-bottom: 1px solid #e0ded6;
  }

  .return-grid article:last-child {
    border-bottom: 0;
  }

  .return-grid h4 {
    margin-top: 25px;
  }

  .return-equation {
    padding: 25px 20px 27px;
  }

  .return-equation > div span,
  .return-equation > div strong {
    padding: 13px 4px;
    font-size: 7px;
  }

  .return-equation > p {
    font-size: 19px;
  }

  .model-board {
    margin-top: 42px;
  }

  .products-section {
    padding-top: 68px;
    padding-bottom: 74px;
  }

  .objections-section {
    padding-top: 68px;
    padding-bottom: 74px;
  }

  .objection-list {
    margin-top: 38px;
  }

  .objection-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0 28px;
  }

  .objection-list h3 {
    font-size: 23px;
  }

  .objection-list article div > p {
    margin-top: 7px;
  }

  .objection-proof {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 23px 0;
  }

  .objection-proof strong {
    font-size: 23px;
  }

  .product-list {
    margin-top: 45px;
  }

  .product-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    min-height: 124px;
  }

  .product-tag {
    display: none;
  }

  .product-list article:hover {
    padding: 0;
    background: transparent;
  }

  .product-list h3 {
    font-size: 21px;
  }

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

  .outcome-grid article,
  .outcome-grid article:first-child,
  .outcome-grid article:last-child {
    min-height: 0;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid #c8c7bf;
  }

  .outcome-grid article:last-child {
    border-bottom: 0;
  }

  .outcome-grid h3 {
    margin-top: 28px;
  }

  .origin-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 68px 0;
  }

  .origin-number {
    font-size: 92px;
  }

  .origin-quote {
    grid-column: auto;
  }

  .closing-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .closing-section h2 {
    font-size: 37px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: 190px;
  }

  .site-footer > div {
    justify-items: start;
  }
}
