.hn-product-story--dynamic {
  display: grid;
  gap: clamp(4rem, 7vw, 7rem);
}

.hn-story-section {
  position: relative;
  --motion-duration: 520ms;
  --motion-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

.hn-story-surface,
.hn-story-card,
.hn-story-scene {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hn-story-surface {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  padding: 0;
  overflow: visible;
}

.hn-story-section-head {
  max-width: 44rem;
}

.hn-story-title {
  margin: 0;
  font-family: var(--hn-display);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hn-story-lead,
.hn-story-section-head p:last-child,
.hn-story-benefit p,
.hn-story-card p,
.hn-story-step p,
.hn-story-scene p,
.hn-story-hotspots__panel p {
  margin: 0;
  color: var(--hn-muted);
}

.hn-story-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.hn-story-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 24, 42, 0.08);
  color: #111827;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hn-story-cta {
  width: fit-content;
}

.hn-story-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn-story-hero,
.hn-story-detail,
.hn-story-final {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hn-story-hero > *,
.hn-story-detail > *,
.hn-story-final > * {
  min-width: 0;
}

.hn-story-hero__media,
.hn-story-detail__media,
.hn-story-final__media,
.hn-story-hotspots__image {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #f8fafc;
}

.hn-story-hero__media {
  aspect-ratio: 16 / 9;
  min-height: clamp(360px, 34vw, 460px);
}

.hn-story-detail__media,
.hn-story-final__media {
  aspect-ratio: 16 / 9;
  min-height: clamp(340px, 32vw, 440px);
}

.hn-story-hero__media > picture,
.hn-story-hero__media > picture > img,
.hn-story-hero__media > img,
.hn-story-detail__media > picture,
.hn-story-detail__media > picture > img,
.hn-story-detail__media > img,
.hn-story-final__media > picture,
.hn-story-final__media > picture > img,
.hn-story-final__media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hn-story-hotspots__image {
  display: grid;
  place-items: center;
  min-height: clamp(380px, 42vw, 500px);
  padding: clamp(0.75rem, 2vw, 1.5rem);
  isolation: isolate;
}

.hn-story-sticky {
  grid-template-columns: minmax(420px, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  align-items: center;
}

.hn-story-sticky__stack {
  position: relative;
  min-width: 0;
}

.hn-story-sticky__media {
  position: sticky;
  top: clamp(1rem, 9vh, 6rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  height: min(72vh, 720px);
  min-height: 0;
  padding: 0;
  border-radius: 30px;
  background: #f8fafc;
  box-shadow:
    0 24px 70px rgba(17, 24, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hn-story-sticky__frame {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px) scale(1.045);
  transition:
    opacity var(--motion-duration) var(--motion-easing),
    filter var(--motion-duration) var(--motion-easing),
    transform var(--motion-duration) var(--motion-easing);
}

.hn-story-sticky__frame.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hn-story-sticky__active-copy {
  position: absolute;
  left: clamp(1rem, 2.6vw, 2rem);
  right: clamp(1rem, 2.6vw, 2rem);
  bottom: clamp(1rem, 2.6vw, 2rem);
  z-index: 3;
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--hn-ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(17, 24, 42, 0.18);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 260ms var(--motion-easing),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hn-story-sticky__active-copy.is-switching {
  opacity: 0;
  transform: translateY(18px);
}

.hn-story-sticky__active-copy h3,
.hn-story-sticky__active-copy p {
  margin: 0;
}

.hn-story-sticky__active-title-block {
  display: grid;
  gap: 0.45rem;
}

.hn-story-sticky__active-title-block--mobile,
.hn-story-sticky__active-text-block--mobile {
  display: none;
}

.hn-story-sticky__active-copy h3 {
  font-family: var(--hn-display);
  font-size: clamp(1.35rem, 3.4vw, 2.4rem);
  line-height: 1;
}

.hn-story-sticky__active-copy p {
  color: var(--hn-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.18rem);
  line-height: 1.42;
}

.hn-story-sticky__steps,
.hn-story-scenes,
.hn-story-list {
  display: grid;
  gap: 1rem;
}

.hn-story-step,
.hn-story-card,
.hn-story-scene {
  display: grid;
  gap: 0.85rem;
  padding: 0;
}

.hn-story-step {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding-block: clamp(1.35rem, 2.4vw, 2rem);
  border-top: 1px solid rgba(17, 24, 42, 0.1);
  border-radius: 0;
  background: transparent;
  opacity: 0.56;
  transition: border-color var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing), box-shadow var(--motion-duration) var(--motion-easing), opacity var(--motion-duration) var(--motion-easing), padding-inline var(--motion-duration) var(--motion-easing);
}

.hn-story-step.is-current {
  opacity: 1;
  border-color: rgba(17, 24, 42, 0.28);
  padding-inline-start: clamp(0.5rem, 1vw, 0.85rem);
  transform: translateX(0);
  box-shadow: none;
}

.hn-story-step.is-current h3 {
  color: var(--hn-ink);
}

.hn-story-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
}

button.hn-story-card__media {
  display: block;
  width: clamp(5rem, 6.2vw, 7.25rem);
  min-height: 0;
  aspect-ratio: 1;
  margin: 0 0 0.25rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  transform-origin: 24% 24%;
  transition: filter var(--motion-duration) var(--motion-easing);
}

button.hn-story-card__media:hover {
  background: transparent;
}

button.hn-story-card__media:focus-visible {
  outline: 2px solid var(--hn-accent);
  outline-offset: 4px;
}

.hn-story-card__icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transition: transform var(--motion-duration) var(--motion-easing);
}

.hn-story-section--benefit-steps {
  overflow: hidden;
}

.hn-story-section--benefit-steps .hn-container {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.8rem);
}

.hn-story-section--benefit-steps .hn-story-section-head {
  max-width: min(64rem, 100%);
}

.hn-story-section--benefit-steps .hn-story-section-head h2 {
  max-width: 13ch;
}

.hn-story-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1.35rem, 2.4vw, 2rem);
  align-items: start;
}

