@font-face {
  font-family: "Bebas Neue";
  src: url("./assets/bebas-neue-regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/roboto-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: dark;
  --ink: #f5f2eb;
  --muted: #d1d3d4;
  --signal: #d1d3d4;
  --action: #bc251f;
  --action-hover: #d6322a;
  --line: rgba(255, 255, 255, 0.34);
  --page-pad: 40px;
  --measure: 1520px;
  --gutter: max(var(--page-pad), (100% - var(--measure)) / 2);
  --focus: rgba(188, 37, 31, 0.22);
  --action-ink: #fff;
  --radius-panel: 2px;
  --radius-control: 3px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Roboto", sans-serif;
  --weight-display: 400;
  --tracking-display: 0.018em;
  --step-000: 12px;
  --step-00: 14px;
  --step-0: 16px;
  --step-1: 20px;
  --step-2: 32px;
  --step-3: clamp(44px, 3.8vw, 56px);
  --step-4: clamp(56px, 5.2vw, 78px);
}

* {
  box-sizing: border-box;
}

html {
  background: #020609;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #020609;
  color: var(--ink);
  font-family: var(--font-body);
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 5, 9, 0.98) 0%,
      rgba(0, 6, 10, 0.89) 34%,
      rgba(0, 7, 11, 0.42) 59%,
      rgba(0, 5, 8, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(0, 4, 7, 0.06) 58%, rgba(0, 3, 5, 0.9) 100%),
    url("./assets/hero-portrait.jpg") 60% 50% / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 8, 11, 0.55), transparent 18%),
    radial-gradient(circle at 41% 40%, rgba(42, 61, 72, 0.15), transparent 29%);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--step-00);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.wordmark strong {
  color: var(--signal);
  font-size: var(--step-00);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
  font-size: var(--step-000);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 19px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 3px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 55vw);
  margin-top: clamp(76px, 9vh, 108px);
  margin-left: var(--gutter);
  padding-bottom: 190px;
}

@media (min-width: 901px) {
  .route-steadfast:not(.route-for-men) .hero-content {
    width: min(var(--hero-copy-measure, 880px), 62vw);
  }

  .route-steadfast:not(.route-for-men) .hero #hero-title {
    max-width: min(780px, 100%);
    font-size: clamp(74px, 5.5vw, 92px) !important;
    line-height: 0.96 !important;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--signal);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 33px;
  height: 2px;
  content: "";
  background: var(--signal);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-stretch: condensed;
  font-weight: 400;
  letter-spacing: 0.018em;
  line-height: 0.93;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.subheadline {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: var(--step-0);
  line-height: 1.52;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px 13px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--action);
  box-shadow: 0 16px 32px rgba(85, 4, 0, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--action-hover);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(3, 8, 11, 0.12);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-rule {
  position: absolute;
  right: var(--gutter);
  bottom: 116px;
  left: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, var(--ink) 0 80px, var(--line) 80px);
}

.hero-proof {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  z-index: 2;
  display: grid;
  min-height: 116px;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 3vw, 48px);
}

.hero-proof p {
  margin: 0;
  color: rgba(245, 242, 235, 0.76);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-proof-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 2.15vw, 34px);
}

.hero-proof-logos img {
  display: block;
  width: 100%;
  height: 38px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  opacity: 0.58;
}

main {
  overflow: hidden;
  background: #060b0e;
}

.proof-bar {
  position: relative;
  padding: 50px var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #090f12;
}

.proof-bar::before {
  position: absolute;
  top: -1px;
  left: var(--gutter);
  width: 80px;
  height: 2px;
  content: "";
  background: var(--signal);
}

.proof-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.proof-item {
  min-height: 120px;
  padding: 10px clamp(22px, 2.5vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-item dt {
  max-width: 270px;
  margin: 0;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.proof-item dd {
  max-width: 220px;
  margin: 12px 0 0;
  color: rgba(245, 242, 235, 0.68);
  font-size: var(--step-00);
  line-height: 1.45;
}

.belief-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(70px, 8vw, 140px);
  padding: clamp(130px, 12vw, 180px) var(--gutter);
  background:
    linear-gradient(140deg, rgba(72, 88, 96, 0.1), transparent 32%),
    #eee9de;
  color: #080d10;
}

.belief-heading {
  position: relative;
  max-width: 760px;
  padding-top: 42px;
}

.belief-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 5px;
  content: "";
  background: var(--action);
}

.belief-heading h2,
.division-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.93;
  text-transform: uppercase;
  text-wrap: balance;
}

