:root {
  --forest: #173e35;
  --forest-deep: #102f29;
  --forest-soft: #2b564a;
  --paper: #f5f0e6;
  --paper-light: #fbf8f1;
  --paper-deep: #e8dfd0;
  --ink: #17221e;
  --muted: #66716c;
  --sage: #89a097;
  --line: #d9d1c4;
  --clay: #d78055;
  --gold: #d6a944;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper-light);
  color: var(--ink);
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.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: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper-light);
  color: var(--forest);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  color: #f9f4e8;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(16, 47, 41, 0.97);
  border-bottom: 1px solid rgba(249, 244, 232, 0.14);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
}

.wordmark-mark svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.site-nav > a:not(.button) {
  padding-block: 12px;
  color: rgba(249, 244, 232, 0.76);
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: #fffaf0;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--forest);
  color: var(--paper-light);
  font-weight: 600;
  line-height: 1.2;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--forest-soft);
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-color: rgba(249, 244, 232, 0.25);
  background: rgba(249, 244, 232, 0.08);
}

.button-light {
  background: var(--paper-light);
  color: var(--forest);
}

.button-light:hover {
  background: #ffffff;
  color: var(--forest-deep);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 145px 0 64px;
  background: var(--forest);
  color: #f7f1e6;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M-8 64 64-8M8 80 80 8' stroke='%23ffffff' stroke-opacity='.025' stroke-width='1'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 68px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #b7cabf;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(52px, 6vw, 86px);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.hero-text {
  max-width: 575px;
  margin: 24px 0 0;
  color: rgba(247, 241, 230, 0.72);
  font-size: 18px;
}

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

.hero-note {
  color: rgba(247, 241, 230, 0.62);
  font-size: 13px;
}

.founder-visual {
  position: relative;
  min-height: 560px;
}

.photo-slot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #244b41;
}

.photo-slot::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  background: linear-gradient(
    180deg,
    rgba(10, 35, 30, 0) 0%,
    rgba(10, 35, 30, 0.22) 28%,
    rgba(10, 35, 30, 0.92) 100%
  );
  content: "";
}

.photo-before {
  top: 0;
  left: 0;
  width: 62%;
  height: 88%;
  transform: rotate(-2.2deg);
}

.photo-now {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 58%;
  height: 78%;
  border-color: rgba(247, 241, 230, 0.55);
  background: #315e51;
  transform: rotate(2.4deg);
}

.photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.photo-now .photo-image {
  object-position: 50% 50%;
}

.photo-slot figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  color: #f8f2e8;
}