.hn-story-benefit {
  display: grid;
  align-content: start;
  gap: clamp(1rem, 1.7vw, 1.28rem);
  min-width: 0;
}

.hn-story-benefit__media {
  display: block;
  width: 100%;
  min-height: clamp(280px, 23vw, 410px);
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #eef2f8;
  box-shadow: none;
  transform-origin: center;
  transition: filter var(--motion-duration) var(--motion-easing);
}

.hn-story-benefit__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transition: transform var(--motion-duration) var(--motion-easing);
}

.hn-story-benefit__copy {
  display: grid;
  gap: 0.62rem;
  padding-inline: 0.28rem;
}

.hn-story-benefit h3 {
  margin: 0;
  font-family: var(--hn-display);
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hn-story-benefit p {
  max-width: 24rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.hn-story-step__copy,
.hn-story-scene__copy {
  display: grid;
  gap: 0.45rem;
}

.hn-story-image--sticky {
  object-fit: cover;
}

.hn-story-list--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hn-story-card__media {
  width: fit-content;
}

.hn-story-card h3,
.hn-story-step h3,
.hn-story-scene h3,
.hn-story-hotspots__panel h3 {
  margin: 0;
  font-family: var(--hn-display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.hn-story-hotspots-shell {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.5rem);
  text-align: center;
}

.hn-story-hotspots__stage {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  justify-items: center;
}

.hn-story-hotspots__heading {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  width: min(100%, 68rem);
}

.hn-story-image--hotspots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--hn-hotspot-shift-x, 0%), var(--hn-hotspot-shift-y, 0%), 0) scale(var(--hn-hotspot-zoom-scale, 1));
  transform-origin: center;
  transition: transform 960ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.hn-story-hotspots__image {
  aspect-ratio: 16 / 9;
  justify-self: center;
  width: min(100%, 1120px);
  max-width: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 24px;
  background: #eef2f8;
  isolation: isolate;
}

.hn-story-hotspots__image.is-zoomed {
  --hn-hotspot-zoom-scale: 1.62;
}

.hn-story-hotspots__active-card {
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.6rem);
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  width: clamp(14.5rem, 18vw, 18.25rem);
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--hn-ink);
  text-align: left;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 46px rgba(17, 24, 42, 0.18);
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity var(--motion-duration) var(--motion-easing),
    transform var(--motion-duration) var(--motion-easing);
}

.hn-story-hotspots__active-card.is-switching {
  opacity: 0;
  transform: translateY(calc(-50% + 12px));
}

.hn-story-hotspots__active-card h3,
.hn-story-hotspots__active-card p {
  margin: 0;
}

.hn-story-hotspots__active-card h3 {
  font-family: var(--hn-display);
  font-size: clamp(1.12rem, 1.4vw, 1.4rem);
  line-height: 1.05;
}

.hn-story-hotspots__active-card p {
  color: var(--hn-muted);
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  line-height: 1.42;
}

.hn-story-hotspots__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: flex-start;
  align-content: flex-start;
  align-self: end;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(17, 24, 42, 0.08);
}

.hn-story-hotspot,
.hn-story-hotspots__list-button {
  transition: transform var(--motion-duration) var(--motion-easing), border-color var(--motion-duration) var(--motion-easing), background-color var(--motion-duration) var(--motion-easing), color var(--motion-duration) var(--motion-easing), box-shadow var(--motion-duration) var(--motion-easing);
}