.belief-copy {
  max-width: 610px;
  padding-left: clamp(28px, 4vw, 66px);
  border-left: 1px solid rgba(8, 13, 16, 0.25);
}

.belief-copy p {
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.62;
}

.belief-copy p + p {
  margin-top: 34px;
  font-weight: 700;
}

.division-section {
  padding: clamp(130px, 12vw, 180px) var(--gutter);
  background:
    radial-gradient(circle at 85% 25%, rgba(81, 95, 103, 0.18), transparent 30%),
    #060b0e;
}

.division-intro {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.7fr);
  align-items: end;
  gap: clamp(54px, 7vw, 120px);
  margin: 0;
}

.division-intro h2 {
  max-width: 680px;
  color: #fff;
}

.division-intro > p {
  max-width: 530px;
  margin: 0 0 8px;
  color: rgba(245, 242, 235, 0.72);
  font-size: var(--step-0);
  line-height: 1.58;
}

.division-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 430px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin: clamp(76px, 7vw, 108px) 0 0;
  padding: clamp(46px, 5.4vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 5px solid var(--signal);
  background:
    linear-gradient(125deg, rgba(4, 8, 11, 0.28), rgba(4, 8, 11, 0.86)),
    radial-gradient(circle at 87% 16%, rgba(188, 37, 31, 0.82), transparent 32%),
    linear-gradient(135deg, #26343c, #090e11 67%);
}

.division-card::after {
  position: absolute;
  top: -45%;
  right: 10%;
  width: 390px;
  height: 660px;
  content: "";
  border: 1px solid rgba(209, 211, 212, 0.24);
  transform: rotate(23deg);
}

.division-card > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.division-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

.division-card p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(245, 242, 235, 0.76);
  font-size: var(--step-0);
  line-height: 1.58;
}

.division-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 160px;
  min-height: 62px;
  flex: none;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 23px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(4, 8, 11, 0.26);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.division-link:hover,
.division-link:focus-visible {
  background: var(--action);
  transform: translateY(-2px);
}

.testimonials-section {
  padding: clamp(130px, 12vw, 180px) var(--gutter);
  background:
    linear-gradient(140deg, rgba(188, 37, 31, 0.07), transparent 34%),
    #eee9de;
  color: #080d10;
}

.testimonials-heading {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 42px;
}

.testimonials-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 5px;
  content: "";
  background: var(--action);
}

.testimonials-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.93;
  text-transform: uppercase;
  text-wrap: balance;
}

.testimonial-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin: clamp(70px, 6vw, 92px) 0 0;
}

.testimonial-card {
  display: flex;
  aspect-ratio: 1.66;
  align-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 13, 16, 0.2);
  background: #000;
  box-shadow: 0 22px 48px rgba(8, 13, 16, 0.14);
}

.testimonial-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.outcome-note {
  margin: 28px 0 0;
  color: rgba(8, 13, 16, 0.6);
  font-size: var(--step-00);
  line-height: 1.5;
}

.featured-section {
  padding: clamp(82px, 7vw, 108px) var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #090f12;
}

.featured-section h2 {
  margin: 0;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin: 45px 0 0;
}

.featured-grid img {
  display: block;
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.62;
}

.final-cta {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: end;
  gap: clamp(70px, 10vw, 180px);
  padding: clamp(130px, 11vw, 170px) var(--gutter);
  background:
    linear-gradient(90deg, rgba(87, 5, 2, 0.3), transparent 48%),
    var(--action);
}

.final-cta-copy {
  max-width: 900px;
}

.final-cta h2 {
  max-width: 860px;
  color: #fff;
}

.final-cta-copy p {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--step-0);
  line-height: 1.55;
}

.final-cta-actions {
  display: flex;
  min-width: 310px;
  flex-direction: column;
  align-items: stretch;
  gap: 23px;
}

.final-cta .button-primary {
  min-height: 62px;
  background: #080d10;
  box-shadow: 0 20px 44px rgba(62, 2, 0, 0.26);
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  background: #151d21;
}

