/* scroll-story.css — Cinematic scroll layer, refined */

:root {
  --story-bg:        #030912;
  --story-cyan:      #00c8ff;
  --story-surf:      rgba(255,255,255,0.03);
  --story-border:    rgba(255,255,255,0.07);
  --story-border-cx: rgba(0,200,255,0.18);
  --story-txt:       rgba(255,255,255,0.92);
  --story-txt-dim:   rgba(255,255,255,0.46);
  --story-blur:      blur(24px);
}

/* ─── Ambient — one orb per section, barely perceptible ── */

.story-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.story-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.story-orb--a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,200,255,0.5) 0%, transparent 70%);
  top: -160px; right: -100px;
  opacity: 0.08;
  animation: story-drift 26s ease-in-out infinite;
}

.story-orb--c {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, transparent 70%);
  top: -100px; left: 6%;
  opacity: 0.07;
  animation: story-drift 30s ease-in-out infinite;
  animation-delay: -11s;
}

/* translate-only — no scale, no composite jitter */
@keyframes story-drift {
  0%, 100% { transform: translate(0, 0); }
  38%       { transform: translate(22px, -28px); }
  70%       { transform: translate(-14px, 18px); }
}

/* ─── Badge ─────────────────────────────────────── */

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.story-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: story-dot 4s ease-in-out infinite;
}

/* slow opacity-only pulse — barely noticeable */
@keyframes story-dot {
  0%, 60%, 100% { opacity: 0.85; }
  30%            { opacity: 0.25; }
}

.story-badge--cyan {
  background: rgba(0,200,255,0.07);
  border: 1px solid rgba(0,200,255,0.18);
  color: rgba(0,200,255,0.82);
}
.story-badge--cyan .story-badge-dot  { background: var(--story-cyan); }

.story-badge--green {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.18);
  color: rgba(16,185,129,0.82);
}
.story-badge--green .story-badge-dot { background: #10b981; }

.story-badge--purple {
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.20);
  color: rgba(167,139,250,0.86);
}
.story-badge--purple .story-badge-dot { background: #a78bfa; }

/* ─── Scroll reveals ─────────────────────────────── */

html.story-reveal-ready .story-section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

html.story-reveal-ready .story-section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.story-reveal-ready .story-section-reveal[data-delay="1"] { transition-delay: 0.06s; }
html.story-reveal-ready .story-section-reveal[data-delay="2"] { transition-delay: 0.13s; }
html.story-reveal-ready .story-section-reveal[data-delay="3"] { transition-delay: 0.20s; }
html.story-reveal-ready .story-section-reveal[data-delay="4"] { transition-delay: 0.30s; }
html.story-reveal-ready .story-section-reveal[data-delay="5"] { transition-delay: 0.42s; }

/* ─── Wave dividers ─────────────────────────────── */

.story-wave {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  margin-top: -1px;
  margin-bottom: -1px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.story-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.story-wave--flip {
  transform: scaleY(-1);
  margin-top: -1px;
  margin-bottom: -1px;
}

/* ─── Problem → Solution section ────────────────── */

.story-ps-section {
  position: relative;
  padding: 88px 0 96px;
  background: var(--story-bg);
  color: var(--story-txt);
  overflow: hidden;
}

.story-ps-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.story-ps-left h2 {
  margin: 0 0 28px;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--story-txt);
}

.story-problem-list {
  display: grid;
  gap: 10px;
}

/* No backdrop-filter on list items — clean, flat */
.story-problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--story-border);
  border-radius: 14px;
  background: var(--story-surf);
}

.story-problem-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0,200,255,0.07);
  border: 1px solid rgba(0,200,255,0.11);
  color: rgba(0,200,255,0.75);
}

.story-problem-item strong {
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 3px;
}

.story-problem-item p {
  margin: 0;
  color: var(--story-txt-dim);
  font-size: 13px;
  line-height: 1.52;
}

/* Solution card — single border, no shadow cascade */
.story-solution-card {
  padding: 28px 24px;
  border: 1px solid var(--story-border-cx);
  border-radius: 20px;
  background: var(--story-surf);
  -webkit-backdrop-filter: var(--story-blur);
  backdrop-filter: var(--story-blur);
  text-align: center;
}

@supports not (backdrop-filter: blur(1px)) {
  .story-solution-card {
    background: rgba(8, 16, 38, 0.95);
  }
}

.story-solution-img {
  margin: 8px auto 18px;
  max-width: 180px;
}

/* neutral drop-shadow — no colored glow */
.story-solution-img img {
  width: 100%;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.42));
}