.hn-story-hotspot:focus-visible,
.hn-story-hotspots__list-button:focus-visible,
.hn-story-cta:focus-visible {
  outline: 2px solid var(--hn-accent);
  outline-offset: 2px;
}

.hn-story-hotspot {
  position: absolute;
  left: var(--hn-hotspot-x);
  top: var(--hn-hotspot-y);
  display: block;
  z-index: 2;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hn-story-hotspot__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow:
    0 14px 34px rgba(17, 24, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: #111827;
  font-family: var(--hn-display);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1;
  white-space: nowrap;
}

.hn-story-hotspot.is-active {
  z-index: 4;
}

.hn-story-hotspot.is-active .hn-story-hotspot__label {
  border-color: rgba(17, 24, 42, 0.36);
  background: rgba(17, 24, 42, 0.92);
  color: #fff;
  box-shadow:
    0 18px 38px rgba(17, 24, 42, 0.28),
    0 0 0 6px rgba(141, 46, 113, 0.1);
}

button.hn-story-hotspots__list-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--hn-line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--hn-ink);
  line-height: 1.2;
  white-space: normal;
  box-shadow: 0 12px 22px rgba(17, 24, 42, 0.08);
}

button.hn-story-hotspots__list-button.is-active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.hn-story-cinematic,
.hn-story-scale-shift {
  position: relative;
}

.hn-story-cinematic[data-pin-duration="short"] {
  --hn-immersive-scroll-height: 160vh;
}

.hn-story-cinematic[data-pin-duration="medium"],
.hn-story-scale-shift {
  --hn-immersive-scroll-height: 240vh;
}

.hn-story-cinematic[data-pin-duration="long"] {
  --hn-immersive-scroll-height: 320vh;
}

.hn-story-cinematic__scroll,
.hn-story-scale-shift__scroll {
  position: relative;
  min-height: var(--hn-immersive-scroll-height);
}

.hn-story-cinematic__stage,
.hn-story-scale-shift__stage {
  position: sticky;
  top: clamp(1rem, 8vh, 4rem);
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  min-height: clamp(540px, 84vh, 760px);
  overflow: hidden;
}

.hn-story-scale-shift__stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
}

.hn-story-scale-shift__media {
  order: -1;
}

.hn-story-cinematic__copy,
.hn-story-scale-shift__copy {
  position: relative;
  z-index: 2;
}

.hn-story-cinematic__media,
.hn-story-scale-shift__media,
.hn-story-cinematic__mobile-media,
.hn-story-scale-shift__mobile-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 48vw, 620px);
  padding: 0;
  border-radius: 26px;
  background: #f8fafc;
  isolation: isolate;
}

.hn-story-cinematic__frames,
.hn-story-scale-shift__media {
  position: relative;
  min-height: inherit;
}

.hn-story-cinematic__frame,
.hn-story-scale-shift__layer {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing);
}

.hn-story-cinematic__frame.is-active,
.hn-story-scale-shift__layer.is-active {
  opacity: 1;
}

.hn-story-image--cinematic,
.hn-story-image--scale-shift {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hn-story-cinematic__frame .hn-story-image--cinematic {
  object-fit: cover;
}

.hn-story-scale-shift__layer {
  box-sizing: border-box;
}

.hn-story-scale-shift__layer--start .hn-story-image--scale-shift,
.hn-story-scale-shift__layer--end .hn-story-image--scale-shift {
  object-fit: cover;
}

.hn-story-scale-shift__layer--full {
  padding: clamp(1rem, 4vw, 2.75rem);
}

.hn-story-cinematic__captions {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  min-height: 2.5rem;
  pointer-events: none;
}

.hn-story-cinematic__caption,
.hn-story-scale-shift__caption {
  position: absolute;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(24rem, 100%);
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(17, 24, 42, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing);
}

.hn-story-scale-shift__caption {
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
}

.hn-story-scale-shift__caption--end {
  left: auto;
  right: clamp(1rem, 2vw, 1.5rem);
}

.hn-story-cinematic__caption.is-active,
.hn-story-scale-shift__caption.is-active {
  opacity: 1;
  transform: translateY(0);
}

[data-story-mobile-fallback],
[data-story-reduced-fallback] {
  display: none;
}

.hn-story-cinematic__mobile,
.hn-story-scale-shift__mobile {
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.55rem;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hn-story-cinematic__mobile::-webkit-scrollbar,
.hn-story-scale-shift__mobile::-webkit-scrollbar {
  display: none;
}

.hn-story-cinematic__mobile-card,
.hn-story-scale-shift__mobile-card {
  scroll-snap-align: start;
}

.hn-story-cinematic__mobile-copy,
.hn-story-scale-shift__mobile-copy,
.hn-story-cinematic__reduced-frame figcaption,
.hn-story-scale-shift__reduced-frame figcaption {
  display: grid;
  gap: 0.35rem;
}

.hn-story-image--cinematic-mobile,
.hn-story-image--scale-mobile,
.hn-story-image--cinematic-reduced,
.hn-story-image--scale-reduced {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hn-story-cinematic__reduced-surface,
.hn-story-scale-shift__reduced-surface {
  gap: 1.25rem;
}

.hn-story-cinematic__reduced-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hn-story-scale-shift__reduced-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hn-story-cinematic__reduced-frame,
.hn-story-scale-shift__reduced-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f8fafc;
  padding: 0;
}

.hn-story-scale-shift__reduced-frame figcaption strong {
  font-family: var(--hn-display);
  font-size: 1rem;
}

.hn-story-scale-shift__reduced-frame figcaption span,
.hn-story-cinematic__reduced-frame figcaption {
  color: var(--hn-muted);
}

.hn-story-scenes {
  grid-template-columns: 1fr;
}

.hn-story-scene {
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(1rem, 2.4vw, 1.8rem);
  border-top: 1px solid rgba(17, 24, 42, 0.1);
  opacity: 0.55;
  transform: translateY(4px);
  transition: opacity var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing), box-shadow var(--motion-duration) var(--motion-easing), border-color var(--motion-duration) var(--motion-easing);
}

.hn-story-scene.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(17, 24, 42, 0.24);
  box-shadow: none;
}

