/* ============================================================
   STORIES PITCH ENGINE — foglio di stile gym-agnostic
   Design DNA ereditato dal SalesDoc (glass UI iOS):
   Inter Tight + Instrument Serif (italic) + JetBrains Mono,
   orbs sfocati, glass card, squircle.
   Qui ADATTATO a mobile-first verticale, formato "storia IG".
   Il tema per-palestra (palette) vive in decks/<gym>/theme.css.
   ============================================================ */

:root {
  /* --- token base SalesDoc (sovrascrivibili dal theme.css) --- */
  --bg: #FAFAFA;
  --ink: #0A0A0A;
  --grey: #6B6B70;
  --line: rgba(10, 10, 15, 0.08);

  /* --- token brand di default (Sculptors li sovrascrive) --- */
  --brand: #EF7F1A;
  --brand-deep: #D96B0F;
  --brand-light: #FFA94D;
  --charcoal: #2B2928;
  --charcoal-2: #1A1817;
  --cream: #FAF7F2;
  --gold: #C9A961;
  --sand: #E5D098;
  --stone: #5C5957;
  --sand-border: #E8E2D9;

  /* --- geometria del "device" --- */
  --device-w: 420px;
  --device-h: 880px;
  --radius: 44px;
  --pad: 30px;          /* padding interno della storia */
  --safe-top: 78px;     /* spazio sotto progress + topbar */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: #0c0c0d;            /* backdrop attorno al telefono (desktop) */
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  /* su desktop: centra il device; su mobile: riempie */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* helper tipografici ereditati dal deck */
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.mono  { font-family: 'JetBrains Mono', monospace; font-weight: 500; letter-spacing: 0.04em; }

/* ============================================================
   DEVICE — il "telefono" che contiene la storia
   ============================================================ */
.device {
  position: relative;
  width: var(--device-w);
  height: var(--device-h);
  max-height: 100dvh;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.4),
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  isolation: isolate;
}

/* mobile reale: la storia diventa fullscreen senza cornice */
@media (max-width: 480px), (max-height: 740px) {
  body { background: #000; }
  .device {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ============================================================
   PROGRESS BAR (stile Instagram) + TOPBAR
   ============================================================ */
.progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  gap: 4px;
  padding: 12px 14px 0;
}
.progress .seg {
  flex: 1;
  height: 2.5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.32);
  overflow: hidden;
}
/* su slide chiare la barra di base è scura */
.device[data-tone="light"] .progress .seg { background: rgba(10,10,15,0.22); }

.progress .seg .fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 3px;
}
.device[data-tone="light"] .progress .seg .fill { background: var(--ink); }

.topbar {
  position: absolute;
  top: 26px; left: 16px; right: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.device[data-tone="light"] .topbar { color: var(--ink); }

/* avatar = logo vero del cliente. Il lockup è wide → con background-size zoomato
   mostriamo SOLO il pittogramma (kettlebell). Lo sfondo bianco rende il logo
   charcoal+arancio leggibile su qualsiasi slide. La URL la imposta stories.js. */
.topbar .logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76% auto;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.topbar .logo img { display: none; }

.topbar .who { display: flex; flex-direction: column; line-height: 1.05; }
.topbar .who b { font-size: 0.82rem; font-weight: 600; letter-spacing: -0.01em; }
.topbar .who span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.6; margin-top: 2px;
}
.topbar .close {
  margin-left: auto;
  font-size: 1.4rem; line-height: 1;
  opacity: 0.55; cursor: pointer;
  width: 28px; height: 28px; display: grid; place-items: center;
}

/* ============================================================
   STORY — una schermata verticale
   ============================================================ */
.stage { position: absolute; inset: 0; z-index: 10; }

.story {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  padding: var(--safe-top) var(--pad) calc(var(--pad) + 6px);
  overflow: hidden;
}
.story.is-active { display: flex; }

