/* ================================================================
   The Evolution of SAP Implementation — Mastering SAP Singapore 2026
   Design system: Apple keynote × SAP. Deep navy, electric cyan & amber.
================================================================ */

:root {
  --bg-0:        #050813;
  --bg-1:        #070b1a;
  --bg-2:        #0c1230;
  --bg-3:        #131a3f;
  --ink:         #f6f8ff;
  --ink-2:       #c7cee8;
  --ink-3:       #8a92b5;
  --ink-4:       #555c7a;
  --line:        rgba(255,255,255,0.08);
  --line-2:      rgba(255,255,255,0.14);
  --card:        rgba(255,255,255,0.04);
  --card-hover:  rgba(255,255,255,0.07);
  --glass:       rgba(15,21,48,0.6);
  --cyan:        #38d8ff;
  --cyan-2:      #00b7e8;
  --amber:       #ffb547;
  --amber-2:     #ff8a3d;
  --red:         #ff6868;
  --green:       #5ee1a4;
  --sap:         #4a8dff;
  --indigo:      #6f5cff;
  --shadow-lg:   0 30px 80px rgba(0,0,0,.55), 0 2px 10px rgba(0,0,0,.25);
  --radius:      18px;
  --radius-lg:   28px;
  --ease:        cubic-bezier(.2,.7,.1,1);
}

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

html, body {
  margin: 0; padding: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-feature-settings: "ss01","cv11","kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100svh;
  overflow-x: hidden;
}

/* ====== Subtle ambient gradient backdrop (visible behind any non-image slide) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(74,141,255,.18), transparent 60%),
    radial-gradient(70% 70% at 100% 100%, rgba(111,92,255,.16), transparent 70%),
    radial-gradient(50% 50% at 50% 50%, rgba(56,216,255,.05), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 80%);
  pointer-events: none;
}

/* ====== Top progress bar */
.progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  z-index: 30;
  transition: width 220ms var(--ease);
  box-shadow: 0 0 18px rgba(56,216,255,.35);
}

/* ====== Right-side dot navigation */
.dots {
  position: fixed; right: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 25;
}
.dots button {
  width: 8px; height: 8px;
  border: 0; padding: 0; margin: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.dots button:hover { background: rgba(255,255,255,.4); transform: scale(1.2); }
.dots button.active {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  transform: scale(1.35);
}

/* ====== Side arrow buttons */
.nav-btn {
  position: fixed; top: 50%;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 28px; line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  z-index: 25;
}
.nav-btn:hover { background: rgba(255,255,255,.12); color: white; transform: translateY(-50%) scale(1.05); }
.nav-prev { left: 22px; transform: translateY(-50%); }
.nav-next { right: 60px; transform: translateY(-50%); }

/* slide counter pill */
.slide-counter {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-3);
  background: var(--glass);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 25;
}
.slide-counter .slash { opacity: .4; margin: 0 6px; }
#cur { color: var(--ink); font-weight: 600; }

/* ====== Deck = vertical scroll-snap container */
.deck {
  position: relative; z-index: 1;
  scroll-snap-type: y mandatory;
  height: 100svh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.deck::-webkit-scrollbar { display: none; }

/* ====== Slide */
.slide {
  position: relative;
  min-height: 100svh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  place-items: center;
  padding: 8svh 6vw 12svh;
  overflow: hidden;
}

.slide-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 28px;
}

/* ====== Background image layer (chapter slides) */
.bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease), opacity 1s var(--ease);
  opacity: 0;
}
.slide.is-active .bg { transform: scale(1); opacity: 1; }
.bg-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.overlay-dark    { background: linear-gradient(180deg, rgba(5,8,19,.55) 0%, rgba(5,8,19,.92) 100%); }
.overlay-vignette{
  background:
    linear-gradient(90deg, rgba(5,8,19,.95) 0%, rgba(5,8,19,.78) 35%, rgba(5,8,19,.45) 60%, rgba(5,8,19,.15) 100%),
    linear-gradient(180deg, rgba(5,8,19,.65) 0%, rgba(5,8,19,.4) 50%, rgba(5,8,19,.8) 100%);
}
.overlay-grad    { background: linear-gradient(135deg, rgba(5,8,19,.4) 0%, rgba(5,8,19,.78) 70%, rgba(5,8,19,.95) 100%); }
.overlay-side    { background: linear-gradient(90deg, rgba(5,8,19,.97) 0%, rgba(5,8,19,.85) 35%, rgba(5,8,19,.55) 60%, rgba(5,8,19,.1) 100%); }
.overlay-bottom  { background: linear-gradient(180deg, rgba(5,8,19,.4) 0%, rgba(5,8,19,.85) 100%); }

