:root {
  color-scheme: dark;
}

.drone-premium-lab-page,
.aerial-story {
  --black: #050506;
  --black-soft: #0a0a0c;
  --ink: #f2f0ea;
  --muted: rgba(242, 240, 234, 0.6);
  --line: rgba(255, 255, 255, 0.14);
  --red: #e50914;
  --copy-eyebrow: 0;
  --copy-title-one: 0;
  --copy-title-two: 0;
  --copy-body: 0;
  --copy-cta: 0;
  --keywords-reveal: 0;
  --scroll-cue: 1;
  --story-ui: 1;
  --drone-stage-opacity: 1;
  --scene-light: 1;
  --grade-opacity: 1;
  --aerial-feed: 0;
  --drone-frame-y: 0%;
  --feed-panel-y: -104%;
  --feed-scale: 1.095;
  --feed-blur: 6px;
  --feed-brightness: 0.7;
  --feed-header: 0;
  --handoff-black: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: #050506;
}

body.drone-premium-lab-page {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
}

body.drone-premium-lab-page::selection {
  color: var(--black);
  background: var(--red);
}

.drone-premium-lab-page a {
  color: inherit;
}

.aerial-story__skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #000;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.aerial-story__skip:focus {
  transform: translateY(0);
}

.aerial-story {
  position: relative;
  min-height: 0;
  display: block;
  height: 620svh;
  padding: 0;
  background: var(--black);
}

.aerial-story__pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 46%, rgba(116, 127, 140, 0.1), transparent 35%),
    linear-gradient(126deg, #08080a 0%, #050506 58%, #030304 100%);
}

.aerial-story__stage,
.aerial-story__canvas,
.aerial-story__fallback,
.aerial-takeover,
.aerial-story__light,
.aerial-story__grade,
.aerial-body-wipe {
  position: absolute;
  inset: 0;
}

.aerial-feed-header {
  position: absolute;
  z-index: 8;
  top: clamp(112px, 17vh, 180px);
  left: clamp(24px, 5vw, 82px);
  width: min(70vw, 920px);
  opacity: var(--feed-header);
  pointer-events: none;
  transform: translate3d(0, calc((1 - var(--feed-header)) * 28px), 0);
  will-change: opacity, transform;
}

.aerial-feed-header p {
  margin: 0 0 clamp(17px, 2.5vh, 26px);
  color: var(--red);
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aerial-feed-header p::before {
  display: inline-block;
  width: 29px;
  height: 1px;
  margin: 0 13px 3px 0;
  background: currentColor;
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.55);
  content: "";
}

.aerial-feed-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(43px, 4.8vw, 78px);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.88;
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.62);
  text-transform: uppercase;
}

.aerial-feed-header h2 > span {
  display: block;
  width: max-content;
  max-width: 100%;
  clip-path: inset(0 calc((1 - var(--feed-header)) * 100%) 0 0);
  white-space: nowrap;
}

.aerial-feed-header em {
  display: inline-block;
  margin-left: 0.03em;
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 1.12em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
  transform: rotate(-3deg) translateY(0.02em);
}

.aerial-sound-control {
  position: absolute;
  z-index: 12;
  top: clamp(78px, 9vh, 96px);
  right: clamp(18px, 2.2vw, 36px);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(242, 240, 234, 0.64);
  background: rgba(5, 5, 6, 0.58);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: 800 8px/1 var(--font-body);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.aerial-sound-control:hover,
.aerial-sound-control:focus-visible,
.is-drone-sound-on .aerial-sound-control {
  color: var(--ink);
  border-color: rgba(229, 9, 20, 0.48);
  background: rgba(8, 8, 10, 0.78);
}

.aerial-sound-control:focus-visible {
  outline: 2px solid rgba(229, 9, 20, 0.72);
  outline-offset: 3px;
}

.aerial-sound-control__signal {
  width: 15px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.aerial-sound-control__signal i {
  width: 2px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.34);
  transform-origin: 50% 50%;
}

.is-drone-sound-on .aerial-sound-control__signal i {
  background: var(--red);
  animation: drone-sound-meter 880ms ease-in-out infinite alternate;
}

.is-drone-sound-on .aerial-sound-control__signal i:nth-child(2) {
  animation-delay: -310ms;
}

.is-drone-sound-on .aerial-sound-control__signal i:nth-child(3) {
  animation-delay: -610ms;
}

@keyframes drone-sound-meter {
  from { transform: scaleY(0.72); }
  to { transform: scaleY(3); }
}

.aerial-story__stage {
  z-index: 1;
}

.aerial-story__canvas {
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  opacity: var(--drone-stage-opacity);
  outline: 0;
  transform: translate3d(0, var(--drone-frame-y), 0);
  will-change: opacity, transform;
}

.aerial-takeover {
  z-index: 2;
  overflow: hidden;
  background:
    #020203
    url("assets/labs/drone-premium/v2/phase-03-takeover/placeholder-industrial-aerial.jpg")
    50% 50% / cover no-repeat;
  opacity: var(--aerial-feed);
  pointer-events: none;
  transform: translate3d(0, var(--feed-panel-y), 0);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.72);
  will-change: opacity, transform;
}

