/* Chapters 02–03. Kept separate so the rest of the landing stays untouched. */
.ownership-story {
  --story-top: 80px;
  --route-progress: 0;
  --car-x: 0px;
  --car-scale: 1.06;
  --wheel-angle: 0deg;
  --origin-opacity: 0.1;
  --arrival-opacity: 0;
  --road-y: 76%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  column-gap: clamp(48px, 5vw, 90px);
  padding-inline: max(56px, calc((100% - 1360px) / 2));
  align-items: start;
  background: #0c0f0d;
  color: #f5f6f2;
  border-top: 1px solid #ffffff13;
}
.story-visual {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: var(--story-top);
  height: calc(100svh - var(--story-top));
  min-height: 0;
  width: 100%;
  margin: 0;
  z-index: 2;
}
.story-scene {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 5vh, 60px) 0 35px;
  background: #0c0f0d;
}
.story-finished .story-scene {
  visibility: hidden;
  pointer-events: none;
}
.story-scene-top,
.story-scene-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #838a81;
  font-size: 11px;
  letter-spacing: 0.07em;
}
.story-slash {
  padding: 0 10px;
  color: #414a3e;
}
.story-scene-count {
  color: #c4cbbf;
}
.story-world {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: clip;
  background: radial-gradient(ellipse at 50% 65%, #84956d13, transparent 64%);
}
.story-city {
  position: absolute;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  color: #a6b697;
  font-weight: 800;
  font-size: clamp(76px, 12.8vw, 210px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  user-select: none;
}
.story-city-origin {
  opacity: var(--origin-opacity);
}
.story-city-arrival {
  top: 10%;
  font-size: clamp(56px, 8.1vw, 126px);
  text-align: center;
  opacity: var(--arrival-opacity);
}
.story-horizon {
  position: absolute;
  top: var(--road-y);
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b7cfa05c, transparent);
  box-shadow: 0 1px 34px #d6f85a22;
  z-index: 1;
}
.story-car {
  position: absolute;
  width: min(84%, var(--car-width-cap, 740px));
  left: 0;
  top: var(--road-y);
  transform: translate3d(var(--car-x), -84.589%, 0) scale(var(--car-scale))
    rotate(0.67deg);
  transform-origin: 50% 84.589%;
  will-change: transform;
}
.story-car img {
  width: 100%;
  height: auto;
}
.story-wheel {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  clip-path: circle(49%);
  overflow: hidden;
  filter: grayscale(1);
  transform: translate(-50%, -50%) rotate(var(--wheel-angle));
  will-change: transform;
}
.story-wheel-rear {
  left: 27.083333%;
  top: 73.972603%;
  width: 8.333333%;
}
.story-wheel-front {
  left: 71.666667%;
  top: 73.059361%;
  width: 7.708333%;
}
.story-brake {
  position: absolute;
  pointer-events: none;
}
.story-brake-rear {
  left: 24.166667%;
  top: 68.949772%;
  width: 1.354167%;
  aspect-ratio: 13 / 18;
}
.story-brake-front {
  left: 73.020833%;
  top: 70.319635%;
  width: 1.354167%;
  aspect-ratio: 13 / 22;
}
.story-origin-label,
.story-destination-label {
  position: absolute;
  bottom: 8%;
  color: #909c87;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.story-origin-label {
  left: 5%;
}
.story-destination-label {
  right: 5%;
}
.story-dashboard {
  flex-shrink: 0;
}
.story-caption {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #ffffff14;
  padding: 22px 0;
  height: 85px;
}
.story-caption-index {
  font-size: 22px;
  font-weight: 600;
  color: var(--lime);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.story-caption-index > span {
  color: #646e5c;
  font-size: 13px;
}
.story-caption-text {
  font-size: 15px;
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: anywhere;
}
.story-caption > .icon {
  margin-left: auto;
  color: #b1c29c;
}
.story-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 8px;
}
.story-route-line {
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #394134;
}
.story-route-line > span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(var(--route-progress));
  transform-origin: left;
}
.story-route button {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  min-height: 75px;
  color: #929c89;
}
.story-route-dot {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #404c35;
  border-radius: 50%;
  background: #0c0f0d;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
}
.story-route-label {
  font-size: 12px;
  white-space: nowrap;
}
.story-route button.is-past .story-route-dot {
  border-color: #a3b875;
  color: #d6f85a;
}
.story-route button[aria-current="step"] .story-route-dot,
.story-route button:hover .story-route-dot {
  background: var(--lime);
  color: #1c2513;
  border-color: var(--lime);
}
.story-route button[aria-current="step"] .story-route-label {
  color: #eff4e6;
}
.story-scene-bottom {
  border-top: 1px solid #ffffff13;
  padding-top: 22px;
  margin-top: 25px;
  font-size: 10px;
}
.story-scene-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.story-scene-bottom .icon {
  width: 14px;
  height: 14px;
  color: #c4d78f;
}
.story-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  width: 100%;
  margin: 0;
  z-index: 1;
  padding-bottom: 10vh;
}
.story-chapter,
.story-promise {
  width: 100%;
}
.story-chapter {
  scroll-margin-top: 20px;
}
.story-intro {
  min-height: 56svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 0 45px;
}
.story-intro .eyebrow,
.story-promise .eyebrow {
  color: #a4b592;
  font-size: 10px;
  letter-spacing: 0.065em;
  line-height: 1.8;
  margin-bottom: 30px;
}
.story-intro h2 {
  font-size: clamp(38px, 4.2vw, 65px);
  line-height: 1.06;
  letter-spacing: -0.058em;
  font-weight: 650;
}
.story-intro h2 > span {
  color: #727c69;
}
.story-intro p {
  color: #9aa591;
  font-size: 16px;
  line-height: 1.8;
  max-width: 390px;
  margin-top: 27px;
}
.story-step {
  min-height: 40svh;
  display: flex;
  align-items: center;
  padding: 32px 0;
}
.story-step-body {
  width: 100%;
  border-top: 1px solid #ffffff20;
  padding-top: 25px;
}
.story-step-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #89957e;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.story-step-kicker > .icon {
  width: 20px;
  height: 20px;
}
.story-step h3 {
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.045em;
  color: #88917f;
  transition: color 0.4s;
}
.story-step p {
  color: #a2ab9b;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.85;
}
.story-step.is-active .story-step-kicker {
  color: var(--lime);
}
.story-step.is-active h3 {
  color: #f4f7ef;
}
.story-step.is-active .story-step-body {
  border-color: #9faf7970;
}
.story-promise {
  padding: 85px 0 80px;
}
.story-promise .eyebrow {
  display: block;
  margin-bottom: 22px;
}
.story-promise h3 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}
.story-promise p {
  font-size: 16px;
  line-height: 1.85;
  color: #a2ab9b;
  margin-top: 22px;
}
.story-promise .button {
  margin-top: 30px;
}
/* A consistent reading order: your part, our work, the result, the next step. */
.story-intro p.story-lead {
  color: #eef2e8;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 460px;
}
.story-lead + p {
  margin-top: 16px;
}
.story-start {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  align-self: flex-start;
  min-height: 52px;
  margin-top: 26px;
  padding: 13px 18px;
  border: 1px solid #b0c08b60;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #edf4df;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.story-start:hover {
  background: #d6f85a0e;
  border-color: var(--lime);
}
.story-start .icon,
.story-next .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--lime);
}
.story-step[data-story-phase="route"] {
  padding-block: 48px;
}
.story-step[data-story-phase="route"] h3 {
  color: #f4f7ef;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.2;
}
.story-responsibilities {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}
.story-role {
  padding: 20px;
  border: 1px solid #ffffff12;
  border-radius: 10px;
  background: #ffffff03;
}
.story-role dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c1c9b8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.story-role dt .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.story-role dd {
  margin: 11px 0 0;
  color: #eef2e9;
  font-size: 17px;
  line-height: 1.65;
}
.story-role-team {
  border-color: #b2c98235;
  background: linear-gradient(125deg, #d6f85a0b, #a0b58b04);
  transition:
    border-color 0.35s,
    background-color 0.35s;
}
.story-role-team dt {
  color: #d5ebaf;
}
.is-active .story-role-team {
  border-color: #c7e99270;
  background-color: #b0ca7405;
}
.story-result {
  margin-top: 24px;
  padding-left: 17px;
  border-left: 2px solid #819861;
}
.story-result > span {
  font-size: 12px;
  line-height: 1.5;
  color: #b8c5a8;
  font-weight: 600;
}
.story-result p {
  margin: 7px 0 0;
  color: #d3dbcb;
  font-size: 16px;
  line-height: 1.65;
}
.story-result-arrival {
  border-color: var(--lime);
}
.story-result-arrival p {
  color: #f4f7ef;
  font-size: 22px;
  line-height: 1.45;
}
.story-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  padding-block: 13px;
  text-align: left;
  border-bottom: 1px solid #ffffff24;
  color: #dbe4cf;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.story-next:hover {
  color: var(--lime);
  border-color: #d6f85a80;
}
.story-promise .story-contact-note {
  max-width: 360px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}