/* ====== Typography primitives */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--cyan);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.eyebrow-light { color: rgba(255,255,255,.7); }
.tag-additional { color: var(--amber); }
.tag-additional::before { background: var(--amber); }

.display {
  font-size: clamp(54px, 8vw, 124px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .95;
  margin: 0;
  text-wrap: balance;
}
.display-pre {
  display: block;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.display-main { display: block; }

.hero-h2 {
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.02;
  margin: 0;
}
.hero-h2.centered { text-align: center; }
.hero-h2-light { color: white; }
.quote-h2 {
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}
.quote-h2 em { font-style: italic; color: var(--cyan); font-weight: 600; }

.kicker {
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink-2);
  max-width: 700px;
  margin: 4px 0 0;
  line-height: 1.4;
}
.kicker em { color: var(--amber); font-style: normal; font-weight: 600; }
.kicker-sm {
  font-size: clamp(15px, 1.2vw, 19px);
  color: var(--ink-3);
  margin: 0;
  max-width: 760px;
  line-height: 1.45;
}
.muted { opacity: .85; }

/* gradient text helpers */
.grad-cyan  { background: linear-gradient(90deg, var(--cyan), #95eaff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-amber { background: linear-gradient(90deg, var(--amber), #ffd989); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-red   { background: linear-gradient(90deg, #ff8a8a, #ffcf8a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.underline-amber {
  background: linear-gradient(180deg, transparent 70%, rgba(255,181,71,.45) 70%, rgba(255,181,71,.45) 95%, transparent 95%);
}

/* ====== Layout helpers */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .col-vis { order: 2; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.centered-content { align-items: center; text-align: center; }
.col { display: flex; flex-direction: column; gap: 22px; }
.col-vis { display: grid; place-items: center; }

/* ====== Title slide */
.slide-title .slide-inner {
  max-width: 820px;
  gap: 22px;
  margin-right: auto;
  margin-left: 0;
}
.slide-title { place-items: center start; padding-left: 7vw; padding-right: 7vw; }
.slide-title .bg {
  background-position: center bottom;
  background-size: cover;
}
.event-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  align-self: flex-start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.event-chip-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 12px var(--cyan); opacity: 1; }
  50%      { box-shadow: 0 0 22px var(--cyan); opacity: .55; }
}
.byline {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
}
.byline-line {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.byline-text { display: flex; flex-direction: column; gap: 2px; }
.byline-text strong {
  font-size: 19px; font-weight: 700; letter-spacing: -.01em;
}
.byline-text span { color: var(--ink-3); font-size: 14px; }
.scroll-hint {
  margin-top: 40px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-3);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* ====== Presenter slide */
.slide-presenter .col-portrait { gap: 16px; align-items: flex-start; }
.portrait-wrap {
  position: relative;
  width: min(360px, 80%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.02);
}
.portrait-frame {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(56,216,255,0) 60%, rgba(56,216,255,.18) 100%);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.06);
}
.portrait-name h3 {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.portrait-name p {
  margin: 4px 0 0;
  color: var(--cyan);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

.cred-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.cred-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  align-items: start;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
}
.cred-icon { color: var(--amber); font-size: 12px; line-height: 1.8; }
.cred-list strong { display: block; font-weight: 600; font-size: 16px; }
.cred-list span    { display: block; color: var(--ink-3); font-size: 14px; margin-top: 2px; }

/* ====== TOC slide */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.toc-card {
  display: grid; grid-template-columns: 56px 1fr;
  align-items: center; gap: 16px;
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.toc-card:hover { background: var(--card-hover); border-color: var(--line-2); transform: translateY(-2px); }
.toc-card .toc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px; font-weight: 600;
  color: var(--amber);
  letter-spacing: -.02em;
}
.toc-card .toc-text { font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.toc-wide { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; }

/* ====== Chapter slide */
.slide-chapter .display {
  text-align: center;
}
.chapter-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.chapter-sub {
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink-2);
  max-width: 720px;
  margin: 22px auto 0;
  line-height: 1.4;
}

/* ====== Pain grid (slide 5) */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.pain {
  position: relative;
  padding: 36px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  overflow: hidden;
}
.pain::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 0% 0%, rgba(255,104,104,.18), transparent 60%);
  pointer-events: none;
}
.pain-stat {
  position: relative; display: block;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  background: linear-gradient(180deg, #ffd1a8, #ff8a8a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pain-stat span {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .04em;
  -webkit-text-fill-color: var(--ink-3);
  background: none;
  margin-top: 8px;
}
.pain-stat small { display: block; font-size: 11px; color: var(--ink-4); margin-top: 4px; letter-spacing: .12em; text-transform: uppercase; }

.paragraph-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.paragraph-list li { color: var(--ink-2); font-size: 17px; line-height: 1.5; padding-left: 20px; position: relative; }
.paragraph-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 8px; height: 1px; background: var(--cyan);
}