/* token semantici che si ribaltano in base allo sfondo */
.story { --fg: var(--ink); --fg-soft: var(--stone); }
.story[data-bg="light"] {
  background: radial-gradient(120% 80% at 80% -10%, #FFFFFF 0%, var(--cream) 55%, #F2EDE5 100%);
  --fg: var(--ink);
  --fg-soft: var(--stone);
  --card: rgba(255,255,255,0.72);
  --card-strong: rgba(255,255,255,0.9);
  --card-border: rgba(255,255,255,0.7);
  --hairline: var(--sand-border);
  --orb-a: rgba(239,127,26,0.16);
  --orb-b: rgba(201,169,97,0.18);
}
.story[data-bg="dark"] {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  --fg: #FFFFFF;
  --fg-soft: rgba(255,255,255,0.66);
  --card: rgba(255,255,255,0.07);
  --card-strong: rgba(255,255,255,0.1);
  --card-border: rgba(255,255,255,0.12);
  --hairline: rgba(255,255,255,0.14);
  --orb-a: rgba(239,127,26,0.28);
  --orb-b: rgba(201,169,97,0.2);
}
.story[data-bg="brand"] {
  background: linear-gradient(155deg, #3A2410 0%, var(--charcoal) 42%, var(--charcoal-2) 100%);
  --fg: #FFFFFF;
  --fg-soft: rgba(255,255,255,0.7);
  --card: rgba(255,255,255,0.08);
  --card-strong: rgba(255,255,255,0.12);
  --card-border: rgba(255,255,255,0.14);
  --hairline: rgba(255,255,255,0.16);
  --orb-a: rgba(239,127,26,0.5);
  --orb-b: rgba(201,169,97,0.3);
}

/* orbs sfocati (firma del SalesDoc) */
.story::before, .story::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.story::before {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--orb-a) 0%, transparent 70%);
  top: -120px; right: -110px;
}
.story::after {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--orb-b) 0%, transparent 70%);
  bottom: -100px; left: -120px;
}
.story > * { position: relative; z-index: 1; }

/* colore testo derivato */
.story { color: var(--fg); }

/* eyebrow mono */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

/* ===== entrata animata degli elementi ===== */
.story.is-active [data-rise] {
  animation: rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.story.is-active [data-rise="2"] { animation-delay: 0.08s; }
.story.is-active [data-rise="3"] { animation-delay: 0.16s; }
.story.is-active [data-rise="4"] { animation-delay: 0.24s; }
.story.is-active [data-rise="5"] { animation-delay: 0.34s; }
.story.is-active [data-rise="6"] { animation-delay: 0.44s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   COVER
   ============================================================ */
.s-cover { justify-content: space-between; }
.s-cover .top { display: flex; flex-direction: column; gap: 18px; }
.s-cover .logo-chip {
  align-self: flex-start;
  background: var(--cream);
  border-radius: 13px;
  padding: 11px 15px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  margin-bottom: 4px;
}
.s-cover .logo-chip img { height: 32px; width: auto; display: block; }
.s-cover h1 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.04;
  font-size: 2.55rem;
}
.s-cover h1 .serif { font-size: 2.7rem; display: block; color: var(--brand-light); }
.s-cover .lead { font-size: 1.02rem; line-height: 1.5; color: var(--fg-soft); max-width: 22ch; }
.s-cover .foot { display: flex; flex-direction: column; gap: 18px; }

/* hint "toca para avançar" — a DESTRA: la zona destra è "avanti",
   la sinistra è "indietro" (il hint deve stare dove si tocca) */
.s-cover .foot .tap-hint { align-self: flex-end; }
.tap-hint {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-soft);
}
.tap-hint .pulse {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--card-border);
  display: grid; place-items: center;
  animation: tapPulse 1.8s ease-in-out infinite;
}
.tap-hint .pulse svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
@keyframes tapPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* ============================================================
   SNAPSHOT — griglia stat grandi
   ============================================================ */
.s-snapshot { justify-content: center; gap: 26px; }
.s-snapshot h2 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; font-size: 2.05rem;
}
.s-snapshot h2 .serif { color: var(--brand-light); }
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stat-cell {
  background: var(--card);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 18px 16px;
}
.stat-cell .v {
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.95;
  font-size: 3rem; display: flex; align-items: baseline; gap: 6px;
  color: var(--gold);
}
.stat-cell .v .n { font-variant-numeric: tabular-nums; }
.stat-cell .v .u { font-size: 1rem; font-weight: 600; color: var(--sand); letter-spacing: 0; }
.stat-cell .l { margin-top: 8px; font-size: 0.78rem; line-height: 1.35; color: var(--fg-soft); }
/* kicker come cliffhanger: grande, in serif corsivo, sotto le stat */
.kicker {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 1.6rem; line-height: 1.25; color: var(--brand-light);
}
.device[data-tone="light"] .kicker { color: var(--brand-deep); }

