:root {
  color-scheme: light;

  --acs-navy-900: #10182e;
  --acs-navy-800: #172443;
  --acs-navy-700: #2c3a5b;
  --acs-blue-600: #2457ff;
  --acs-blue-700: #1748e5;
  --acs-blue-800: #1239b8;
  --acs-blue-100: #e8eeff;
  --acs-blue-050: #f0f4ff;
  --acs-yellow-400: #ffe14a;
  --acs-white-digital: #f7f9ff;
  --acs-white-pure: #ffffff;
  --acs-bluegray-400: #8a9ac2;
  --acs-bluegray-700: #52617c;
  --acs-bluegray-200: #b8c4de;
  --acs-bluegray-100: #dce4f5;

  --acs-background-page: var(--acs-white-digital);
  --acs-background-section-soft: var(--acs-blue-050);
  --acs-background-section-dark: var(--acs-navy-900);
  --acs-surface-card: var(--acs-white-pure);
  --acs-surface-dark: var(--acs-navy-800);
  --acs-text-primary: var(--acs-navy-900);
  --acs-text-secondary: var(--acs-bluegray-700);
  --acs-text-inverse: var(--acs-white-digital);
  --acs-text-inverse-secondary: var(--acs-bluegray-200);
  --acs-action-primary: var(--acs-blue-600);
  --acs-action-primary-hover: var(--acs-blue-700);
  --acs-action-primary-pressed: var(--acs-blue-800);
  --acs-action-primary-text: var(--acs-white-pure);
  --acs-accent-clarity: var(--acs-yellow-400);
  --acs-path-technology: var(--acs-blue-600);
  --acs-border-subtle: var(--acs-bluegray-100);
  --acs-border-dark: var(--acs-navy-700);
  --acs-focus-ring: var(--acs-blue-600);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --content-max: 1312px;
  --transition: 180ms cubic-bezier(0.2, 0, 0, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--acs-background-page);
  color: var(--acs-text-primary);
  font-family: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
}

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

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

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

ol,
ul {
  padding: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--acs-action-primary);
  color: var(--acs-action-primary-text);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