.aerial-takeover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.72);
  content: "";
  pointer-events: none;
}

.is-aerial-video-failed .aerial-takeover video {
  display: none;
}

.aerial-takeover video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  filter:
    brightness(var(--feed-brightness))
    contrast(1.14)
    saturate(0.72)
    blur(var(--feed-blur));
  transform: scale(var(--feed-scale));
  transform-origin: 50% 46%;
  will-change: filter, transform;
}

.aerial-takeover__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 27%, transparent 72%, rgba(0, 0, 0, 0.36)),
    radial-gradient(ellipse 90% 82% at 54% 47%, transparent 48%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.aerial-story__fallback {
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, var(--drone-frame-y), 0);
  will-change: opacity, transform;
}

.aerial-story__fallback img {
  position: absolute;
  right: -18%;
  width: min(78vw, 1160px);
  height: auto;
  filter: brightness(0.64) saturate(0.72) contrast(1.12);
  transform: translateY(2%);
}

.is-webgl-failed .aerial-story__fallback,
.is-reduced-motion .aerial-story__fallback {
  opacity: 1;
}

.is-webgl-failed .aerial-story__canvas,
.is-reduced-motion .aerial-story__canvas {
  display: none;
}

.aerial-story__light {
  z-index: 4;
  opacity: var(--scene-light);
  pointer-events: none;
  transform: translate3d(0, var(--drone-frame-y), 0);
  background:
    radial-gradient(ellipse 50% 62% at 77% 38%, rgba(181, 196, 212, 0.06), transparent 62%),
    radial-gradient(ellipse 23% 35% at 87% 66%, rgba(229, 9, 20, 0.024), transparent 73%);
  mix-blend-mode: screen;
}

.aerial-story__grade {
  z-index: 5;
  opacity: var(--grade-opacity);
  pointer-events: none;
  transform: translate3d(0, var(--drone-frame-y), 0);
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.86) 29%, rgba(5, 5, 6, 0.22) 58%, transparent 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.33), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.62)),
    radial-gradient(ellipse 90% 72% at 68% 47%, transparent 38%, rgba(0, 0, 0, 0.36) 100%);
}

.aerial-body-wipe {
  z-index: 6;
  background: #020203;
  opacity: var(--handoff-black);
  pointer-events: none;
  will-change: opacity;
}

.aerial-story__grade::after {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
}

.aerial-story__chapter {
  position: absolute;
  z-index: 8;
  top: clamp(28px, 5.4vh, 64px);
  left: clamp(24px, 5vw, 82px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(242, 240, 234, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  pointer-events: none;
  text-transform: uppercase;
  opacity: var(--story-ui);
}

.aerial-story__chapter > span {
  color: var(--red);
}

.aerial-story__chapter > i {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.17);
}

.aerial-story__chapter > small {
  font: inherit;
}

.aerial-copy {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: clamp(24px, 5vw, 82px);
  width: min(55vw, 800px);
  transform: translateY(-48%);
}

.aerial-copy__eyebrow {
  margin: 0 0 clamp(18px, 2.8vh, 30px);
  color: var(--red);
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  opacity: var(--copy-eyebrow);
  text-transform: uppercase;
  transform: translate3d(0, calc((1 - var(--copy-eyebrow)) * 18px), 0);
}

.aerial-copy__eyebrow::before {
  display: inline-block;
  width: 29px;
  height: 1px;
  margin: 0 13px 3px 0;
  background: currentColor;
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.55);
  content: "";
}

.aerial-copy__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(43px, 4.55vw, 74px);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.88;
  text-transform: uppercase;
}

.aerial-copy__title > span {
  display: block;
  width: max-content;
  max-width: 100%;
  clip-path: inset(0 calc((1 - var(--part-reveal)) * 100%) 0 0);
  opacity: var(--part-reveal);
  transform: translate3d(0, calc((1 - var(--part-reveal)) * 28px), 0);
  white-space: nowrap;
  will-change: clip-path, opacity, transform;
}

.aerial-copy__title > span:first-child {
  --part-reveal: var(--copy-title-one);
}

.aerial-copy__title > span:last-child {
  --part-reveal: var(--copy-title-two);
}

