.application-constellation {
  --constellation-blue: #3f56d8;
  --constellation-ink: #111318;
  --constellation-muted: #626862;
  --constellation-line: #d8d9d4;
  --constellation-paper: #fbfbf9;
  position: relative;
  overflow: clip;
  background: #f7f7f5 !important;
}

.constellation-intro {
  display: grid;
  grid-template-columns: minmax(130px, 18%) minmax(0, 1fr) minmax(280px, 31%);
  gap: clamp(32px, 4.8vw, 76px);
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 130px);
}

.constellation-intro h2 {
  margin: 0;
  color: var(--constellation-ink);
  font: 400 clamp(50px, 6.1vw, 94px)/.95 Manrope, sans-serif;
  letter-spacing: -.065em;
}

.constellation-intro h2 em {
  color: #596059;
  font-family: Georgia, serif;
  font-weight: 400;
}

.constellation-intro > p {
  margin: 4px 0 0;
  color: #4e544e;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.62;
}

.constellation-intro strong { color: var(--constellation-ink); font-weight: 500; }

.constellation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .65fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: start;
}

.constellation-stage {
  position: sticky;
  top: 92px;
  height: min(78svh, 820px);
  min-height: 620px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--constellation-line);
  border-radius: 30px;
  background: var(--constellation-paper);
  box-shadow: 0 24px 80px rgba(17, 19, 24, .055);
}

.constellation-stage-head,
.constellation-stage-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 0 clamp(20px, 2.3vw, 34px);
  color: #5a605a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
}

.constellation-stage-head { border-bottom: 1px solid var(--constellation-line); }
.constellation-stage-foot { border-top: 1px solid var(--constellation-line); }
.constellation-stage-head span:last-child,
.constellation-stage-foot span:first-child { color: var(--constellation-blue); }
.constellation-stage-foot span:last-child { text-align: right; }

