/**
 * Landing Athena — registre immersif (aligné athena-ds / design-system).
 * Valeurs = tokens DS ; fallbacks si design-system.css n’est pas chargé.
 */
.home-impact {
  --hi-ink: var(--ds-color-ink, #f4f4f0);
  --hi-muted: var(--ds-color-ink-muted, rgba(244, 244, 240, 0.55));
  --hi-dim: var(--ds-color-ink-dim, rgba(244, 244, 240, 0.28));
  --hi-accent: var(--ds-color-accent, #34d399);
  --hi-field: var(--ds-color-field, #0b3d2e);
  --hi-field-deep: var(--ds-color-field-deep, #06261c);
  --hi-void: var(--ds-color-void, #050505);
  --hi-paper: var(--ds-color-paper, #f7f7f4);
  --hi-rule: rgba(15, 23, 42, 0.1);
  font-feature-settings: "ss01" on, "kern" on;
}

.home-impact .hi-display {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.home-impact .hi-display-xl {
  font-size: clamp(3.25rem, 14vw, 9.5rem);
}

.home-impact .hi-display-lg {
  font-size: clamp(2.5rem, 9vw, 6.5rem);
}

.home-impact .hi-display-md {
  font-size: clamp(2rem, 6vw, 4.25rem);
}

.home-impact .hi-kicker {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-impact .hi-body {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.home-impact .hi-body-sm {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Alias rétrocompat : plus de monospace « code » */
.home-impact .hi-mono {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.home-impact .hi-section {
  padding-block: clamp(4.5rem, 12vh, 9rem);
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.home-impact .hi-hero-brand {
  font-size: clamp(4.5rem, 18vw, 12rem);
  letter-spacing: -0.06em;
}

/* Glitch HUD — titre Athena */
.home-impact .hi-glitch {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.home-impact .hi-glitch__main {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.home-impact .hi-glitch__dot {
  color: var(--hi-accent);
  text-shadow: 0 0 18px rgba(52, 211, 153, 0.45);
}

.home-impact .hi-glitch::before,
.home-impact .hi-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: inherit;
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.home-impact .hi-glitch::before {
  color: #67e8f9;
  text-shadow: -2px 0 #67e8f9;
  clip-path: inset(0 0 58% 0);
  opacity: 0;
}

.home-impact .hi-glitch::after {
  color: #f472b6;
  text-shadow: 2px 0 #f472b6;
  clip-path: inset(42% 0 0 0);
  opacity: 0;
}

.home-impact .hi-kicker-glitch {
  position: relative;
  display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
  .home-impact .hi-glitch::before {
    animation: hi-glitch-top 7.5s steps(1, end) infinite;
    animation-delay: 1.1s;
  }

  .home-impact .hi-glitch::after {
    animation: hi-glitch-bottom 7.5s steps(1, end) infinite;
    animation-delay: 1.1s;
  }

  .home-impact .hi-glitch__dot {
    animation: hi-glitch-dot 7.5s ease-in-out infinite;
    animation-delay: 1.1s;
  }

  .home-impact .hi-glitch__main {
    animation: hi-glitch-main 7.5s steps(1, end) infinite;
    animation-delay: 1.1s;
  }

  .home-impact .hi-kicker-glitch {
    animation: hi-kicker-flicker 7.5s steps(1, end) infinite;
    animation-delay: 0.9s;
  }

  .home-impact h1.hi-glitch.hi-reveal {
    animation:
      hi-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both,
      hi-glitch-skew 7.5s steps(1, end) 1.2s infinite;
  }

  .home-impact .hi-glitch:hover::before,
  .home-impact .hi-glitch:hover::after,
  .home-impact .hi-glitch:hover .hi-glitch__main,
  .home-impact .hi-glitch:hover .hi-glitch__dot {
    animation-duration: 2.2s;
  }

  .home-impact h1.hi-glitch.hi-reveal:hover {
    animation:
      hi-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both,
      hi-glitch-skew 2.2s steps(1, end) infinite;
  }
}

@keyframes hi-glitch-skew {
  0%,
  88%,
  100% {
    transform: none;
    filter: none;
  }
  89% {
    transform: skewX(-8deg) translateX(3px);
    filter: contrast(1.15) brightness(1.08);
  }
  90% {
    transform: skewX(6deg) translateX(-4px);
  }
  91% {
    transform: none;
    filter: none;
  }
  94% {
    transform: translateX(2px);
  }
  95% {
    transform: none;
  }
}

@keyframes hi-glitch-main {
  0%,
  88%,
  91%,
  94%,
  100% {
    transform: none;
    opacity: 1;
  }
  89% {
    transform: translateX(4px);
    opacity: 0.92;
  }
  90% {
    transform: translateX(-6px);
    opacity: 0.85;
  }
  94.5% {
    opacity: 0.7;
  }
}

@keyframes hi-glitch-top {
  0%,
  88%,
  92%,
  100% {
    opacity: 0;
    transform: none;
    clip-path: inset(0 0 58% 0);
  }
  89% {
    opacity: 0.85;
    transform: translate(-6px, -1px);
    clip-path: inset(12% 0 62% 0);
  }
  90% {
    opacity: 0.7;
    transform: translate(8px, 1px);
    clip-path: inset(8% 0 55% 0);
  }
  91% {
    opacity: 0;
    transform: none;
  }
  94% {
    opacity: 0.55;
    transform: translate(-3px, 0);
    clip-path: inset(35% 0 40% 0);
  }
  95% {
    opacity: 0;
  }
}

@keyframes hi-glitch-bottom {
  0%,
  88%,
  92%,
  100% {
    opacity: 0;
    transform: none;
    clip-path: inset(42% 0 0 0);
  }
  89% {
    opacity: 0.8;
    transform: translate(7px, 1px);
    clip-path: inset(55% 0 8% 0);
  }
  90% {
    opacity: 0.65;
    transform: translate(-9px, -1px);
    clip-path: inset(48% 0 12% 0);
  }
  91% {
    opacity: 0;
    transform: none;
  }
  94.2% {
    opacity: 0.5;
    transform: translate(4px, 0);
    clip-path: inset(60% 0 5% 0);
  }
  95% {
    opacity: 0;
  }
}

@keyframes hi-glitch-dot {
  0%,
  87%,
  92%,
  100% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(52, 211, 153, 0.45);
  }
  88% {
    opacity: 0.25;
    text-shadow: none;
  }
  89% {
    opacity: 1;
    color: #a7f3d0;
    text-shadow: -3px 0 #67e8f9, 3px 0 #f472b6, 0 0 22px rgba(52, 211, 153, 0.8);
  }
  90.5% {
    opacity: 0.4;
  }
  91% {
    opacity: 1;
    color: var(--hi-accent);
    text-shadow: 0 0 18px rgba(52, 211, 153, 0.45);
  }
}

@keyframes hi-kicker-flicker {
  0%,
  88%,
  91%,
  100% {
    opacity: 0.9;
    letter-spacing: 0.28em;
    text-shadow: none;
  }
  89% {
    opacity: 0.35;
    letter-spacing: 0.34em;
    text-shadow: 2px 0 rgba(103, 232, 249, 0.5);
  }
  90% {
    opacity: 1;
    letter-spacing: 0.24em;
    text-shadow: -2px 0 rgba(244, 114, 182, 0.45);
  }
}

.home-impact .hi-fade {
  mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
}

.home-impact .hi-rule-row {
  border-bottom: 1px solid var(--hi-rule);
}

.home-impact .hi-rule-row:last-child {
  border-bottom: 0;
}

.home-impact .hi-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-impact .hi-cta-solid {
  background: var(--hi-accent);
  color: #052e1c;
}

.home-impact .hi-cta-solid:hover {
  background: #6ee7b7;
}

.home-impact .hi-cta-ghost {
  border: 1px solid rgba(244, 244, 240, 0.28);
  color: var(--hi-ink);
  background: transparent;
}

.home-impact .hi-cta-ghost:hover {
  border-color: rgba(244, 244, 240, 0.55);
  background: rgba(244, 244, 240, 0.06);
}

.home-impact .hi-cta-ink {
  background: #0f172a;
  color: #f8fafc;
}

.home-impact .hi-cta-ink:hover {
  background: #1e293b;
}

.home-impact .hi-cta-ghost-ink {
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #0f172a;
  background: transparent;
}

.home-impact .hi-cta-ghost-ink:hover {
  border-color: rgba(5, 150, 105, 0.45);
  background: rgba(5, 150, 105, 0.06);
  color: #047857;
}

@media (prefers-reduced-motion: no-preference) {
  .home-impact .hi-reveal {
    animation: hi-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .home-impact .hi-reveal-delay {
    animation-delay: 0.12s;
  }
}

@keyframes hi-rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter — section accueil */
.home-impact .hi-newsletter__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .home-impact .hi-newsletter__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
}

.home-impact .hi-newsletter__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 28rem;
}

.home-impact .hi-newsletter__highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
}

.home-impact .hi-newsletter__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #059669;
}

.home-impact .hi-newsletter__panel {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.home-impact .hi-newsletter__status {
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  padding: 1rem 1.1rem;
}

.home-impact .hi-newsletter__status--ok {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #064e3b;
}

.home-impact .hi-newsletter__status--error {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #881337;
}

.home-impact .hi-newsletter__status-title {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-impact .hi-newsletter__status-text {
  margin: 0.45rem 0 0;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.6;
}

.home-impact .hi-newsletter__form {
  display: grid;
  gap: 1.25rem;
}

.home-impact .hi-newsletter__field {
  display: grid;
  gap: 0.45rem;
}

.home-impact .hi-newsletter__label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
}

.home-impact .hi-newsletter__input {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.85rem 1rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #0f172a;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-impact .hi-newsletter__input::placeholder {
  color: #94a3b8;
}

.home-impact .hi-newsletter__input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 1px #059669;
}

.home-impact .hi-newsletter__input:disabled {
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}

.home-impact .hi-newsletter__input.is-invalid {
  border-color: #e11d48;
  box-shadow: 0 0 0 1px #e11d48;
}

.home-impact .hi-newsletter__help,
.home-impact .hi-newsletter__privacy,
.home-impact .hi-newsletter__empty-hint {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  color: #64748b;
}

.home-impact .hi-newsletter__field-error {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #be123c;
}

.home-impact .hi-newsletter__submit {
  width: 100%;
}

.home-impact .hi-newsletter__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.home-impact .hi-newsletter__submit.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.home-impact .hi-newsletter__retry {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-impact .hi-newsletter__retry:hover {
  color: #047857;
}

/* Contrôles audio / lecture hero */
.home-impact .hi-media-chrome {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.55), rgba(0, 0, 0, 0.72)),
    rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-impact .hi-media-chrome__progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.home-impact .hi-media-chrome__progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.35), #34d399 70%, #a7f3d0);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.35);
  transition: transform 0.2s linear;
  will-change: transform;
}

.home-impact .hi-media-chrome__progress.is-active .hi-media-chrome__progress-fill {
  opacity: 1;
}

.home-impact .hi-media-chrome__deck {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.home-impact .hi-media-pager {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.home-impact .hi-media-pager__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.15s ease, background 0.15s ease;
}

.home-impact .hi-media-pager__nav:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.home-impact .hi-media-pager__nav:focus-visible,
.home-impact .hi-av__btn:focus-visible {
  outline: 1px solid rgba(52, 211, 153, 0.7);
  outline-offset: 2px;
}

.home-impact .hi-media-pager__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 0.5rem;
  padding-inline: 0.15rem;
}

.home-impact .hi-media-dot {
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: width 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-impact .hi-media-dot.is-active {
  width: 1.1rem;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.45);
}

.home-impact .hi-media-clock {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 6.75rem;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.home-impact .hi-media-clock__live {
  position: relative;
  display: inline-flex;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.25);
}

.home-impact .hi-media-clock__live::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(52, 211, 153, 0.45);
  opacity: 0.7;
  animation: hi-media-pulse 1.8s ease-out infinite;
}

.home-impact .hi-media-clock__time {
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
}

.home-impact .hi-av {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.4rem 0.2rem 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.42)),
    rgba(6, 38, 28, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(16, 185, 129, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.25);
}

.home-impact .hi-av__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.home-impact .hi-av__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.home-impact .hi-av__btn[data-state="playing"] {
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.22);
}

.home-impact .hi-av__btn--mute[aria-pressed="false"] {
  color: #34d399;
}

.home-impact .hi-av__icon {
  width: 0.95rem;
  height: 0.95rem;
}

.home-impact .hi-av__audio {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: 0.1rem;
  padding-left: 0.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.home-impact .hi-av__vol-wrap {
  display: flex;
  align-items: center;
  padding-inline: 0.3rem 0.4rem;
}

.home-impact .hi-av__vol {
  -webkit-appearance: none;
  appearance: none;
  width: 4.75rem;
  height: 2px;
  margin: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.home-impact .hi-av__vol::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(
    90deg,
    #34d399 var(--hi-av-pct, 0%),
    rgba(255, 255, 255, 0.16) var(--hi-av-pct, 0%)
  );
}

.home-impact .hi-av__vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border: 1px solid rgba(52, 211, 153, 0.9);
  background: #050505;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45), 0 0 8px rgba(52, 211, 153, 0.25);
  transition: transform 0.12s ease;
}

.home-impact .hi-av__vol:hover::-webkit-slider-thumb,
.home-impact .hi-av__vol:focus-visible::-webkit-slider-thumb {
  transform: scale(1.08);
}

.home-impact .hi-av__vol::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.home-impact .hi-av__vol::-moz-range-progress {
  height: 2px;
  background: #34d399;
}

.home-impact .hi-av__vol::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(52, 211, 153, 0.9);
  border-radius: 0;
  background: #050505;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.25);
}

@keyframes hi-media-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.75;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .home-impact .hi-media-chrome__deck {
    width: 100%;
    justify-content: space-between;
    gap: 0.65rem 0.75rem;
  }

  .home-impact .hi-media-clock {
    order: 3;
    min-width: 0;
    margin-right: auto;
  }

  .home-impact .hi-av {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .home-impact .hi-av__vol {
    width: 3.1rem;
  }

  .home-impact .hi-media-clock__time {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-impact .hi-media-chrome__progress-fill,
  .home-impact .hi-media-dot,
  .home-impact .hi-av__vol::-webkit-slider-thumb {
    transition: none;
  }

  .home-impact .hi-media-clock__live::after {
    animation: none;
    display: none;
  }
}

/* Carousel vidéo hero */
.home-impact .hi-hero-images {
  z-index: 0;
}

/* JPG au-dessus tant que la 1re frame vidéo n’est pas peinte */
.home-impact .hi-hero-images--waiting {
  z-index: 3;
}

.home-impact .hi-hero-images--standby {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.home-impact .hi-hero-videos {
  z-index: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.home-impact .hi-hero-videos--idle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-impact .hi-hero-vslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.home-impact .hi-hero-vslide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.home-impact .hi-hero-vslide__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  background-color: transparent;
  filter: saturate(1.05) contrast(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .home-impact .hi-hero-images--standby,
  .home-impact .hi-hero-videos,
  .home-impact .hi-hero-vslide {
    transition: none;
  }
}