/* ============================================================
   OPPORTUNITY — 3-beat: Oggi → La mossa → Il risultato
   accent2 = colore di codifica (oro per Design, arancio per Marketing)
   ============================================================ */
.s-opportunity { justify-content: flex-start; gap: 16px; }
.s-opportunity[data-tag="Design"]    { --accent2: var(--gold); }
.s-opportunity[data-tag="Marketing"] { --accent2: var(--brand-light); }
.device[data-tone="light"] .s-opportunity[data-tag="Marketing"] { --accent2: var(--brand-deep); }

.tagrow { display: flex; align-items: center; justify-content: space-between; }
.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--card-border);
}
.chip[data-kind="Design"]    { color: var(--gold); border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.chip[data-kind="Marketing"] { color: var(--brand-light); border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.device[data-tone="light"] .chip[data-kind="Marketing"] { color: var(--brand-deep); }
.idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.1em; color: var(--fg-soft);
}
.s-opportunity h2 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; font-size: 2.3rem;
}
.s-opportunity h2 em {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 2.5rem; color: var(--accent2);
}

.beats {
  position: relative; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px; padding-left: 26px; margin-top: 2px;
}
/* connettore verticale che lega i 3 beat */
.beats::before {
  content: ''; position: absolute;
  left: 5.5px; top: 9px; bottom: 48px;
  width: 2px; border-radius: 2px;
  background: var(--accent2); opacity: 0.4;
}
.beat { position: relative; }
.beat > .dot {
  position: absolute; left: -26px; top: 2px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent2);
}
.beat .bk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-soft); margin-bottom: 4px;
}
.beat .bt { font-size: 1.12rem; line-height: 1.32; font-weight: 500; }
.beat.result .rv {
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  font-size: 3.1rem; color: var(--accent2); margin-top: 2px;
}
.beat.result .rl { font-size: 0.95rem; line-height: 1.3; color: var(--fg-soft); margin-top: 5px; }

/* ============================================================
   MANIFESTO — slide editoriale ponte
   ============================================================ */
.s-manifesto { justify-content: center; gap: 22px; }
.s-manifesto .lines {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; font-size: 2rem;
}
.s-manifesto .lines span { display: block; }
.s-manifesto .big-serif {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 2.4rem; line-height: 1.12; color: var(--brand-light);
}
.s-manifesto .foot {
  font-size: 0.92rem; line-height: 1.55; color: var(--fg-soft);
  padding-top: 18px; border-top: 1px solid var(--hairline);
}

/* ============================================================
   RESULTS — i 4 numeri a 6 mesi (climax)
   ============================================================ */
.s-results { justify-content: center; gap: 18px; }
.s-results h2 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; font-size: 1.85rem;
}
.s-results h2 .serif { color: var(--brand-light); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.result-card {
  background: var(--card);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 15px 14px;
}
.result-card .num {
  font-weight: 700; letter-spacing: -0.04em; font-size: 2.65rem; line-height: 1;
  color: var(--brand-light);
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.result-card .lbl { margin-top: 7px; font-size: 0.78rem; font-weight: 600; line-height: 1.25; }
.result-card .desc { margin-top: 5px; font-size: 0.68rem; line-height: 1.35; color: var(--fg-soft); }
.results-disc {
  font-size: 0.6rem; line-height: 1.45; color: var(--fg-soft); opacity: 0.8;
  text-align: center;
}

/* ============================================================
   CTA — chiusura
   ============================================================ */
.s-cta { justify-content: space-between; }
.s-cta .top { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.s-cta h2 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; font-size: 2.15rem;
}
.s-cta h2 .serif { color: var(--brand-light); display: block; }
.s-cta .lead { font-size: 1rem; line-height: 1.5; color: var(--fg-soft); max-width: 24ch; }
.s-cta .foot { display: flex; flex-direction: column; gap: 16px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-deep));
  color: #fff; text-decoration: none;
  font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  padding: 16px 22px; border-radius: 16px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 40%, transparent);
  position: relative; z-index: 50;            /* sopra le tap-zone */
}
.btn-primary svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.signature {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-soft);
  display: flex; align-items: center; gap: 8px;
}
.signature .pill {
  width: 20px; height: 20px; border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-deep));
}