/* ====== ASAP gears */
.gears {
  position: relative; width: 280px; height: 280px;
  display: grid; place-items: center;
  color: var(--cyan);
}
.gears .gear { position: absolute; }
.gear-a { width: 100%; height: 100%; animation: spin 60s linear infinite; }
.gear-b { width: 56%; height: 56%; animation: spin 24s linear infinite reverse; opacity: .85; }
.gear-c { width: 32%; height: 32%; right: 8%; bottom: 10%; animation: spin 18s linear infinite; opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }
.gears-cap {
  margin-top: 18px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* check list (small) */
.check-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 17px; color: var(--ink-2); padding: 10px 14px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); }
.check-list .ck { color: var(--cyan); font-weight: 700; }
.check-list li:has(.ck:not([class*="m"])) .ck { color: var(--cyan); }

/* ====== Timeline (30 years) */
.slide-timeline .slide-inner { gap: 36px; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 30px 0 0;
}
.timeline-line {
  position: absolute;
  top: 56px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--ink-4) 0%, var(--cyan) 50%, var(--amber) 100%);
  opacity: .8;
}
.timeline-step {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative;
  text-align: center;
}
.ts-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--ink-3);
}
.ts-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 2px solid var(--ink-4);
  position: relative;
  margin: 6px 0;
  z-index: 2;
}
.ts-dot-glow {
  border-color: var(--amber);
  box-shadow: 0 0 0 6px rgba(255,181,71,.18), 0 0 22px rgba(255,181,71,.6);
  background: var(--amber);
  animation: pulse-amber 2.4s var(--ease) infinite;
}
@keyframes pulse-amber {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,181,71,.18), 0 0 22px rgba(255,181,71,.6); }
  50%      { box-shadow: 0 0 0 10px rgba(255,181,71,.10), 0 0 32px rgba(255,181,71,.9); }
}
.ts-name {
  font-weight: 700; font-size: 20px; letter-spacing: -.01em;
}
.is-current .ts-name { color: var(--amber); }
.ts-desc { color: var(--ink-3); font-size: 13px; line-height: 1.4; max-width: 180px; }

/* ====== Phase cards (Activate) */
.phase-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.phase-card {
  padding: 32px 24px 28px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  text-align: center;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.phase-card:hover { transform: translateY(-3px); background: var(--card-hover); }
.phase-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(56,216,255,.1);
  border: 1px solid rgba(56,216,255,.3);
  color: var(--cyan);
  font-size: 26px;
  display: grid; place-items: center;
}
.phase-name {
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.phase-sub { color: var(--ink-3); font-size: 13px; line-height: 1.4; }
.phase-highlight {
  background: linear-gradient(180deg, rgba(56,216,255,.15), rgba(56,216,255,.04));
  border-color: rgba(56,216,255,.4);
  box-shadow: 0 0 0 1px rgba(56,216,255,.3) inset, 0 18px 50px rgba(56,216,255,.18);
}
.phase-highlight .phase-icon { background: rgba(56,216,255,.25); color: white; }

/* ====== feature lists & rich lists */
.feature-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: grid; grid-template-columns: 86px 1fr; gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 17px;
  color: var(--ink-2);
}
.fl-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255,181,71,.08);
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
}
.feature-list-tight li { padding: 10px 14px; font-size: 16px; }