.constellation-graphic {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.constellation-grid path {
  fill: none;
  stroke: #dedfd9;
  stroke-width: 1;
  stroke-dasharray: 2 12;
  opacity: .46;
}

.constellation-halo { transform-origin: 450px 126px; animation: constellationPulse 5.5s ease-in-out infinite; }
.constellation-root rect { fill: #111318; }
.constellation-root circle { fill: #fff; }
.constellation-root text { fill: #fff; font: 600 16px Manrope, sans-serif; letter-spacing: .11em; }
.constellation-root .constellation-root-sub { fill: #c8cbc6; font-size: 11px; letter-spacing: .16em; }

.constellation-trunk path,
.constellation-branches path {
  fill: none;
  stroke: #a8ada7;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.constellation-primitives rect {
  fill: #f3f4f1;
  stroke: #c8cbc5;
}

.constellation-primitives text {
  fill: #303530;
  font: 600 12px Manrope, sans-serif;
  letter-spacing: .13em;
  text-anchor: middle;
}

.constellation-scene {
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s cubic-bezier(.22, .75, .2, 1), visibility .55s;
}

.constellation-scene.is-active { opacity: 1; visibility: visible; }
.constellation-scene .constellation-branches path {
  stroke: var(--constellation-blue);
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}

.constellation-scene.is-active .constellation-branches path {
  animation: constellationDraw .72s cubic-bezier(.22, .75, .2, 1) forwards;
}

.constellation-scene.is-active .constellation-branches path:nth-child(2) { animation-delay: .06s; }
.constellation-scene.is-active .constellation-branches path:nth-child(3) { animation-delay: .12s; }
.constellation-scene.is-active .constellation-branches path:nth-child(4) { animation-delay: .18s; }
.constellation-scene.is-active .constellation-branches path:nth-child(5) { animation-delay: .24s; }

.constellation-node { opacity: 0; }
.constellation-scene.is-active .constellation-node { animation: constellationNode .55s cubic-bezier(.22, .75, .2, 1) .18s forwards; }
.constellation-scene.is-active .constellation-node:nth-of-type(3) { animation-delay: .24s; }
.constellation-scene.is-active .constellation-node:nth-of-type(4) { animation-delay: .3s; }
.constellation-scene.is-active .constellation-node:nth-of-type(5) { animation-delay: .36s; }
.constellation-scene.is-active .constellation-node:nth-of-type(6) { animation-delay: .42s; }

.constellation-node rect {
  fill: #fff;
  stroke: #cbd0c9;
  filter: drop-shadow(0 8px 12px rgba(17, 19, 24, .04));
}

.constellation-node text {
  fill: #1b1f1b;
  font: 600 14px Manrope, sans-serif;
  letter-spacing: .08em;
}

.constellation-node .node-secondary { fill: #626862; font-size: 12px; font-weight: 500; }
.constellation-continuation circle { fill: #b7bab5; }
.constellation-continuation text {
  fill: #777c76;
  font: 600 10px Manrope, sans-serif;
  letter-spacing: .24em;
  text-anchor: middle;
}

.constellation-steps { padding-bottom: 16svh; }
.constellation-step {
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.4vw, 48px) 0;
  border-top: 1px solid var(--constellation-line);
  outline: none;
  opacity: .38;
  transition: opacity .4s ease;
}

.constellation-step:last-child { border-bottom: 1px solid var(--constellation-line); }
.constellation-step.is-active,
.constellation-step:focus-visible { opacity: 1; }
.constellation-step > span {
  color: var(--constellation-blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
}

.constellation-step h3 {
  margin: 28px 0 22px;
  color: var(--constellation-ink);
  font: 400 clamp(32px, 3.2vw, 52px)/1.02 Manrope, sans-serif;
  letter-spacing: -.045em;
}

.constellation-step p {
  margin: 0;
  color: var(--constellation-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.66;
}

.constellation-step a {
  width: fit-content;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid #aeb2ac;
  color: var(--constellation-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
}

.constellation-step a i { margin-left: 10px; color: var(--constellation-blue); font-style: normal; }
.constellation-step a:hover { border-color: var(--constellation-blue); }

.constellation-note {
  max-width: 720px;
  margin: clamp(48px, 6vw, 82px) 0 0;
  color: #6c716b;
  font-size: 14px;
  line-height: 1.65;
}

@keyframes constellationDraw { to { stroke-dashoffset: 0; } }
@keyframes constellationNode { from { opacity: 0; } to { opacity: 1; } }
@keyframes constellationPulse { 0%, 100% { transform: scale(.9); opacity: .55; } 50% { transform: scale(1.06); opacity: 1; } }

@media (max-width: 1100px) {
  .constellation-intro { grid-template-columns: 1fr 1fr; }
  .constellation-intro .section-number { grid-column: 1 / -1; }
  .constellation-layout { grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 34px; }
  .constellation-stage { min-height: 560px; }
  .constellation-stage-foot span:last-child { display: none; }
}

@media (max-width: 800px) {
  .application-constellation.section-pad { padding-top: 82px !important; padding-bottom: 84px !important; }
  .constellation-intro { display: block; margin-bottom: 62px; }
  .constellation-intro h2 { margin: 24px 0 28px; font-size: clamp(48px, 13vw, 72px); }
  .constellation-intro > p { max-width: 620px; }
  .constellation-layout { display: block; }
  .constellation-stage {
    top: 74px;
    z-index: 2;
    height: min(54svh, 540px);
    min-height: 390px;
    border-radius: 22px;
    box-shadow: 0 16px 48px rgba(17, 19, 24, .07);
  }
  .constellation-stage-head,
  .constellation-stage-foot { min-height: 48px; padding: 0 18px; font-size: 10px; }
  .constellation-steps { padding: 40px 0 8svh; }
  .constellation-step {
    min-height: 58svh;
    padding: 58px 12px 58px;
    opacity: .3;
  }
  .constellation-step h3 { font-size: clamp(34px, 9vw, 48px); }
  .constellation-note { margin-top: 40px; }
}

@media (max-width: 540px) {
  .constellation-stage { height: 48svh; min-height: 355px; border-radius: 18px; }
  .constellation-stage-head span:first-child { letter-spacing: .1em; }
  .constellation-stage-foot span:first-child { font-size: 9px; }
  .constellation-step { min-height: 56svh; padding-left: 6px; padding-right: 6px; }
  .constellation-step > span { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .constellation-halo { animation: none; }
  .constellation-scene,
  .constellation-step { transition: none; }
  .constellation-scene.is-active .constellation-branches path,
  .constellation-scene.is-active .constellation-node { animation: none; }
  .constellation-scene.is-active .constellation-branches path { stroke-dashoffset: 0; }
  .constellation-scene.is-active .constellation-node { opacity: 1; }
}

/* Deployment stories ------------------------------------------------------ */
.deployment-stories {
  --story-blue: #3f56d8;
  --story-ink: #111318;
  --story-muted: #5f655f;
  --story-line: #d8d9d4;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
  background: #e9edff !important;
}

.application-anchor-bank {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.deployment-stories-head,
.application-control-model-head {
  display: grid;
  grid-template-columns: minmax(130px, 18%) minmax(0, 1fr) minmax(280px, 31%);
  gap: clamp(32px, 4.8vw, 76px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 98px);
}

.deployment-stories-head h2,
.application-control-model-head h2 {
  margin: 0;
  color: var(--story-ink);
  font: 400 clamp(48px, 5.8vw, 88px)/.96 Manrope, sans-serif;
  letter-spacing: -.064em;
}

.deployment-stories-head h2 em,
.application-control-model-head h2 em {
  color: #555c55;
  font-family: Georgia, serif;
  font-weight: 400;
}

.deployment-stories-head > p,
.application-control-model-head > p {
  margin: 4px 0 0;
  color: #4c524d;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
}

.deployment-story-experience {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.deployment-story-nav {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid #20242b;
  border-radius: 28px;
  background: #171a20;
}

.deployment-story-nav button {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-content: center;
  padding: 16px 22px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(255,255,255,.55);
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}

.deployment-story-nav button:last-child { border-bottom: 0; }
.deployment-story-nav button::after {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 4px;
  background: #8394ff;
  opacity: 0;
  transform: scaleY(.4);
  transition: opacity .25s ease, transform .25s ease;
}

.deployment-story-nav button:hover,
.deployment-story-nav button:focus-visible { color: #fff; background: rgba(255,255,255,.045); outline: none; }
.deployment-story-nav button.is-active { color: #fff; background: #242936; }
.deployment-story-nav button.is-active::after { opacity: 1; transform: scaleY(1); }
.deployment-story-nav button > span {
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 2px;
  color: #8394ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
}
.deployment-story-nav b { font-size: 17px; font-weight: 500; line-height: 1.25; }
.deployment-story-nav small { margin-top: 5px; color: inherit; font-size: 12px; line-height: 1.35; opacity: .72; }

.deployment-story-panel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--story-line);
  border-radius: 30px;
  background: #fbfbf9;
  box-shadow: 0 24px 80px rgba(17,19,24,.055);
}

.deployment-story-signal {
  min-height: 106px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  padding: 24px clamp(24px, 3vw, 44px);
  border-bottom: 1px solid var(--story-line);
  background: #f3f4f0;
}

.deployment-story-signal div { display: grid; gap: 8px; }
.deployment-story-signal span,
.deployment-story-copy > span,
.deployment-story-gap > span,
.deployment-story-detail [data-stage-number],
.deployment-story-outcome span,
.deployment-story-media figcaption {
  color: #747a74;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  line-height: 1.35;
}
.deployment-story-signal b { color: var(--story-ink); font-size: 14px; font-weight: 500; line-height: 1.35; }
.deployment-story-signal > i { color: var(--story-blue); font-size: 22px; font-style: normal; }

.deployment-story-main {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  min-height: 490px;
  border-bottom: 1px solid var(--story-line);
}

.deployment-story-media {
  position: relative;
  min-height: 490px;
  margin: 0;
  overflow: hidden;
  background: #e7e7e3;
}
.deployment-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(12,14,18,.42));
  pointer-events: none;
}
.deployment-story-media img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  display: block;
  object-fit: cover;
  transition: opacity .18s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.deployment-story-panel.is-changing .deployment-story-media img { opacity: .32; transform: scale(1.025); }
.deployment-story-media figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 24px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.82);
}
.deployment-story-media figcaption span { color: #fff; }

.deployment-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 76px);
}
.deployment-story-copy > span { color: var(--story-blue); }
.deployment-story-copy h3 {
  max-width: 720px;
  margin: 26px 0 22px;
  color: var(--story-ink);
  font: 400 clamp(38px, 4vw, 64px)/.98 Manrope, sans-serif;
  letter-spacing: -.055em;
}
.deployment-story-copy > p {
  max-width: 670px;
  margin: 0;
  color: #545a55;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.62;
}
.deployment-story-gap {
  max-width: 670px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 24px;
  border-top: 1px solid var(--story-line);
}
.deployment-story-gap p { margin: 11px 0 0; color: #23272c; font-size: 15px; line-height: 1.55; }

.deployment-story-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--story-line);
}
.deployment-story-steps button {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px clamp(14px, 2vw, 28px);
  border: 0;
  border-right: 1px solid var(--story-line);
  background: #fbfbf9;
  color: #7a7f79;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.deployment-story-steps button:last-child { border-right: 0; }
.deployment-story-steps button:hover,
.deployment-story-steps button:focus-visible { color: var(--story-ink); background: #f3f4f0; outline: none; }
.deployment-story-steps button.is-active { color: var(--story-ink); background: #e9edff; }
.deployment-story-steps span { color: var(--story-blue); font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.deployment-story-steps b { font-size: 14px; font-weight: 600; }

.deployment-story-detail {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: clamp(36px, 4vw, 64px) clamp(28px, 4vw, 60px);
  border-bottom: 1px solid var(--story-line);
}
.deployment-story-detail > div { min-width: 0; max-width: 820px; }
.deployment-story-detail h4 {
  margin: 20px 0 14px;
  color: var(--story-ink);
  font: 400 clamp(28px, 3vw, 46px)/1.08 Manrope, sans-serif;
  letter-spacing: -.045em;
}
.deployment-story-detail p { margin: 0; color: #5b615b; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.65; }
.deployment-story-detail > button {
  min-width: 142px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0 11px;
  border: 0;
  border-bottom: 1px solid #8e938e;
  background: transparent;
  color: var(--story-ink);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.deployment-story-detail > button span { color: var(--story-blue); }
.deployment-story-detail > button:hover { border-color: var(--story-blue); }

.deployment-story-outcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 28px clamp(28px, 4vw, 60px);
  background: #171a20;
}
.deployment-story-outcome p { max-width: 760px; margin: 8px 0 0; color: #fff; font-size: 15px; line-height: 1.55; }
.deployment-story-outcome span { color: #8999ff; }
.deployment-story-products { min-width: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.deployment-story-products .workflow-product-link {
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: border-color .2s ease, background .2s ease;
}
.deployment-story-products .workflow-product-link:hover { border-color: #8999ff; background: rgba(137,153,255,.12); transform: none; }
.deployment-stories-note { max-width: 780px; margin: 28px 0 0; color: #565c56; font-size: 13px; line-height: 1.6; }

/* The three-part takeaway replaces the former catalogue of sectors. */
.application-control-model { background: #f7f7f5 !important; }
.application-control-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.application-control-model-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid #d8d9d4;
  border-radius: 24px;
  background: #fbfbf9;
}
.application-control-model-grid article > span { color: var(--story-blue); font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.application-control-model-grid h3 { margin: auto 0 22px; color: #111318; font: 400 clamp(30px, 3vw, 46px)/1.02 Manrope, sans-serif; letter-spacing: -.05em; }
.application-control-model-grid p { margin: 0 0 38px; color: #5b615b; font-size: 16px; line-height: 1.6; }
.application-control-model-grid b { margin-top: auto; padding-top: 18px; border-top: 1px solid #d8d9d4; color: #707670; font-size: 10px; font-weight: 650; letter-spacing: .16em; }
.application-control-links { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 42px; }
.application-control-links a { padding-bottom: 8px; border-bottom: 1px solid #aeb2ac; color: #111318; font-size: 14px; font-weight: 600; }
.application-control-links a span { margin-left: 12px; color: var(--story-blue); }
.application-control-links a:hover { border-color: var(--story-blue); }

@media (max-width: 1100px) {
  .deployment-stories-head,
  .application-control-model-head { grid-template-columns: 1fr 1fr; }
  .deployment-stories-head .section-number,
  .application-control-model-head .section-number { grid-column: 1 / -1; }
  .deployment-story-experience { display: block; }
  .deployment-story-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(178px, 30vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    border-radius: 22px;
    scrollbar-width: none;
  }
  .deployment-story-nav::-webkit-scrollbar { display: none; }
  .deployment-story-nav button { min-height: 88px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .deployment-story-nav button::after { inset: auto 18px 0; width: auto; height: 3px; transform: scaleX(.4); }
  .deployment-story-nav button.is-active::after { transform: scaleX(1); }
  .deployment-story-panel { margin-top: 12px; }
  .deployment-story-main { grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr); }
  .deployment-story-copy { padding: 42px; }
  .deployment-story-copy h3 { font-size: clamp(36px, 4vw, 52px); }
}

@media (max-width: 850px) {
  .deployment-stories.section-pad,
  .application-control-model.section-pad { padding-top: 82px !important; padding-bottom: 84px !important; }
  .deployment-stories-head,
  .application-control-model-head { display: block; margin-bottom: 52px; }
  .deployment-stories-head h2,
  .application-control-model-head h2 { margin: 24px 0 26px; font-size: clamp(45px, 11vw, 68px); }
  .deployment-story-nav { grid-auto-columns: minmax(178px, 48vw); }
  .deployment-story-panel { border-radius: 24px; }
  .deployment-story-main { grid-template-columns: 1fr; }
  .deployment-story-media,
  .deployment-story-media img { min-height: 390px; max-height: 490px; }
  .deployment-story-copy { padding: 40px 28px 46px; }
  .deployment-story-signal { overflow-x: auto; grid-template-columns: minmax(170px,1fr) auto minmax(210px,1fr) auto minmax(170px,1fr); }
  .deployment-story-steps { overflow-x: auto; grid-template-columns: repeat(5, minmax(122px, 1fr)); }
  .deployment-story-detail { grid-template-columns: 1fr; align-items: start; }
  .deployment-story-detail > button { margin-top: 4px; }
  .deployment-story-outcome { grid-template-columns: 1fr; }
  .deployment-story-products { justify-content: flex-start; }
  .application-control-model-grid { grid-template-columns: 1fr; }
  .application-control-model-grid article { min-height: 310px; }
}

@media (max-width: 540px) {
  .deployment-story-signal { padding: 20px; }
  .deployment-story-media,
  .deployment-story-media img { min-height: 330px; }
  .deployment-story-copy h3 { font-size: 38px; }
  .deployment-story-media figcaption { inset-inline: 18px; }
  .deployment-story-media figcaption b { display: none; }
  .deployment-story-detail { min-height: 300px; padding: 34px 24px; }
  .deployment-story-outcome { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .deployment-story-nav button,
  .deployment-story-nav button::after,
  .deployment-story-media img { transition: none; }
}