.quiet-link {
  align-self: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--step-000);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.site-footer {
  padding: 94px var(--gutter) 30px;
  border-top: 4px solid var(--action);
  background:
    linear-gradient(90deg, rgba(188, 37, 31, 0.07), transparent 34%),
    #020609;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(270px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(34px, 5vw, 82px);
  padding-bottom: 72px;
}

.footer-wordmark {
  font-size: var(--step-1);
}

.footer-wordmark strong {
  font-size: var(--step-1);
}

.footer-brand > p {
  max-width: 340px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--step-0);
  line-height: 1.48;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column h2,
.footer-column .footer-heading {
  margin: 0 0 8px;
  color: #ef5149;
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Locked presentation roles: semantics stay in the HTML tags; type lives here. */
.t-display {
  font-family: var(--font-display) !important;
  font-size: var(--step-4) !important;
  font-weight: 400 !important;
  letter-spacing: 0.018em !important;
  line-height: 0.93 !important;
  text-transform: uppercase !important;
  text-wrap: balance;
}

.t-h2 {
  font-family: var(--font-display) !important;
  font-size: var(--step-3) !important;
  font-weight: 400 !important;
  letter-spacing: 0.018em !important;
  line-height: 0.98 !important;
  text-transform: uppercase !important;
  text-wrap: balance;
}

.t-h3 {
  font-family: var(--font-display) !important;
  font-size: var(--step-2) !important;
  font-weight: 400 !important;
  letter-spacing: 0.018em !important;
  line-height: 1.04 !important;
  text-transform: uppercase !important;
  text-wrap: balance;
}

.t-eyebrow {
  font-family: var(--font-body) !important;
  font-size: var(--step-000) !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

.t-body {
  font-family: var(--font-body) !important;
  font-size: var(--step-0) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.55 !important;
  text-transform: none !important;
  text-wrap: pretty;
}

.t-body-sm {
  font-family: var(--font-body) !important;
  font-size: var(--step-00) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

.t-label {
  font-family: var(--font-body) !important;
  font-size: var(--step-000) !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.t-caption {
  font-family: var(--font-body) !important;
  font-size: var(--step-00) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--step-00);
  line-height: 1.4;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-smallprint {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-smallprint p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: var(--step-000);
  line-height: 1.65;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
}

.footer-base p,
.footer-base a {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: var(--step-000);
  line-height: 1.5;
}

.footer-base > div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .belief-section,
  .division-intro,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
  }

  .belief-section {
    gap: 70px;
  }

  .belief-copy {
    max-width: 780px;
  }

  .division-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-actions {
    width: min(430px, 100%);
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 24px;
  }

  .hero {
    min-height: 1060px;
    background:
      linear-gradient(
        180deg,
        rgba(0, 5, 9, 0.18) 0%,
        rgba(0, 5, 9, 0.35) 42%,
        rgba(0, 5, 9, 0.98) 68%
      ),
      url("./assets/hero-portrait.jpg") 72% 0 / auto 68% no-repeat;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-content {
    width: auto;
    margin-top: 385px;
    margin-right: var(--gutter);
    padding-bottom: 238px;
  }

  h1 {
    max-width: 760px;
    font-size: var(--step-2);
  }

  .hero-rule {
    bottom: 210px;
  }

  .hero-proof {
    min-height: 210px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .hero-proof-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 18px;
  }

  .hero-proof-logos img {
    height: 32px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-block: 22px;
  }

  .nav-cta {
    padding: 11px 13px 10px;
    font-size: var(--step-000);
  }

  .hero {
    min-height: 1070px;
    background:
      linear-gradient(
        180deg,
        rgba(0, 5, 9, 0.12) 0%,
        rgba(0, 5, 9, 0.32) 38%,
        rgba(0, 5, 9, 0.99) 61%
      ),
      url("./assets/hero-portrait.jpg") 67% 0 / auto 54% no-repeat;
  }

  .hero-content {
    margin-top: 310px;
    padding-bottom: 250px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: var(--step-000);
  }

  h1 {
    font-size: var(--step-2);
    line-height: 0.98;
  }

  .subheadline {
    margin-top: 22px;
    font-size: var(--step-0);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-rule {
    bottom: 226px;
  }

  .hero-proof {
    min-height: 226px;
  }

  .hero-proof-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .hero-proof-logos img {
    height: 29px;
  }

  .proof-bar {
    padding-block: 32px;
  }

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    min-height: auto;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .proof-item dt {
    font-size: var(--step-2);
  }

  .belief-section,
  .division-section,
  .final-cta {
    padding-block: 110px;
  }

  .belief-section {
    min-height: 0;
    gap: 54px;
  }

  .belief-heading h2,
  .division-intro h2,
  .testimonials-heading h2,
  .final-cta h2 {
    font-size: var(--step-4);
  }

  .belief-copy {
    padding-left: 22px;
  }

  .belief-copy p {
    font-size: var(--step-0);
  }

  .division-intro {
    gap: 32px;
  }

  .division-card {
    min-height: 0;
    gap: 44px;
    padding: 34px 26px;
  }

  .division-card h3 {
    font-size: var(--step-2);
  }

  .division-link {
    width: 100%;
  }

  .testimonials-section {
    padding-block: 110px;
  }

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

  .featured-section {
    padding-block: 74px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    min-height: 0;
    gap: 58px;
  }
}

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

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

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .site-footer {
    padding-top: 78px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

.route-steadfast {
  --capture-bg: #11181e;
  --capture-ink: #fff;
  --capture-muted: #c5c9ca;
  --capture-panel: #070b0e;
  --capture-field: #121a1f;
  --capture-field-line: rgba(255, 255, 255, 0.3);
  --problem-bg: #030709;
  --problem-ink: #f5f2eb;
  --problem-muted: #b9bec0;
  --shift-bg: #e7e3db;
  --shift-ink: #11171b;
  --shift-muted: #5f6669;
  --shift-accent: #9e1c18;
  --shift-line: rgba(17, 23, 27, 0.22);
  --journey-bg: #070b0e;
  --journey-ink: #fff;
  --journey-muted: #bfc4c5;
  --journey-texture: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(255, 255, 255, 0.025) 10%), radial-gradient(circle at 50% 22%, rgba(188, 37, 31, 0.15), transparent 28%);
  --journey-line-width: 2px;
  --journey-line: linear-gradient(#ef5149 0%, #d1d3d4 66%, #f5f2eb 100%);
  --journey-node-border: 2px solid #ef5149;
  --journey-node-radius: 2px;
  --journey-node-bg: #070b0e;
  --journey-node-ink: #fff;
  --journey-node-shadow: 0 0 0 8px rgba(239, 81, 73, 0.1);
  --journey-card-line: rgba(255, 255, 255, 0.18);
  --journey-card-radius: 2px;
  --journey-card-bg: rgba(13, 19, 23, 0.92);
  --journey-card-shadow: 16px 16px 0 rgba(255, 255, 255, 0.025);
  --journey-summit-line: rgba(245, 242, 235, 0.65);
  --journey-summit-card: rgba(17, 22, 24, 0.94);
  --journey-mountain-opacity: 0.55;
  --journey-mountain-back: #2a343a;
  --journey-mountain-front: #171f24;
  --journey-mountain-ridge: #bc251f;
  --steps-bg: #10171b;
  --steps-ink: #f5f2eb;
  --steps-muted: #bec2c3;
  --steps-line: rgba(255, 255, 255, 0.18);
  --faq-bg: #e7e3db;
  --faq-ink: #11171b;
  --faq-muted: #4f575a;
  --faq-line: rgba(17, 23, 27, 0.22);
}

.route-steadfast .journey-card {
  border-left: 4px solid #bc251f;
}

.route-steadfast .journey-list > li:nth-child(odd) .journey-card {
  border-right: 4px solid #bc251f;
  border-left-width: 1px;
}

.route-steadfast .shift-section .section-label,
.route-steadfast .faq-section .section-label {
  color: #9e1c18;
}

/* Page 1 expansion: frozen 12-section homepage */
.capture-section,
.problem-section,
.shift-section,
.journey-section,
.steps-section,
.faq-section {
  position: relative;
  padding-inline: var(--gutter);
}

.capture-section,
.problem-section,
.shift-section,
.steps-section,
.faq-section {
  padding-block: clamp(110px, 10vw, 168px);
}

.section-label {
  margin: 0 0 22px;
  color: var(--action);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.capture-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(56px, 8vw, 132px);
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--capture-bg);
  color: var(--capture-ink);
}

.capture-copy h2,
.section-heading h2,
.journey-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: 0.98;
  text-wrap: balance;
}

.capture-copy h2 {
  max-width: 820px;
  font-size: var(--step-2);
}

.capture-copy > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--capture-muted);
  font-size: var(--step-0);
  line-height: 1.58;
}

.capture-form {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--capture-panel);
}