.story-route-help {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  color: #c6cebe;
  font-size: 12px;
  line-height: 1.5;
}
.story-route-help > span {
  color: #a2ad98;
}
.story-route button {
  min-width: 44px;
}
@media (min-width: 761px) and (max-height: 740px) {
  .story-visual {
    min-height: 0;
  }
  .story-scene {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .story-world {
    min-height: 0;
  }
  .story-scene-bottom {
    margin-top: 14px;
    padding-top: 14px;
  }
  .story-caption {
    height: 68px;
    padding-block: 16px;
  }
  .story-intro {
    min-height: 66svh;
  }
  .story-step {
    min-height: 48svh;
  }
}
@media (min-width: 761px) and (max-width: 1250px) {
  .ownership-story {
    padding-inline: 36px;
    column-gap: 36px;
  }
  .story-chapter,
  .story-promise {
    width: 100%;
  }
  .story-visual {
    margin: 0;
    width: 100%;
  }
  .story-scene {
    padding-inline: 0;
  }
  .story-scene-count,
  .story-scene-bottom > span:first-child {
    display: none;
  }
  .story-intro h2 {
    font-size: 40px;
  }
  .story-step h3 {
    font-size: 29px;
  }
  .story-caption {
    gap: 12px;
  }
  .story-caption-text {
    font-size: 13px;
  }
  .story-route-label {
    font-size: 10px;
  }
}
@media (max-width: 760px) {
  .ownership-story {
    display: block;
    padding-inline: 0;
    --story-top: 74px;
    --scene-height: clamp(215px, 29svh, 255px);
    --road-y: 86%;
  }
  .story-visual {
    width: 100%;
    height: var(--scene-height);
    min-height: 0;
    margin: 0;
    z-index: 3;
    background: #0c0f0d;
    border-bottom: 1px solid #ffffff19;
  }
  .story-scene {
    padding: 12px 18px 10px;
  }
  .story-scene-top {
    display: none;
  }
  .story-slash {
    padding-inline: 5px;
  }
  .story-scene-count {
    display: none;
  }
  .story-world {
    min-height: 0;
  }
  .story-city {
    font-size: clamp(72px, 20vw, 120px);
    top: 3%;
  }
  .story-city-arrival {
    font-size: 48px;
    top: 0;
  }
  .story-car {
    width: min(88%, var(--car-width-cap, 420px));
  }
  .story-origin-label,
  .story-destination-label {
    display: none;
  }
  .story-caption {
    grid-template-columns: 45px minmax(0, 1fr) 16px;
    height: 48px;
    padding-block: 8px;
    gap: 10px;
  }
  .story-caption-index {
    font-size: 16px;
  }
  .story-caption-index > span {
    font-size: 10px;
  }
  .story-caption-text {
    font-size: 13px;
  }
  .story-caption > .icon {
    width: 16px;
    height: 16px;
  }
  .story-route {
    padding-top: 2px;
  }
  .story-route-line {
    top: 16px;
  }
  .story-route button {
    min-height: 55px;
    gap: 5px;
  }
  .story-route-dot {
    width: 29px;
    height: 29px;
    font-size: 10px;
  }
  .story-route-label {
    font-size: 11px;
  }
  .story-route-help {
    margin: 0 0 8px;
    font-size: 11px;
  }
  .story-scene-bottom {
    display: none;
  }
  .story-copy {
    width: calc(100% - 36px);
    margin-inline: auto;
    padding-bottom: 26svh;
  }
  .story-chapter,
  .story-promise {
    width: 100%;
  }
  .story-chapter {
    scroll-margin-top: calc(var(--scene-height) + 10px);
  }
  .story-intro {
    min-height: 0;
    padding: 50px 0 30px;
  }
  .story-intro .eyebrow {
    font-size: 10px;
    margin-bottom: 24px;
    max-width: 310px;
  }
  .story-intro h2 {
    font-size: clamp(38px, 8vw, 54px);
    max-width: 500px;
  }
  .story-intro p {
    max-width: 460px;
    margin-top: 22px;
  }
  .story-step {
    min-height: max(280px, 45svh);
    padding-block: 28px;
    scroll-margin-top: calc(var(--scene-height) - 30px);
  }
  .story-step-kicker {
    margin-bottom: 18px;
  }
  .story-step h3 {
    font-size: clamp(27px, 6vw, 36px);
    max-width: 460px;
  }
  .story-step p {
    margin-top: 18px;
    max-width: 480px;
  }
  .story-step[data-story-phase="route"] {
    padding-block: 28px;
  }
  .story-role {
    padding: 17px;
  }
  .story-role dd {
    font-size: 16px;
  }
  .story-result p {
    margin-top: 7px;
  }
  .story-intro p.story-lead {
    font-size: 19px;
  }
  .story-promise {
    padding: 65px 0 0;
  }
  .story-promise h3 {
    font-size: 34px;
  }
}
@media (max-width: 360px) {
  .story-caption-text {
    font-size: 12px;
  }
  .story-caption > .icon {
    display: none;
  }
  .story-caption {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .story-route-label {
    font-size: 10px;
  }
  .story-intro h2 {
    font-size: 34px;
  }
  .story-step-kicker {
    font-size: 9px;
  }
}
/* Keep the reading area free when zoom or landscape leaves little height. */
@media (max-height: 600px) {
  .ownership-story {
    display: block;
  }
  .story-visual {
    position: relative;
    top: 0;
    height: 300px;
    max-width: 780px;
    margin-inline: auto;
  }
  .story-scene {
    padding-block: 16px;
  }
  .story-scene-top,
  .story-scene-bottom {
    display: none;
  }
  .story-caption {
    height: 58px;
    padding-block: 10px;
  }
  .story-copy {
    max-width: 780px;
    margin-inline: auto;
  }
  .story-step {
    scroll-margin-top: 0;
  }
}
/* No sticky storytelling without JS, or when motion has been reduced. */
.ownership-story:not(.story-enhanced),
.ownership-story.story-reduced {
  display: block;
}
.ownership-story:not(.story-enhanced) .story-visual,
.ownership-story.story-reduced .story-visual {
  position: relative;
  top: 0;
  margin: 0 auto;
  width: min(900px, 100%);
  height: 470px;
  min-height: 0;
}
.ownership-story:not(.story-enhanced) .story-chapter,
.ownership-story:not(.story-enhanced) .story-promise,
.ownership-story.story-reduced .story-chapter,
.ownership-story.story-reduced .story-promise {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
}
.ownership-story:not(.story-enhanced) .story-intro,
.ownership-story.story-reduced .story-intro {
  min-height: 0;
  padding-block: 65px 25px;
}
.ownership-story:not(.story-enhanced) .story-step,
.ownership-story.story-reduced .story-step {
  min-height: 0;
  padding-block: 25px;
  scroll-margin-top: 0;
}
.ownership-story:not(.story-enhanced) .story-step h3,
.ownership-story.story-reduced .story-step h3 {
  color: #f4f7ef;
}
.ownership-story.story-reduced .story-car {
  will-change: auto;
}
.ownership-story:not(.story-enhanced) .story-route,
.ownership-story:not(.story-enhanced) .story-route-help {
  display: none;
}
.ownership-story.story-reduced .story-scene {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
}
.ownership-story.story-reduced .story-wheel {
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .ownership-story * {
    transition: none !important;
  }
}