/* ============================================================
   DEMO — anteprima concreta (screenshot grande in cornice glass)
   ============================================================ */
.s-demo { justify-content: flex-start; gap: 14px; }
.s-demo h2 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; font-size: 1.95rem;
}
.s-demo h2 em {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 2.05rem; color: var(--brand-light);
}
.device[data-tone="light"] .s-demo h2 em { color: var(--brand-deep); }
.s-demo .shot-frame {
  flex: 1; min-height: 0;
  display: flex;
  background: var(--card);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
/* contain (mai crop): lo screenshot resta intero, il glass fa da passe-partout */
.s-demo .shot-frame img {
  width: 100%; height: auto; max-height: 100%;
  object-fit: contain; margin: auto;
  border-radius: 14px; display: block;
}
.s-demo .demo-foot { font-size: 0.82rem; line-height: 1.45; color: var(--fg-soft); }

/* ============================================================
   CASES — casi studio (riprova: siti reali già costruiti)
   ============================================================ */
.s-cases { justify-content: flex-start; gap: 14px; }
.s-cases h2 {
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; font-size: 1.95rem;
}
.s-cases h2 em {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 2.05rem; color: var(--brand-light);
}
.cases { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.case {
  display: flex; gap: 12px; align-items: center;
  background: var(--card);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 9px;
}
.case img {
  width: 118px; height: 74px; flex: 0 0 auto;
  object-fit: cover; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1);
}
.case .ct b { font-size: 0.95rem; font-weight: 600; display: block; letter-spacing: -0.01em; }
.case .ct span { font-size: 0.76rem; line-height: 1.3; color: var(--fg-soft); display: block; margin-top: 3px; }
.cases-auth {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--hairline);
  font-size: 0.82rem; line-height: 1.4; color: var(--fg-soft);
}
.cases-auth b { color: var(--brand-light); font-weight: 600; }

/* ============================================================
   TAP ZONES — navigazione tipo Instagram
   ★ pointer-events:none obbligatorio: .stage crea uno stacking
   context (z:10) quindi lo z:50 dei bottoni CTA resta comunque
   SOTTO le zone (z:20) per l'hit-testing → senza questa riga il
   bottone WhatsApp non è cliccabile. La navigazione non le usa:
   i listener stanno su .device e leggono le coordinate.
   ============================================================ */
.nav-zones { position: absolute; inset: 0; z-index: 20; display: flex; pointer-events: none; }
.nav-zones .zone { height: 100%; }
.nav-zones .zone.prev { width: 32%; }
.nav-zones .zone.next { width: 68%; }

/* indicatore "in pausa" */
.paused-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 45; opacity: 0; pointer-events: none;
  font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.5); padding: 8px 14px; border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: opacity 0.2s ease;
}
.device.is-paused .paused-badge { opacity: 1; }

/* edge tap feedback (sottile) */
.edge-flash {
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 30;
  pointer-events: none; opacity: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18), transparent 70%);
}
.edge-flash.l { left: 0; }
.edge-flash.r { right: 0; background: radial-gradient(circle at center, rgba(255,255,255,0.18), transparent 70%); }
.edge-flash.show { animation: flash 0.4s ease; }
@keyframes flash { 0% { opacity: 0.9; } 100% { opacity: 0; } }

/* ============================================================
   REPLAY (fine storia)
   ============================================================ */
.replay {
  position: absolute; inset: 0; z-index: 60;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; background: rgba(10,9,8,0.78);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #fff;
}
.replay.show { display: flex; }
.replay button {
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: #fff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 20px; border-radius: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
}
.replay button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.replay .note { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; }

/* ============================================================
   ACCESSIBILITÀ — riduzione movimento
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .story.is-active [data-rise],
  .tap-hint .pulse { animation: none !important; }
  .story.is-active [data-rise] { opacity: 1; transform: none; }
}