a:focus-visible,
button:focus-visible,
.conversation__send:focus-visible {
  outline: 3px solid var(--acs-focus-ring);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-width: 170px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 11px var(--space-5);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

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

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

.button--primary {
  background: var(--acs-action-primary);
  color: var(--acs-action-primary-text);
}

.button--primary:hover {
  background: var(--acs-action-primary-hover);
}

.button--primary:active {
  background: var(--acs-action-primary-pressed);
}

.button--secondary {
  border-color: var(--acs-border-subtle);
  background: var(--acs-surface-card);
  color: var(--acs-text-primary);
}

.button--secondary:hover {
  background: var(--acs-background-section-soft);
  border-color: var(--acs-focus-ring);
}

.site-header,
.site-footer,
.hero,
.journey,
.stories,
.manifesto,
.outcomes,
.trust,
.final-cta {
  width: 100%;
}

.site-header {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(220 228 245 / 65%);
  padding: 10px max(72px, calc((100vw - var(--content-max)) / 2));
  background: rgb(247 249 255 / 96%);
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-logo {
  width: 243px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.site-nav__journey {
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.site-nav__journey:hover {
  border-bottom-color: currentColor;
}

.hero {
  display: grid;
  min-height: 810px;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 70px max(72px, calc((100vw - var(--content-max)) / 2));
  background:
    radial-gradient(circle at 82% 22%, var(--acs-blue-100), transparent 18%),
    linear-gradient(151deg, var(--acs-background-page) 50%, #f2f6ff 100%);
}

.hero > * {
  min-width: 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--acs-action-primary);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 20px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acs-accent-clarity);
  content: "";
  flex: 0 0 auto;
}

.hero h1 {
  font-size: clamp(54px, 4.7vw, 67.5px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero h1 span:last-child,
.section-heading h2 span:last-child {
  color: var(--acs-action-primary);
}

.hero h1 span,
.section-heading h2 span {
  display: block;
}

.hero__body {
  max-width: 574px;
  color: var(--acs-text-secondary);
  font-size: 21px;
  line-height: 35px;
}

.hero__trust {
  color: var(--acs-text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 20px;
}

.conversation-shell {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 540px;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--acs-border-subtle);
  border-radius: 22px;
  background: var(--acs-surface-card);
  box-shadow: 0 28px 70px rgb(16 24 46 / 12%);
}

.conversation-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px 18px;
  background: linear-gradient(180deg, var(--acs-navy-900), #06214f);
  color: var(--acs-text-inverse);
}

.conversation-rail__brand {
  display: flex;
  height: 58px;
  align-items: center;
  margin: -14px -10px 20px;
  border-radius: var(--radius-md);
  padding: 8px;
  background: var(--acs-surface-card);
}

.conversation-rail__brand img {
  width: 132px;
  height: auto;
}

.conversation-rail__heading,
.conversation-rail li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.conversation-rail__heading {
  margin-bottom: 18px;
  font-size: 13px;
}

.conversation-rail__heading span {
  font-size: 20px;
}

.conversation-rail ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

.conversation-rail li {
  gap: 8px;
  color: var(--acs-text-inverse-secondary);
  font-size: 11px;
}

.connection-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1fd77b;
}

.conversation-rail li:nth-child(n + 4) .connection-dot {
  background: var(--acs-bluegray-400);
}

.conversation-rail__new {
  margin-top: auto;
  border-top: 1px solid var(--acs-border-dark);
  padding-top: 18px;
  color: var(--acs-text-inverse-secondary);
  font-size: 11px;
}

.conversation {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  gap: var(--space-5);
  overflow: hidden;
  padding: 30px;
  background: var(--acs-surface-card);
}

.conversation__header,
.conversation__prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.conversation__header {
  min-height: 44px;
  font-size: 15px;
  line-height: 20px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-pill);
  padding: 6px var(--space-3);
  background: var(--acs-background-section-soft);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
}

.status img {
  width: 8px;
  height: 8px;
}

.conversation__question,
.conversation__answer {
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
}

.conversation__question {
  width: min(100%, 330px);
  align-self: flex-end;
  min-height: 96px;
  background: var(--acs-background-section-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.conversation__answer {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  gap: var(--space-3);
  border: 1px solid var(--acs-border-subtle);
  background: var(--acs-surface-card);
}

.conversation__answer strong {
  font-size: 18px;
  line-height: 26px;
}

.conversation__answer p {
  color: var(--acs-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.conversation__trace {
  color: var(--acs-action-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.conversation__prompt {
  min-height: 52px;
  border: 1px solid var(--acs-border-subtle);
  border-radius: var(--radius-md);
  padding: 0 var(--space-2) 0 var(--space-4);
  background: var(--acs-background-page);
  color: var(--acs-text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.conversation__send {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--acs-action-primary);
  color: var(--acs-action-primary-text);
  font-size: 16px;
  font-weight: 700;
}

.journey {
  display: flex;
  min-height: 1104px;
  flex-direction: column;
  align-items: center;
  gap: 68px;
  padding: 104px max(72px, calc((100vw - var(--content-max)) / 2));
  background: var(--acs-background-section-soft);
}

.section-heading {
  display: flex;
  width: min(100%, 900px);
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.section-heading h2 {
  font-size: 48px;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--acs-text-secondary);
  font-size: 19px;
  line-height: 30px;
}

.section-eyebrow,
.manifesto__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acs-action-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 18px;
  text-transform: uppercase;
}

.journey__visual {
  display: flex;
  width: min(100%, 1260px);
  flex-direction: column;
  gap: 20px;
}

.journey__visual > img {
  width: 100%;
  height: 550px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgb(16 24 46 / 12%);
}

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

.journey__stages li {
  border: 1px solid var(--acs-border-subtle);
  border-radius: 16px;
  padding: 15px 18px;
  background: var(--acs-surface-card);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.stories {
  min-height: 1280px;
  padding: 110px max(72px, calc((100vw - var(--content-max)) / 2)) 128px;
  background: var(--acs-background-page);
}

.stories__heading {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 74px;
}

.stories__heading > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stories__heading h2 {
  max-width: 650px;
  font-size: 54px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.stories__heading > p {
  max-width: 520px;
  padding-bottom: 10px;
  color: var(--acs-text-secondary);
  font-size: 19px;
  line-height: 30px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.story-card {
  min-width: 0;
  border: 1px solid var(--acs-border-subtle);
  border-radius: 27px;
  background: var(--acs-surface-card);
  box-shadow: 0 20px 52px rgb(16 24 46 / 7%);
  overflow: hidden;
}

.story-card__trigger {
  display: grid;
  width: 100%;
  min-height: 320px;
  min-width: 0;
  grid-template-columns: minmax(0, 43.125%) minmax(0, 1fr);
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.story-card:nth-child(2) .story-card__trigger {
  min-height: 330px;
}

.story-card:nth-child(3) .story-card__trigger {
  min-height: 400px;
}

.story-card__trigger:hover .story-card__visual img {
  transform: scale(1.025);
}

.story-card__visual {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--acs-background-page), #edf2ff);
}

.story-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.story-card__content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 32px;
}

.story-card__eyebrow {
  color: var(--acs-action-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 16px;
  text-transform: uppercase;
}

.story-card__title {
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 36px;
}

.story-card__thesis {
  max-width: 352px;
  margin-top: 16px;
  color: var(--acs-text-secondary);
  font-size: 16.875px;
  line-height: 28px;
}

.story-card__divider {
  height: 1px;
  margin: 20px 0;
  background: var(--acs-border-subtle);
}

.story-card__read {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 18px;
  text-transform: uppercase;
}

.story-card__summary {
  max-width: 352px;
  margin-top: 8px;
  color: var(--acs-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.story-dialog {
  width: min(760px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  border: 1px solid var(--acs-border-subtle);
  border-radius: 32px;
  padding: 0;
  background: var(--acs-background-page);
  color: var(--acs-text-primary);
  box-shadow: 0 32px 96px rgb(16 24 46 / 25%);
}

.story-dialog::backdrop {
  background: rgb(16 24 46 / 58%);
  backdrop-filter: blur(5px);
}

.story-dialog__panel {
  display: flex;
  flex-direction: column;
  padding: 48px 52px;
}

.story-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.story-dialog__header p {
  color: var(--acs-action-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
}

.story-dialog__close {
  min-width: 94px;
  min-height: 44px;
  border: 1px solid var(--acs-border-subtle);
  border-radius: 12px;
  background: var(--acs-surface-card);
  color: var(--acs-text-primary);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.story-dialog__clarity {
  width: 12px;
  height: 12px;
  margin-top: 22px;
  border-radius: 50%;
  background: var(--acs-accent-clarity);
}

.story-dialog h2 {
  margin-top: 22px;
  font-size: 42px;
  letter-spacing: -0.035em;
  line-height: 52px;
}

.story-dialog h3 {
  margin-top: 18px;
  border-bottom: 1px solid var(--acs-border-subtle);
  padding-bottom: 22px;
  color: var(--acs-action-primary);
  font-size: 21px;
  line-height: 31px;
}

.story-dialog__body {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 30px;
}

.story-dialog__back {
  align-self: flex-start;
  margin-top: 28px;
}

.manifesto,
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--acs-background-section-dark);
  color: var(--acs-text-inverse);
  text-align: center;
}

.manifesto {
  position: relative;
  min-height: 394px;
  gap: 18px;
  overflow: hidden;
  padding: 72px 80px 94px;
}

.manifesto h2 {
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.manifesto p,
.final-cta > p:not(.final-cta__eyebrow) {
  color: var(--acs-text-inverse-secondary);
  max-width: 1120px;
  font-size: 18px;
  line-height: 30px;
}

.manifesto__eyebrow {
  color: var(--acs-text-inverse-secondary);
}

.clarity-line {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: 62%;
  height: auto;
}

.outcomes {
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(2, minmax(0, 560px));
  gap: var(--space-16);
  justify-content: center;
  padding: var(--space-16) max(var(--space-6), calc((100vw - 1200px) / 2));
  background: var(--acs-background-page);
}

.outcomes__column h2 {
  margin-bottom: var(--space-6);
  font-size: 26px;
  line-height: 34px;
}

.benefit-list,
.step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  list-style: none;
}

.benefit-list li,
.step-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: var(--space-2);
  color: var(--acs-text-secondary);
}

.benefit-list strong,
.step-list strong,
.benefit-list small,
.step-list small {
  display: block;
}

.benefit-list strong,
.step-list strong {
  margin-bottom: 2px;
  color: var(--acs-text-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.benefit-list small,
.step-list small {
  font-size: 14px;
  line-height: 22px;
}

.list-marker,
.step-number {
  color: var(--acs-action-primary);
  font-weight: 700;
  line-height: 24px;
}

.trust {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  padding: var(--space-10) var(--space-6);
  background: var(--acs-background-section-soft);
  text-align: center;
}

.trust h2 {
  font-size: 24px;
  line-height: 32px;
}

.trust ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}

.trust li:not(:last-child)::after {
  margin-left: var(--space-3);
  content: "·";
}

.final-cta {
  min-height: 380px;
  gap: var(--space-6);
  padding: var(--space-12) var(--space-6);
}

.final-cta__eyebrow {
  color: var(--acs-text-inverse-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
}

.final-cta h2 {
  font-size: 42px;
  line-height: 50px;
}

.site-footer {
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-8) max(var(--space-6), calc((100vw - var(--content-max)) / 2));
  background: var(--acs-background-page);
}

.brand-logo--footer {
  width: 184px;
}

.site-footer nav {
  display: flex;
  gap: var(--space-5);
  color: var(--acs-text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.site-footer nav a:hover {
  color: var(--acs-action-primary);
  text-decoration: underline;
}

.site-footer__login {
  display: none;
}

@media (max-width: 75rem) and (min-width: 48rem) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--space-8);
  }

  .hero h1 {
    font-size: 44px;
    line-height: 52px;
  }

  .journey__stages li:nth-child(2) {
    left: calc(50% - 95px);
  }
}

@media (max-width: 47.99rem) {
  :root {
    --content-max: 342px;
  }

  .site-header {
    min-height: 112px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
  }

  .site-header__brand {
    min-height: 58px;
  }

  .brand-logo {
    width: 160px;
  }

  .site-nav {
    min-height: 40px;
    justify-content: flex-end;
  }

  .site-nav__journey,
  .site-nav .button--secondary {
    display: none;
  }

  .site-nav .button--primary {
    min-width: 91px;
    min-height: 40px;
    padding: 10px 16px;
  }

  .hero {
    min-height: 1000px;
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    padding: 42px var(--space-6) 20px;
  }

  .hero__copy {
    gap: var(--space-5);
  }

  .eyebrow {
    font-size: 12px;
    line-height: 18px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -0.055em;
    line-height: 45px;
  }

  .hero__body {
    font-size: 16px;
    line-height: 25px;
  }

  .hero__trust {
    font-size: 12px;
    line-height: 18px;
  }

  .conversation-shell {
    height: 520px;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 22px;
  }

  .conversation-rail {
    display: none;
  }

  .conversation {
    height: 100%;
    gap: var(--space-4);
    padding: 18px;
  }

  .conversation__header {
    min-height: 36px;
    font-size: 13px;
    line-height: 18px;
  }

  .status {
    gap: 6px;
    padding: 5px var(--space-2);
    font-size: 9px;
    line-height: 14px;
  }

  .status img {
    width: 7px;
    height: 7px;
  }

  .conversation__question {
    min-height: 92px;
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
    line-height: 21px;
  }

  .conversation__answer {
    min-height: 190px;
    gap: 10px;
    padding: var(--space-4);
  }

  .conversation__answer strong {
    font-size: 16px;
    line-height: 23px;
  }

  .conversation__answer p {
    font-size: 13px;
    line-height: 20px;
  }

  .conversation__trace {
    font-size: 12px;
    line-height: 18px;
  }

  .conversation__prompt {
    min-height: 48px;
    padding: 0 var(--space-3);
    font-size: 12px;
    line-height: 18px;
  }

  .conversation__send {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .journey {
    min-height: 784px;
    align-items: stretch;
    gap: 44px;
    padding: 60px var(--space-6);
  }

  .section-heading {
    align-items: center;
    gap: 16px;
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 38px;
  }

  .section-heading > p:last-child {
    font-size: 14px;
    line-height: 22px;
  }

  .journey__visual {
    width: 100%;
    gap: 20px;
  }

  .journey__visual > img {
    height: 218px;
    max-width: none;
    border-radius: 0;
    margin-inline: -24px;
    width: calc(100% + 48px);
  }

  .journey__stages {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .journey__stages li {
    padding: 11px 14px;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }

  .stories {
    min-height: 2129px;
    padding: 84px var(--space-6) 76px;
  }

  .stories__heading {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .stories__heading > div {
    gap: 20px;
  }

  .stories__heading h2 {
    font-size: 34px;
    line-height: 38px;
  }

  .stories__heading > p {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .story-grid {
    gap: var(--space-6);
  }

  .story-card {
    border-radius: 24px;
  }

  .story-card__trigger {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .story-card__visual {
    height: auto;
    min-height: 0;
    flex: none;
    aspect-ratio: 2 / 1;
  }

  .story-card:nth-child(2) .story-card__visual {
    aspect-ratio: 1706 / 922;
  }

  .story-card:nth-child(3) .story-card__visual {
    aspect-ratio: 3 / 2;
  }

  .story-card__content {
    padding: 22px;
  }

  .story-card__title {
    font-size: 25px;
    line-height: 32px;
  }

  .story-card__thesis {
    font-size: 15px;
    line-height: 25px;
  }

  .story-card__summary {
    font-size: 13px;
    line-height: 20px;
  }

  .story-dialog {
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 32px);
    border-radius: 24px;
  }

  .story-dialog__panel {
    padding: 28px 24px 32px;
  }

  .story-dialog__header {
    gap: 12px;
  }

  .story-dialog__header p {
    max-width: 210px;
    font-size: 10px;
  }

  .story-dialog__close {
    min-width: 80px;
  }

  .story-dialog h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .story-dialog h3 {
    font-size: 17px;
    line-height: 26px;
  }

  .story-dialog__body {
    gap: 24px;
    font-size: 15px;
    line-height: 25px;
  }

  .manifesto {
    min-height: 380px;
    padding: 64px var(--space-6) 80px;
  }

  .manifesto h2 {
    max-width: 342px;
    font-size: 38px;
    line-height: 46px;
  }

  .manifesto p,
  .final-cta > p:not(.final-cta__eyebrow) {
    font-size: 16px;
    line-height: 24px;
  }

  .clarity-line {
    bottom: 20px;
    width: 70%;
  }

  .outcomes {
    min-height: 840px;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-12);
    padding: var(--space-12) var(--space-6);
  }

  .outcomes__column h2 {
    margin-bottom: var(--space-5);
    font-size: 24px;
    line-height: 32px;
  }

  .benefit-list,
  .step-list {
    gap: var(--space-5);
  }

  .benefit-list strong,
  .step-list strong {
    font-size: 15px;
    line-height: 23px;
  }

  .benefit-list small,
  .step-list small {
    font-size: 14px;
    line-height: 21px;
  }

  .trust {
    min-height: 350px;
    gap: var(--space-6);
    padding: var(--space-12) var(--space-6);
  }

  .trust ul {
    flex-direction: column;
    gap: var(--space-5);
  }

  .trust li:not(:last-child)::after {
    content: none;
  }

  .final-cta {
    min-height: 430px;
    padding: var(--space-12) var(--space-6);
  }

  .final-cta__eyebrow {
    max-width: 342px;
    font-size: 12px;
    line-height: 18px;
  }

  .final-cta h2 {
    max-width: 342px;
    font-size: 34px;
    line-height: 42px;
  }

  .final-cta > p:not(.final-cta__eyebrow) {
    max-width: 320px;
  }

  .site-footer {
    min-height: 220px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-6);
    padding: var(--space-10) var(--space-6);
  }

  .site-footer nav {
    flex-direction: column;
    gap: 0;
    line-height: 24px;
  }

  .site-footer__login {
    display: inline;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .button,
  .conversation,
  .conversation__answer,
  .conversation__prompt,
  .story-card,
  .story-dialog {
    border: 1px solid ButtonText;
  }

  .status img,
  .clarity-line,
  .story-card__visual img,
  .journey__visual > img {
    forced-color-adjust: none;
  }
}