.capture-form label {
  display: block;
  margin-bottom: 13px;
  color: var(--capture-muted);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.capture-field {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 10px;
}

.capture-field input {
  min-width: 0;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--capture-field-line);
  border-radius: var(--radius-control);
  outline: 0;
  background: var(--capture-field);
  color: var(--capture-ink);
  font: inherit;
}

.capture-field input:focus {
  border-color: var(--action);
  box-shadow: 0 0 0 3px var(--focus);
}

.capture-field button,
.journey-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border: 1px solid var(--action);
  border-radius: var(--radius-control);
  background: var(--action);
  color: var(--action-ink);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.capture-field button:hover,
.capture-field button:focus-visible,
.journey-cta:hover,
.journey-cta:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.problem-section {
  background: var(--problem-bg);
  color: var(--problem-ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1.68fr);
  gap: clamp(38px, 7vw, 120px);
  align-items: start;
}

.section-heading .section-label {
  padding-top: 10px;
}

.section-heading h2 {
  max-width: 1080px;
  font-size: var(--step-4);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(74px, 8vw, 126px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-grid article {
  min-height: 370px;
  padding: clamp(28px, 3vw, 46px);
  border-left: 1px solid var(--line);
}

.pain-grid article:first-child {
  border-left: 0;
}

.pain-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--action);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pain-grid h3,
.steps-list h3,
.journey-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  line-height: 1.03;
}