.hn-story-scene__media {
  overflow: hidden;
  min-height: 240px;
  border-radius: 20px;
}

.hn-story-before-after__container {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.hn-story-before-after__layer {
  position: absolute;
  inset: 0;
}

.hn-story-before-after__layer--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.hn-story-image--compare {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn-story-before-after__label {
  position: absolute;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.hn-story-before-after__label--before {
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  backdrop-filter: blur(6px);
}

.hn-story-before-after__label--after {
  right: 1rem;
  background: rgba(17, 24, 42, 0.82);
  color: #fff;
  backdrop-filter: blur(6px);
}

.hn-story-before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  transition: left 0s;
}

.hn-story-before-after__handle:focus-visible {
  outline: none;
}

.hn-story-before-after__handle:focus-visible .hn-story-before-after__grip {
  outline: 2px solid var(--hn-accent);
  outline-offset: 2px;
}

.hn-story-before-after__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #111827;
  box-shadow: 0 8px 22px rgba(17, 24, 42, 0.28);
  transform: translate(-50%, -50%);
  transition: transform var(--motion-duration) var(--motion-easing);
}

.hn-story-before-after__container:active .hn-story-before-after__grip {
  transform: translate(-50%, -50%) scale(1.1);
}

.hn-story-before-after__grip span {
  display: block;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: #fff;
}

.hn-story-social-proof {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.hn-story-social-proof__track {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 42rem;
  min-height: 0;
}

.hn-story-social-proof__card {
  grid-area: 1 / 1;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  margin: 0;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing);
  pointer-events: none;
}

.hn-story-social-proof__card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.hn-story-social-proof__quote {
  margin: 0;
  font-family: var(--hn-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hn-story-social-proof__quote::before {
  content: "\201C";
}

.hn-story-social-proof__quote::after {
  content: "\201D";
}

.hn-story-social-proof__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hn-story-social-proof__avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 999px;
  background: #f8fafc;
}

.hn-story-social-proof__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn-story-social-proof__cite {
  display: grid;
  gap: 0.15rem;
  font-style: normal;
  text-align: left;
  line-height: 1.3;
}

.hn-story-social-proof__cite strong {
  font-size: 0.95rem;
}

.hn-story-social-proof__cite span {
  color: var(--hn-muted);
  font-size: 0.82rem;
}

.hn-story-social-proof__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.hn-story-social-proof__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.hn-story-social-proof__dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 24, 42, 0.18);
  transition: background-color var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing);
}

.hn-story-social-proof__dot.is-active span {
  background: #111827;
  transform: scale(1.3);
}

.hn-story-social-proof__dot:focus-visible {
  outline: 2px solid var(--hn-accent);
  outline-offset: 2px;
  border-radius: 999px;
}

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-duration) var(--motion-easing), transform var(--motion-duration) var(--motion-easing);
}

[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="50"] { transition-delay: 50ms; }
[data-animate-delay="100"] { transition-delay: 100ms; }
[data-animate-delay="150"] { transition-delay: 150ms; }
[data-animate-delay="200"] { transition-delay: 200ms; }
[data-animate-delay="250"] { transition-delay: 250ms; }