.rich-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 12px; }
.rich-list li {
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
}
.rich-list strong { display: block; font-size: 17px; font-weight: 600; }
.rich-list span    { display: block; color: var(--ink-3); font-size: 14px; margin-top: 4px; line-height: 1.45; }
.rich-list-accent strong { color: var(--amber); }

/* ====== Cloud art (GROW with SAP) */
.cloud-art {
  position: relative;
  width: 380px; height: 380px;
  display: grid; place-items: center;
}
.cloud-orb {
  width: 200px; height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(56,216,255,.65) 0%, rgba(56,216,255,.18) 40%, transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(74,141,255,.45) 0%, transparent 60%);
  filter: blur(.5px);
  animation: float 7s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(56,216,255,.4);
}
.cloud-orb-sm {
  position: absolute;
  width: 80px; height: 80px;
  top: 18%; right: 14%;
  background:
    radial-gradient(circle, rgba(255,181,71,.7), transparent 70%);
  box-shadow: 0 0 40px rgba(255,181,71,.4);
  animation-duration: 5s;
  animation-delay: -1s;
}
.cloud-orb-tiny {
  position: absolute;
  width: 36px; height: 36px;
  bottom: 22%; left: 22%;
  background: radial-gradient(circle, rgba(111,92,255,.7), transparent 70%);
  box-shadow: 0 0 24px rgba(111,92,255,.4);
  animation-duration: 6s;
  animation-delay: -3s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.cloud-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--line-2);
}
.cloud-ring-a { width: 280px; height: 280px; opacity: .55; animation: spin 30s linear infinite; }
.cloud-ring-b { width: 360px; height: 360px; opacity: .25; animation: spin 50s linear infinite reverse; }