.pain-grid h3 {
  max-width: 390px;
  font-size: var(--step-2);
}

.pain-grid p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--problem-muted);
  font-size: var(--step-0);
  line-height: 1.58;
}

.stakes-line {
  max-width: 880px;
  margin: 62px 0 0 auto;
  padding-left: 26px;
  border-left: 3px solid var(--action);
  color: var(--problem-ink);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.35;
}

.shift-section {
  background: var(--shift-bg);
  color: var(--shift-ink);
}

.shift-table {
  margin-top: clamp(70px, 8vw, 124px);
  border-top: 1px solid var(--shift-line);
}

.shift-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--shift-line);
}

.shift-row > div {
  min-height: 118px;
  padding: 30px clamp(24px, 4vw, 62px);
  font-size: var(--step-0);
  font-weight: 650;
  line-height: 1.34;
}

.shift-row > div + div {
  border-left: 1px solid var(--shift-line);
  color: var(--shift-accent);
}

.shift-head > div {
  min-height: auto;
  padding-block: 19px;
  color: var(--shift-muted);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shift-head > div + div {
  color: var(--shift-muted);
}

.shift-underline {
  max-width: 920px;
  margin: 64px 0 0;
  color: var(--shift-ink);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: var(--weight-display);
  line-height: 1.03;
}

.journey-section {
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(132px, 12vw, 210px);
  background: var(--journey-bg);
  color: var(--journey-ink);
}

.journey-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background: var(--journey-texture);
}

.journey-intro {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.journey-intro h2 {
  font-size: var(--step-4);
}

.journey-intro > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--journey-muted);
  font-size: var(--step-0);
  line-height: 1.58;
}

.journey-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: clamp(100px, 11vw, 168px) 0 0;
  padding: 0;
  list-style: none;
}

.journey-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--journey-line-width);
  content: "";
  background: var(--journey-line);
  transform: translateX(-50%);
}

.journey-list > li {
  position: relative;
  display: grid;
  min-height: 370px;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: start;
}

.journey-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  justify-self: center;
  border: var(--journey-node-border);
  border-radius: var(--journey-node-radius);
  background: var(--journey-node-bg);
  box-shadow: var(--journey-node-shadow);
  color: var(--journey-node-ink);
  font-size: var(--step-00);
  font-weight: 900;
}

.journey-card {
  width: min(560px, 100%);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--journey-card-line);
  border-radius: var(--journey-card-radius);
  background: var(--journey-card-bg);
  box-shadow: var(--journey-card-shadow);
}