.photo-slot figcaption span {
  color: #bfd0c7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-slot figcaption strong {
  margin-top: 2px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.photo-slot figcaption small {
  margin-top: 6px;
  color: rgba(248, 242, 232, 0.6);
  font-size: 11px;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: -8px;
  top: 28px;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid rgba(247, 241, 230, 0.22);
  background: var(--paper);
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
  transform: rotate(3deg);
}

.journey {
  position: relative;
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(5, 1fr);
}

.journey-line {
  position: absolute;
  top: 10px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: rgba(247, 241, 230, 0.24);
}

.journey-point {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.journey-point::before {
  z-index: 1;
  width: 9px;
  height: 9px;
  margin: 6px 0 13px;
  border: 4px solid var(--forest);
  border-radius: 50%;
  background: #90a99e;
  content: "";
}

.journey-point strong {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.journey-point span {
  margin-top: 2px;
  color: rgba(247, 241, 230, 0.56);
  font-size: 12px;
}

.journey-current::before {
  background: var(--gold);
}

.journey-goal {
  opacity: 0.62;
}

.section {
  padding: 128px 0;
}

.section-paper {
  background: var(--paper);
}

.section h2,
.final-cta h2 {
  font-size: clamp(40px, 5vw, 67px);
}

.story-grid,
.health-grid,
.faq-grid,
.ongoing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.78fr);
  gap: 11%;
}

.section-intro h2 {
  max-width: 700px;
}

.story-body {
  padding-top: 35px;
}

.story-body blockquote,
.ongoing-quote blockquote {
  margin: 0;
  color: var(--forest);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.story-body p,
.health-copy > p,
.ongoing-copy > p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-intro.compact {
  display: grid;
  align-items: end;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 52px;
}

.section-intro.compact .eyebrow {
  margin-bottom: 10px;
}

.fail-list {
  margin: 78px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fail-list li {
  display: grid;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.52fr 1.48fr;
  gap: 52px;
}

.fail-list li > span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.fail-list li > div {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 40px;
}

.fail-list h3,
.principles h3,
.fit h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.fail-list p,
.principles p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
  gap: 11%;
}

.system-sticky {
  align-self: start;
}

.system-sticky h2 {
  font-size: clamp(42px, 4.8vw, 64px);
}

.system-sticky > p:last-child {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  padding: 38px 0 44px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 1fr;
  gap: 26px;
}

.principle-number {
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
}

.principles p {
  margin-top: 12px;
}

.product {
  overflow: hidden;
  background: var(--forest-deep);
  color: #f7f1e6;
}

.product-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(390px, 0.9fr) minmax(400px, 1.1fr);
  gap: 10%;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(247, 241, 230, 0.12);
  border-radius: 50%;
  content: "";
}

.phone {
  position: relative;
  z-index: 1;
  width: 342px;
  min-height: 690px;
  padding: 10px;
  border: 2px solid rgba(247, 241, 230, 0.56);
  border-radius: 45px;
  background: #0b1512;
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.phone-island {
  width: 86px;
  height: 23px;
  border-radius: 20px;
  background: #080b0a;
}

.phone-screen {
  position: relative;
  min-height: 666px;
  overflow: hidden;
  padding: 54px 15px 78px;
  border-radius: 35px;
  background: #f8f6f0;
  color: var(--ink);
}

.coach-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coach-head > div {
  display: grid;
}

.coach-head strong {
  font-size: 13px;
}

.coach-head small {
  color: var(--muted);
  font-size: 10px;
}

.coach-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #f8f2e8;
  font-size: 10px;
  font-weight: 600;
}

.chat-day {
  margin: 28px 0 14px;
  color: #82908a;
  font-size: 10px;
  text-align: center;
}

.bubble {
  max-width: 88%;
  margin-bottom: 12px;
  padding: 12px 13px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.48;
}

.bubble-coach {
  background: #e9e7df;
}

.bubble-user {
  margin-left: auto;
  background: var(--forest);
  color: #f8f2e8;
}

.phone-composer {
  position: absolute;
  right: 13px;
  bottom: 15px;
  left: 13px;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 14px;
  border: 1px solid #dcddd8;
  border-radius: 18px;
  background: #fff;
  color: #8a918e;
  font-size: 10px;
}

.mic {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
}

.mic svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-copy h2 {
  max-width: 650px;
  color: #fbf7ef;
}

.product-steps {
  margin: 48px 0 34px;
  padding: 0;
  list-style: none;
}

.product-steps li {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 241, 230, 0.14);
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.product-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(247, 241, 230, 0.24);
  border-radius: 50%;
  color: #c4d5cd;
  font-size: 12px;
}

.product-steps p {
  margin: 2px 0 0;
  color: rgba(247, 241, 230, 0.7);
}

.product-steps strong {
  color: #fff9f0;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: #f8f2e8;
  font-weight: 600;
}

.text-link span {
  color: var(--gold);
  font-size: 20px;
}

.health-grid h2 {
  max-width: 700px;
}

.health-copy {
  padding-top: 32px;
}

.health-copy > p {
  margin-top: 0;
}

.health-boundary {
  display: grid;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
  gap: 18px;
}

.health-boundary svg {
  width: 28px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.health-boundary p {
  margin: 0;
  color: var(--muted);
}

.health-boundary strong {
  color: var(--ink);
  font-weight: 600;
}

.fit-columns {
  display: grid;
  margin-top: 76px;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.fit-columns > div {
  padding: 40px 46px;
  background: var(--paper-light);
}

.fit-columns .fit-no {
  background: #e9e2d6;
}

.fit ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.fit li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.fit li::before {
  position: absolute;
  top: 0.58em;
  left: 3px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--forest);
  border-radius: 50%;
  content: "";
}

.fit-no li::before {
  border-radius: 0;
  transform: rotate(45deg);
}

.ongoing {
  background: var(--clay);
  color: #251c18;
}

.ongoing .eyebrow,
.ongoing-quote blockquote {
  color: #251c18;
}

.ongoing-copy {
  padding-top: 35px;
}

.ongoing-copy > p {
  color: rgba(37, 28, 24, 0.74);
}

.signature {
  padding-top: 26px;
  border-top: 1px solid rgba(37, 28, 24, 0.25);
  font-weight: 600;
}

.signature span {
  font-size: 13px;
  font-weight: 400;
}

.faq-grid h2 {
  max-width: 380px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--forest);
  font-size: 25px;
  font-weight: 400;
  transition: transform 160ms ease;
}

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

.faq-list details p {
  max-width: 620px;
  margin: -6px 0 28px;
  color: var(--muted);
}