.aerial-copy__title em {
  display: inline-block;
  margin-left: 0.03em;
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 1.12em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
  transform: rotate(-3deg) translateY(0.02em);
}

.aerial-copy__body {
  width: min(100%, 555px);
  margin-top: clamp(24px, 3.8vh, 40px);
  color: rgba(242, 240, 234, 0.67);
  font-size: clamp(13px, 0.94vw, 16px);
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.52;
  opacity: var(--copy-body);
  transform: translate3d(0, calc((1 - var(--copy-body)) * 22px), 0);
}

.aerial-copy__body p {
  margin: 0;
}

.aerial-copy__body p + p {
  margin-top: 10px;
}

.aerial-copy__body p:first-child {
  color: rgba(242, 240, 234, 0.92);
  font-size: 1.08em;
  font-weight: 600;
}

.aerial-copy__body .aerial-copy__subjects {
  color: rgba(242, 240, 234, 0.42);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.65;
  text-transform: uppercase;
}

.aerial-copy__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  margin-top: clamp(20px, 3vh, 32px);
  padding: 0 2px 9px 0;
  border-bottom: 1px solid rgba(242, 240, 234, 0.36);
  color: rgba(242, 240, 234, 0.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: var(--copy-cta);
  pointer-events: none;
  text-decoration: none;
  text-transform: uppercase;
  transform: translate3d(0, calc((1 - var(--copy-cta)) * 18px), 0);
  transition: border-color 180ms ease, color 180ms ease;
}

.is-copy-ready .aerial-copy__cta {
  pointer-events: auto;
}

.aerial-copy__cta::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.aerial-copy__cta:hover,
.aerial-copy__cta:focus-visible {
  border-color: transparent;
  color: #fff;
}

.aerial-copy__cta:hover::after,
.aerial-copy__cta:focus-visible::after {
  transform: scaleX(1);
}

.aerial-copy__cta i {
  color: var(--red);
  font-size: 15px;
  font-style: normal;
}