.journey-list > li:nth-child(odd) .journey-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.journey-list > li:nth-child(even) .journey-card {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.journey-card h3 {
  color: var(--journey-ink);
  font-size: var(--step-2);
}

.journey-card p {
  margin: 22px 0 0;
  color: var(--journey-muted);
  font-size: var(--step-0);
  line-height: 1.63;
}

.journey-list .summit-phase .journey-card {
  border-color: var(--journey-summit-line);
  background: var(--journey-summit-card);
}

.journey-list .final-phase {
  min-height: 440px;
}

.journey-summit {
  position: absolute;
  right: calc(var(--gutter) * 0.3);
  bottom: 0;
  left: calc(var(--gutter) * 0.3);
  z-index: -1;
  height: 780px;
  overflow: hidden;
  opacity: var(--journey-mountain-opacity);
  pointer-events: none;
}

.journey-summit::before,
.journey-summit::after,
.journey-summit span {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  content: "";
  clip-path: polygon(0 100%, 19% 73%, 31% 79%, 51% 18%, 62% 60%, 72% 52%, 100% 100%);
}

.journey-summit::before {
  height: 72%;
  background: var(--journey-mountain-back);
}

.journey-summit::after {
  height: 58%;
  background: var(--journey-mountain-front);
  clip-path: polygon(0 100%, 28% 77%, 42% 82%, 60% 31%, 72% 69%, 100% 100%);
}

.journey-summit span {
  height: 42%;
  background: var(--journey-mountain-ridge);
  clip-path: polygon(12% 100%, 43% 67%, 59% 28%, 69% 68%, 91% 100%);
}

.journey-cta {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: 34px;
}

.steps-section {
  background: var(--steps-bg);
  color: var(--steps-ink);
}

.steps-list {
  display: grid;
  margin: clamp(74px, 8vw, 124px) 0 0;
  padding: 0;
  border-top: 1px solid var(--steps-line);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  padding-block: clamp(32px, 4vw, 58px);
  border-bottom: 1px solid var(--steps-line);
}

.steps-list li > span {
  padding-top: 8px;
  color: var(--action);
  font-size: var(--step-000);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.steps-list h3 {
  font-size: var(--step-2);
}

.steps-list p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--steps-muted);
  font-size: var(--step-0);
  line-height: 1.58;
}

.faq-section {
  background: var(--faq-bg);
  color: var(--faq-ink);
}

.faq-list {
  margin-top: clamp(74px, 8vw, 120px);
  border-top: 1px solid var(--faq-line);
}

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

.faq-item summary {
  position: relative;
  padding: 30px 70px 30px 0;
  font-family: var(--font-body);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.17;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-control);
  content: "+";
  color: var(--action);
  font-family: var(--font-body);
  font-size: var(--step-1);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 900px;
  padding: 0 80px 32px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--faq-muted);
  font-size: var(--step-0);
  line-height: 1.64;
}

@media (max-width: 980px) {
  .capture-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .section-heading .section-label {
    padding-top: 0;
  }

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

  .pain-grid article,
  .pain-grid article:first-child {
    min-height: 0;
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pain-grid article:first-child {
    border-top: 0;
  }

  .pain-grid article > span {
    margin-bottom: 28px;
  }

  .stakes-line {
    margin-left: 0;
  }

  .journey-list::before {
    left: 29px;
  }

  .journey-list > li {
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 26px;
    padding-bottom: 74px;
  }

  .journey-node {
    width: 58px;
    height: 58px;
    grid-column: 1;
  }

  .journey-list > li:nth-child(odd) .journey-card,
  .journey-list > li:nth-child(even) .journey-card {
    grid-column: 2;
    justify-self: stretch;
    text-align: left;
  }

  .journey-card {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .capture-section,
  .problem-section,
  .shift-section,
  .steps-section,
  .faq-section {
    padding-block: 96px;
  }

  .capture-copy h2,
  .section-heading h2 {
    font-size: var(--step-2);
  }

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

  .capture-field button {
    width: 100%;
  }

  .shift-row {
    grid-template-columns: 1fr;
  }

  .shift-row > div {
    min-height: 0;
    padding: 24px 0;
  }

  .shift-row > div + div {
    padding-left: 30px;
    border-top: 1px dashed var(--shift-line);
    border-left: 0;
  }

  .shift-head {
    display: none;
  }

  .journey-section {
    padding-block: 110px 130px;
  }

  .journey-intro h2 {
    font-size: var(--step-4);
  }

  .journey-list {
    margin-top: 86px;
  }

  .journey-list::before {
    left: 22px;
  }

  .journey-list > li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 17px;
  }

  .journey-node {
    width: 44px;
    height: 44px;
    font-size: var(--step-000);
  }

  .journey-card {
    padding: 23px 20px;
  }

  .journey-card h3 {
    font-size: var(--step-2);
  }

  .journey-card p {
    font-size: var(--step-00);
  }

  .journey-summit {
    right: -80px;
    left: -80px;
    height: 620px;
  }

  .steps-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }

  .faq-item summary {
    padding-right: 54px;
    font-size: var(--step-1);
  }

  .faq-answer {
    padding-right: 0;
  }
}