.story-solution-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--story-txt);
}

.story-solution-card > p {
  margin: 0 auto 18px;
  color: var(--story-txt-dim);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 280px;
}

.story-solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.story-solution-point {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid rgba(0,200,255,0.13);
  border-radius: 999px;
  background: rgba(0,200,255,0.04);
  color: rgba(255,255,255,0.60);
  font-size: 11.5px;
  font-weight: 500;
}

.story-solution-point::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(0,200,255,0.6);
  flex-shrink: 0;
}

.story-solution-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
}

.story-solution-actions .button.secondary {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.13);
}

.story-solution-actions .button.secondary:hover {
  background: rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.90);
  border-color: rgba(0,200,255,0.28);
}

/* ─── AI Teaser section ──────────────────────────── */

.story-ai-section {
  position: relative;
  padding: 88px 0 96px;
  background: var(--story-bg);
  color: var(--story-txt);
  overflow: hidden;
}

.story-ai-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-ai-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.8vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--story-txt);
}

.story-ai-copy p {
  margin: 0 0 28px;
  color: var(--story-txt-dim);
  font-size: clamp(14.5px, 1.4vw, 17px);
  line-height: 1.65;
  max-width: 440px;
}

.story-ai-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.story-ai-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.story-ai-stat strong {
  font-size: clamp(1.375rem, 2.3vw, 1.875rem);
  font-weight: 750;
  color: rgba(0,200,255,0.88);
  letter-spacing: -0.03em;
  line-height: 1;
}

.story-ai-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* AI rings visual — calm, intelligence, not sci-fi */
.story-ai-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

/* Single background glow — very subtle */
.story-ai-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.story-ai-rings {
  position: relative;
  width: 240px; height: 240px;
}

/* Opacity-only breathe — no scale, perfectly calm */
.story-ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,0.16);
  animation: ai-ring-breathe 7s ease-in-out infinite;
}

.story-ai-ring--1 { inset: 0;     animation-delay: 0s; }
.story-ai-ring--2 { inset: -34px; animation-delay: 1.8s; }

@keyframes ai-ring-breathe {
  0%, 100% { opacity: 0.13; }
  50%       { opacity: 0.42; }
}

/* Core — clean border, no gradient fill, no shadow stack */
.story-ai-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 88px; height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,200,255,0.04);
  border: 1px solid rgba(0,200,255,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.story-ai-core-num {
  display: block;
  font-size: 28px;
  font-weight: 750;
  color: rgba(0,200,255,0.85);
  letter-spacing: -0.04em;
  line-height: 1;
}

.story-ai-core-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Data points — static size, slow opacity only, no box-shadow */
.story-ai-pt {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-origin: 0 0;
}

.story-ai-pt span {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,200,255,0.55);
  animation: ai-pt-breathe 9s ease-in-out infinite;
}

.story-ai-pt--1 { transform: rotate(0deg)   translateY(-188px); }
.story-ai-pt--2 { transform: rotate(90deg)  translateY(-188px); }
.story-ai-pt--3 { transform: rotate(180deg) translateY(-188px); }
.story-ai-pt--4 { transform: rotate(270deg) translateY(-188px); }

.story-ai-pt--1 span { animation-delay: 0s; }
.story-ai-pt--2 span { animation-delay: 2.25s; }
.story-ai-pt--3 span { animation-delay: 4.5s; }
.story-ai-pt--4 span { animation-delay: 6.75s; }

/* opacity-only, no scale transform */
@keyframes ai-pt-breathe {
  0%, 100% { opacity: 0.36; }
  50%       { opacity: 0.76; }
}

/* ─── Product tile lit state ─────────────────────── */

/* border-color only — no shadow addition */
.neo-home .showcase-tile.story-tile-lit {
  border-color: rgba(4,125,149,0.24);
  transition: border-color 0.6s ease;
}

/* ─── Hero video: pin to top so faces never crop on constrained heights ── */
.hero-video {
  object-position: center top;
}

/* ─── Cinematic product stage ─────────────────────── */

/* Key light from above — directional spotlight on dark stage */
.showcase-tile.dark {
  background-image: radial-gradient(ellipse 78% 50% at 50% -8%, rgba(0,200,255,0.09) 0%, transparent 60%);
}

/* Stage glow: single key light, positioned at product center of mass */
.showcase-tile.dark .tile-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 76% 66% at 50% 56%, rgba(0,200,255,0.18) 0%, rgba(0,100,200,0.05) 52%, transparent 70%);
  pointer-events: none;
  opacity: 0.78;
  z-index: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .showcase-tile.dark:hover .tile-visual::before { opacity: 1; }
}