/* ====== Definition cards (What is GROW) */
.def-card {
  padding: 26px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.def-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.def-card.is-current {
  background: linear-gradient(180deg, rgba(255,181,71,.12), rgba(255,181,71,.02));
  border-color: rgba(255,181,71,.4);
  box-shadow: 0 18px 50px rgba(255,181,71,.16);
}
.def-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
}
.is-current .def-tag { color: var(--amber); }
.def-card h4 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.def-card p   { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.def-foot { color: var(--ink-3) !important; font-size: 13px !important; font-family: 'JetBrains Mono', monospace; letter-spacing: .04em; }

/* Callouts */
.callout-bar {
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(56,216,255,.12), rgba(255,181,71,.08));
  border: 1px solid rgba(56,216,255,.25);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.callout-bar strong { color: var(--cyan); }
.callout-quiet {
  margin-top: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border-left: 3px solid var(--amber);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ====== KPI row */
.kpi-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 12px 0 16px;
}
.kpi {
  padding: 30px 26px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(56,216,255,.10), rgba(56,216,255,.02));
  border: 1px solid rgba(56,216,255,.25);
  box-shadow: 0 18px 50px rgba(56,216,255,.10);
  text-align: left;
}
.kpi-num {
  display: flex; align-items: baseline; gap: 8px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.num-big {
  font-size: clamp(56px, 5.5vw, 88px);
  background: linear-gradient(180deg, #fff, #95eaff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.num-unit {
  font-size: 18px; font-weight: 500;
  color: var(--cyan);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.kpi-label {
  margin-top: 10px;
  font-size: 14px; color: var(--ink-3);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ====== Sprints (8-week timeline) */
.sprints {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.sprint {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.sprint::before {
  content: "";
  position: absolute; top: -16px; left: 26px;
  width: 32px; height: 32px;
  background: var(--bg-2);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: grid; place-items: center;
}
.sprint-num {
  position: absolute; top: -16px; left: 26px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
  font-weight: 700;
  z-index: 2;
}
.sprint-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}
.sprint-name { font-size: 22px; font-weight: 800; letter-spacing: -.01em; text-transform: uppercase; }
.sprint ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; color: var(--ink-2); font-size: 15px; }
.sprint ul li::before { content: "·"; color: var(--cyan); margin-right: 8px; font-weight: 700; }
.sprint-final {
  background: linear-gradient(180deg, rgba(94,225,164,.12), rgba(94,225,164,.02));
  border-color: rgba(94,225,164,.35);
}
.sprint-final::before { border-color: var(--green); }
.sprint-final .sprint-num, .sprint-final .sprint-tag { color: var(--green); }

/* ====== Donut */
.donut { position: relative; width: 320px; height: 320px; }
.donut svg { width: 100%; height: 100%; transform: scale(1); transition: transform 1.2s var(--ease); }
.slide.is-active .donut svg { transform: scale(1); }
.donut-arc {
  stroke-dashoffset: 503;
  transition: stroke-dasharray 1.6s var(--ease);
}
.donut-center {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
}
.donut-num {
  font-size: 92px; font-weight: 800;
  background: linear-gradient(180deg, var(--amber), #ffd989);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
}
.donut-label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}
.donut-legend {
  display: flex; gap: 22px; justify-content: center;
  margin-top: 8px; font-size: 13px; color: var(--ink-3);
}
.donut-legend i {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: 8px;
  vertical-align: middle;
}

/* ====== Split columns (Finance & FICO) */
.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.split-title {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cyan);
  font-weight: 700;
}

/* ====== AI slide */
.slide-ai .col-vis {
  min-height: 380px;
}

/* ====== Reality slides */
.bullet-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li { color: var(--ink-2); font-size: 17px; line-height: 1.45; padding-left: 22px; position: relative; }
.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); opacity: .8;
}
.bullet-list li em { font-style: normal; color: var(--amber); }

/* ====== A/B option cards */
.ab-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 18px; }
.ab-card {
  padding: 30px 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.ab-card-glow {
  background: linear-gradient(180deg, rgba(56,216,255,.14), rgba(56,216,255,.02));
  border-color: rgba(56,216,255,.4);
  box-shadow: 0 18px 50px rgba(56,216,255,.18);
}
.ab-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ab-tag-on { color: var(--cyan); }
.ab-card h3 {
  margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1;
}
.ab-sub {
  display: block;
  font-size: 14px; font-weight: 500; color: var(--ink-3); letter-spacing: .04em;
  margin-top: 6px;
}
.ab-card ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.ab-card li {
  font-size: 15px; color: var(--ink-2); line-height: 1.45;
  padding-left: 20px; position: relative;
}
.ab-card li::before {
  content: "›"; position: absolute; left: 0; top: 0; color: var(--amber); font-weight: 700;
}
.ab-card-glow li::before { color: var(--cyan); }

/* Capture cards (fit-to-standard) */
.capture-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.capture-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
  margin: 0 0 14px;
}
.capture-title em { font-style: normal; font-weight: 800; }
.capture-keep { color: var(--green); }
.capture-defer { color: var(--amber); }

/* Readiness checklist */
.check-box-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.check-box-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px;
  align-items: center;
  font-size: 16px; color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--line);
}
.cb {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  border: 1.5px solid var(--ink-4);
  border-radius: 4px;
  color: transparent;
  font-size: 12px;
}

/* ====== Business case table */
.biz-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  overflow: hidden;
  font-size: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  margin-top: 14px;
}
.biz-table thead th {
  text-align: left;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  padding: 18px 22px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--line);
}
.biz-table th.th-fast {
  background: linear-gradient(180deg, rgba(255,181,71,.18), rgba(255,181,71,.06));
  color: var(--amber);
  border-bottom: 1px solid rgba(255,181,71,.35);
}
.biz-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.biz-table tr:last-child td { border-bottom: 0; }
.biz-table td:first-child { color: var(--ink-3); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .14em; }
.biz-table td.td-fast {
  background: rgba(255,181,71,.05);
  color: var(--ink);
  font-weight: 600;
  border-left: 1px solid rgba(255,181,71,.2);
}
.cell-icon { color: var(--amber); margin-right: 8px; }