.process-photo {
  position: relative;
  aspect-ratio: 2.15;
  margin: clamp(58px, 6vw, 92px) 0 0;
  overflow: hidden;
  border-bottom: 4px solid var(--action);
  background: #060a0d;
}

.process-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  filter: grayscale(1) contrast(1.12);
  opacity: 0.9;
}

/* Editorial imagery pass: imagery follows the emotional arc of the copy. */
.editorial-break {
  position: relative;
  min-height: clamp(480px, 58vw, 860px);
  margin: 0;
  overflow: hidden;
  background: #05090c;
}

.editorial-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 6, 9, 0.08), rgba(2, 6, 9, 0.58));
  pointer-events: none;
}

.editorial-break img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.editorial-break figcaption,
.journey-image figcaption,
.steps-outcome-image figcaption {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(28px, 4vw, 58px);
  z-index: 2;
  max-width: 540px;
  padding: 15px 0 15px 24px;
  border-left: 4px solid var(--action);
  color: #fff;
  font-size: var(--step-00);
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.pain-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.pain-card::before,
.pain-card::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 280ms ease;
}

.pain-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 6, 9, 0.28), rgba(2, 6, 9, 0.96) 84%);
}

.pain-card-sleep::before { background-image: url("./assets/editorial/sleepless-night.webp"); }
.pain-card-words::before { background-image: url("./assets/editorial/words-backfire.webp"); }
.pain-card-kids::before { background-image: url("./assets/editorial/fear-for-kids.webp"); }

.pain-card:hover::before,
.pain-card:focus-within::before {
  opacity: 0.72;
}

@media (hover: hover) and (min-width: 781px) {
  .pain-card:hover,
  .pain-card:focus-within { color: #fff; }
  .pain-card:hover p,
  .pain-card:focus-within p { color: rgba(255, 255, 255, 0.8); }
}

.journey-image {
  position: relative;
  aspect-ratio: 2.2;
  margin: clamp(64px, 7vw, 110px) 0 0;
  overflow: hidden;
  border-bottom: 4px solid var(--action);
  background: #020609;
}

.journey-image::after,
.steps-outcome-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 6, 9, 0.1), rgba(2, 6, 9, 0.5));
}

.journey-image img,
.steps-outcome-image img,
.roadmap-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.division-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.division-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(4, 8, 11, 0.98) 0%, rgba(4, 8, 11, 0.78) 52%, rgba(4, 8, 11, 0.18) 100%);
}

.roadmap-photo {
  position: relative;
  aspect-ratio: 2.15;
  margin: 16px 0 0;
  overflow: hidden;
  border-bottom: 4px solid var(--action);
}

.roadmap-photo img { object-position: center 68%; }

@media (max-width: 780px) {
  .editorial-break { min-height: 520px; }
  .editorial-break-family img { object-position: 62% center; }
  .editorial-break figcaption { right: 24px; left: 24px; text-align: left; }
  .journey-image,
  .roadmap-photo { aspect-ratio: 4 / 5; }
  .journey-image img { object-position: 32% center; }
  .roadmap-photo img { object-position: 55% center; }
  .pain-card::before,
  .pain-card::after { display: none; }
}

@media (max-width: 620px) {
  .process-photo {
    aspect-ratio: 4 / 5;
    margin-top: 48px;
  }
}