@media (prefers-reduced-motion: reduce) {
  [data-animate="fade-up"] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hn-story-cinematic__scroll,
  .hn-story-scale-shift__scroll,
  .hn-story-cinematic__mobile,
  .hn-story-scale-shift__mobile {
    display: none !important;
  }

  .hn-story-cinematic__reduced,
  .hn-story-scale-shift__reduced {
    display: block !important;
  }

  .hn-story-cinematic__frame,
  .hn-story-scale-shift__layer,
  .hn-story-cinematic__caption,
  .hn-story-scale-shift__caption,
  .hn-story-hotspot.is-active,
  button.hn-story-card__media,
  .hn-story-card__icon {
    transition: none;
    animation: none;
  }

  button.hn-story-card__media {
    transform: none !important;
  }
}

[data-motion-preset="none"] .hn-story-cinematic__scroll,
[data-motion-preset="none"] .hn-story-scale-shift__scroll,
[data-motion-preset="none"] .hn-story-cinematic__mobile,
[data-motion-preset="none"] .hn-story-scale-shift__mobile {
  display: none !important;
}

[data-motion-preset="none"] .hn-story-cinematic__reduced,
[data-motion-preset="none"] .hn-story-scale-shift__reduced {
  display: block !important;
}

[data-motion-preset="none"] .hn-story-hotspot.is-active {
  animation: none;
}

.hn-story-theme--dark .hn-story-surface,
.hn-story-theme--dark .hn-story-card,
.hn-story-theme--dark .hn-story-scene,
.hn-story-theme--dark .hn-story-step,
.hn-story-theme--dark .hn-story-social-proof__card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8fafc;
}

.hn-story-theme--dark .hn-story-lead,
.hn-story-theme--dark .hn-story-card p,
.hn-story-theme--dark .hn-story-step p,
.hn-story-theme--dark .hn-story-scene p,
.hn-story-theme--dark .hn-story-hotspots__panel p,
.hn-story-theme--dark .hn-story-section-head p:last-child,
.hn-story-theme--dark .hn-story-social-proof__cite span {
  color: rgba(255, 255, 255, 0.76);
}

.hn-story-theme--dark .hn-story-social-proof__dot span {
  background: rgba(255, 255, 255, 0.3);
}

.hn-story-theme--dark .hn-story-social-proof__dot.is-active span {
  background: #fff;
}

.hn-story-theme--accent .hn-story-surface,
.hn-story-theme--accent .hn-story-card,
.hn-story-theme--accent .hn-story-scene {
  background: transparent;
}

.hn-story-theme--muted .hn-story-surface,
.hn-story-theme--muted .hn-story-card,
.hn-story-theme--muted .hn-story-scene {
  background: transparent;
}