/* img above stage glow */
.showcase-tile.dark .tile-visual img {
  position: relative;
  z-index: 1;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Float: one hero product only — reduces GPU compositing layers */
@media (hover: hover) {
  .neo-home .showcase-tile.wide.dark .tile-visual img {
    animation: product-float-showcase 12s ease-in-out infinite;
  }
  .neo-home .showcase-tile.dark:hover .tile-visual img,
  .neo-home .showcase-tile.wide.dark:hover .tile-visual img {
    animation: none;
    transform: translateY(-5px) scale(1.012);
  }
}

/* Category label: subdued, uppercase, editorial tracking */
.showcase-tile .tile-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* CTA link: restrained weight */
.showcase-tile .tile-link { font-weight: 500; }

/* ─── Light tiles: clean Apple-style cards (neo-home) ── */

@media (hover: hover) {
  .neo-home .showcase-tile:not(.dark):not(.water):not(.story-tile):hover .tile-visual img {
    transform: translateY(-5px) scale(1.012);
    transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}

/* Water tile: very soft ambient — lifestyle photo, real background, no heavy overlay */
.neo-home .showcase-tile.water .tile-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 62% 54% at 50% 55%, rgba(0,200,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .neo-home .showcase-tile.water:hover .tile-visual::before { opacity: 1; }
}

.neo-home .showcase-tile.water .tile-visual img {
  position: relative;
  z-index: 1;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .neo-home .showcase-tile.water:hover .tile-visual img {
    transform: translateY(-5px) scale(1.012);
  }
}

/* ::after vignette: only dark tiles — blends white product bg into #081b27; not needed on light tiles */
.neo-home .showcase-tile.dark .tile-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 74% at 50% 52%, transparent 28%, rgba(8,27,39,0.72) 60%, rgba(8,27,39,0.97) 84%);
  pointer-events: none;
  z-index: 2;
}
/* Wide dark tile: landscape product needs wider transparent zone */
.neo-home .showcase-tile.wide.dark .tile-visual::after {
  background: radial-gradient(ellipse 78% 72% at 50% 52%, transparent 30%, rgba(8,27,39,0.68) 58%, rgba(8,27,39,0.97) 82%);
}

/* ─── Solution card: floating product stage ───────── */

.story-solution-img {
  position: relative;
  max-width: 240px;
}

/* Radial halo spills 10% beyond product image — atmospheric light source */
.story-solution-img::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0,200,255,0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: stage-glow-breathe 4s ease-in-out infinite;
}

/* Product floats above stage halo — no will-change on masked element (Safari compat) */
.story-solution-img img {
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at 50% 50%,
    black 44%, rgba(0,0,0,0.48) 62%, transparent 82%);
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%,
    black 44%, rgba(0,0,0,0.48) 62%, transparent 82%);
  animation: product-float 7s ease-in-out infinite;
}

@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

