@font-face {
  font-family: "Paras Option One";
  src: url("/paras-preview-assets/fonts/Unbounded-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --blue: #324b9a;
  --blue-deep: #12375f;
  --blue-dark: #0c2947;
  --blue-light: #dce9f8;
  --sky: #75b9df;
  --paper: #f8fafc;
  --white: #ffffff;
  --ink: #123653;
  --line: rgb(18 54 83 / .2);
  --header: 64px;
  --edge: clamp(24px, 5.2vw, 84px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--blue-deep); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.sustain-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header);
  color: var(--ink);
  background: rgb(255 255 255 / .97);
  border-bottom: 1px solid rgb(18 54 83 / .1);
}
.sustain-header-row {
  height: 100%;
  padding: 0 var(--edge);
  display: flex;
  align-items: center;
}
.sustain-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  height: 58px;
  margin-right: auto;
}
.sustain-brand img { width: 27px; height: 32px; object-fit: contain; }
.sustain-brand strong {
  color: var(--blue);
  font: 600 22px/1 "Paras Option One", sans-serif;
  letter-spacing: -.02em;
}
.sustain-tools { display: flex; align-items: center; gap: 30px; }
.sustain-tools > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sustain-tools > a::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.sustain-tools > a:hover::after,
.sustain-tools > a:focus-visible::after { transform: scaleX(1); }
.sustain-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.sustain-menu-toggle span {
  width: 28px;
  height: 1px;
  position: absolute;
  left: 8px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s ease;
}
.sustain-menu-toggle span:nth-child(1) { top: 13px; }
.sustain-menu-toggle span:nth-child(2) { top: 21px; }
.sustain-menu-toggle span:nth-child(3) { top: 29px; }
.sustain-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.sustain-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sustain-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.sustain-menu {
  min-height: calc(100dvh - var(--header));
  padding: clamp(48px, 8vw, 120px) var(--edge);
  position: fixed;
  inset: var(--header) 0 0;
  z-index: 55;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--blue-deep);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .7s var(--ease), visibility 0s linear .7s;
}
.sustain-menu.is-open {
  clip-path: inset(0);
  visibility: visible;
  transition: clip-path .7s var(--ease), visibility 0s;
}
.sustain-menu nav { display: flex; flex-direction: column; align-items: flex-start; }
.sustain-menu a {
  position: relative;
  font-size: clamp(34px, 5.2vw, 76px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.sustain-menu a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 4px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.sustain-menu a:hover::after,
.sustain-menu a:focus-visible::after { transform: scaleX(1); }

.sustain-hero {
  min-height: 100dvh;
  padding: var(--header) var(--edge) 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}
.sustain-hero-media,
.sustain-hero-shade { position: absolute; inset: var(--header) 0 0; }
.sustain-hero-media { margin: 0; }
.sustain-hero-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.sustain-hero-shade {
  background:
    linear-gradient(180deg, rgb(5 28 55 / .08), rgb(5 28 55 / .04) 44%, rgb(5 28 55 / .66)),
    radial-gradient(circle at 50% 42%, transparent 0 20%, rgb(4 25 50 / .18) 72%);
}
.sustain-hero h1 {
  max-width: 1000px;
  margin: -1vh 0 0;
  position: relative;
  z-index: 2;
  font-size: clamp(48px, 5.1vw, 78px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.045em;
  text-align: center;
  text-wrap: balance;
  animation: hero-title-in 1.25s .1s var(--ease) both;
}
.sustain-hero-note {
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 2;
  font-size: 13px;
  line-height: 1.05;
  text-align: center;
  transform: translateX(-50%);
  animation: hero-note-in 1s .45s var(--ease) both;
}
.sustain-hero-rail {
  min-height: 56px;
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgb(255 255 255 / .52);
  font-size: 11px;
  text-transform: uppercase;
}
.sustain-hero-rail > div { display: flex; align-items: center; gap: 14px; }
.sustain-hero-rail > div i { width: 28px; height: 1px; background: currentColor; }
.sustain-hero-rail > a { display: flex; align-items: center; gap: 8px; }
.sustain-hero-rail nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.sustain-hero-rail a { transition: opacity .25s ease; }
.sustain-hero-rail a:hover,
.sustain-hero-rail a:focus-visible { opacity: .66; }

@keyframes hero-title-in {
  from { opacity: 0; filter: blur(12px); transform: translateY(20px); }
  to { opacity: 1; filter: blur(0); transform: none; }
}
@keyframes hero-note-in {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.material-story {
  height: 600dvh;
  position: relative;
  color: var(--blue-deep);
  background: #fff;
}
.material-story-sticky {
  height: 100dvh;
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.frame-corner {
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 2;
  border-color: rgb(62 101 149 / .62);
  border-style: solid;
  pointer-events: none;
}
.frame-corner-one { top: 8.5%; left: 5%; border-width: 1px 0 0 1px; }
.frame-corner-two { top: 8.5%; right: 5%; border-width: 1px 1px 0 0; }
.frame-corner-three { right: 5%; bottom: 8.5%; border-width: 0 1px 1px 0; }
.frame-corner-four { left: 5%; bottom: 8.5%; border-width: 0 0 1px 1px; }

.material-lens {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  pointer-events: none;
}
.material-lens-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(var(--liquid-x, 0), var(--liquid-y, 0), 0) scale(var(--liquid-scale, 1));
  transform-origin: 50% 50%;
  will-change: transform;
}

.material-steps {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  pointer-events: none;
}
.material-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s ease, visibility 0s linear .38s;
}
.material-step.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .38s ease, visibility 0s;
}
.material-step-intro {
  display: grid;
  place-items: center;
}
.material-step-intro p,
.material-step-copy > p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgb(15 47 82 / .25);
}
.material-step-copy {
  width: min(285px, 24vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 1px 18px rgb(15 47 82 / .2);
}
.material-step-left .material-step-copy { left: 20%; text-align: center; }
.material-step-right .material-step-copy { right: 20%; text-align: left; }
.material-step-copy::before,
.material-step-copy::after {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgb(255 255 255 / .65);
}
.material-step-left .material-step-copy::after { right: -42px; }
.material-step-left .material-step-copy::before,
.material-step-right .material-step-copy::after { display: none; }
.material-step-right .material-step-copy::before { left: -42px; }
.material-step-copy h2 {
  margin: 18px 0 26px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.material-step-copy > div {
  font-size: 16px;
  line-height: 1.45;
}
.material-actions {
  width: calc(100% - (var(--edge) * 2));
  position: absolute;
  left: var(--edge);
  bottom: 9%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.material-actions a {
  min-width: 320px;
  padding: 14px 22px;
  display: inline-flex;
  justify-content: center;
  color: var(--blue);
  background: rgb(255 255 255 / .96);
  border: 1px solid rgb(37 82 139 / .62);
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  pointer-events: auto;
  transition: color .25s ease, background-color .25s ease;
}
.material-actions a:last-child { color: #fff; background: var(--blue); }
.material-actions a:hover { color: #fff; background: var(--blue-deep); }

.material-path {
  height: 410dvh;
  position: relative;
  color: var(--ink);
  background: #fff;
}
.material-path-sticky {
  height: 100dvh;
  position: sticky;
  top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 18%, rgb(95 181 226 / .24), transparent 34%),
    #fff;
}
.material-path-heading {
  width: min(540px, 39vw);
  position: absolute;
  top: clamp(88px, 12vh, 130px);
  left: var(--edge);
  z-index: 3;
}
.material-path-heading h2 {
  margin: 0;
  font-size: clamp(62px, 7.1vw, 110px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.065em;
}
.material-path-heading p {
  max-width: 44ch;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.material-path-window { height: 100%; margin-left: 42vw; overflow: hidden; }
.material-path-rail {
  width: max-content;
  height: 100%;
  padding: 8vh 6vw 8vh 0;
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
  transform: translate3d(var(--path-x, 0), 0, 0);
  will-change: transform;
}
.path-card {
  width: clamp(430px, 43vw, 670px);
  min-height: 72vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.path-card figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #f7f9fc;
}
.path-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.path-card.path-feedstock img,
.path-card.path-pack img { object-fit: contain; mix-blend-mode: multiply; }
.path-card > div {
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 28px;
}
.path-card span {
  grid-row: 1 / 3;
  padding-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.path-card h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.035em;
}
.path-card p { max-width: 54ch; margin: 8px 0 0; font-size: 14px; line-height: 1.52; }

.rpet-principle {
  min-height: 100dvh;
  padding: clamp(88px, 11vw, 170px) var(--edge);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  color: #fff;
  background: var(--blue-deep);
}
.rpet-principle-copy > p,
.buyer-proof-heading > p:first-child,
.sustain-close > div > p {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rpet-principle h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(62px, 8.2vw, 126px);
  font-weight: 300;
  line-height: .86;
  letter-spacing: -.068em;
}
.rpet-principle-body {
  max-width: 540px;
  margin: 58px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.rpet-principle-body p { margin: 0; font-size: 15px; line-height: 1.55; }
.rpet-principle figure {
  min-height: 70vh;
  margin: 0;
  overflow: hidden;
}
.rpet-principle video { width: 100%; height: 100%; min-height: 70vh; display: block; object-fit: cover; }

.buyer-proof {
  padding: clamp(100px, 13vw, 200px) var(--edge);
  color: var(--ink);
  background: #fff;
}
.buyer-proof-heading { max-width: 980px; }
.buyer-proof-heading h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.065em;
}
.buyer-proof-heading > p:last-child { max-width: 58ch; margin: 40px 0 0; font-size: 17px; line-height: 1.55; }
.buyer-proof-grid {
  margin-top: clamp(80px, 10vw, 150px);
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.buyer-proof-grid article { min-height: 330px; padding: 26px 0 0; display: flex; flex-direction: column; }
.buyer-proof-grid span { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.buyer-proof-grid h3 {
  max-width: 12ch;
  margin: auto 0 26px;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.04em;
}
.buyer-proof-grid p { max-width: 43ch; margin: 0; font-size: 14px; line-height: 1.55; }
.buyer-proof-grid article > a {
  width: max-content;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 12px;
}
.buyer-proof-library {
  width: max-content;
  margin-top: 58px;
  padding-bottom: 5px;
  display: inline-flex;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 14px;
}

.sustain-close {
  min-height: 76dvh;
  padding: clamp(90px, 12vw, 180px) var(--edge);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  color: #fff;
  background: linear-gradient(128deg, #3652a3 0%, var(--blue) 52%, #193e78 100%);
}
.sustain-close h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 110px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.065em;
}
.sustain-close > a {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgb(255 255 255 / .72);
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}
.sustain-close > a:hover,
.sustain-close > a:focus-visible { color: var(--blue-deep); background: #fff; transform: translateY(-2px); }
.sustain-close > a:active { transform: translateY(1px); }

.sustain-footer {
  padding: clamp(70px, 8vw, 120px) var(--edge) 24px;
  color: #fff;
  background: var(--blue-dark);
}
.sustain-footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 60px;
}
.sustain-footer-main > div img { width: 48px; }
.sustain-footer-main h2 { margin: 22px 0 0; font-size: clamp(34px, 4vw, 60px); font-weight: 300; letter-spacing: -.05em; }
.sustain-footer-main p { max-width: 34ch; margin: 22px 0 0; font-size: 13px; line-height: 1.5; opacity: .72; }
.sustain-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 14px; }
.sustain-footer nav a { transition: opacity .25s ease; }
.sustain-footer nav a:hover,
.sustain-footer nav a:focus-visible { opacity: .62; }
.sustain-footer-bottom {
  margin-top: 90px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / .2);
  font-size: 11px;
  text-transform: uppercase;
}
.sustain-wa {
  min-height: 42px;
  padding: 0 17px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid rgb(18 54 83 / .2);
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 12px 34px rgb(14 48 82 / .18);
  transition: opacity .25s ease;
}
.material-story-active .sustain-wa { opacity: 0; pointer-events: none; }

:focus-visible { outline: 2px solid #76bce4; outline-offset: 4px; }

@media (max-width: 980px) {
  .sustain-tools > a { display: none; }
  .sustain-hero-rail { grid-template-columns: 1fr auto; }
  .sustain-hero-rail nav { display: none; }
  .material-path-window { margin-left: 35vw; }
  .material-path-heading { width: 34vw; }
  .rpet-principle { grid-template-columns: 1fr; }
  .rpet-principle h2 { max-width: 10ch; }
  .rpet-principle-body { margin-left: 0; }
  .rpet-principle figure { min-height: 58vh; }
  .rpet-principle video { min-height: 58vh; }
}

@media (max-width: 767px) {
  :root { --header: 58px; --edge: 20px; }
  .sustain-brand img { width: 25px; height: 29px; }
  .sustain-brand strong { font-size: 20px; }
  .sustain-menu { padding-top: 42px; align-items: start; }
  .sustain-menu a { font-size: clamp(38px, 12vw, 58px); }

  .sustain-hero { min-height: 86dvh; padding-inline: 20px; }
  .sustain-hero-media img { object-position: 58% center; }
  .sustain-hero h1 { max-width: 7ch; font-size: clamp(48px, 15vw, 70px); }
  .sustain-hero-note { bottom: 68px; font-size: 12px; }
  .sustain-hero-rail { min-height: 52px; padding-inline: 20px; font-size: 9px; }
  .sustain-hero-rail > div i { width: 18px; }

  .material-story { height: auto; }
  .material-story-sticky {
    height: auto;
    min-height: 0;
    padding: 74px 20px;
    position: relative;
    display: block;
  }
  .frame-corner { display: none; }
  .material-lens {
    width: calc(100% + 40px);
    height: 360px;
    margin-inline: -20px;
    position: relative;
    inset: auto;
  }
  .material-lens-video { transform: scale(1.48); }
  .material-steps {
    padding: 64px 0 18px;
    position: relative;
    display: grid;
    gap: 58px;
    color: var(--blue-deep);
  }
  .material-step,
  .material-step.is-active {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
  }
  .material-step-intro { display: none; }
  .material-step-copy,
  .material-step-left .material-step-copy,
  .material-step-right .material-step-copy {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    text-align: left;
    text-shadow: none;
    transform: none;
  }
  .material-step-copy::before,
  .material-step-copy::after { display: none; }
  .material-step-copy > p { font-size: 12px; text-shadow: none; }
  .material-step-copy h2 { margin: 16px 0 18px; font-size: 30px; }
  .material-step-copy > div { font-size: 15px; }
  .material-actions { display: none; }

  .material-path { height: auto; }
  .material-path-sticky { height: auto; position: relative; overflow: visible; }
  .material-path-heading {
    width: auto;
    padding: 90px 20px 56px;
    position: relative;
    top: auto;
    left: auto;
  }
  .material-path-heading h2 { font-size: clamp(55px, 17vw, 76px); }
  .material-path-heading p { font-size: 15px; }
  .material-path-window { height: auto; margin: 0; overflow: visible; }
  .material-path-rail {
    width: auto;
    height: auto;
    padding: 0 20px 90px;
    display: grid;
    gap: 66px;
    transform: none !important;
  }
  .path-card { width: 100%; min-height: 0; display: block; }
  .path-card figure { aspect-ratio: 1.15; }
  .path-card > div { grid-template-columns: 82px 1fr; }
  .path-card h3 { font-size: 30px; }

  .rpet-principle { min-height: 0; padding: 90px 20px; gap: 60px; }
  .rpet-principle h2 { font-size: clamp(57px, 17vw, 78px); }
  .rpet-principle-body { margin-top: 42px; grid-template-columns: 1fr; gap: 20px; }
  .rpet-principle figure,
  .rpet-principle video { min-height: 52vh; }

  .buyer-proof { padding: 96px 20px; }
  .buyer-proof-heading h2 { font-size: clamp(58px, 17vw, 80px); }
  .buyer-proof-heading > p:last-child { margin-top: 30px; font-size: 16px; }
  .buyer-proof-grid { margin-top: 70px; grid-template-columns: 1fr; gap: 50px; }
  .buyer-proof-grid article { min-height: 250px; border-bottom: 1px solid var(--line); }
  .buyer-proof-library { width: 100%; justify-content: space-between; }

  .sustain-close { min-height: 82dvh; padding: 92px 20px 42px; grid-template-columns: 1fr; align-items: start; gap: 70px; }
  .sustain-close h2 { font-size: clamp(56px, 16vw, 76px); }
  .sustain-close > a { justify-self: start; }

  .sustain-footer { padding: 76px 20px 22px; }
  .sustain-footer-main { grid-template-columns: 1fr; gap: 54px; }
  .sustain-footer-bottom { margin-top: 70px; align-items: flex-start; flex-direction: column; }
  .sustain-wa { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .material-story { height: auto; }
  .material-story-sticky {
    height: auto;
    min-height: 100dvh;
    padding: 100px var(--edge);
    position: relative;
    display: block;
  }
  .frame-corner { display: none; }
  .material-lens {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    inset: auto;
  }
  .material-lens-video { transform: scale(1.18); }
  .material-steps {
    padding: 70px 0 0;
    position: relative;
    display: grid;
    gap: 52px;
    color: var(--blue-deep);
  }
  .material-step,
  .material-step.is-active {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
  }
  .material-step-intro { display: none; }
  .material-step-copy,
  .material-step-left .material-step-copy,
  .material-step-right .material-step-copy {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    text-align: left;
    text-shadow: none;
    transform: none;
  }
  .material-step-copy::before,
  .material-step-copy::after,
  .material-actions { display: none; }
  .material-path { height: auto; }
  .material-path-sticky { height: auto; position: relative; }
  .material-path-heading { position: relative; }
  .material-path-window { margin: 0; }
  .material-path-rail { width: auto; height: auto; padding: 40px var(--edge) 100px; display: grid; transform: none !important; }
  .path-card { width: 100%; }
}