@media (max-width: 960px) {
  .hn-story-hero,
  .hn-story-detail,
  .hn-story-final,
  .hn-story-hotspots-shell,
  .hn-story-sticky,
  .hn-story-scene {
    grid-template-columns: 1fr;
  }

  .hn-story-list--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hn-story-section--benefit-steps .hn-container {
    gap: clamp(1.35rem, 4vw, 2rem);
  }

  .hn-story-section--benefit-steps .hn-story-section-head {
    max-width: 46rem;
  }

  .hn-story-section--benefit-steps .hn-story-section-head h2 {
    max-width: 11ch;
  }

  .hn-story-benefits {
    --hn-benefits-edge: clamp(1rem, 4vw, 1.5rem);
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 78%);
    grid-template-columns: none;
    gap: clamp(1rem, 3vw, 1.35rem);
    margin-inline: calc(var(--hn-benefits-edge) * -1);
    padding: 0 var(--hn-benefits-edge) 0.75rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: var(--hn-benefits-edge);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hn-story-benefits::-webkit-scrollbar {
    display: none;
  }

  .hn-story-benefit {
    scroll-snap-align: start;
  }

  .hn-story-benefit__media {
    min-height: clamp(340px, 62vw, 560px);
    border-radius: 22px;
  }

  .hn-story-cinematic__stage,
  .hn-story-scale-shift__stage {
    grid-template-columns: 1fr;
    min-height: clamp(520px, 80vh, 700px);
  }

  .hn-story-sticky__media {
    position: sticky;
    top: clamp(0.4rem, 3vh, 1.4rem);
    height: min(66vh, 620px);
    min-height: 430px;
    max-height: none;
    aspect-ratio: auto;
    z-index: 4;
    border-radius: clamp(22px, 4vw, 30px);
  }

  .hn-story-sticky__steps {
    gap: 0;
    margin-top: clamp(1rem, 4vw, 1.75rem);
    padding-bottom: clamp(22vh, 28vw, 18rem);
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 78%, transparent 100%);
  }

  .hn-story-sticky .hn-story-step {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: clamp(340px, 54vh, 560px);
    align-content: end;
    align-items: end;
    padding-block: clamp(1.25rem, 6vw, 2.2rem);
    opacity: 0.32;
    transform: translateY(24px);
  }

  .hn-story-sticky .hn-story-step.is-current {
    opacity: 0.78;
    transform: translateY(0);
  }

  .hn-story-sticky .hn-story-step__copy {
    align-self: end;
    gap: 0;
  }

  .hn-story-sticky .hn-story-step p {
    display: none;
  }

  .hn-story-sticky .hn-story-step h3 {
    font-size: clamp(1rem, 2.2vw, 1.28rem);
    line-height: 1.05;
  }

  .hn-story-hero__media,
  .hn-story-detail__media,
  .hn-story-final__media,
  .hn-story-hotspots__image {
    min-height: clamp(320px, 48vw, 400px);
  }

  .hn-story-hotspots__image {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }

  .hn-story-hotspots__active-card {
    width: clamp(13.5rem, 20vw, 16.5rem);
  }

  .hn-story-before-after__container {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .hn-story-cinematic,
  .hn-story-scale-shift {
    --hn-immersive-scroll-height: 190vh;
  }

  .hn-story-cinematic__scroll,
  .hn-story-scale-shift__scroll {
    display: block;
    min-height: var(--hn-immersive-scroll-height);
  }

  .hn-story-cinematic__mobile,
  .hn-story-scale-shift__mobile {
    display: none;
  }

  .hn-story-cinematic__stage,
  .hn-story-scale-shift__stage {
    top: clamp(0.75rem, 4vh, 1.5rem);
    min-height: min(78vh, 720px);
    align-content: center;
    gap: clamp(1.1rem, 5vw, 1.75rem);
  }

  .hn-story-cinematic__media,
  .hn-story-scale-shift__media {
    order: 1;
    min-height: clamp(330px, 62vh, 560px);
  }

  .hn-story-cinematic__copy,
  .hn-story-scale-shift__copy {
    order: 2;
    max-width: 25rem;
  }

  .hn-story-cinematic__mobile-media,
  .hn-story-scale-shift__mobile-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hn-story-list--cards,
  .hn-story-scenes {
    grid-template-columns: 1fr;
  }

  .hn-story-section--benefit-steps .hn-story-section-head h2 {
    max-width: 10ch;
  }

  .hn-product-story--dynamic {
    gap: clamp(3.2rem, 14vw, 5rem);
  }

  .hn-story-title,
  .hn-story-section-head h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .hn-story-lead,
  .hn-story-section-head p:last-child {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hn-story-benefits {
    grid-auto-columns: minmax(270px, 84%);
  }

  .hn-story-benefit__media {
    min-height: clamp(310px, 84vw, 460px);
    border-radius: 20px;
  }

  .hn-story-benefit h3 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .hn-story-benefit p {
    font-size: 1.04rem;
  }

  .hn-story-surface,
  .hn-story-card,
  .hn-story-scene,
  .hn-story-step {
    border-radius: 24px;
  }

  .hn-story-surface {
    gap: clamp(1rem, 6vw, 1.5rem);
  }

  .hn-story-step {
    grid-template-columns: 1fr;
    min-height: clamp(240px, 46vh, 380px);
    align-content: center;
    padding-block: clamp(1.4rem, 8vw, 2.25rem);
  }

  .hn-story-step,
  .hn-story-scene {
    border-radius: 0;
  }

  .hn-story-sticky .hn-story-step {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: clamp(350px, 58vh, 520px);
    align-content: end;
    align-items: end;
    padding-block: clamp(1rem, 8vw, 1.8rem);
  }

  .hn-story-hero__media,
  .hn-story-detail__media,
  .hn-story-final__media,
  .hn-story-hotspots__image,
  .hn-story-sticky__media,
  .hn-story-cinematic__mobile-media,
  .hn-story-scale-shift__mobile-media {
    min-height: 280px;
  }

  .hn-story-hero__media,
  .hn-story-detail__media,
  .hn-story-final__media {
    aspect-ratio: 4 / 3;
  }

  .hn-story-sticky__media {
    top: 0;
    height: min(62vh, 560px);
    min-height: 430px;
    aspect-ratio: auto;
    border-radius: 24px;
  }

  .hn-story-sticky__active-copy {
    left: clamp(0.85rem, 5vw, 1.25rem);
    right: clamp(0.85rem, 5vw, 1.25rem);
    bottom: clamp(0.85rem, 5vw, 1.25rem);
    padding: clamp(0.9rem, 4vw, 1.05rem);
    border-radius: 22px;
  }

  .hn-story-sticky__active-copy h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .hn-story-sticky__active-copy p {
    font-size: clamp(0.94rem, 4.2vw, 1.08rem);
  }

  .hn-story-cinematic__reduced-grid,
  .hn-story-scale-shift__reduced-grid {
    grid-template-columns: 1fr;
  }

  .hn-story-hotspots__image {
    min-height: clamp(420px, 68vh, 560px);
    padding: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .hn-story-hotspots__stage {
    gap: 0.95rem;
    overflow: hidden;
    padding-bottom: 0;
  }

  .hn-story-hotspots__active-card {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 0.95rem 0.95rem 1rem;
    border-radius: 20px;
    transform: none;
  }

  .hn-story-hotspots__active-card.is-switching {
    transform: translateY(10px);
  }

  .hn-story-hotspots__active-card h3 {
    font-size: clamp(1.08rem, 4.9vw, 1.34rem);
    line-height: 1.06;
  }

  .hn-story-hotspots__active-card p {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .hn-story-hotspot {
    max-width: min(44vw, 10.5rem);
  }

  .hn-story-hotspot__label {
    min-height: 38px;
    padding: 0.5rem 0.68rem;
    font-size: 0.74rem;
  }

  .hn-story-hotspots__list {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-top: 0.85rem;
    padding-bottom: 0.3rem;
    -webkit-overflow-scrolling: touch;
  }

  .hn-story-hotspots__list-button {
    flex: 0 0 auto;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  button.hn-story-card__media {
    width: clamp(4.75rem, 24vw, 6rem);
    border-radius: 20px;
  }

  [data-story-mobile="condense"] .hn-story-surface {
    padding: 0;
  }

  .hn-story-scenes {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84%);
    grid-template-columns: none;
    margin-inline: -1rem;
    padding-inline: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hn-story-scenes::-webkit-scrollbar {
    display: none;
  }

  .hn-story-scene {
    grid-template-columns: 1fr;
    padding-block: 0;
    border-top: 0;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
  }

  [data-story-mobile="swipe"] .hn-story-list--cards,
  [data-story-mobile="swipe"] .hn-story-scenes {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  [data-story-mobile="swipe"] .hn-story-card,
  [data-story-mobile="swipe"] .hn-story-scene {
    scroll-snap-align: start;
  }

  [data-story-mobile="swipe"] .hn-story-scene {
    grid-template-columns: 1fr;
  }

  .hn-story-before-after__container {
    aspect-ratio: 4 / 3;
  }

  .hn-story-before-after__label {
    bottom: 0.65rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }

  .hn-story-before-after__label--before { left: 0.65rem; }
  .hn-story-before-after__label--after { right: 0.65rem; }

  .hn-story-social-proof__card {
    padding: 1.25rem;
  }

  [data-story-mobile="static"] .hn-story-sticky__media {
    position: sticky;
  }
}

@media (min-width: 901px) {
  .hn-story-section--sticky-story .hn-container {
    display: grid;
    align-items: start;
    justify-items: center;
    padding-block: clamp(1.5rem, 4svh, 3rem);
  }

  .hn-story-section--sticky-story .hn-story-sticky {
    grid-template-columns: 1fr;
    width: min(100%, 68rem);
    margin-inline: auto;
    justify-items: center;
    align-content: start;
    gap: 0;
  }

  .hn-story-sticky__stack {
    position: sticky;
    top: clamp(5.75rem, 9vh, 7rem);
    display: block;
    width: min(100%, 68rem);
  }

  .hn-story-sticky__active-copy {
    position: absolute;
    left: clamp(1rem, 2.6vw, 2rem);
    right: clamp(1rem, 2.6vw, 2rem);
    bottom: clamp(1rem, 2.6vw, 2rem);
    z-index: 3;
    display: grid;
    gap: 0.45rem;
    width: auto;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(17, 24, 42, 0.18);
  }

  .hn-story-sticky__active-copy--desktop {
    display: grid;
  }

  .hn-story-sticky__active-title-block--mobile,
  .hn-story-sticky__active-text-block--mobile {
    display: none;
  }

  .hn-story-sticky__active-title-block,
  .hn-story-sticky__active-text-block {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .hn-story-section--sticky-story .hn-story-sticky__media {
    position: relative;
    top: auto;
    justify-self: center;
    width: min(100%, 68rem);
    height: min(70svh, 720px);
    min-height: min(500px, calc(100svh - 9rem));
    max-height: none;
    margin-inline: auto;
    transform: none;
  }

  .hn-story-section--sticky-story .hn-story-sticky__steps {
    width: 0;
    min-width: 0;
    max-width: 0;
    margin: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    mask-image: none;
    pointer-events: none;
  }

  .hn-story-section--sticky-story .hn-story-step,
  .hn-story-section--sticky-story .hn-story-step.is-current {
    min-height: clamp(320px, 40svh, 500px);
    padding: 0;
    border: 0;
    visibility: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .hn-story-section--sticky-story .hn-story-step__media,
  .hn-story-section--sticky-story .hn-story-step__copy {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hn-story-section--sticky-story {
    scroll-margin-top: clamp(5.5rem, 12vw, 7rem);
  }

  .hn-story-section--sticky-story .hn-container {
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: clamp(42rem, 118svh, 56rem);
    padding-block: clamp(1.5rem, 4svh, 2.35rem);
  }

  .hn-story-section--sticky-story .hn-story-sticky {
    grid-template-columns: 1fr;
    width: min(100%, 72rem);
    margin-inline: auto;
    justify-items: center;
    align-content: start;
    gap: 0;
  }

  .hn-story-sticky__stack {
    position: sticky;
    top: clamp(5.75rem, 10vw, 7.1rem);
    display: grid;
    gap: clamp(0.75rem, 2.2vw, 1rem);
    width: min(100%, 68rem);
    justify-items: stretch;
  }

  .hn-story-sticky__media {
    order: 2;
    position: relative;
    top: auto;
    justify-self: center;
    width: min(100%, 68rem);
    height: min(50svh, 540px);
    min-height: clamp(320px, 50svh, 500px);
    max-height: none;
    margin-inline: auto;
    transform: none;
  }

  .hn-story-sticky__steps {
    width: min(100%, 68rem);
    margin-inline: auto;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    mask-image: none;
    pointer-events: none;
  }

  .hn-story-sticky .hn-story-step,
  .hn-story-sticky .hn-story-step.is-current {
    min-height: clamp(140px, 22svh, 220px);
    padding: 0;
    border: 0;
    visibility: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .hn-story-sticky .hn-story-step__media,
  .hn-story-sticky .hn-story-step__copy {
    opacity: 0;
  }

  .hn-story-sticky__active-copy {
    position: static;
    display: none;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .hn-story-sticky__active-title-block,
  .hn-story-sticky__active-text-block {
    display: grid;
    gap: 0.45rem;
    width: min(100%, 42rem);
    justify-self: stretch;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .hn-story-sticky__active-title-block--mobile,
  .hn-story-sticky__active-text-block--mobile {
    display: grid;
  }

  .hn-story-sticky__active-title-block {
    order: 1;
  }

  .hn-story-sticky__active-text-block {
    order: 3;
  }

  .hn-story-sticky__active-copy.is-switching .hn-story-sticky__active-title-block,
  .hn-story-sticky__active-copy.is-switching .hn-story-sticky__active-text-block {
    opacity: 0.3;
    transform: translateY(8px);
  }

  .hn-story-sticky__active-copy h3 {
    font-size: clamp(1.4rem, 5.4vw, 2.3rem);
    line-height: 1.02;
  }

  .hn-story-sticky__active-copy p {
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.52;
  }
}

@media (max-width: 640px) {
  .hn-story-section--sticky-story {
    scroll-margin-top: clamp(7rem, 18vw, 8.6rem);
    margin-top: clamp(2.4rem, 9vw, 3.2rem);
    margin-bottom: clamp(-1.15rem, -3.5vw, -0.6rem);
  }

  .hn-story-section--sticky-story .hn-container {
    min-height: clamp(42rem, 126svh, 56rem);
    padding-top: clamp(1rem, 4vw, 1.45rem);
    padding-bottom: clamp(0.85rem, 3.5vw, 1.35rem);
  }

  .hn-story-section--sticky-story .hn-story-sticky {
    align-content: start;
    gap: 0;
  }

  .hn-story-sticky__stack {
    top: clamp(6.15rem, 15vw, 7.2rem);
    gap: 0.75rem;
    width: 100%;
  }

  .hn-story-section--sticky-story .hn-story-sticky__media {
    height: min(44svh, 450px);
    min-height: clamp(280px, 43svh, 390px);
    max-height: none;
    justify-self: center;
  }

  .hn-story-sticky__active-copy h3 {
    font-size: clamp(1.2rem, 7vw, 1.9rem);
    line-height: 1.02;
  }

  .hn-story-sticky__active-copy p {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .hn-story-sticky__active-title-block,
  .hn-story-sticky__active-text-block {
    width: 100%;
  }

  .hn-story-sticky .hn-story-step,
  .hn-story-sticky .hn-story-step.is-current {
    min-height: clamp(180px, 24svh, 240px);
  }
}