@keyframes product-float-showcase {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes stage-glow-breathe {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 860px) {
  .story-ps-inner,
  .story-ai-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-ps-section  { padding: 68px 0 76px; }
  .story-ai-section  { padding: 68px 0 76px; }

  .story-ps-left h2  {
    font-size: clamp(1.375rem, 3.5vw, 1.875rem);
    line-height: 1.22;
  }

  /* Solution card: keep it from stretching too wide on portrait tablet */
  .story-solution-card { max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Rings: 190px for portrait tablet — outer radius = 95 + 52 = 147px → min-height 310px */
  .story-ai-visual   { min-height: 310px; order: -1; }
  .story-ai-rings    { width: 190px; height: 190px; }
  .story-ai-ring--2  { inset: -26px; }
  .story-ai-core     { width: 80px; height: 80px; }
  .story-ai-core-num { font-size: 24px; }

  .story-ai-copy h2  { line-height: 1.18; }
  .story-ai-copy p   { line-height: 1.70; }

  .story-ai-pt--1 { transform: rotate(0deg)   translateY(-147px); }
  .story-ai-pt--2 { transform: rotate(90deg)  translateY(-147px); }
  .story-ai-pt--3 { transform: rotate(180deg) translateY(-147px); }
  .story-ai-pt--4 { transform: rotate(270deg) translateY(-147px); }

  .story-ai-stats    { gap: 20px; }
  .story-ai-glow     { width: 220px; height: 220px; }

  /* Chrome mobile: compositing layer on showcase-tile blocks lazy-load proximity calc */
  .showcase-tile { will-change: auto; }
  /* GPU layer from drop-shadow can cause render failure on low-memory devices */
  .tile-visual img { filter: none; }
  /* story float + mask: disable on mobile */
  .story-solution-img img {
    -webkit-mask-image: none;
    mask-image: none;
    animation: none;
  }
  /* Disable hover depth transforms on touch devices */
  .neo-home .showcase-tile .tile-visual img { transition: none; }
}

/* ─── Tablet landscape: 861px – 1180px ──────────────── */

@media (min-width: 861px) and (max-width: 1180px) {
  .story-ps-section { padding: 72px 0 80px; }
  .story-ai-section { padding: 72px 0 80px; }

  .story-ps-inner { gap: 44px; }
  .story-ai-inner { gap: 44px; }

  /* Extra right padding clears the fixed FAB (right: 18px, 58px wide) */
  .story-ai-section .section-inner { padding-right: 80px; }

  .story-ps-left h2 {
    line-height: 1.22;
    margin-bottom: 24px;
  }

  .story-ai-copy h2 {
    font-size: clamp(1.75rem, 3.0vw, 2.375rem);
    line-height: 1.16;
    margin-bottom: 16px;
  }

  .story-ai-copy p {
    line-height: 1.68;
    margin-bottom: 24px;
  }

  .story-ai-stats {
    gap: 22px;
    margin-bottom: 28px;
  }

  .story-ai-visual { min-height: 320px; }
  .story-ai-glow   { width: 240px; height: 240px; }

  /* FAB: reduced scale at rest, restores on hover/focus — a11y preserved */
  .floating-actions {
    transform: scale(0.85);
    transform-origin: bottom right;
    transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .floating-actions:hover,
  .floating-actions:focus-within {
    transform: scale(1);
  }
}

@media (max-width: 560px) {
  .story-ps-section  { padding: 52px 0 60px; }
  .story-ai-section  { padding: 52px 0 60px; }

  .story-ps-inner    { gap: 24px; }
  .story-ai-inner    { gap: 24px; }

  .story-ps-left h2  {
    font-size: 1.3125rem;
    margin-bottom: 20px;
  }

  .story-problem-list { gap: 8px; }

  .story-problem-item {
    padding: 13px 14px;
    gap: 11px;
  }

  .story-problem-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
  }

  .story-problem-item strong { font-size: 13.5px; }

  .story-solution-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .story-solution-img    { max-width: 140px; margin-bottom: 14px; }
  .story-solution-points { gap: 5px; margin-bottom: 16px; }

  .story-solution-actions {
    flex-direction: column;
    gap: 8px;
  }

  .story-solution-actions .button {
    width: 100%;
    justify-content: center;
  }

  .story-ai-copy h2  { font-size: 1.4375rem; }
  .story-ai-copy p   { font-size: 14px; }
  .story-ai-stats    { gap: 16px; }
  .story-ai-stat strong { font-size: 1.3125rem; }

  /* 130px rings, outer radius = 65 + 36 = 101px → visual needs ~220px */
  .story-ai-visual   { min-height: 220px; order: -1; }
  .story-ai-rings    { width: 130px; height: 130px; }
  .story-ai-ring--2  { inset: -18px; }
  .story-ai-core     { width: 56px; height: 56px; }
  .story-ai-core-num { font-size: 17px; }

  /* translateY = outer ring radius from center = 65 + 18 = 83px */
  .story-ai-pt--1 { transform: rotate(0deg)   translateY(-83px); }
  .story-ai-pt--2 { transform: rotate(90deg)  translateY(-83px); }
  .story-ai-pt--3 { transform: rotate(180deg) translateY(-83px); }
  .story-ai-pt--4 { transform: rotate(270deg) translateY(-83px); }
}

/* ─── Safari: overflow: clip fixes sticky+backdrop-filter clip-boundary bug ── */

/* clip = same visual as hidden but no BFC; orbs are hover:hover-gated so safe globally */
@supports (overflow: clip) {
  .immersive-hero {
    overflow: clip;
  }
}

/* ─── Reduced motion ─────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .story-badge-dot          { animation: none !important; }
  .story-orb                { animation: none !important; }
  .story-ai-ring            { animation: none !important; opacity: 0.22 !important; }
  .story-ai-pt span         { animation: none !important; opacity: 0.50 !important; }
  .story-solution-img img   { animation: none !important; }
  .story-solution-img::before { animation: none !important; }
  .neo-home .showcase-tile.dark .tile-visual img { animation: none !important; }

  html.story-reveal-ready .story-section-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
