:root {
  color-scheme: light;
  --paper: #fcfbfa;
  --surface: #ffffff;
  --surface-soft: #f8f6f6;
  --ink: #171718;
  --muted: #625f63;
  --muted-soft: #716e70;
  --line: #e6e1e3;
  --line-strong: #cbc5c8;
  --purple: #692fff;
  --purple-dark: #5421e9;
  --purple-soft: #f0ebff;
  --green: #177d58;
  --amber: #a96818;
  --text-primary: var(--ink);
  --text-secondary: var(--muted);
  --text-tertiary: var(--muted-soft);
  --page: 1440px;
  --section: 1340px;
  --gutter: 56px;
  --header-height: 70px;
}

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

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

button,
a,
summary {
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
ol,
ul,
dl {
  margin-top: 0;
}

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

::selection {
  background: var(--purple);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  min-height: 40px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-shell,
.shell {
  width: min(100% - (2 * var(--gutter)), var(--section));
  margin-inline: auto;
}

.section-label {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: var(--purple);
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.3rem, 4.7vw, 4rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(2.8rem, 4vw, 3.55rem);
  line-height: 1.03;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button span {
  font-size: 1rem;
  line-height: 1;
}

.button--primary {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
  box-shadow: -2px 2px 0 rgba(105, 47, 255, 0.3);
  transform: translate(2px, -2px);
}

.button--primary:hover {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  box-shadow: -1px 1px 0 rgba(105, 47, 255, 0.2);
  transform: translate(1px, -1px);
}

.button--primary:active {
  box-shadow: none;
  transform: none;
}

.button--secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 251, 250, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: min(100% - 40px, var(--page));
  min-height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  justify-self: start;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 50px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #444144;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--purple);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span[aria-hidden] {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span[aria-hidden]:nth-of-type(2) {
  transform: translateY(-4px);
}

.menu-toggle span[aria-hidden]:nth-of-type(3) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(3) {
  transform: rotate(-45deg);
}

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

.mobile-menu {
  position: fixed;
  z-index: 75;
  top: var(--header-height);
  right: 0;
  display: flex;
  width: min(100%, 384px);
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 24px 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -20px 40px 60px rgba(23, 23, 24, 0.08);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.6rem;
  text-decoration: none;
}

.mobile-menu nav span {
  color: var(--muted-soft);
  font-family: var(--mono);
  font-size: 0.63rem;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  width: min(100% - 80px, var(--page));
  min-height: 510px;
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding: 62px 0 58px;
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-copy > p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}

.hero-actions .button {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 0.9rem;
}

.hero-map {
  position: relative;
  min-width: 0;
  min-height: 410px;
  border-left: 1px solid var(--line);
}

.hero-map::before,
.hero-map::after {
  position: absolute;
  z-index: 2;
  left: -3px;
  width: 5px;
  height: 5px;
  background: var(--paper);
  color: var(--line-strong);
  content: "+";
  font-family: var(--mono);
  font-size: 10px;
  line-height: 5px;
}

.hero-map::before {
  top: 25px;
}

.hero-map::after {
  bottom: 25px;
}

.capability-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(6, 1fr);
  align-items: center;
  width: min(100% - 80px, var(--page));
  min-height: 70px;
  margin-inline: auto;
  margin-block: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.capability-strip > li {
  display: grid;
  min-height: 28px;
  place-items: center;
  border-left: 1px solid var(--line);
  color: #4c494b;
  font-size: 0.82rem;
}

.capability-strip > li:last-child {
  border-right: 1px solid var(--line);
}

.capability-strip .capability-title {
  place-items: center start;
  border-left: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-finder {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: 102px;
}

.finder-head {
  padding-bottom: 48px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 60px;
}

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

.section-heading-row > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-rail-wrap {
  position: relative;
  width: 100%;
}

.workflow-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: max(72px, calc((100vw - var(--section)) / 2));
}

.workflow-rail::-webkit-scrollbar {
  display: none;
}

.workflow-card {
  display: flex;
  flex: 0 0 min(420px, calc((100vw - 152px) / 3));
  flex-direction: column;
  min-height: 570px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  padding: 28px;
  transition: border-color 180ms ease;
}

.workflow-card:hover {
  border-color: var(--line-strong);
}

.workflow-card h3 {
  min-height: 67px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.78rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.workflow-card h3 span {
  color: var(--purple);
}

.workflow-card > p {
  min-height: 66px;
  margin-bottom: 23px;
  color: #4e4b4d;
  font-size: 0.88rem;
  line-height: 1.55;
}

.card-contrast {
  margin: 0;
  border-top: 1px solid var(--line);
}

.card-contrast > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.card-contrast dt {
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.card-contrast dd {
  margin: 0;
  color: #4e4b4d;
  font-size: 0.77rem;
  line-height: 1.5;
}

.card-contrast dd strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.card-contrast > div:last-child dd {
  color: var(--ink);
  font-weight: 500;
}

.card-contrast .card-impact {
  border-bottom-color: var(--purple);
}

.card-contrast .card-impact dt {
  color: var(--purple);
}

.rail-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 160ms ease, color 160ms ease, background 160ms ease;
}

.rail-button:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
}

.rail-button:disabled {
  cursor: default;
  opacity: 0.25;
}

.rail-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rail-button--previous {
  left: 18px;
}

.rail-button--next {
  right: 18px;
}

.workflow-disclaimer {
  margin: 30px auto 0;
  padding-inline: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.finder-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  min-height: 275px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.finder-bridge p {
  max-width: 960px;
  margin: 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.challenge {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 108px 0 92px;
}

.challenge-head {
  text-align: center;
}

.challenge-head .section-label::before {
  display: none;
}

.challenge-head h2 {
  max-width: 720px;
  margin: 0 auto;
}

.challenge-head .challenge-intro {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.challenge-story {
  position: relative;
  display: flex;
  max-width: 1024px;
  margin-top: 64px;
  flex-direction: column;
  gap: 96px;
}

.challenge-story__line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.challenge-story article {
  position: relative;
  display: flex;
  width: 46%;
  flex-direction: column;
  gap: 12px;
}

.challenge-story article:nth-of-type(even) {
  margin-left: auto;
}

.challenge-story article > span {
  color: var(--muted-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.challenge-story h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.challenge-story p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.challenge-closer {
  max-width: 780px;
  margin: 80px auto 0;
  padding-inline: 24px;
  color: #5e5a5c;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.22;
  text-align: center;
}

.solution {
  padding: 108px 0 92px;
}

.solution-introduction {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
  align-items: center;
  gap: 64px;
}

.solution-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.solution-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.solution-definition {
  margin: 0;
  border-left: 2px solid rgba(105, 47, 255, 0.4);
  padding-left: 18px;
}

.solution-definition p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.68;
}

.solution-definition small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.77rem;
}

.chapter-index {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-chapters {
  display: flex;
  margin-top: 112px;
  flex-direction: column;
  gap: 128px;
}

.solution-chapter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.solution-chapter--flip .chapter-copy {
  order: 2;
}

.solution-chapter--flip .chapter-diagram {
  order: 1;
}

.chapter-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
}

.chapter-copy h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.chapter-copy > p:not(.chapter-index) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.chapter-index {
  margin: 0;
  color: rgba(113, 110, 112, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

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

.solution-chips > div {
  min-width: 0;
}

.solution-chips canvas {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 360ms ease-out, transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-chips canvas[data-motif-ready="true"] {
  opacity: 1;
  transform: translateY(0);
}

.solution-chips h4 {
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 500;
  line-height: 1.35;
}

.solution-chips > div > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.55;
}


.chapter-proofline span {
  margin-inline: 7px;
  opacity: 0.45;
}

.chapter-diagram {
  min-width: 0;
  position: relative;
  isolation: isolate;
}

.chapter-diagram canvas {
  display: block;
  width: 100%;
  aspect-ratio: 1.6;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 440ms ease-out, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chapter-diagram canvas[data-motif-ready="true"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chapter-example {
  max-width: 590px;
  border-left: 2px solid var(--line);
  padding-left: 16px;
}

.chapter-example span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-example p {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.62;
}

.scale-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.scale-features > div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.scale-features dt {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
}

.scale-features dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.55;
}

.measurement-rows {
  display: flex;
  flex-direction: column;
}

.measurement-rows > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.measurement-rows b {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.measurement-rows span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.engagement {
  padding: 105px 0 82px;
}

.engagement h2 {
  max-width: 820px;
  margin-bottom: 16px;
}

.faq {
  border-top: 1px solid var(--line);
  padding: 108px 0 116px;
  background: var(--surface-soft);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(56px, 8vw, 120px);
}

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

.faq-head h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 3.6vw, 3.35rem);
}

.faq-head > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.faq-list summary > b {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.faq-list summary::after {
  color: var(--purple);
  content: "+";
  font-family: var(--mono);
  font-size: 1.25rem;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary:focus-visible {
  outline-offset: -2px;
}

.faq-list details > p {
  max-width: 660px;
  margin: -5px 24px 0 54px;
  padding: 0 0 30px;
  color: var(--muted);
  line-height: 1.68;
}

.final-cta {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text-primary);
}

.final-cta .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 200px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.final-cta-copy p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 104px;
  color: var(--muted);
  font-size: 0.7rem;
}

.site-footer .brand {
  color: var(--ink);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-block: -10.5px;
  text-decoration: none;
}

.site-footer .brand {
  margin-block: -13px;
}

.site-footer > a:last-child {
  justify-self: end;
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--purple);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .solution-chapter {
    gap: 42px;
  }
}

@media (max-width: 1280px) {
  .workflow-card {
    flex-basis: min(420px, calc((100vw - 96px) / 2));
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 28px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    width: min(100% - (2 * var(--gutter)), var(--page));
  }

  .hero-copy {
    max-width: 730px;
    padding: 76px 0 44px;
  }

  .hero-copy h1 {
    max-width: 670px;
  }

  .hero-map {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 22px 0 14px;
  }

  .hero-map::before,
  .hero-map::after {
    top: -3px;
    bottom: auto;
    left: 18px;
  }

  .hero-map::after {
    right: 18px;
    left: auto;
  }

  .capability-strip {
    width: min(100% - (2 * var(--gutter)), var(--page));
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-card {
    flex-basis: min(420px, calc((100vw - 82px) / 2));
  }

  .solution-introduction {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .solution-definition {
    max-width: 680px;
  }

  .solution-chapters {
    margin-top: 88px;
    gap: 104px;
  }

  .solution-chapter {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 0;
  }

  .solution-chapter--flip .chapter-copy,
  .solution-chapter--flip .chapter-diagram {
    order: initial;
  }

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

  .chapter-diagram {
    width: 100%;
    max-width: 820px;
  }

  .challenge-story {
    max-width: 820px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --header-height: 65px;
  }

  h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .nav-shell {
    width: min(100% - 32px, var(--page));
    gap: 12px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding: 62px 0 40px;
  }

  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 29px;
  }

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

  .hero-map {
    padding-top: 16px;
  }

  .capability-strip {
    display: flex;
    min-height: 62px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .capability-strip::-webkit-scrollbar {
    display: none;
  }

  .capability-strip > li {
    flex: 0 0 auto;
    min-width: 116px;
    padding-inline: 16px;
  }

  .capability-strip .capability-title {
    min-width: 110px;
  }

  .workflow-finder {
    padding-top: 80px;
  }

  .finder-head {
    padding-bottom: 36px;
  }

  .workflow-rail {
    gap: 14px;
    padding-inline: 20px;
  }

  .workflow-card {
    flex-basis: min(85vw, 420px);
    min-height: 555px;
    padding: 24px;
  }

  .workflow-card h3 {
    min-height: 0;
    font-size: 1.58rem;
  }

  .workflow-card > p {
    min-height: 0;
  }

  .card-contrast > div {
    grid-template-columns: 84px 1fr;
  }

  .rail-button {
    display: none;
  }

  .workflow-disclaimer {
    line-height: 1.6;
  }

  .finder-bridge {
    min-height: 250px;
  }

  .finder-bridge p {
    font-size: 1.72rem;
  }

  .challenge,
  .solution {
    padding-top: 82px;
  }

  .challenge-story {
    gap: 58px;
    margin-top: 48px;
  }

  .challenge-story__line {
    display: none;
  }

  .challenge-story article,
  .challenge-story article:nth-of-type(even) {
    width: 100%;
    margin-left: 0;
  }

  .challenge-story h3 {
    font-size: 2rem;
  }

  .challenge-closer {
    margin-top: 55px;
  }

  .solution-chapter {
    gap: 34px;
    padding-block: 0;
  }

  .solution-chapters {
    margin-top: 72px;
    gap: 88px;
  }

  .chapter-copy h3 {
    font-size: 2.25rem;
  }

  .solution-chips {
    gap: 14px;
  }

  .solution-chips h4 {
    font-size: 0.72rem;
  }

  .solution-chips > div > p {
    font-size: 0.65rem;
  }

  .scale-features,
  .measurement-rows > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .engagement {
    padding-block: 82px 70px;
  }

  .faq {
    padding-block: 82px 88px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-head {
    position: static;
  }

  .faq-list summary {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    min-height: 84px;
  }

  .faq-list summary > b {
    font-size: 1.3rem;
  }

  .faq-list details > p {
    margin-left: 46px;
  }

  .final-cta .section-shell {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 270px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding-block: 36px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .site-footer > a:last-child {
    justify-self: start;
  }

}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Reference-aligned landing composition: wide editorial hero, quiet proof bands,
   and the compact product navigation used by the Asteroid family of sites. */
:root {
  --paper: #fbfafb;
  --surface-soft: #f7f6f8;
  --line: #e5e2e7;
}

.site-header {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
}

.nav-shell {
  width: min(100% - 80px, 1680px);
  min-height: 70px;
  gap: 24px;
}

.brand {
  font-size: 1.08rem;
  letter-spacing: 0.19em;
}

.site-nav {
  gap: clamp(22px, 2.7vw, 44px);
}

.site-nav a {
  min-height: 46px;
  color: #49464b;
  font-size: 0.92rem;
}

.hero-shell {
  grid-template-columns: minmax(420px, 0.86fr) minmax(580px, 1.14fr);
  width: min(100% - 160px, 1330px);
  min-height: 690px;
}

.hero-copy {
  max-width: 570px;
  padding: 142px 0 96px;
}

.hero-copy h1 {
  max-width: 555px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 3.9vw, 4.15rem);
  line-height: 1.02;
}

.hero-copy > p {
  max-width: 510px;
  color: #5f5c61;
  font-size: 1.1rem;
  line-height: 1.58;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 0.76rem;
}

.hero-map {
  min-height: 530px;
  border-left: 0;
}

.hero-map::before,
.hero-map::after {
  display: none;
}

.capability-strip {
  width: min(100% - 160px, 1330px);
  min-height: 82px;
}

.capability-strip > li {
  min-height: 32px;
  color: #747177;
  font-size: 0.76rem;
}

.capability-strip .capability-title {
  color: #575359;
  font-size: 0.62rem;
}

.workflow-finder {
  padding-top: 114px;
}

.workflow-card {
  border-radius: 1px;
}

@media (max-width: 1280px) {
  .nav-shell,
  .hero-shell,
  .capability-strip {
    width: min(100% - 80px, 1330px);
  }

  .hero-shell {
    grid-template-columns: minmax(390px, 0.9fr) minmax(450px, 1.1fr);
  }

  .site-nav {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - (2 * var(--gutter)), 820px);
    min-height: 0;
  }

  .hero-copy {
    padding: 96px 0 48px;
  }

  .hero-map {
    min-height: 0;
  }

  .capability-strip {
    width: min(100% - (2 * var(--gutter)), 820px);
  }
}

@media (max-width: 720px) {
  .nav-shell {
    width: min(100% - 32px, 1330px);
  }

  .brand {
    font-size: 0.84rem;
  }

  .hero-copy {
    padding-top: 70px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 3.3rem);
  }

  .capability-strip {
    width: 100%;
    padding-inline: var(--gutter);
  }

}

/* Product-specific record -> review/approve -> scheduled run components.
   These preserve the Asteroid-inspired editorial page system while restoring
   the concrete product model from the origin landing page. */
.journey-preview {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: 32px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.journey-stage {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.journey-stage > header {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding-inline: 1px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journey-stage > header span {
  color: var(--purple);
}

.journey-stage > header b {
  font-weight: 500;
}

.journey-window {
  flex: 1;
  height: 360px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(31, 26, 34, 0.055);
}

.journey-title {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border-bottom: 1px solid var(--line);
  padding: 0 10px;
  font-size: 0.63rem;
}

.journey-title b {
  min-width: 0;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-title small {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  white-space: nowrap;
}

.record-window {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fbfafc;
}

.record-title {
  background: var(--surface);
}

.record-pulse {
  position: relative;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}

.record-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(105, 47, 255, 0.32);
  border-radius: inherit;
  content: "";
  animation: record-pulse 1.8s ease-out infinite;
}

.record-app-switcher {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 5px;
  min-height: 39px;
  margin: 8px 8px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  padding: 6px 8px;
}

.record-app-switcher > div {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.record-app-switcher small {
  overflow: hidden;
  color: #514d52;
  font-family: var(--mono);
  font-size: 0.41rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-app-switcher > i {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-style: normal;
}

.switcher-icon {
  display: grid;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.43rem;
  font-weight: 500;
}

.switcher-icon--desktop {
  grid-template-columns: repeat(2, 5px);
  grid-template-rows: repeat(2, 5px);
  gap: 1px;
  border-radius: 3px;
  background: #1f6fce;
}

.switcher-icon--desktop b {
  width: 5px;
  height: 5px;
  background: #fff;
}

.record-trace {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 0 8px 7px 22px;
}

.record-trace::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 12px;
  border-left: 1px dashed rgba(105, 47, 255, 0.48);
  content: "";
}

.record-environment {
  position: relative;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.88);
  padding: 7px;
}

.record-environment::before,
.record-environment--browser::after {
  position: absolute;
  left: -14px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
  content: "";
}

.record-environment--browser::before {
  top: 41px;
}

.record-environment--browser::after {
  top: 94px;
}

.record-environment--desktop::before {
  top: 41px;
}

.record-environment--desktop {
  background: #f4f1f8;
  border-color: #d8d0e3;
}

.record-environment__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.47rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.record-environment__label small {
  color: var(--muted-soft);
  font-size: 0.43rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.record-app {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
  box-shadow: 0 3px 8px rgba(31, 26, 34, 0.04);
}

.browser-bar,
.desktop-bar {
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 12px;
  border-bottom: 1px solid var(--line);
  background: #f3f1f2;
  padding: 0 5px;
  color: var(--muted-soft);
  font-family: var(--mono);
  font-size: 0.39rem;
  font-style: normal;
}

.browser-bar > span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #bbb6b9;
}

.browser-bar > span:first-child {
  background: #e86a61;
}

.browser-bar > span:nth-child(2) {
  background: #dfb85c;
}

.browser-bar > span:nth-child(3) {
  background: #65b879;
}

.browser-bar i {
  min-width: 0;
  margin-left: 2px;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-bar--compact {
  justify-content: flex-start;
}

.desktop-bar {
  justify-content: space-between;
  background: #eae5ef;
  color: #69616f;
}

.desktop-bar i {
  font-style: normal;
  letter-spacing: 0.08em;
}

.record-app__body {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 35px;
  padding: 4px 6px;
}

.record-app__body > div {
  min-width: 0;
}

.record-app__body b,
.record-app__body small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-app__body b {
  font-size: 0.55rem;
  font-weight: 500;
}

.record-app__body small {
  color: var(--muted);
  font-size: 0.47rem;
}

.record-app__body em {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.45rem;
  font-style: normal;
}

.app-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.46rem;
  font-weight: 500;
}

.app-icon--chrome {
  border-radius: 50%;
  background: conic-gradient(#ea4335 0 25%, #fbbc05 0 50%, #34a853 0 75%, #4285f4 0);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.82);
}

.app-icon--portal {
  background: var(--purple);
}

.app-icon--erp {
  border-radius: 3px;
  background: #332a3e;
}

.record-handoff {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 13px;
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.025em;
}

.record-handoff svg {
  flex: 0 0 8px;
  width: 8px;
  height: 12px;
  margin-left: -14px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-handoff b {
  font-weight: 500;
}

.record-caption {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: auto 8px 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  color: #4e4a4f;
  font-size: 0.48rem;
}

.record-caption span {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.45rem;
}

@keyframes record-pulse {
  from { opacity: 0.8; transform: scale(0.65); }
  to { opacity: 0; transform: scale(1.55); }
}

.review-window,
.run-window {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #fbfafc;
}

.review-window {
  background: #fff;
}

.review-title,
.run-title {
  background: var(--surface);
}

.review-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  margin: 8px 8px 6px;
  min-height: 39px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  padding: 6px 7px;
}

.review-summary > div {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
}

.review-summary strong {
  color: var(--purple);
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1;
}

.review-summary small {
  overflow: hidden;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.39rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-summary > span {
  color: var(--muted-soft);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.review-steps,
.run-flow {
  margin: 0 8px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  list-style: none;
}

.review-steps li,
.run-flow li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 6px;
  min-height: 41px;
  border-bottom: 1px solid var(--line);
  padding: 4px 6px;
}

.review-steps li:last-child,
.run-flow li:last-child {
  border-bottom: 0;
}

.review-step__icon,
.run-app-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.43rem;
  font-weight: 500;
}

.review-steps li > div,
.run-flow li > div {
  min-width: 0;
}

.review-steps b,
.review-steps small,
.run-flow b,
.run-flow small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-steps b,
.run-flow b {
  font-size: 0.5rem;
  font-weight: 500;
}

.review-steps small,
.run-flow small {
  color: var(--muted);
  font-size: 0.41rem;
}

.review-steps em,
.run-flow em {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: #eaf7f1;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.44rem;
  font-style: normal;
}

.review-checkpoint {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  margin: 6px 8px;
  border: 1px solid #e7c999;
  border-radius: 3px;
  background: #fffaf2;
  padding: 6px;
}

.checkpoint-icon {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid #d6ad6e;
  border-radius: 50%;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.53rem;
}

.review-checkpoint div {
  min-width: 0;
}

.review-checkpoint b,
.review-checkpoint small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-checkpoint b {
  color: #70481b;
  font-size: 0.48rem;
  font-weight: 500;
}

.review-checkpoint small {
  color: #8a6338;
  font-size: 0.39rem;
}

.review-checkpoint em {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.36rem;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-approval {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
  margin: auto 8px 8px;
}

.review-approval > span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.39rem;
  white-space: nowrap;
}

.review-approval i {
  color: var(--green);
  font-style: normal;
}

.review-approval > b {
  border: 1px solid var(--purple);
  border-radius: 2px;
  background: var(--purple);
  color: #fff;
  padding: 5px 6px;
  font-size: 0.42rem;
  font-weight: 500;
  box-shadow: -1px 1px 0 rgba(105, 47, 255, 0.25);
}

.run-live-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 125, 88, 0.12);
}

.run-trigger-card {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  margin: 8px 8px 6px;
  min-height: 39px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  padding: 6px;
}

.run-trigger-card > span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.run-trigger-card small,
.run-trigger-card b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.run-trigger-card small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.36rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.run-trigger-card b {
  font-size: 0.47rem;
  font-weight: 500;
}

.run-flow {
  position: relative;
}

.run-flow::before {
  position: absolute;
  z-index: 0;
  top: 23px;
  bottom: 23px;
  left: 15px;
  border-left: 1px dashed rgba(105, 47, 255, 0.42);
  content: "";
}

.run-flow li {
  position: relative;
  z-index: 1;
  min-height: 47px;
  background: rgba(255, 255, 255, 0.92);
}

.run-complete {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  margin: auto 8px 8px;
  border: 1px solid #bfdfd1;
  border-radius: 3px;
  background: #f4fbf7;
  padding: 7px;
}

.run-complete > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.59rem;
}

.run-complete strong,
.run-complete small {
  display: block;
}

.run-complete strong {
  color: #115f44;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
}

.run-complete small {
  margin-top: 2px;
  color: #4c7565;
  font-size: 0.38rem;
}

.journey-stage--run .journey-window {
  text-align: left;
}

.workflow-index {
  min-height: 0 !important;
  margin: 0 0 42px !important;
}

.workflow-card {
  min-height: 540px;
}

.workflow-card .card-contrast > div {
  grid-template-columns: 94px 1fr;
  padding-block: 17px;
}

.workflow-card .card-impact {
  margin-top: auto;
  border-bottom-color: var(--line-strong);
  padding: 21px 0 19px;
}

.workflow-card .card-impact dt {
  color: var(--muted);
}

.workflow-card .card-impact dd strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.46rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.pilot-steps span {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
}

.pilot-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pilot-steps article {
  min-height: 190px;
  padding: 30px;
}

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

.pilot-steps h3 {
  margin: 22px 0 9px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pilot-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.engagement {
  background: var(--surface-soft);
}

.engagement h2 {
  max-width: 920px;
}

.pilot-steps {
  margin-bottom: 42px;
  background: var(--surface);
}

@media (max-width: 1280px) {
  .journey-preview {
    padding-left: 12px;
  }

  .journey-grid {
    gap: 8px;
  }

  .journey-window {
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 1024px) {
  .journey-preview {
    overflow-x: auto;
    padding: 0 0 32px;
    scroll-snap-type: x mandatory;
  }

  .journey-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    min-width: 820px;
  }

  .journey-stage {
    scroll-snap-align: start;
  }

}

@media (max-width: 720px) {
  .journey-preview {
    width: calc(100% + var(--gutter));
  }

  .journey-grid {
    grid-template-columns: minmax(82vw, 1fr) repeat(2, minmax(82vw, 1fr));
    gap: 14px;
    min-width: calc((82vw * 3) + 28px);
    padding-right: var(--gutter);
  }

  .journey-window {
    height: 360px;
    min-height: 360px;
  }

  .pilot-steps {
    grid-template-columns: 1fr;
  }

  .pilot-steps article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* Workflow automation type system.
   The miniature workflow preview is a labelled product illustration, so its
   internal UI text scales with the diagram instead of the reading hierarchy. */
.hero-shell,
.capability-strip {
  width: min(100% - (2 * var(--gutter)), var(--section));
}

h1,
h2,
.hero-copy h1,
.faq-head h2,
.final-cta h2,
.challenge-story h3,
.chapter-copy h3,
.workflow-card h3,
.pilot-steps h3,
.finder-bridge p,
.challenge-closer,
.faq-list summary > b,
.workflow-card .card-impact dd strong,
.measurement-rows b,
.mobile-menu nav a {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: var(--tracking-display);
}

h1,
.hero-copy h1 {
  font-size: var(--type-display-1);
  line-height: var(--leading-display);
}

h2,
.faq-head h2,
.final-cta h2 {
  font-size: var(--type-display-2);
  line-height: var(--leading-display);
}

.challenge-story h3,
.chapter-copy h3,
.finder-bridge p,
.challenge-closer {
  font-size: var(--type-display-3);
  line-height: var(--leading-display);
}

.workflow-card h3,
.pilot-steps h3,
.faq-list summary > b,
.workflow-card .card-impact dd strong,
.mobile-menu nav a {
  font-size: var(--type-title);
  line-height: var(--leading-title);
  letter-spacing: var(--tracking-title);
}

.section-label,
.chapter-index,
.card-contrast dt,
.challenge-story article > span,
.pilot-steps article > span,
.faq-list summary > span,
.solution-definition small,
.chapter-example span,
.capability-strip .capability-title,
.mobile-menu nav span {
  font-family: var(--mono);
  font-size: var(--type-label) !important;
  font-style: normal;
  font-weight: 500;
  line-height: var(--leading-compact);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.chapter-index,
.challenge-story article > span {
  color: var(--text-secondary);
}

.pilot-steps article > span,
.faq-list summary > span {
  color: var(--purple);
}

.section-label,
.card-contrast dt,
.solution-chips h4,
.scale-features dt {
  color: var(--text-primary);
}

.hero-copy > p,
.section-heading-row > p,
.challenge-intro,
.solution-intro,
.faq-head > p:last-child,
.final-cta-copy p,
.measurement-rows b {
  font-size: var(--type-lead);
  font-style: normal;
  font-weight: 400;
  line-height: var(--leading-reading);
}

.challenge-story p,
.chapter-copy > p:not(.chapter-index),
.pilot-steps p,
.faq-list details > p,
.solution-definition p,
.workflow-card > p {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-style: normal;
  font-weight: 400;
  line-height: var(--leading-reading);
}

.card-contrast dd,
.solution-chips h4,
.solution-chips > div > p,
.chapter-example p,
.scale-features dt,
.scale-features dd,
.capability-strip > li {
  font-size: var(--type-small);
  line-height: var(--leading-compact);
}

.card-contrast dd strong {
  font-size: inherit;
  font-weight: 500;
}

.chapter-example span {
  color: var(--text-secondary);
  font-size: var(--type-label);
  font-weight: 400;
  line-height: var(--leading-compact);
  letter-spacing: normal;
  text-transform: none;
}

.workflow-disclaimer,
.measurement-rows span {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--leading-compact);
  letter-spacing: normal;
  text-transform: none;
}

.card-contrast dd strong {
  font-family: var(--font-mono);
  font-size: var(--type-metric);
  font-style: normal;
  font-weight: 500;
  letter-spacing: normal;
  line-height: var(--leading-compact);
}

.measurement-rows b {
  font-family: var(--font-body);
  font-size: var(--type-title);
  font-style: normal;
  font-weight: 400;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.button,
.hero-actions .button,
.site-nav a,
.site-footer,
.site-footer a,
.site-footer .brand,
.brand {
  font-size: var(--type-small);
  font-weight: 500;
  line-height: var(--leading-compact);
}

.site-nav a,
.brand,
.site-footer .brand {
  color: var(--text-primary);
}

.brand,
.site-footer .brand {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  font-style: normal;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  line-height: var(--leading-compact);
  text-transform: uppercase;
}

.button span {
  font-size: var(--type-small);
  line-height: var(--leading-compact);
}

.hero .hero-copy > p,
.workflow-card > p,
.card-contrast dd,
.challenge-closer {
  color: var(--text-secondary);
}

.capability-strip > li {
  color: var(--text-secondary);
}

.capability-strip .capability-title {
  color: var(--text-primary);
}

/* The workflow preview uses one compact UI scale instead of per-element sizes. */
.journey-stage > header,
.journey-title,
.record-app__body b,
.review-steps b,
.run-flow b,
.review-checkpoint b,
.run-trigger-card b,
.record-caption,
.review-approval > b {
  font-size: var(--type-ui-title);
  line-height: 1.3;
  font-family: var(--font-body);
}

.journey-stage > header,
.journey-stage > header :is(span, b),
.record-environment__label > span,
.review-checkpoint em,
.run-trigger-card small {
  font-family: var(--font-mono);
  font-size: var(--type-ui-title);
  font-style: normal;
  font-weight: 500;
  letter-spacing: var(--tracking-ui-label);
  line-height: 1.3;
  text-transform: uppercase;
}

.record-app-switcher small,
.record-environment__label,
.record-app__body small,
.record-app__body em,
.record-handoff,
.review-summary small,
.review-steps small,
.run-flow small,
.review-checkpoint small,
.review-approval > span,
.run-trigger-card small,
.run-complete small {
  font-size: var(--type-ui-body);
  line-height: 1.35;
  font-family: var(--font-body);
}

.record-app-switcher small,
.record-app__body small,
.record-app__body em,
.record-handoff,
.review-summary small,
.review-steps small,
.run-flow small,
.review-checkpoint small,
.review-approval > span,
.run-trigger-card small,
.run-complete small,
.record-caption {
  font-family: var(--font-body);
  font-size: var(--type-ui-body);
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.35;
  text-transform: none;
}

.journey-title small,
.record-environment__label small,
.browser-bar,
.desktop-bar,
.review-checkpoint em {
  font-size: var(--type-ui-meta);
  line-height: 1.3;
  font-family: var(--font-mono);
}

.journey-title small,
.record-environment__label small,
.browser-bar,
.desktop-bar,
.review-checkpoint em {
  font-family: var(--font-mono);
  font-size: var(--type-ui-meta);
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.3;
  text-transform: none;
}

.journey-window :is(small, em) {
  color: var(--text-secondary);
}

.journey-window :is(b, strong) {
  color: var(--text-primary);
  font-weight: 500;
}

.review-approval > b {
  color: #fff;
}

.record-app-switcher > i,
.record-caption > span,
.review-summary > span,
.review-steps em,
.run-flow em,
.checkpoint-icon,
.run-trigger-card > span,
.run-complete > span,
.switcher-icon,
.app-icon,
.review-step__icon,
.run-app-icon {
  font-size: var(--type-ui-meta);
  line-height: 1;
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.review-summary strong,
.run-complete strong {
  font-size: var(--type-body);
  line-height: 1;
}

.challenge-head .challenge-intro {
  font-size: var(--type-lead);
  line-height: var(--leading-reading);
}

.review-checkpoint :is(b, small, em) {
  color: #70481b;
}

.run-complete :is(strong, small) {
  color: #115f44;
}

/* Iteration: retain the editorial system while making the operational proof easier to read and act on. */
:root {
  --line: #ddd8df;
  --line-strong: #bbb4bc;
  --type-small: 0.9375rem;
}

.button,
.hero-actions .button {
  min-height: 44px;
  padding-inline: 20px;
  font-size: var(--type-small);
}

.rail-hint {
  display: none;
}

.solution-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 84px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.solution-bridge p {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--type-title);
  font-weight: 400;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

@media (max-width: 720px) {
  .mobile-menu {
    width: 100%;
  }

  [data-cta] {
    margin-inline: auto;
  }

  .engagement [data-cta] {
    display: flex;
    width: fit-content;
  }

  .button,
  .hero-actions .button {
    min-height: 48px;
  }

  .rail-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 20px 0;
    color: var(--text-secondary);
    font-family: var(--mono);
    font-size: var(--type-label);
    font-weight: 500;
    letter-spacing: var(--tracking-label);
    line-height: var(--leading-compact);
    text-transform: uppercase;
  }

  .rail-hint span {
    color: var(--purple);
    font-size: var(--type-small);
  }

  .challenge,
  .solution {
    padding-block: 72px;
  }

  .challenge-story {
    gap: 48px;
    margin-top: 40px;
  }

  .solution-chapters {
    gap: 64px;
    margin-top: 56px;
  }

  .solution-chips {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solution-chips > div {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 16px;
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .solution-chips canvas {
    width: 112px;
    max-width: 100%;
    grid-row: span 2;
    align-self: center;
  }

  .solution-chips h4 {
    margin: 0;
    border-top: 0;
    padding-top: 0;
    font-size: var(--type-small);
  }

  .solution-chips > div > p {
    margin-top: 4px;
    font-size: var(--type-small);
  }

  .scale-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .measurement-rows > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .finder-bridge {
    min-height: 220px;
  }

  .solution-bridge {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
  }

  .solution-bridge .button {
    width: 100%;
  }
}


/* Workflow rail: compact editorial hierarchy, matching the reference pattern
   without borrowing its typeface. */
.finder-head .section-label {
  font-size: 0.875rem !important;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4286;
  text-transform: none;
}

.finder-head .section-heading-row h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.finder-head .section-heading-row > p {
  font-size: 1.125rem;
  line-height: 1.625;
}

.workflow-card {
  min-height: 0;
  border-color: var(--line);
  border-radius: 4px;
  padding: 28px;
}

.workflow-index {
  margin: 0 0 16px !important;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.workflow-card h3 {
  min-height: 0;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.25;
}

.workflow-card > p {
  min-height: 0;
  margin: 12px 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
}

.workflow-card .card-contrast {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  border-top: 0;
}

.workflow-card .card-contrast > div,
.workflow-card .card-impact {
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
}

.workflow-card .card-contrast dt {
  color: var(--muted);
  font-size: 0.6875rem !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.workflow-card .card-contrast dd {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.4286;
}

.workflow-card .card-contrast dd strong {
  color: var(--text-secondary);
  font-size: inherit;
  font-weight: 400;
}

.workflow-card .card-contrast > .card-impact {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.workflow-card .card-impact dd {
  margin-top: 2px;
}

.workflow-card .card-impact dd strong {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .workflow-card {
    padding: 24px;
  }

  .workflow-card h3 {
    font-size: 1.5rem;
  }
}

/* Answer-first fit section: keeps the category wedge explicit without adding another dense page block. */
.fit-note {
  padding-block: 96px 104px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.fit-note-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: start;
}

.fit-note-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  font-weight: 400;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
}

.fit-note-copy > p:not(.section-label) {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: var(--leading-reading);
}

.fit-note-copy .fit-note-limit {
  color: var(--ink);
  font-size: var(--type-small);
}

.fit-note-aside {
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.fit-note-aside-label {
  margin-bottom: 22px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.fit-note-aside dl {
  margin: 0;
}

.fit-note-aside dl > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.fit-note-aside dt {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.fit-note-aside dd {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: var(--leading-reading);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  font-size: var(--type-small);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link:hover { color: var(--purple); }

@media (max-width: 720px) {
  .fit-note { padding-block: 72px 76px; }
  .fit-note-shell { grid-template-columns: 1fr; gap: 36px; }
  .fit-note-aside { padding: 22px 20px; }
}

@media (max-width: 767px) {
  .finder-head .section-heading-row h2 {
    font-size: 1.875rem;
  }

  .finder-head .section-heading-row > p {
    font-size: 1rem;
  }

  .workflow-card .card-impact dd strong {
    font-size: 1.375rem;
  }
}

/* Conversion pass: clarify the mapping commitment and remove repeated vertical beats
   without changing the established editorial system or workflow illustrations. */
.hero-copy .hero-session-note {
  max-width: 550px;
  margin: 18px 0 0;
  border-left: 2px solid rgba(105, 47, 255, 0.4);
  padding-left: 14px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
}


.hero-session-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-session-note a,
.solution-intro a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.hero-session-note a:hover,
.solution-intro a:hover {
  color: var(--purple);
}

.finder-bridge p strong,
.finder-bridge p > span {
  display: block;
}

.finder-bridge p > span {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
}

.solution {
  padding-block: 88px 72px;
}

.solution-chapters {
  gap: 88px;
  margin-top: 76px;
}

.chapter-copy {
  gap: 16px;
}

.pilot-intro {
  max-width: 620px;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--type-lead);
  line-height: var(--leading-reading);
}

.pilot-steps {
  margin-top: 48px;
}

.engagement {
  padding-block: 88px 72px;
}

@media (max-width: 720px) {
  .hero-copy .hero-session-note {
    margin-top: 16px;
    font-size: 0.8125rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .finder-bridge p > span {
    margin-top: 12px;
    font-size: 0.9375rem;
  }

  .solution {
    padding-block: 56px;
  }

  .solution-chapters {
    gap: 48px;
    margin-top: 44px;
  }

  .solution-chips canvas {
    display: none;
  }

  .solution-chips > div {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    padding-block: 13px;
  }

  .engagement {
    padding-block: 64px 56px;
  }

  .pilot-steps {
    margin-top: 36px;
  }
}