.aerial-keywords {
  position: absolute;
  z-index: 8;
  right: clamp(28px, 4.2vw, 72px);
  bottom: clamp(34px, 5vh, 62px);
  width: min(31vw, 465px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  color: rgba(242, 240, 234, 0.46);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  list-style: none;
  opacity: var(--keywords-reveal);
  pointer-events: none;
  text-transform: uppercase;
  transform: translate3d(0, calc((1 - var(--keywords-reveal)) * 12px), 0);
}

.aerial-keywords li {
  position: relative;
}

.aerial-keywords li:not(:last-child)::after {
  margin-left: 16px;
  color: rgba(229, 9, 20, 0.62);
  content: "/";
}

.aerial-scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: clamp(30px, 4.8vh, 58px);
  left: clamp(24px, 5vw, 82px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(242, 240, 234, 0.34);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: var(--scroll-cue);
  pointer-events: none;
  text-transform: uppercase;
}

.aerial-scroll-cue i {
  position: relative;
  width: 62px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.aerial-scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--red);
  content: "";
  transform: translateX(-100%);
  animation: cue-line 1.9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes cue-line {
  0% { transform: translateX(-100%); }
  48%, 62% { transform: translateX(0); }
  100% { transform: translateX(105%); }
}

.aerial-render-state,
.aerial-lab-note {
  position: absolute;
  z-index: 9;
  right: clamp(18px, 2.2vw, 36px);
  margin: 0;
  color: rgba(242, 240, 234, 0.28);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
  pointer-events: none;
  text-transform: uppercase;
}

.aerial-render-state {
  top: clamp(22px, 3vh, 35px);
  color: rgba(229, 9, 20, 0.7);
  transition: opacity 300ms ease;
}

.is-drone-ready .aerial-render-state {
  opacity: 0;
}

.aerial-lab-note {
  top: clamp(42px, 5.6vh, 58px);
  opacity: var(--story-ui);
}

.aerial-after {
  min-height: 72svh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #050506;
}

.aerial-after > div {
  max-width: 880px;
  text-align: center;
}

.aerial-after span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aerial-after p {
  margin: 24px 0 36px;
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.aerial-after a {
  color: rgba(242, 240, 234, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.aerial-after a i {
  margin-left: 8px;
  color: var(--red);
  font-style: normal;
}

.reduced-motion-note,
.noscript-note {
  position: fixed;
  z-index: 120;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  margin: 0;
  padding: 10px 13px;
  color: rgba(242, 240, 234, 0.7);
  background: rgba(8, 8, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  line-height: 1.4;
}

.reduced-motion-note {
  display: none;
}

.is-reduced-motion .reduced-motion-note {
  display: block;
}

.is-reduced-motion .aerial-story {
  height: auto;
}

.is-reduced-motion .aerial-story__pin {
  position: relative;
  min-height: 100svh;
}

.is-reduced-motion .aerial-scroll-cue {
  display: none;
}

.is-reduced-motion .aerial-takeover,
.is-reduced-motion .aerial-body-wipe,
.is-reduced-motion .aerial-feed-header,
.is-reduced-motion .aerial-sound-control {
  display: none;
}

.is-reduced-motion .aerial-copy__eyebrow,
.is-reduced-motion .aerial-copy__title > span,
.is-reduced-motion .aerial-copy__body,
.is-reduced-motion .aerial-copy__cta,
.is-reduced-motion .aerial-keywords {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.is-reduced-motion .aerial-copy__cta {
  pointer-events: auto;
}

/* Shared production integration on /leistungen/foto-video/. */
.service-photo-video .aerial-story__skip {
  position: absolute;
  top: 12px;
  z-index: 1200;
}

.service-photo-video .aerial-story__chapter {
  top: clamp(94px, 11vh, 124px);
}

.service-photo-video .aerial-sound-control {
  top: clamp(92px, 10.5vh, 116px);
}

.service-photo-video .aerial-render-state {
  top: clamp(136px, 16vh, 164px);
}

@media (max-width: 1180px) {
  .aerial-copy {
    width: min(60vw, 700px);
  }

  .aerial-copy__title {
    font-size: clamp(40px, 4.55vw, 58px);
  }

  .aerial-keywords {
    display: none;
  }
}

@media (max-width: 760px) {
  .aerial-story {
    height: 540svh;
  }

  .aerial-story__pin {
    min-height: 640px;
  }

  .aerial-story__chapter {
    top: 22px;
    left: 20px;
  }

  .aerial-copy {
    top: 80px;
    left: 20px;
    width: calc(100% - 40px);
    transform: none;
  }

  .aerial-copy__eyebrow {
    margin-bottom: 16px;
  }

  .aerial-copy__title {
    font-size: clamp(36px, 11vw, 58px);
    line-height: 0.9;
  }

  .aerial-copy__title > span {
    white-space: normal;
  }

  .aerial-copy__body {
    width: min(100%, 520px);
    margin-top: 21px;
    font-size: clamp(12px, 3.15vw, 14px);
    line-height: 1.43;
  }

  .aerial-copy__body p + p {
    margin-top: 7px;
  }

  .aerial-copy__body .aerial-copy__subjects {
    display: none;
  }

  .aerial-copy__cta {
    min-height: 39px;
    margin-top: 14px;
    font-size: 8px;
  }

  .aerial-story__grade {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.84) 45%, rgba(5, 5, 6, 0.18) 70%, rgba(0, 0, 0, 0.46)),
      radial-gradient(ellipse 100% 70% at 68% 74%, transparent 28%, rgba(0, 0, 0, 0.38) 100%);
  }

  .aerial-story__fallback img {
    right: -48%;
    bottom: 4%;
    width: 142vw;
    transform: none;
  }

  .aerial-takeover video {
    object-position: 58% 50%;
  }

  .aerial-feed-header {
    top: 74px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .aerial-feed-header p {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .aerial-feed-header h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 0.9;
  }

  .aerial-feed-header h2 > span {
    white-space: normal;
  }

  .aerial-sound-control {
    top: 20px;
    right: 16px;
    min-height: 32px;
    padding-inline: 11px;
    font-size: 7px;
  }

  .aerial-scroll-cue {
    bottom: 22px;
    left: 20px;
  }

  .aerial-render-state,
  .aerial-lab-note {
    right: 16px;
  }

  .aerial-lab-note {
    display: none;
  }

  .service-photo-video .aerial-story__chapter,
  .service-photo-video .aerial-sound-control {
    top: 88px;
  }

  .service-photo-video .aerial-copy {
    top: 142px;
  }

  .service-photo-video .aerial-feed-header {
    top: 116px;
  }

  .service-photo-video .aerial-render-state {
    top: 130px;
  }
}

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

  .aerial-story {
    height: auto;
  }

  .aerial-story__pin {
    position: relative;
    min-height: 100svh;
  }

  .aerial-scroll-cue {
    display: none;
  }

  .aerial-copy__eyebrow,
  .aerial-copy__title > span,
  .aerial-copy__body,
  .aerial-copy__cta,
  .aerial-keywords {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .aerial-copy__cta {
    pointer-events: auto;
  }

  .aerial-scroll-cue i::after {
    animation: none;
  }

  .aerial-sound-control__signal i {
    animation: none;
  }
}