.final-cta {
  padding: 112px 0;
  background: var(--forest);
  color: #f7f1e6;
}

.final-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 9%;
}

.final-cta h2 {
  max-width: 790px;
}

.final-action {
  padding-bottom: 6px;
}

.button-wide {
  width: 100%;
}

.final-action p {
  margin: 15px 4px 0;
  color: rgba(247, 241, 230, 0.58);
  font-size: 12px;
}

.site-footer {
  padding: 34px 0;
  background: var(--forest-deep);
  color: rgba(247, 241, 230, 0.58);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px;
}

.wordmark-footer {
  color: #f7f1e6;
}

.footer-grid p {
  margin: 0;
}

.footer-grid p:last-child {
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 961px) {
  .system-sticky {
    position: sticky;
    top: 120px;
  }
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 38px;
  }

  .founder-visual {
    min-height: 500px;
  }

  .story-grid,
  .health-grid,
  .faq-grid,
  .ongoing-grid {
    gap: 7%;
  }

  .product-grid {
    gap: 6%;
  }

  .fail-list li,
  .section-intro.compact {
    grid-template-columns: 0.4fr 1.6fr;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 18px 16px 24px;
    border-top: 1px solid rgba(247, 241, 230, 0.12);
    background: var(--forest-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    min-height: 48px;
    padding: 13px 8px;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border: 0;
    background: transparent;
    place-content: center;
    gap: 7px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-grid,
  .system-grid,
  .product-grid,
  .story-grid,
  .health-grid,
  .faq-grid,
  .ongoing-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    margin-top: 24px;
    min-height: 600px;
  }

  .photo-before {
    width: 59%;
  }

  .photo-now {
    width: 56%;
  }

  .journey {
    margin-top: 76px;
  }

  .section {
    padding: 92px 0;
  }

  .story-body,
  .health-copy,
  .ongoing-copy {
    padding-top: 0;
  }

  .story-grid,
  .health-grid,
  .faq-grid,
  .ongoing-grid,
  .system-grid {
    gap: 46px;
  }

  .section-intro.compact {
    display: block;
  }

  .section-intro.compact h2 {
    margin-top: 0;
  }

  .fail-list {
    margin-top: 52px;
  }

  .fail-list li {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .fail-list li > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-copy {
    grid-row: 1;
  }

  .phone-stage {
    min-height: 740px;
  }

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

  .final-grid {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    inset-block-start: 68px;
  }

  .hero {
    padding: 108px 0 48px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.1vw, 58px);
  }

  .hero-lead {
    font-size: 25px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-note {
    text-align: center;
  }

  .founder-visual {
    display: grid;
    min-height: 0;
    margin-top: 42px;
    padding-top: 46px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .photo-before,
  .photo-now {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    transform: none;
  }

  .photo-slot figcaption {
    right: 12px;
    bottom: 13px;
    left: 12px;
  }

  .photo-slot figcaption span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .photo-slot figcaption strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .photo-slot figcaption small {
    display: none;
  }

  .visual-caption {
    top: 0;
    right: auto;
    left: 0;
    padding: 9px 11px;
    font-size: 11px;
    transform: none;
  }

  .journey {
    margin-top: 56px;
    padding-left: 12px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-line {
    top: 9px;
    bottom: 25px;
    left: 15px;
    width: 1px;
    height: auto;
  }

  .journey-point {
    min-height: 58px;
    padding-left: 34px;
    justify-items: start;
    text-align: left;
  }

  .journey-point::before {
    position: absolute;
    top: 1px;
    left: -1px;
    margin: 0;
  }

  .journey-point strong {
    font-size: 20px;
  }

  .section {
    padding: 78px 0;
  }

  .section h2,
  .final-cta h2,
  .system-sticky h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .story-grid,
  .health-grid,
  .faq-grid,
  .ongoing-grid,
  .system-grid {
    gap: 34px;
  }

  .story-body blockquote,
  .ongoing-quote blockquote {
    font-size: 24px;
  }

  .fail-list li {
    padding: 28px 0;
    grid-template-columns: 36px 1fr;
  }

  .principles article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .phone-stage {
    min-height: 675px;
    margin-inline: -14px;
  }

  .phone-stage::before {
    width: 400px;
    height: 400px;
  }

  .phone {
    width: min(332px, calc(100vw - 36px));
    min-height: 650px;
  }

  .phone-screen {
    min-height: 626px;
  }

  .fit-columns {
    margin-top: 48px;
  }

  .fit-columns > div {
    padding: 32px 24px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 16px;
  }

  .final-cta {
    padding: 78px 0;
  }
}

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

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

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