/* ====== Impact grid (Forrester) */
.impact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 16px;
}
.impact {
  padding: 30px 26px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.impact-num {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--amber);
  line-height: 1;
}
.impact-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.impact-label small { display: inline; color: var(--ink-4); font-size: 12px; margin-left: 4px; }
.impact-hero {
  background: linear-gradient(180deg, rgba(255,181,71,.16), rgba(255,181,71,.02));
  border-color: rgba(255,181,71,.4);
  box-shadow: 0 18px 50px rgba(255,181,71,.18);
}
.impact-hero .impact-num {
  background: linear-gradient(180deg, #ffd989, #ff8a3d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== Spotlights */
.spotlight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 14px;
}
.spotlight {
  padding: 28px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  display: flex; flex-direction: column; gap: 10px;
}
.sp-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.spotlight h4 { margin: 4px 0 6px; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.spotlight p   { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.spotlight strong { color: var(--amber); font-weight: 600; }
.sp-stat {
  margin-top: 12px;
  font-size: 24px; font-weight: 800;
  color: var(--amber);
  border-top: 1px dashed var(--line-2);
  padding-top: 14px;
  letter-spacing: -.01em;
}
.sp-stat span { display: block; font-size: 13px; color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

/* ====== Wins grid */
.wins-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 14px;
}
.win {
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
}
.win-name { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.win-meta { color: var(--cyan); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; margin: 2px 0 16px; font-weight: 600; }
.win-stat { font-size: 26px; font-weight: 800; color: var(--amber); letter-spacing: -.01em; }
.win-area { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* ====== Before / After */
.before-after {
  display: grid; grid-template-columns: 1fr 56px 1fr;
  align-items: center; gap: 22px;
  margin-top: 20px;
}
.ba-card {
  padding: 30px 28px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.ba-before { opacity: .85; }
.ba-after {
  background: linear-gradient(180deg, rgba(56,216,255,.14), rgba(56,216,255,.02));
  border-color: rgba(56,216,255,.4);
  box-shadow: 0 18px 50px rgba(56,216,255,.16);
}
.ba-card h4 { margin: 0; font-size: 22px; font-weight: 700; }
.ba-card ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; color: var(--ink-2); font-size: 15px; }
.ba-card li { padding-left: 18px; position: relative; line-height: 1.45; }
.ba-card li::before { content: "·"; position: absolute; left: 0; top: 0; color: var(--cyan); font-weight: 700; }
.ba-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.ba-after .ba-tag { color: var(--cyan); }
.ba-arrow {
  display: grid; place-items: center;
  font-size: 36px;
  color: var(--amber);
  font-weight: 800;
}
.big-quote {
  margin: 28px 0 0;
  font-size: 22px;
  font-style: italic;
  text-align: center;
  color: var(--ink-2);
  border-left: 0;
  padding: 16px 26px;
  border-radius: 14px;
  background: rgba(255,181,71,.06);
  border: 1px solid rgba(255,181,71,.2);
}

/* ====== Wave list */
.wave-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.wave {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  align-items: center;
}
.wave-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  background: rgba(56,216,255,.12);
  color: var(--cyan);
  font-size: 14px;
  border: 1px solid rgba(56,216,255,.3);
}
.wave strong { display: block; font-size: 18px; font-weight: 700; }
.wave span   { display: block; font-size: 14px; color: var(--ink-3); margin-top: 2px; }

/* ====== Singapore context slide */
.slide-sg .slide-inner { max-width: 1100px; gap: 24px; }
.sg-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sg-card {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 18px; align-items: start;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(15,21,48,.6);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sg-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(56,216,255,.2), rgba(255,181,71,.18));
  color: white;
  border: 1px solid var(--line-2);
}
.sg-text strong { display: block; font-size: 17px; font-weight: 700; color: white; }
.sg-text span   { display: block; color: var(--ink-2); font-size: 14px; margin-top: 4px; line-height: 1.5; }

/* ====== Takeaways */
.takeaway-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.takeaway-list li {
  display: grid; grid-template-columns: 88px 1fr;
  align-items: center; gap: 22px;
  padding: 22px 28px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.45;
}
.t-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -.02em;
}
.takeaway-list strong { color: var(--cyan); font-weight: 700; }

/* ====== Thank you */
.slide-thanks .slide-inner { max-width: 1080px; gap: 24px; }
.thanks-card {
  margin-top: 18px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(15,21,48,.5);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 28px;
}
.thanks-id strong { font-size: 26px; font-weight: 700; display: block; letter-spacing: -.01em; }
.thanks-id span   { color: var(--ink-2); font-size: 15px; }
.thanks-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.t-link {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.t-link:hover { background: rgba(56,216,255,.08); border-color: rgba(56,216,255,.4); transform: translateY(-2px); }
.t-link-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cyan);
  font-weight: 700;
}
.t-link-val { font-size: 17px; font-weight: 600; }
.footer-hash {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-3);
}

/* ====== Slide entrance animations */
.slide:not(.is-active) .slide-inner > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.slide.is-active .slide-inner > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--in-delay, 0s);
}
.slide.is-active .slide-inner > *:nth-child(1) { --in-delay: .05s; }
.slide.is-active .slide-inner > *:nth-child(2) { --in-delay: .15s; }
.slide.is-active .slide-inner > *:nth-child(3) { --in-delay: .25s; }
.slide.is-active .slide-inner > *:nth-child(4) { --in-delay: .35s; }
.slide.is-active .slide-inner > *:nth-child(5) { --in-delay: .45s; }
.slide.is-active .slide-inner > *:nth-child(6) { --in-delay: .55s; }
.slide.is-active .slide-inner > *:nth-child(7) { --in-delay: .65s; }

/* ====== Responsive */
@media (max-width: 1080px) {
  .nav-btn { display: none; }
  .dots { right: 12px; }
  .two-col, .two-col-equal { grid-template-columns: 1fr; gap: 32px; }
  .three-col { grid-template-columns: 1fr; }
  .pain-grid, .phase-grid, .kpi-row, .sprints, .impact-grid, .spotlight-grid, .wins-grid, .sg-grid { grid-template-columns: 1fr; }
  .ab-split, .split-cols { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .ts-name { font-size: 14px; }
  .ts-desc { font-size: 11px; }
  .thanks-links { grid-template-columns: 1fr; }
  .slide { padding: 8svh 5vw 12svh; }
  .toc-grid { grid-template-columns: 1fr; }
  .toc-wide { max-width: 100%; }
}

@media (max-width: 720px) {
  .display { font-size: clamp(36px, 11vw, 56px); letter-spacing: -.03em; }
  .display-pre { font-size: clamp(16px, 4vw, 22px); }
  .hero-h2 { font-size: clamp(26px, 7.5vw, 38px); }
  .quote-h2 { font-size: clamp(22px, 5.8vw, 32px); }
  .kicker { font-size: 16px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-line { display: none; }
  .biz-table { font-size: 13px; }
  .biz-table thead th, .biz-table td { padding: 10px 12px; }
  .takeaway-list li { grid-template-columns: 56px 1fr; padding: 16px 18px; font-size: 16px; }
  .t-num { font-size: 26px; }
  .feature-list li { grid-template-columns: 70px 1fr; font-size: 15px; }
  .slide-counter { font-size: 10px; }
  .dots { right: 8px; }
  .dots button { width: 6px; height: 6px; }
  .slide-title { padding-left: 5vw; padding-right: 5vw; }
  .slide-title .slide-inner { max-width: 100%; }
  .display { word-break: break-word; overflow-wrap: anywhere; }
  .event-chip { font-size: 10px; padding: 6px 12px; letter-spacing: .14em; }
  .thanks-card { padding: 24px; }
  .nav-prev, .nav-next { display: none; }
}
@media (max-width: 480px) {
  .slide-title .display { font-size: 8vw; letter-spacing: -.015em; }
  .slide-chapter .display { font-size: 12vw; letter-spacing: -.025em; }
  .slide-thanks .display { font-size: 14vw; letter-spacing: -.025em; }
  .display { font-size: 12vw; letter-spacing: -.025em; }
  .hero-h2 { font-size: clamp(22px, 7vw, 32px); }
  .dots { display: none; }
  .slide { padding: 6svh 5vw 10svh; }
  .pain-stat { font-size: 42px; }
  .num-big { font-size: 48px; }
  .impact-num { font-size: 36px; }
  .donut { width: 240px; height: 240px; }
  .donut-num { font-size: 64px; }
  .cred-list li { padding: 10px 14px; font-size: 14px; }
  .cred-list strong { font-size: 14px; }
  .cred-list span { font-size: 12px; }
  .portrait-wrap { width: min(280px, 70%); }
  .biz-table { font-size: 11px; }
  .biz-table thead th, .biz-table td { padding: 8px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .slide:not(.is-active) .slide-inner > * { opacity: 1; transform: none; }
}
