/* ═══════════════════════════════════════════════════════════════
   CICIOT PRESENTATION — styles.css
   Design tokens, layout, slide-specific styles, animations,
   bottom navigation, lightbox, edit mode.
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --paper:    #F1E6CB;
  --paper-dk: #E5D6B0;
  --ink:      #3A2516;
  --red:      #E5392A;
  --pink:     #E54489;
  --orange:   #F09131;
  --green:    #3D9F47;
  --blue:     #3F8BC4;
  --yellow:   #F0BC2A;
  --line:     #3A2516;
  --nav-h:    clamp(44px, 5.5vh, 60px);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; background: #0e0e0e; }
body {
  font-family: 'Albert Sans', 'Helvetica Neue', sans-serif;
  color: var(--ink);
  overflow: hidden;
  font-size: 17px;
  line-height: 1.55;
}

/* ─── DECK & STAGE ───────────────────────────────────────────── */
.deck {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: var(--nav-h);
}
.stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--paper);
}
.stage::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.16;
  background-image: radial-gradient(circle at 1px 1px, rgba(58,37,22,0.55) 1px, transparent 1.6px);
  background-size: 4px 4px; z-index: 1;
}

/* ─── SLIDE BASE + TRANSITIONS ──────────────────────────────── */
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  font-size: 1.03em;
  will-change: transform, opacity;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  animation: slideEnter 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.slide.slide-exit {
  animation: slideExit 300ms ease forwards;
  z-index: 2;
  pointer-events: none;
}

/* ─── TYPOGRAPHY SYSTEM ─────────────────────────────────────── */
.disp     { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; line-height: 0.84; letter-spacing: -0.012em; }
.disp-700 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 700; line-height: 0.9;  letter-spacing: 0; }
.micro    { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: 1.04em; }
.body-tx  { font-family: 'Albert Sans', sans-serif; font-weight: 400; line-height: 1.5; font-size: 1.04em; }
.mono     { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 400; font-size: 1.02em; }
.jp       { font-family: 'Noto Sans JP', sans-serif; font-weight: 500; font-size: 1.03em; }

/* ─── PAGE NUMBER (in-slide) ─────────────────────────────────── */
.pagenum {
  position: absolute;
  right: clamp(28px, 2.6vw, 48px);
  bottom: clamp(22px, 2.5vh, 36px);
  min-width: 7ch;
  padding: 5px 10px;
  border: 1.5px solid rgba(58,37,22,0.42);
  background: rgba(250,245,232,0.82);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(11px, 0.78vw, 13px);
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  z-index: 9;
  opacity: 0.72;
}

/* ─── NAV HINT ───────────────────────────────────────────────── */
.nav-hint { display: none; }

/* ─── DECORATIVE: petal-blob cluster ────────────────────────── */
.petals { position: absolute; pointer-events: none; z-index: 3; }
.petal  { position: absolute; border-radius: 50%; aspect-ratio: 1 / 1; }


/* ════════════════════════════════════════════════════════════
   SLIDE 1 — COVER
   ════════════════════════════════════════════════════════════ */
.s-cover { background: var(--paper); }
.s-cover .brand {
  position: absolute;
  top: clamp(72px, 8vh, 132px);
  left: clamp(280px, 28vw, 460px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
}
.s-cover .brand-logo {
  width: clamp(72px, 6vw, 112px);
  height: auto;
  display: block;
  flex-shrink: 0;
}
.s-cover .brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s-cover .brand .b1 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(32px, min(3.4vw, 5.4vh), 56px); color: var(--ink); line-height: 0.92; letter-spacing: -0.02em; }
.s-cover .brand .b2 { margin-top: 4px; font-family: 'Albert Sans', sans-serif; font-weight: 600; font-size: clamp(14px, 1vw, 18px); color: var(--ink); letter-spacing: 0.02em; }
.s-cover .hero { position: absolute; left: clamp(36px, 3.6vw, 72px); top: clamp(290px, 30vh, 440px); font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(120px, min(14vw, 22vh), 280px); color: var(--ink); line-height: 0.84; letter-spacing: -0.025em; z-index: 4; }
.s-cover .lockup { position: absolute; left: clamp(36px, 3.6vw, 72px); bottom: clamp(130px, 15vh, 210px); font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(32px, min(4vw, 6.5vh), 72px); color: var(--paper); line-height: 0.9; letter-spacing: -0.015em; background: var(--pink); padding: clamp(8px, 1.2vh, 18px) clamp(18px, 1.8vw, 32px) clamp(6px, 0.8vh, 12px); z-index: 4; }
.s-cover .ribbons { position: absolute; right: 0; top: clamp(160px, 18vh, 280px); bottom: clamp(180px, 18vh, 280px); width: 52%; z-index: 3; pointer-events: none; overflow: hidden; }
.s-cover .ribbon { position: absolute; left: -20%; width: 160%; transform-origin: 0 50%; }
.s-cover .ribbon.r-pink   { background: var(--pink); }
.s-cover .ribbon.r-orange { background: var(--orange); }
.s-cover .ribbon.r-yellow { background: var(--yellow); }
.s-cover .ribbon.r-green  { background: var(--green); }
.s-cover .ribbon.r-blue   { background: var(--blue); }
.s-cover .cfooter { position: absolute; left: clamp(36px, 3.6vw, 72px); right: clamp(36px, 3.6vw, 72px); bottom: clamp(32px, 3.5vh, 58px); border-top: 1.5px solid var(--ink); padding-top: clamp(14px, 1.6vh, 22px); display: grid; grid-template-columns: auto 1fr auto auto; gap: clamp(20px, 2vw, 40px); align-items: center; z-index: 5; }
.s-cover .cfooter .made { font-family: 'Albert Sans', sans-serif; font-weight: 600; font-size: clamp(14px, 0.95vw, 16px); color: var(--ink); letter-spacing: 0.04em; line-height: 1.65; }
.s-cover .cfooter .made .jp-tag { font-family: 'Albert Sans', sans-serif; font-weight: 600; display: block; font-size: 0.82em; opacity: 0.65; margin-top: 8px; margin-bottom: 0; }
.s-cover .cfooter .nr { display: flex; flex-direction: column; gap: 3px; font-family: 'Albert Sans', sans-serif; font-weight: 500; font-size: clamp(13px, 0.88vw, 15px); color: var(--ink); letter-spacing: 0.02em; line-height: 1.55; }
.s-cover .cfooter .nr strong { display: inline-block; font-family: 'Albert Sans', sans-serif; font-weight: 700; font-size: clamp(11px, 0.76vw, 13px); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 2px; }
.s-cover .cfooter .seal { position: relative; width: clamp(70px, 5.6vw, 96px); height: clamp(70px, 5.6vw, 96px); background: var(--ink); color: var(--paper); clip-path: polygon(50% 0%,60% 8%,73% 4%,76% 17%,89% 18%,87% 31%,100% 35%,92% 47%,100% 60%,87% 64%,90% 77%,76% 78%,75% 91%,62% 88%,53% 100%,42% 90%,30% 96%,25% 84%,12% 86%,13% 73%,0% 70%,7% 58%,0% 47%,11% 39%,4% 27%,17% 25%,13% 12%,27% 14%,25% 1%,38% 7%); display: grid; place-items: center; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(15px, 1.3vw, 20px); line-height: 1.15; text-align: center; }
.s-cover .cfooter .stamp { position: relative; background: var(--red); color: var(--paper); padding: 6px 14px; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(14px, 1.1vw, 20px); transform: none; line-height: 1; letter-spacing: 0.02em; display: flex; flex-direction: column; gap: 2px; }
.s-cover .cfooter .stamp .lab2 { font-family: 'Albert Sans', sans-serif; font-weight: 700; font-size: clamp(11px, 0.7vw, 12px); letter-spacing: 0.18em; line-height: 1; }


/* ════════════════════════════════════════════════════════════
   SLIDE 2 — 5 WHY CHAIN
   ════════════════════════════════════════════════════════════ */
.s-why { background: var(--paper); }
.s-why .blob { position: absolute; border-radius: 50%; z-index: 2; }
.s-why .blob.b-red    { background: var(--red);    width: 9vmin;  height: 9vmin;  top: 5%;  left: 3%; }
.s-why .blob.b-orange { background: var(--orange); width: 7vmin;  height: 7vmin;  top: 78%; left: 5%; }
.s-why .blob.b-green  { background: var(--green);  width: 8vmin;  height: 8vmin;  top: 74%; left: 83%; }
.s-why .blob.b-blue   { background: var(--blue);   width: 7vmin;  height: 7vmin;  top: 6%;  left: 84%; }
.s-why .why-kicker { position: absolute; top: clamp(28px, 3.5vh, 54px); left: 50%; transform: translateX(-50%); font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.32em; font-size: clamp(11px, 0.85vw, 13px); color: var(--ink); z-index: 6; white-space: nowrap; }
.s-why .why-chain { position: absolute; inset: clamp(72px, 9vh, 110px) clamp(36px, 3.6vw, 72px) clamp(40px, 5vh, 68px); z-index: 5; display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.s-why .why-item {
  border: 1.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-right: -1.5px;
  will-change: transform, opacity;
  transform-origin: center top;
}
.s-why .why-item:last-child { margin-right: 0; }
.s-why .wi-strip { height: clamp(14px, 1.8vh, 24px); flex-shrink: 0; }
.s-why .why-item:nth-child(1) .wi-strip { background: var(--red); }
.s-why .why-item:nth-child(2) .wi-strip { background: var(--orange); }
.s-why .why-item:nth-child(3) .wi-strip { background: var(--yellow); }
.s-why .why-item:nth-child(4) .wi-strip { background: var(--green); }
.s-why .why-item:nth-child(5) .wi-strip { background: var(--blue); }
.s-why .wi-num { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(52px, min(5.2vw, 8vh), 100px); line-height: 0.84; letter-spacing: -0.02em; padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.3vw, 18px) 0; flex-shrink: 0; }
.s-why .why-item:nth-child(1) .wi-num { color: var(--red); }
.s-why .why-item:nth-child(2) .wi-num { color: var(--orange); }
.s-why .why-item:nth-child(3) .wi-num { color: var(--yellow); }
.s-why .why-item:nth-child(4) .wi-num { color: var(--green); }
.s-why .why-item:nth-child(5) .wi-num { color: var(--blue); }
.s-why .wi-body { padding: clamp(6px, 0.9vh, 12px) clamp(12px, 1.3vw, 18px) clamp(12px, 1.6vh, 20px); display: flex; flex-direction: column; gap: clamp(5px, 0.7vh, 9px); flex: 1; }
.s-why .wi-lbl   { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(11px, 0.82vw, 13px); color: var(--ink); }
.s-why .wi-title { font-family: 'Big Shoulders Display', sans-serif; font-weight: 700; font-size: clamp(15px, 1.5vw, 24px); line-height: 1.05; color: var(--ink); letter-spacing: -0.01em; }
.s-why .wi-desc  { font-family: 'Albert Sans', sans-serif; font-size: clamp(13px, 1vw, 16px); line-height: 1.45; color: var(--ink); opacity: 0.82; flex: 1; }
.s-why .wi-mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(10px, 0.75vw, 12px); color: var(--ink); opacity: 0.52; letter-spacing: 0.04em; border-top: 1px dashed var(--ink); padding-top: clamp(6px, 0.8vh, 10px); margin-top: auto; }


/* ════════════════════════════════════════════════════════════
   SLIDE 3 — GOALS & BENEFITS (new)
   ════════════════════════════════════════════════════════════ */
.s-goals { background: var(--paper); }
.s-goals .frame { position: absolute; inset: clamp(36px,3.6vw,72px) clamp(36px,3.6vw,72px) clamp(54px,6vh,88px); display: grid; grid-template-rows: auto 1fr; gap: clamp(16px,1.8vh,28px); z-index: 4; }
.s-goals .topbar { display: flex; align-items: end; justify-content: space-between; border-bottom: 1.5px solid var(--ink); padding-bottom: clamp(10px,1.2vh,18px); gap: 30px; }
.s-goals .topbar .ttl { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(44px,min(4.8vw,8vh),88px); line-height: 0.9; letter-spacing: -0.016em; color: var(--ink); }
.s-goals .topbar .ttl em { color: var(--red); font-style: normal; }
.s-goals .topbar .lab { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: clamp(12px,0.9vw,14px); color: var(--ink); text-align: right; line-height: 1.5; }
.s-goals .cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2vw,32px); overflow: hidden; }
.s-goals .col-card { border: 1.5px solid var(--ink); display: flex; flex-direction: column; overflow: hidden; }
.s-goals .col-hd { padding: clamp(10px,1.2vh,16px) clamp(14px,1.4vw,20px); border-bottom: 1.5px solid var(--ink); flex-shrink: 0; }
.s-goals .col-hd .hd-label { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: clamp(10px,0.78vw,12px); color: var(--ink); opacity: 0.65; margin-bottom: 4px; }
.s-goals .col-hd .hd-title { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(22px,min(2.2vw,3.8vh),40px); line-height: 0.94; color: var(--ink); letter-spacing: -0.01em; }
.s-goals .col-hd.hd-goals .hd-title  { color: var(--red); }
.s-goals .col-hd.hd-bene  .hd-title  { color: var(--blue); }
.s-goals .col-body { padding: clamp(10px,1.2vh,16px) clamp(14px,1.4vw,20px); display: flex; flex-direction: column; gap: clamp(8px,1vh,13px); flex: 1; overflow: hidden; }
/* Goal items */
.s-goals .goal-item { display: flex; gap: clamp(8px,0.8vw,12px); align-items: flex-start; }
.s-goals .goal-num  { width: clamp(20px,1.7vw,26px); height: clamp(20px,1.7vw,26px); border: 1.5px solid var(--red); color: var(--red); font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(12px,1vw,15px); display: flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 1; }
.s-goals .goal-text { font-family: 'Albert Sans', sans-serif; font-size: clamp(12px,0.92vw,14px); line-height: 1.5; color: var(--ink); }
/* Benefit items */
.s-goals .benefit-item { display: flex; gap: clamp(8px,0.8vw,12px); align-items: flex-start; }
.s-goals .benefit-dot  { width: clamp(7px,0.55vw,9px); height: clamp(7px,0.55vw,9px); border-radius: 50%; background: var(--blue); margin-top: clamp(5px,0.6vh,7px); flex-shrink: 0; }
.s-goals .benefit-text { font-family: 'Albert Sans', sans-serif; font-size: clamp(12px,0.92vw,14px); line-height: 1.5; color: var(--ink); }


/* ════════════════════════════════════════════════════════════
   SLIDE 4 — DATASET COMPARISON (table layout)
   ════════════════════════════════════════════════════════════ */
.s-compare { background: var(--paper); }
.s-compare .frame { position: absolute; inset: clamp(36px,3.6vw,72px) clamp(36px,3.6vw,72px) clamp(54px,6vh,88px); display: grid; grid-template-rows: auto 1fr; gap: clamp(16px,1.8vh,28px); z-index: 4; }
.s-compare .topbar { display: flex; align-items: end; justify-content: space-between; border-bottom: 1.5px solid var(--ink); padding-bottom: clamp(10px,1.2vh,18px); gap: 30px; }
.s-compare .topbar .ttl { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(44px,min(4.8vw,8vh),88px); line-height: 0.9; letter-spacing: -0.016em; color: var(--ink); }
.s-compare .topbar .ttl em { color: var(--red); font-style: normal; }
.s-compare .topbar .lab { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: clamp(12px,0.9vw,14px); color: var(--ink); text-align: right; line-height: 1.5; }
.s-compare .table-wrap { overflow: hidden; display: flex; flex-direction: column; }
.s-compare .compare-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.s-compare .compare-table th {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 900;
  font-size: clamp(15px,1.4vw,22px); letter-spacing: -0.01em;
  padding: clamp(10px,1.2vh,16px) clamp(12px,1.2vw,18px);
  text-align: left; border: 1px solid var(--ink);
}
.s-compare .compare-table th:first-child { background: var(--ink); color: var(--paper); width: 18%; }
.s-compare .compare-table th.th-2023     { background: var(--orange); color: var(--ink); width: 41%; }
.s-compare .compare-table th.th-2025     { background: var(--blue);   color: var(--paper); width: 41%; }
.s-compare .compare-table td {
  padding: clamp(7px,0.88vh,12px) clamp(12px,1.2vw,18px);
  border: 1px solid rgba(58,37,22,0.18);
  vertical-align: top; line-height: 1.45;
}
.s-compare .compare-table td:first-child {
  font-family: 'Albert Sans', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em;
  font-size: clamp(10px,0.76vw,12px); color: var(--ink); opacity: 0.7;
  background: rgba(58,37,22,0.04); vertical-align: middle;
}
.s-compare .compare-table td:not(:first-child) {
  font-family: 'Albert Sans', sans-serif; font-size: clamp(13px,1vw,15px); color: var(--ink);
}
.s-compare .compare-table tr:last-child td { border-bottom: 1.5px solid var(--ink); }
.s-compare .compare-table .hl { color: var(--red); font-weight: 700; }
.s-compare .compare-table .hlb { color: var(--blue); font-weight: 700; }


/* ════════════════════════════════════════════════════════════
   SLIDE 5 — CATALOGUE GRID (Related Works)
   ════════════════════════════════════════════════════════════ */
.s-catalogue { background: var(--paper); }
.s-catalogue .frame {
  position: absolute;
  inset: clamp(28px, 3vw, 60px) clamp(28px, 3vw, 60px) clamp(50px, 5.6vh, 84px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(18px, 2vh, 30px);
  z-index: 4;
}
.s-catalogue .topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(58,37,22,0.72);
  padding-bottom: clamp(12px, 1.4vh, 20px);
  gap: 30px;
}
.s-catalogue .topbar .ttl {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, min(5vw, 8.2vh), 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.s-catalogue .topbar .ttl em { color: var(--red); font-style: normal; }
.s-catalogue .topbar .lab {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(11px, 0.82vw, 13px);
  color: rgba(58,37,22,0.78);
  text-align: right;
  line-height: 1.35;
}
.s-catalogue .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 20px);
}
.s-catalogue .grid.col-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.s-catalogue .card {
  background: #fbf7ef;
  border: 1.5px solid rgba(58,37,22,0.84);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(58,37,22,0.18);
}
.s-catalogue .card .topstrip { height: clamp(10px, 1.2vh, 18px); }
.s-catalogue .card.c-red    .topstrip { background: var(--red); }
.s-catalogue .card.c-pink   .topstrip { background: var(--pink); }
.s-catalogue .card.c-orange .topstrip { background: var(--orange); }
.s-catalogue .card.c-blue   .topstrip { background: var(--blue); }
.s-catalogue .card.c-green  .topstrip { background: var(--green); }
.s-catalogue .card.c-yellow .topstrip { background: var(--yellow); }
.s-catalogue .card .body {
  padding: clamp(14px, 1.4vw, 20px) clamp(14px, 1.3vw, 18px) clamp(16px, 1.5vw, 22px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vh, 14px);
  flex: 1;
}
.s-catalogue .paper-body { font-family: Georgia, 'Times New Roman', serif; color: var(--ink); }
.s-catalogue .paper-id {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(58,37,22,0.72);
}
.s-catalogue .paper-title {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-catalogue .paper-author {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(11px, 0.82vw, 13px);
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(58,37,22,0.82);
}
.s-catalogue .paper-abstract {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(13px, 0.96vw, 15px);
  line-height: 1.5;
  color: var(--ink);
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-catalogue .paper-foot {
  margin-top: auto;
  border-top: 1px solid rgba(58,37,22,0.22);
  padding-top: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.35;
  color: var(--ink);
}
.s-catalogue .paper-foot .k {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.s-catalogue .paper-foot span:last-child { text-align: left; }

.s-catalogue.active .topbar { animation: fadeSlideUp 400ms ease both; animation-delay: 100ms; }
.s-catalogue.active .card { animation: cardIn 460ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.s-catalogue.active .card:nth-child(1) { animation-delay: 200ms; }
.s-catalogue.active .card:nth-child(2) { animation-delay: 280ms; }
.s-catalogue.active .card:nth-child(3) { animation-delay: 360ms; }
.s-catalogue.active .card:nth-child(4) { animation-delay: 440ms; }

@media (max-width: 1100px) {
  .s-catalogue .grid { grid-template-columns: 1fr; }
  .s-catalogue .paper-title { font-size: clamp(15px, 1.3vw, 20px); }
  .s-catalogue .paper-abstract { font-size: clamp(12px, 0.92vw, 14px); }
}


/* ════════════════════════════════════════════════════════════
   SLIDE 6 — PREVIOUS WORK GALLERY
   ════════════════════════════════════════════════════════════ */
.s-prev { background: var(--paper); }
.s-prev .frame { position: absolute; inset: clamp(28px,3vw,60px) clamp(36px,3.6vw,72px) clamp(54px,6vh,88px); display: grid; grid-template-rows: auto 1fr; gap: clamp(12px,1.4vh,20px); z-index: 4; }
.s-prev .topbar { display: flex; align-items: end; justify-content: space-between; border-bottom: 1.5px solid var(--ink); padding-bottom: clamp(10px,1.2vh,18px); gap: 30px; flex-shrink: 0; }
.s-prev .topbar .ttl { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(34px,min(4.2vw,7vh),74px); line-height: 0.92; letter-spacing: -0.014em; color: var(--ink); }
.s-prev .topbar .ttl em { color: var(--red); font-style: normal; }
.s-prev .workflow-board {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(14px, 1.4vw, 22px);
  min-height: 0;
  flex: 1;
  align-items: stretch;
}
.s-prev .workflow-main,
.s-prev .workflow-card {
  margin: 0;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
  opacity: 1;
  transform: none;
}
.s-prev .workflow-main {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  height: 100%;
}
.s-prev .workflow-main img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
}
.s-prev .workflow-main figcaption,
.s-prev .workflow-card figcaption {
  display: none;
}
.s-prev .workflow-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 18px);
  min-height: 0;
  height: 100%;
}
.s-prev .workflow-card {
  display: block;
  min-height: 0;
  height: 100%;
  aspect-ratio: 1.08 / 1;
}
.s-prev .workflow-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
}
.s-prev.active .workflow-card:nth-child(1) { animation: workflowPop 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 180ms; }
.s-prev.active .workflow-card:nth-child(2) { animation: workflowPop 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 260ms; }
.s-prev.active .workflow-card:nth-child(3) { animation: workflowPop 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 340ms; }
.s-prev.active .workflow-card:nth-child(4) { animation: workflowPop 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 420ms; }


.s-why .wi-note {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 5px 11px 4px;
  min-height: 28px;
  border: 1.5px solid var(--red);
  background: rgba(229, 57, 42, 0.12);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(12px, 0.92vw, 15px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
  box-shadow: 3px 3px 0 rgba(229, 57, 42, 0.16);
}
.s-why.problem-revealed .wi-note {
  opacity: 1;
  transform: translateY(0);
}
.s-why.problem-revealed .why-item:nth-child(2) .wi-note { transition-delay: 40ms; }
.s-why.problem-revealed .why-item:nth-child(3) .wi-note { transition-delay: 110ms; }
.s-why.problem-revealed .why-item:nth-child(4) .wi-note { transition-delay: 180ms; }
.s-why.problem-revealed .why-item:nth-child(2) .wi-note,
.s-why.problem-revealed .why-item:nth-child(3) .wi-note,
.s-why.problem-revealed .why-item:nth-child(4) .wi-note {
  opacity: 1;
  transform: translateY(0);
}

/* Slide 8 — Outputs */
.s-outputs { background: var(--paper); }
.s-outputs .frame {
  position: absolute;
  inset: clamp(36px,3.6vw,72px) clamp(36px,3.6vw,72px) clamp(54px,6vh,88px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(14px,1.6vh,24px);
  z-index: 4;
}
.s-outputs .topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: clamp(10px,1.2vh,18px);
  gap: 30px;
}
.s-outputs .topbar .ttl {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, min(5vw, 8.5vh), 92px);
  line-height: 0.9;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.s-outputs .topbar .ttl em { color: var(--green); font-style: normal; }
.s-outputs .topbar .lab {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--ink);
  text-align: right;
  line-height: 1.5;
}
.s-outputs .outputs-wrap { display: flex; align-items: center; justify-content: center; min-height: 0; }
.s-outputs .outputs-hero {
  width: min(100%, 1060px);
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  padding: clamp(22px, 2.4vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}
.s-outputs.active .outputs-hero {
  animation: cardIn 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 120ms;
}
.s-outputs .out-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 14vw, 220px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  color: var(--red);
}
.s-outputs .out-kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(12px, 0.92vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
  margin-bottom: clamp(12px, 1.4vh, 20px);
}
.s-outputs .out-list {
  margin: 0;
  padding-left: clamp(20px, 1.6vw, 28px);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.s-outputs .out-list li + li { margin-top: clamp(10px, 1vh, 16px); }

/* ════════════════════════════════════════════════════════════
   SLIDE 5 (legacy) — STRIPE SPREAD (kept for reference)
   ════════════════════════════════════════════════════════════ */
.s-stripe { background: var(--paper); }
.s-stripe .ribbon-stack { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.s-stripe .ribbon-stack .rib { position: absolute; height: clamp(40px, 6vh, 96px); width: 160%; left: -20%; transform-origin: 50% 50%; transform: rotate(-22deg); }
.s-stripe .ribbon-stack .rib.r1 { background: var(--pink);   top: 18%; }
.s-stripe .ribbon-stack .rib.r2 { background: var(--orange); top: 30%; }
.s-stripe .ribbon-stack .rib.r3 { background: var(--yellow); top: 42%; }
.s-stripe .ribbon-stack .rib.r4 { background: var(--green);  top: 54%; }
.s-stripe .ribbon-stack .rib.r5 { background: var(--blue);   top: 66%; }
.s-stripe .quote-wrap { position: absolute; left: clamp(40px, 4vw, 80px); right: clamp(40px, 4vw, 80px); top: 50%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; align-items: flex-start; gap: clamp(16px, 2vh, 28px); }
.s-stripe .qkicker { background: var(--paper); padding: clamp(6px, 0.8vh, 12px) clamp(14px, 1.4vw, 22px); border: 1.5px solid var(--ink); font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; font-size: clamp(12px, 0.9vw, 14px); color: var(--ink); }
.s-stripe .qbody { background: var(--paper); padding: clamp(20px, 2.4vh, 40px) clamp(28px, 2.6vw, 48px); border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); max-width: 82%; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(44px, min(5vw, 8.5vh), 100px); line-height: 0.92; color: var(--ink); letter-spacing: -0.018em; }
.s-stripe .qbody em { color: var(--red); font-style: normal; }
.s-stripe .qattr { background: var(--ink); color: var(--paper); padding: clamp(8px, 1vh, 14px) clamp(14px, 1.4vw, 22px); font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(12px, 0.85vw, 14px); letter-spacing: 0.04em; }


/* ════════════════════════════════════════════════════════════
   SLIDE 7 — DATA / EQ BARS (System Design)
   ════════════════════════════════════════════════════════════ */
.s-data { background: var(--paper); }
.s-data .frame { position: absolute; inset: clamp(36px, 3.6vw, 72px) clamp(36px, 3.6vw, 72px) clamp(54px, 6vh, 88px); display: grid; grid-template-rows: auto 1fr; gap: clamp(18px, 2vh, 32px); z-index: 4; }
.s-data .topbar { display: flex; align-items: end; justify-content: space-between; border-bottom: 1.5px solid var(--ink); padding-bottom: clamp(12px, 1.4vh, 22px); gap: 30px; }
.s-data .topbar .ttl { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(48px, min(5vw, 8.5vh), 96px); line-height: 0.9; letter-spacing: -0.014em; color: var(--ink); }
.s-data .topbar .lab { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: clamp(12px, 0.9vw, 14px); color: var(--ink); text-align: right; }
.s-data .body { display: grid; grid-template-columns: 0.9fr 1.6fr; gap: clamp(28px, 3vw, 56px); }
.s-data .col-a { display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 2.4vh, 36px); }
.s-data .stat .vbig { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(90px, min(9vw, 15vh), 200px); line-height: 0.86; color: var(--red); letter-spacing: -0.025em; }
.s-data .stat .vbig sub { font-size: 0.34em; vertical-align: baseline; color: var(--ink); letter-spacing: 0; margin-left: 8px; }
.s-data .stat .lab-tag { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(14px, 1vw, 16px); color: var(--ink); margin-top: 6px; }
.s-data .stat .desc { font-family: 'Albert Sans', sans-serif; font-size: clamp(15px, 1.1vw, 18px); line-height: 1.5; color: var(--ink); max-width: 30ch; margin-top: 6px; }
.s-data .eq { border: 1.5px solid var(--ink); background: var(--paper); padding: clamp(18px, 2vw, 28px) clamp(20px, 2vw, 28px) clamp(14px, 1.6vh, 22px); display: grid; grid-template-rows: 1fr auto; gap: clamp(10px, 1.2vh, 18px); overflow: hidden; }
.s-data .eq .bars { display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(8px, 1vw, 16px); align-items: end; height: 100%; }
.s-data .eq .bcol { display: flex; flex-direction: column-reverse; justify-content: start; height: 100%; gap: clamp(4px, 0.6vh, 8px); }
.s-data .eq .bcol .seg { flex: 1 1 0; min-height: 12px; background: rgba(58,37,22,0.10); border: 1px solid rgba(58,37,22,0.22); }
.s-data .eq .bcol[data-c="r"] .seg.on { background: var(--red);    border-color: var(--red); }
.s-data .eq .bcol[data-c="p"] .seg.on { background: var(--pink);   border-color: var(--pink); }
.s-data .eq .bcol[data-c="o"] .seg.on { background: var(--orange); border-color: var(--orange); }
.s-data .eq .bcol[data-c="y"] .seg.on { background: var(--yellow); border-color: var(--yellow); }
.s-data .eq .bcol[data-c="g"] .seg.on { background: var(--green);  border-color: var(--green); }
.s-data .eq .bcol[data-c="b"] .seg.on { background: var(--blue);   border-color: var(--blue); }
.s-data .eq .ticks { display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(8px, 1vw, 16px); border-top: 1px solid var(--ink); padding-top: clamp(8px, 1vh, 14px); }
.s-data .eq .ticks .ticklab { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(10px, 0.78vw, 12px); color: var(--ink); letter-spacing: 0.04em; text-align: center; }


/* ════════════════════════════════════════════════════════════
   SLIDE 8 — TIMELINE (phase flow grid)
   ════════════════════════════════════════════════════════════ */
.s-timeline { background: var(--paper); }
.s-timeline .frame { position: absolute; inset: clamp(30px,3.2vw,64px) clamp(30px,3.2vw,64px) clamp(44px,5vh,74px); display: grid; grid-template-rows: auto minmax(0, 1fr); gap: clamp(10px,1.2vh,18px); z-index: 4; }
.s-timeline .topbar { display: flex; align-items: end; justify-content: space-between; border-bottom: 1.5px solid var(--ink); padding-bottom: clamp(10px,1.2vh,18px); gap: 30px; flex-shrink: 0; }
.s-timeline .topbar .ttl { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(40px,min(4.4vw,7vh),78px); line-height: 0.9; letter-spacing: -0.014em; color: var(--ink); }
.s-timeline .topbar .lab { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(11px,0.82vw,13px); color: var(--ink); text-align: right; line-height: 1.45; }
.s-timeline .tl-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr 1fr; gap: clamp(8px,1vw,14px); overflow: hidden; }
.s-timeline .tl-phase { border: 1.5px solid var(--ink); background: var(--paper); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow 160ms ease; }
.s-timeline .tl-phase.tl-now { border-color: var(--red); box-shadow: 0 0 0 1.5px var(--red); }
.s-timeline .tl-stripe { height: clamp(6px,0.8vh,10px); flex-shrink: 0; }
.s-timeline .tl-inner { padding: clamp(7px,0.9vh,12px) clamp(10px,1.1vw,15px); display: flex; flex-direction: column; gap: clamp(2px,0.4vh,6px); flex: 1; overflow: hidden; }
.s-timeline .tl-month { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(9px,0.72vw,11px); color: var(--ink); opacity: 0.6; letter-spacing: 0.06em; }
.s-timeline .tl-num   { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(26px,min(2.6vw,4.5vh),50px); line-height: 0.86; letter-spacing: -0.02em; }
.s-timeline .tl-title { font-family: 'Big Shoulders Display', sans-serif; font-weight: 700; font-size: clamp(12px,1.15vw,17px); line-height: 1.1; color: var(--ink); }
.s-timeline .tl-act   { font-family: 'Albert Sans', sans-serif; font-size: clamp(10px,0.8vw,13px); line-height: 1.4; color: var(--ink); opacity: 0.72; flex: 1; min-height: 0; overflow: hidden; }
.s-timeline .tl-chip  { display: inline-flex; align-items: center; padding: 2px 7px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(8px,0.62vw,10px); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); width: fit-content; margin-top: auto; flex-shrink: 0; }
.s-timeline .tl-chip.c-pink   { background: var(--pink); }
.s-timeline .tl-chip.c-orange { background: var(--orange); color: var(--ink); }
.s-timeline .tl-chip.c-yellow { background: var(--yellow); color: var(--ink); }
.s-timeline .tl-chip.c-green  { background: var(--green); }
.s-timeline .tl-chip.c-blue   { background: var(--blue); }
.s-timeline .tl-chip.c-red    { background: var(--red); }
/* Phase accent colors */
.s-timeline .ph-1 .tl-stripe { background: var(--pink); }
.s-timeline .ph-1 .tl-num    { color: var(--pink); }
.s-timeline .ph-2 .tl-stripe { background: var(--orange); }
.s-timeline .ph-2 .tl-num    { color: var(--orange); }
.s-timeline .ph-3 .tl-stripe { background: var(--yellow); }
.s-timeline .ph-3 .tl-num    { color: var(--yellow); }
.s-timeline .ph-4 .tl-stripe { background: var(--green); }
.s-timeline .ph-4 .tl-num    { color: var(--green); }
.s-timeline .ph-5 .tl-stripe { background: var(--blue); }
.s-timeline .ph-5 .tl-num    { color: var(--blue); }
.s-timeline .ph-6 .tl-stripe { background: var(--red); }
.s-timeline .ph-6 .tl-num    { color: var(--red); }
.s-timeline .ph-7 .tl-stripe { background: var(--blue); }
.s-timeline .ph-7 .tl-num    { color: var(--blue); }
.s-timeline .ph-8 .tl-stripe { background: var(--ink); }
.s-timeline .ph-8 .tl-num    { color: var(--ink); }


/* ════════════════════════════════════════════════════════════
   SLIDE 9 — COLOPHON / CLOSING
   ════════════════════════════════════════════════════════════ */
.s-colophon { background: var(--paper); }
.s-colophon .ribbons { position: absolute; left: 0; top: clamp(140px, 16vh, 240px); bottom: clamp(100px, 12vh, 180px); width: 60%; z-index: 3; pointer-events: none; overflow: hidden; }
.s-colophon .ribbon { position: absolute; right: -20%; width: 160%; transform-origin: 100% 50%; }
.s-colophon .ribbon.r-pink   { background: var(--pink); }
.s-colophon .ribbon.r-orange { background: var(--orange); }
.s-colophon .ribbon.r-yellow { background: var(--yellow); }
.s-colophon .ribbon.r-green  { background: var(--green); }
.s-colophon .ribbon.r-blue   { background: var(--blue); }
.s-colophon .col-petals { position: absolute; bottom: clamp(60px, 7vh, 110px); right: clamp(40px, 4vw, 80px); width: clamp(180px, 18vw, 280px); height: clamp(140px, 14vw, 220px); pointer-events: none; z-index: 4; }
.s-colophon .col-petals .p1 { background: var(--red);    width: 50%; left: 0;   top: 28%; }
.s-colophon .col-petals .p2 { background: var(--orange); width: 38%; left: 16%; top: 50%; }
.s-colophon .col-petals .p3 { background: var(--green);  width: 44%; left: 30%; top: 0;   }
.s-colophon .col-petals .p4 { background: var(--blue);   width: 50%; left: 50%; top: 22%; }
.s-colophon .titlewrap { position: absolute; left: clamp(36px, 3.6vw, 72px); top: clamp(40px, 5vh, 96px); z-index: 5; max-width: 92%; }
.s-colophon .ktag { font-family: 'Albert Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; font-size: clamp(12px, 0.9vw, 14px); color: var(--ink); margin-bottom: clamp(14px, 1.6vh, 24px); }
.s-colophon .ttl { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(80px, min(9vw, 14vh), 180px); line-height: 0.86; color: var(--ink); letter-spacing: -0.022em; }
.s-colophon .col-footer { position: absolute; left: clamp(36px, 3.6vw, 72px); bottom: clamp(50px, 6vh, 88px); right: clamp(220px, 22vw, 320px); display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; gap: clamp(20px, 2.4vw, 44px); z-index: 5; }
.s-colophon .col-footer > div { border-top: 1.5px solid var(--ink); padding-top: clamp(10px, 1.2vh, 16px); }
.s-colophon .col-footer .ftag { text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; font-size: clamp(11px, 0.78vw, 13px); margin-bottom: 6px; color: var(--ink); }
.s-colophon .col-footer .ftxt { font-family: 'Albert Sans', sans-serif; font-size: clamp(15px, 1vw, 16px); line-height: 1.5; color: var(--ink); }
.s-colophon .seal-stack { position: absolute; right: clamp(40px, 4vw, 80px); top: clamp(40px, 5vh, 96px); display: flex; flex-direction: column; gap: 14px; align-items: end; z-index: 6; }
.s-colophon .seal { width: clamp(92px, 7.4vw, 130px); height: clamp(92px, 7.4vw, 130px); background: var(--ink); color: var(--paper); clip-path: polygon(50% 0%,60% 8%,73% 4%,76% 17%,89% 18%,87% 31%,100% 35%,92% 47%,100% 60%,87% 64%,90% 77%,76% 78%,75% 91%,62% 88%,53% 100%,42% 90%,30% 96%,25% 84%,12% 86%,13% 73%,0% 70%,7% 58%,0% 47%,11% 39%,4% 27%,17% 25%,13% 12%,27% 14%,25% 1%,38% 7%); display: grid; place-items: center; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(28px, 2.4vw, 42px); line-height: 0.9; letter-spacing: -0.01em; text-align: center; }
.s-colophon .red-stamp { background: var(--red); color: var(--paper); padding: clamp(8px, 1vh, 14px) clamp(14px, 1.4vw, 22px); font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(20px, 1.6vw, 28px); line-height: 1; letter-spacing: 0.02em; transform: rotate(-3deg); }


/* ════════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(58,37,22,0.86);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative; background: var(--paper); border: 2px solid var(--ink);
  display: flex; flex-direction: column; max-width: 82vw; max-height: 84vh; overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.lightbox-header {
  border-bottom: 1.5px solid var(--ink); padding: clamp(10px,1.2vh,16px) clamp(16px,1.6vw,24px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-shrink: 0;
}
.lightbox-title {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 900;
  font-size: clamp(16px,1.5vw,22px); color: var(--ink); letter-spacing: -0.01em;
}
.lightbox-close {
  background: var(--ink); color: var(--paper); border: none; cursor: pointer;
  width: clamp(28px,2.2vw,36px); height: clamp(28px,2.2vw,36px);
  font-size: clamp(14px,1.1vw,18px); display: flex; align-items: center; justify-content: center;
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; flex-shrink: 0;
  transition: background 140ms ease;
}
.lightbox-close:hover { background: var(--red); }
.lightbox-body {
  flex: 1; overflow: auto; display: flex; align-items: center; justify-content: center;
  padding: clamp(16px,2vw,32px); min-height: 0;
}
.lightbox-body svg { max-width: 72vw; max-height: 66vh; }
.lightbox-body img {
  max-width: 72vw;
  max-height: 66vh;
  object-fit: contain;
  display: block;
}
.lightbox-footer {
  border-top: 1.5px solid var(--ink); padding: clamp(8px,1vh,12px) clamp(16px,1.6vw,24px);
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(11px,0.82vw,13px);
  color: var(--ink); opacity: 0.65; flex-shrink: 0;
}

img.zoomable-image {
  cursor: zoom-in;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}
img.zoomable-image:hover,
img.zoomable-image:focus {
  transform: scale(1.01);
  filter: saturate(1.02);
}
img.zoomable-image:focus {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}


/* ════════════════════════════════════════════════════════════
   EDIT MODE
   ════════════════════════════════════════════════════════════ */
.edit-btn { background: none; border: 1.5px solid var(--ink); color: var(--ink); cursor: pointer; font-size: clamp(12px,1vw,15px); width: clamp(28px,2.4vw,38px); height: clamp(28px,2.4vw,38px); display: flex; align-items: center; justify-content: center; transition: background 160ms, color 160ms, border-color 160ms; flex-shrink: 0; }
.edit-btn:hover { background: var(--ink); color: var(--paper); }
.edit-btn.edit-on { background: var(--red); border-color: var(--red); color: var(--paper); }
.edit-btn.edit-on:hover { background: #c0221a; border-color: #c0221a; }
/* When edit mode is active, editable elements show a dashed outline */
body.editing [contenteditable] {
  outline: 2px dashed rgba(229,57,42,0.6);
  outline-offset: 2px;
  cursor: text;
  border-radius: 1px;
}
body.editing [contenteditable]:focus {
  outline: 2px solid var(--red);
  background: rgba(229,57,42,0.05);
}
/* Save indicator */
.edit-saved {
  position: fixed; bottom: calc(var(--nav-h) + 12px); right: 16px;
  background: var(--green); color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 10px; z-index: 300;
  opacity: 0; transition: opacity 200ms ease;
  pointer-events: none;
}
.edit-saved.show { opacity: 1; }


/* ═══════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes slideEnter {
  from { opacity: 0; transform: translate3d(calc(var(--slide-dir, 1) * 26px), 16px, 0) scale(0.985); filter: blur(2px); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}
@keyframes slideExit {
  from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
  to   { opacity: 0; transform: translate3d(calc(var(--slide-dir, 1) * -18px), -10px, 0) scale(0.992); filter: blur(1px); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes petalBloom {
  from { opacity: 0; transform: scale(0.15); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadePop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rowSlideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes titleBig {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sealPop {
  from { opacity: 0; transform: scale(0.5) rotate(-15deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes workflowPop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* Cover redesign */
.s-cover .cover-brand {
  position: absolute;
  left: clamp(30px, 3vw, 56px);
  top: clamp(24px, 2.8vh, 42px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
}
.s-cover .cover-brand .brand-logo {
  width: clamp(58px, 4.8vw, 84px);
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.s-cover .cover-brand .brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}
.s-cover .cover-brand .brand-kicker {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.s-cover .cover-brand .brand-sub {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 0.92vw, 15px);
  letter-spacing: 0.02em;
}
.s-cover .cover-ribbons {
  position: absolute;
  top: clamp(-70px, -5.6vh, -28px);
  right: clamp(-70px, -4vw, -24px);
  width: min(74%, 1080px);
  height: clamp(360px, 44vh, 620px);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.s-cover .cover-ribbons .rib {
  position: absolute;
  right: -8%;
  width: 132%;
  height: clamp(44px, 4.8vw, 86px);
  transform-origin: center;
  transform: rotate(38deg);
  border-radius: 999px;
}
.s-cover .cover-ribbons .r1 { top: 2%; background: var(--blue); }
.s-cover .cover-ribbons .r2 { top: 15%; background: var(--green); }
.s-cover .cover-ribbons .r3 { top: 28%; background: var(--yellow); }
.s-cover .cover-ribbons .r4 { top: 41%; background: var(--orange); }
.s-cover .cover-ribbons .r5 { top: 54%; background: var(--pink); }
.s-cover .cover-main {
  position: absolute;
  left: clamp(36px, 3.6vw, 72px);
  right: clamp(36px, 3.6vw, 72px);
  top: clamp(230px, 24vh, 360px);
  bottom: clamp(126px, 13vh, 196px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(250px, 22vw, 330px);
  gap: clamp(32px, 4vw, 70px);
  align-items: center;
  z-index: 5;
}
.s-cover .cover-kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(12px, 1.4vh, 18px);
  opacity: 0.8;
}
.s-cover .cover-headline {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.35vh, 6px);
  color: var(--ink);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, min(6.2vw, 9.4vh), 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.s-cover .cover-side {
  justify-self: end;
  width: min(100%, 330px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 1.8vh, 24px);
}
.s-cover .cover-linkbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.s-cover .cover-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(46px, 5vh, 62px);
  padding: 12px 18px 10px;
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  box-shadow: 6px 6px 0 rgba(58,37,22,0.26);
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}
.s-cover .cover-link:hover { filter: brightness(0.98); transform: translate(-1px, -1px); }
.s-cover .cover-linknote {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  max-width: 19ch;
  margin-top: 10px;
}
.s-cover .advisor-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: var(--ink);
}
.s-cover .advisor-item {
  width: 100%;
  text-align: center;
}
.s-cover .advisor-label {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(11px, 0.76vw, 13px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.s-cover .advisor-name {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 600;
  line-height: 1.3;
}
.s-cover .cover-footer {
  position: absolute;
  left: clamp(36px, 3.6vw, 72px);
  right: clamp(36px, 3.6vw, 72px);
  bottom: clamp(28px, 3.1vh, 46px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-top: clamp(14px, 1.6vh, 20px);
  border-top: 1.5px solid rgba(58,37,22,0.58);
  z-index: 6;
}
.s-cover .cover-name {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.s-cover .cover-nim,
.s-cover .cover-foot-right {
  margin-top: 8px;
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(12px, 0.84vw, 14px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.s-cover .cover-foot-right {
  letter-spacing: 0.14em;
}
/* Cover motion */
.s-cover .cover-brand,
.s-cover .cover-ribbons .rib,
.s-cover .cover-kicker,
.s-cover .cover-headline span,
.s-cover .qr-card,
.s-cover .qr-caption,
.s-cover .qr-chip,
.s-cover .advisor-item,
.s-cover .cover-footer {
  opacity: 0;
}
.s-cover .cover-ribbons .rib { transform: translateX(18px) rotate(38deg) scaleX(0.96); }
.s-cover .cover-title .cover-kicker { transform: translateY(12px); }
.s-cover .cover-headline span { transform: translateY(22px); }
.s-cover .qr-card,
.s-cover .qr-caption,
.s-cover .qr-chip,
.s-cover .advisor-item,
.s-cover .cover-footer { transform: translateY(14px); }
.s-cover.active .cover-brand { animation: fadeSlideUp 420ms ease both; animation-delay: 80ms; }
.s-cover.active .cover-ribbons .r1 { animation: fadeSlideLeft 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 70ms; }
.s-cover.active .cover-ribbons .r2 { animation: fadeSlideLeft 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 130ms; }
.s-cover.active .cover-ribbons .r3 { animation: fadeSlideLeft 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 190ms; }
.s-cover.active .cover-ribbons .r4 { animation: fadeSlideLeft 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 250ms; }
.s-cover.active .cover-ribbons .r5 { animation: fadeSlideLeft 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 310ms; }
.s-cover.active .cover-kicker { animation: fadeSlideUp 380ms ease both; animation-delay: 180ms; }
.s-cover.active .cover-headline span:nth-child(1) { animation: fadeSlideUp 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 240ms; }
.s-cover.active .cover-headline span:nth-child(2) { animation: fadeSlideUp 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 330ms; }
.s-cover.active .cover-headline span:nth-child(3) { animation: fadeSlideUp 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 420ms; }
.s-cover.active .qr-card { animation: cardIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 300ms; }
.s-cover.active .qr-caption { animation: fadeSlideUp 360ms ease both; animation-delay: 390ms; }
.s-cover.active .qr-chip { animation: fadeSlideUp 360ms ease both; animation-delay: 460ms; }
.s-cover.active .advisor-item:nth-child(1) { animation: fadeSlideUp 380ms ease both; animation-delay: 540ms; }
.s-cover.active .advisor-item:nth-child(2) { animation: fadeSlideUp 380ms ease both; animation-delay: 620ms; }
.s-cover.active .cover-footer { animation: fadeSlideUp 420ms ease both; animation-delay: 680ms; }
@media (max-width: 1100px) {
  .s-cover .cover-main {
    grid-template-columns: 1fr;
    top: clamp(200px, 22vh, 290px);
    bottom: clamp(116px, 12vh, 180px);
  }
  .s-cover .cover-side {
    justify-self: start;
    width: min(100%, 300px);
    margin-top: clamp(18px, 2vh, 28px);
  }
  .s-cover .cover-headline {
    font-size: clamp(56px, 8.4vw, 112px);
  }
}

/* Slide 2: 5 WHY */
.s-why.active .why-kicker { animation: fadeSlideUp 400ms ease both; animation-delay: 80ms; }
.s-why.active .blob       { animation: fadePop 600ms ease both; animation-delay: 100ms; }
/* Per-item motion is handled below. */

/* Slide 3: GOALS & BENEFITS */
.s-goals.active .topbar               { animation: fadeSlideUp 400ms ease both; animation-delay: 100ms; }

/* Slide 4: DATASET COMPARE */
.s-compare.active .topbar { animation: fadeSlideUp 400ms ease both; animation-delay: 100ms; }
.s-compare.active .compare-table tr   { animation: rowSlideIn 360ms ease both; }
.s-compare.active .compare-table tr:nth-child(1) { animation-delay: 180ms; }
.s-compare.active .compare-table tr:nth-child(2) { animation-delay: 230ms; }
.s-compare.active .compare-table tr:nth-child(3) { animation-delay: 280ms; }
.s-compare.active .compare-table tr:nth-child(4) { animation-delay: 330ms; }
.s-compare.active .compare-table tr:nth-child(5) { animation-delay: 380ms; }
.s-compare.active .compare-table tr:nth-child(6) { animation-delay: 430ms; }
.s-compare.active .compare-table tr:nth-child(7) { animation-delay: 480ms; }
.s-compare.active .compare-table tr:nth-child(8) { animation-delay: 530ms; }

/* Slide 5: CATALOGUE (Related Works) */
.s-catalogue.active .topbar { animation: fadeSlideUp 400ms ease both; animation-delay: 100ms; }

/* Slide 6: PREVIOUS WORK GALLERY */
.s-prev.active .topbar { animation: fadeSlideUp 400ms ease both; animation-delay: 100ms; }

/* Slide 6 (legacy stripe) */
.s-stripe.active .rib    { animation: fadePop 500ms ease both; }
.s-stripe.active .rib.r1 { animation-delay: 60ms; }
.s-stripe.active .rib.r2 { animation-delay: 130ms; }
.s-stripe.active .rib.r3 { animation-delay: 200ms; }
.s-stripe.active .rib.r4 { animation-delay: 270ms; }
.s-stripe.active .rib.r5 { animation-delay: 340ms; }
.s-stripe.active .qkicker { animation: fadeSlideUp 400ms ease both; animation-delay: 280ms; }
.s-stripe.active .qbody   { animation: titleBig 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 380ms; }
.s-stripe.active .qattr   { animation: fadeSlideUp 380ms ease both; animation-delay: 540ms; }

/* Slide 7: SYSTEM DESIGN */
.s-data.active .topbar                    { animation: fadeSlideUp 400ms ease both; animation-delay: 80ms; }

/* Slide 8: TIMELINE */
.s-timeline.active .topbar { animation: fadeSlideUp 400ms ease both; animation-delay: 80ms; }

/* Slide 9: COLOPHON */
.s-colophon.active .ribbons                       { animation: fadePop 700ms ease both; animation-delay: 60ms; }
.s-colophon.active .ktag                          { animation: fadeSlideUp 400ms ease both; animation-delay: 180ms; }
.s-colophon.active .ttl                           { animation: titleBig 620ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 260ms; }
.s-colophon.active .seal-stack                    { animation: sealPop 600ms cubic-bezier(0.34, 1.56, 0.64, 1) both; animation-delay: 340ms; }
.s-colophon.active .col-footer > div:nth-child(1) { animation: fadeSlideUp 400ms ease both; animation-delay: 480ms; }
.s-colophon.active .col-footer > div:nth-child(2) { animation: fadeSlideUp 400ms ease both; animation-delay: 560ms; }
.s-colophon.active .col-footer > div:nth-child(3) { animation: fadeSlideUp 400ms ease both; animation-delay: 640ms; }
.s-colophon.active .col-petals .petal             { animation: petalBloom 600ms cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.s-colophon.active .col-petals .petal:nth-child(1) { animation-delay: 600ms; }
.s-colophon.active .col-petals .petal:nth-child(2) { animation-delay: 650ms; }
.s-colophon.active .col-petals .petal:nth-child(3) { animation-delay: 700ms; }
.s-colophon.active .col-petals .petal:nth-child(4) { animation-delay: 750ms; }


/* Granular item motion */
.s-cover .brand-logo,
.s-cover .brand .b1,
.s-cover .brand .b2,
.s-cover .hero,
.s-cover .lockup,
.s-cover .cfooter > *,
.s-cover .ribbon {
  opacity: 0;
  transform: translateY(14px);
}
.s-cover.active .brand-logo { animation: fadePop 420ms ease both; animation-delay: 90ms; }
.s-cover.active .brand .b1  { animation: fadeSlideUp 420ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 150ms; }
.s-cover.active .brand .b2  { animation: fadeSlideUp 420ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 220ms; }
.s-cover.active .hero       { animation: heroSlide 580ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 60ms; }
.s-cover.active .lockup     { animation: fadeSlideUp 450ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 300ms; }
.s-cover.active .ribbon.r-pink   { animation: fadePop 520ms ease both; animation-delay: 100ms; }
.s-cover.active .ribbon.r-orange { animation: fadePop 520ms ease both; animation-delay: 160ms; }
.s-cover.active .ribbon.r-yellow { animation: fadePop 520ms ease both; animation-delay: 220ms; }
.s-cover.active .ribbon.r-green  { animation: fadePop 520ms ease both; animation-delay: 280ms; }
.s-cover.active .ribbon.r-blue   { animation: fadePop 520ms ease both; animation-delay: 340ms; }
.s-cover.active .cfooter > *:nth-child(1) { animation: fadeSlideUp 380ms ease both; animation-delay: 380ms; }
.s-cover.active .cfooter > *:nth-child(2) { animation: fadeSlideUp 380ms ease both; animation-delay: 450ms; }
.s-cover.active .cfooter > *:nth-child(3) { animation: fadeSlideUp 380ms ease both; animation-delay: 520ms; }
.s-cover.active .cfooter > *:nth-child(4) { animation: fadeSlideUp 380ms ease both; animation-delay: 590ms; }

.s-why .why-item {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}
.s-why.active.item-motion .why-item.anim-reveal {
  animation: workflowPop 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.s-goals .goal-item,
.s-goals .benefit-item {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  will-change: transform, opacity;
}
.s-goals.active.item-motion .goal-item.anim-reveal,
.s-goals.active.item-motion .benefit-item.anim-reveal {
  animation: cardIn 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.s-catalogue .card .topstrip,
.s-catalogue .card .nm,
.s-catalogue .card .desc,
.s-catalogue .card .specs .row {
  opacity: 0;
  transform: translateY(12px);
}
.s-catalogue.active .card .topstrip { animation: fadePop 300ms ease both; animation-delay: 140ms; }
.s-catalogue.active .card .nm { animation: fadeSlideUp 360ms ease both; animation-delay: 220ms; }
.s-catalogue.active .card .desc { animation: fadeSlideUp 360ms ease both; animation-delay: 300ms; }
.s-catalogue.active .card .specs .row:nth-child(1) { animation: fadeSlideUp 300ms ease both; animation-delay: 380ms; }
.s-catalogue.active .card .specs .row:nth-child(2) { animation: fadeSlideUp 300ms ease both; animation-delay: 430ms; }
.s-catalogue.active .card .specs .row:nth-child(3) { animation: fadeSlideUp 300ms ease both; animation-delay: 480ms; }
.s-catalogue.active .card .specs .row:nth-child(4) { animation: fadeSlideUp 300ms ease both; animation-delay: 530ms; }

.s-prev .workflow-main img,
.s-prev .workflow-card img {
  opacity: 0;
  transform: scale(0.98);
}
.s-prev.active .workflow-main img { animation: cardIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 90ms; }
.s-prev.active .workflow-card:nth-child(1) img { animation: cardIn 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 180ms; }
.s-prev.active .workflow-card:nth-child(2) img { animation: cardIn 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 260ms; }
.s-prev.active .workflow-card:nth-child(3) img { animation: cardIn 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 340ms; }
.s-prev.active .workflow-card:nth-child(4) img { animation: cardIn 460ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 420ms; }

.s-data .diagram-figure,
.s-data .diagram-caption {
  opacity: 0;
  transform: translateY(14px);
}
.s-data.active .diagram-figure { animation: cardIn 560ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 140ms; }
.s-data.active .diagram-caption { animation: fadeSlideUp 400ms ease both; animation-delay: 300ms; }

.s-outputs .out-num,
.s-outputs .out-kicker,
.s-outputs .out-card,
.s-outputs .out-card-title,
.s-outputs .out-card-desc {
  opacity: 0;
  transform: translateY(12px);
}
.s-outputs.active .out-num { animation: heroSlide 560ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 140ms; }
.s-outputs.active .out-kicker { animation: fadeSlideUp 360ms ease both; animation-delay: 220ms; }
.s-outputs.active .out-card:nth-child(1) { animation: fadeSlideUp 420ms ease both; animation-delay: 300ms; }
.s-outputs.active .out-card:nth-child(2) { animation: fadeSlideUp 420ms ease both; animation-delay: 390ms; }
.s-outputs.active .out-card:nth-child(3) { animation: fadeSlideUp 420ms ease both; animation-delay: 480ms; }
.s-outputs.active .out-card:nth-child(1) .out-card-title { animation: fadeSlideUp 320ms ease both; animation-delay: 360ms; }
.s-outputs.active .out-card:nth-child(1) .out-card-desc  { animation: fadeSlideUp 320ms ease both; animation-delay: 420ms; }
.s-outputs.active .out-card:nth-child(2) .out-card-title { animation: fadeSlideUp 320ms ease both; animation-delay: 450ms; }
.s-outputs.active .out-card:nth-child(2) .out-card-desc  { animation: fadeSlideUp 320ms ease both; animation-delay: 510ms; }
.s-outputs.active .out-card:nth-child(3) .out-card-title { animation: fadeSlideUp 320ms ease both; animation-delay: 540ms; }
.s-outputs.active .out-card:nth-child(3) .out-card-desc  { animation: fadeSlideUp 320ms ease both; animation-delay: 600ms; }

.s-timeline .gantt-headrow .gantt-cell,
.s-timeline .gantt-label,
.s-timeline .gantt-cell.on {
  opacity: 0;
  transform: translateY(10px);
}
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(1) { animation: fadeSlideUp 300ms ease both; animation-delay: 120ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(2) { animation: fadeSlideUp 300ms ease both; animation-delay: 150ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(3) { animation: fadeSlideUp 300ms ease both; animation-delay: 180ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(4) { animation: fadeSlideUp 300ms ease both; animation-delay: 210ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(5) { animation: fadeSlideUp 300ms ease both; animation-delay: 240ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(6) { animation: fadeSlideUp 300ms ease both; animation-delay: 270ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(7) { animation: fadeSlideUp 300ms ease both; animation-delay: 300ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(8) { animation: fadeSlideUp 300ms ease both; animation-delay: 330ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(9) { animation: fadeSlideUp 300ms ease both; animation-delay: 360ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(10) { animation: fadeSlideUp 300ms ease both; animation-delay: 390ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(11) { animation: fadeSlideUp 300ms ease both; animation-delay: 420ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(12) { animation: fadeSlideUp 300ms ease both; animation-delay: 450ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(13) { animation: fadeSlideUp 300ms ease both; animation-delay: 480ms; }
.s-timeline.active .gantt-headrow .gantt-cell:nth-child(14) { animation: fadeSlideUp 300ms ease both; animation-delay: 510ms; }
.s-timeline.active .gantt-row .gantt-label { animation: fadeSlideUp 360ms ease both; }
.s-timeline.active .gantt-row.row-1 .gantt-label { animation-delay: 160ms; }
.s-timeline.active .gantt-row.row-2 .gantt-label { animation-delay: 230ms; }
.s-timeline.active .gantt-row.row-3 .gantt-label { animation-delay: 300ms; }
.s-timeline.active .gantt-row.row-4 .gantt-label { animation-delay: 370ms; }
.s-timeline.active .gantt-row.row-5 .gantt-label { animation-delay: 440ms; }
.s-timeline.active .gantt-row.row-6 .gantt-label { animation-delay: 510ms; }
.s-timeline.active .gantt-row.row-7 .gantt-label { animation-delay: 580ms; }
.s-timeline.active .gantt-row.row-1 .gantt-cell.on:nth-child(2) { animation: fadePop 280ms ease both; animation-delay: 240ms; }
.s-timeline.active .gantt-row.row-1 .gantt-cell.on:nth-child(3) { animation: fadePop 280ms ease both; animation-delay: 320ms; }
.s-timeline.active .gantt-row.row-2 .gantt-cell.on:nth-child(2) { animation: fadePop 280ms ease both; animation-delay: 300ms; }
.s-timeline.active .gantt-row.row-2 .gantt-cell.on:nth-child(3) { animation: fadePop 280ms ease both; animation-delay: 380ms; }
.s-timeline.active .gantt-row.row-2 .gantt-cell.on:nth-child(4) { animation: fadePop 280ms ease both; animation-delay: 460ms; }
.s-timeline.active .gantt-row.row-3 .gantt-cell.on:nth-child(2) { animation: fadePop 280ms ease both; animation-delay: 360ms; }
.s-timeline.active .gantt-row.row-3 .gantt-cell.on:nth-child(3) { animation: fadePop 280ms ease both; animation-delay: 440ms; }
.s-timeline.active .gantt-row.row-3 .gantt-cell.on:nth-child(4) { animation: fadePop 280ms ease both; animation-delay: 520ms; }
.s-timeline.active .gantt-row.row-3 .gantt-cell.on:nth-child(5) { animation: fadePop 280ms ease both; animation-delay: 600ms; }
.s-timeline.active .gantt-row.row-4 .gantt-cell.on:nth-child(4) { animation: fadePop 280ms ease both; animation-delay: 420ms; }
.s-timeline.active .gantt-row.row-4 .gantt-cell.on:nth-child(5) { animation: fadePop 280ms ease both; animation-delay: 500ms; }
.s-timeline.active .gantt-row.row-4 .gantt-cell.on:nth-child(6) { animation: fadePop 280ms ease both; animation-delay: 580ms; }
.s-timeline.active .gantt-row.row-4 .gantt-cell.on:nth-child(7) { animation: fadePop 280ms ease both; animation-delay: 660ms; }
.s-timeline.active .gantt-row.row-5 .gantt-cell.on:nth-child(6) { animation: fadePop 280ms ease both; animation-delay: 500ms; }
.s-timeline.active .gantt-row.row-5 .gantt-cell.on:nth-child(7) { animation: fadePop 280ms ease both; animation-delay: 580ms; }
.s-timeline.active .gantt-row.row-6 .gantt-cell.on:nth-child(7) { animation: fadePop 280ms ease both; animation-delay: 560ms; }
.s-timeline.active .gantt-row.row-6 .gantt-cell.on:nth-child(8) { animation: fadePop 280ms ease both; animation-delay: 640ms; }
.s-timeline.active .gantt-row.row-7 .gantt-cell.on:nth-child(9) { animation: fadePop 280ms ease both; animation-delay: 620ms; }
.s-timeline.active .gantt-row.row-7 .gantt-cell.on:nth-child(10) { animation: fadePop 280ms ease both; animation-delay: 700ms; }


/* ═══════════════════════════════════════════════════════════════
   BOTTOM NAVIGATION BAR
   ═══════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--nav-h);
  background: var(--paper); border-top: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(8px, 1.2vw, 18px); z-index: 50;
  padding: 0 clamp(12px, 2vw, 36px);
}
body.is-cover-slide .bottom-nav {
  opacity: 0;
  pointer-events: none;
}
.nav-btn {
  background: none; border: 1.5px solid var(--ink); color: var(--ink); cursor: pointer;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(12px, 0.92vw, 14px);
  width: clamp(24px, 2vw, 30px); height: clamp(24px, 2vw, 30px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease, color 160ms ease; flex-shrink: 0; line-height: 1; padding: 0;
}
.nav-btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.nav-btn:disabled { opacity: 0.25; cursor: default; }
.nav-dots { display: flex; align-items: center; gap: clamp(4px, 0.5vw, 8px); }
.nav-dot {
  width: clamp(6px, 0.6vw, 9px); height: clamp(6px, 0.6vw, 9px);
  border-radius: 50%; background: transparent; border: 1.5px solid rgba(58,37,22,0.5);
  cursor: pointer; padding: 0; transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.nav-dot.active { background: var(--red); border-color: var(--red); transform: scale(1.35); }
.nav-dot:hover:not(.active) { background: rgba(58,37,22,0.25); border-color: var(--ink); }
.nav-counter {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: clamp(10px, 0.78vw, 12px);
  color: var(--ink); letter-spacing: 0.1em; min-width: 6ch; text-align: center; opacity: 0.7;
}


/* Compact architecture slide */
.s-data .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.4vh, 22px);
  min-height: 0;
}
.s-data .diagram-figure {
  width: min(100%, 1100px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}
.s-data .diagram-figure img {
  width: 100%;
  height: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  display: block;
}
.s-data .diagram-caption {
  max-width: 1050px;
  text-align: center;
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.9;
}

/* Minimal closing slide */
.s-colophon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-colophon .ribbons,
.s-colophon .col-petals,
.s-colophon .seal-stack,
.s-colophon .col-footer {
  display: none;
}
.s-colophon .closing-center {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: clamp(24px, 4vh, 56px);
}
.s-colophon .closing-center .ktag {
  margin-bottom: clamp(12px, 1.6vh, 22px);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.24em;
}
.s-colophon .closing-center .ttl {
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

/* Comparison extras */
.s-compare .dataset-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
  margin-top: clamp(14px, 1.6vh, 24px);
}
.s-compare .dataset-link {
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  padding: clamp(12px, 1.2vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}
.s-compare .dataset-link:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.s-compare .dl-tag {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.s-compare .dl-url {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 0.04em;
  opacity: 0.78;
}
.s-compare.active .dataset-link:nth-child(1) { animation: cardIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 140ms; }
.s-compare.active .dataset-link:nth-child(2) { animation: cardIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 220ms; }
.s-compare .dataset-preview {
  position: absolute;
  right: clamp(36px, 3.6vw, 72px);
  bottom: clamp(78px, 9vh, 132px);
  width: clamp(280px, 26vw, 420px);
  border: 1.5px solid var(--ink);
  background: rgba(241, 230, 203, 0.96);
  box-shadow: 7px 7px 0 var(--ink);
  padding: clamp(12px, 1.2vw, 18px);
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
}
.s-compare .dataset-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.s-compare .dataset-preview-head { display: grid; gap: 4px; }
.s-compare .preview-kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(10px, 0.76vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.65;
}
.s-compare .preview-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.2vw, 42px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.s-compare .preview-url {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 0.03em;
  word-break: break-all;
  color: var(--ink);
  opacity: 0.82;
}
.s-compare .dataset-preview-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1.5px solid rgba(58,37,22,0.35);
  background: white;
}
.s-compare .dataset-preview-note {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.72;
}

/* Outputs extras */
.s-outputs .out-cards {
  display: grid;
  gap: clamp(12px, 1.2vh, 18px);
}
.s-outputs .out-card {
  border: 1.5px solid var(--ink);
  border-left-width: 6px;
  border-left-color: var(--green);
  background: rgba(241, 230, 203, 0.72);
  padding: clamp(14px, 1.4vw, 20px);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}
.s-outputs .out-card:nth-child(1) { border-left-color: var(--red); }
.s-outputs .out-card:nth-child(2) { border-left-color: var(--blue); }
.s-outputs .out-card:nth-child(3) { border-left-color: var(--orange); }
.s-outputs .out-card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.1vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.s-outputs .out-card-desc {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.55;
  color: var(--ink);
}

/* Timeline extras */
.s-timeline .gantt-wrap {
  min-height: 0;
  flex: 1;
  display: flex;
}
.s-timeline .gantt-table {
  width: 100%;
  display: grid;
  grid-template-rows: auto repeat(7, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  height: 100%;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
}
.s-timeline .gantt-row {
  display: grid;
  grid-template-columns: minmax(300px, 3.2fr) repeat(13, minmax(0, 1fr));
}
.s-timeline .gantt-headrow {
  background: rgba(58,37,22,0.03);
  border-bottom: 1.5px solid var(--ink);
}
.s-timeline .gantt-cell {
  min-height: 0;
  border-right: 1px solid rgba(58,37,22,0.45);
  border-bottom: 1px solid rgba(58,37,22,0.45);
  background: transparent;
}
.s-timeline .gantt-row .gantt-cell:last-child { border-right: 0; }
.s-timeline .gantt-headcell {
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(9px, 0.72vw, 11px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  padding: clamp(8px, 0.9vh, 12px) 4px;
  text-align: center;
  white-space: nowrap;
}
.s-timeline .gantt-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(10px, 1.05vh, 14px) clamp(12px, 1.2vw, 18px);
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1.34;
  color: var(--ink);
  background: rgba(58,37,22,0.03);
}
.s-timeline .gantt-label .dot {
  color: var(--ink);
  opacity: 0.8;
  font-size: 1.3em;
  line-height: 0.9;
  margin-top: -1px;
}
.s-timeline .gantt-row .gantt-cell.on {
  background: var(--blue);
  opacity: 0.88;
}
.s-timeline .gantt-row.row-1 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-row.row-2 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-row.row-3 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-row.row-4 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-row.row-5 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-row.row-6 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-row.row-7 .gantt-cell.on { background: rgba(63,139,196,0.82); }
.s-timeline .gantt-headrow .gantt-label { font-family: 'Big Shoulders Display', sans-serif; font-size: clamp(16px, 1.35vw, 24px); font-weight: 900; line-height: 1; letter-spacing: -0.01em; justify-content: center; }
.s-timeline .gantt-table .gantt-row:not(.gantt-headrow):hover .gantt-cell.on { opacity: 1; }
.s-timeline.active .gantt-headrow .gantt-cell { animation: fadeSlideUp 360ms ease both; }

.s-timeline .gantt-row:not(.gantt-headrow):nth-child(even) .gantt-label {
  background: rgba(58,37,22,0.05);
}
.s-timeline .gantt-row:not(.gantt-headrow):nth-child(even) .gantt-cell {
  background: rgba(58,37,22,0.01);
}
.s-timeline .gantt-row:not(.gantt-headrow) .gantt-cell.on {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

@media (max-width: 1100px) {
  .s-compare .dataset-links,
  .s-outputs .out-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-timeline .gantt-row {
    grid-template-columns: minmax(190px, 2fr) repeat(13, minmax(22px, 1fr));
  }
  .s-timeline .gantt-label {
    font-size: clamp(10px, 0.88vw, 13px);
  }
  .s-outputs .outputs-hero {
    grid-template-columns: 1fr;
    gap: clamp(14px, 1.4vh, 20px);
  }
  .s-timeline .gantt-headcell {
    font-size: clamp(8px, 0.64vw, 10px);
  }
}


/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .slide.active, .slide.slide-exit,
  .s-cover.active .brand-logo, .s-cover.active .cover-ribbons .rib,
  .s-cover.active .cover-brand, .s-cover.active .cover-kicker, .s-cover.active .cover-headline span,
  .s-cover.active .qr-card, .s-cover.active .qr-caption, .s-cover.active .qr-chip, .s-cover.active .advisor-item,
  .s-cover.active .cover-footer,
  .s-why.active .why-kicker, .s-why.active .blob, .s-why.active .why-item, .s-why.active .wi-num,
  .s-why.active .why-item .wi-lbl, .s-why.active .why-item .wi-note, .s-why.active .why-item .wi-title,
  .s-why.active .why-item .wi-desc, .s-why.active .why-item .wi-mono,
  .s-goals.active .topbar, .s-goals.active .goal-item, .s-goals.active .benefit-item,
  .s-goals.active .goal-num, .s-goals.active .benefit-dot, .s-goals.active .goal-text, .s-goals.active .benefit-text,
  .s-compare.active .topbar, .s-compare.active .compare-table tr, .s-compare.active .dataset-link,
  .s-catalogue.active .topbar, .s-catalogue.active .card .topstrip, .s-catalogue.active .card .nm,
  .s-catalogue.active .card .desc, .s-catalogue.active .card .specs .row,
  .s-prev.active .topbar, .s-prev.active .workflow-main img, .s-prev.active .workflow-card img,
  .s-data.active .topbar, .s-data.active .diagram-figure, .s-data.active .diagram-caption,
  .s-outputs.active .topbar, .s-outputs.active .out-num, .s-outputs.active .out-kicker,
  .s-outputs.active .out-card, .s-outputs.active .out-card-title, .s-outputs.active .out-card-desc,
  .s-timeline.active .topbar, .s-timeline.active .gantt-headrow .gantt-cell, .s-timeline.active .gantt-label,
  .s-timeline.active .gantt-cell.on,
  .s-colophon.active .ribbons, .s-colophon.active .ktag, .s-colophon.active .ttl,
  .s-colophon.active .seal-stack, .s-colophon.active .col-footer > div, .s-colophon.active .col-petals .petal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .slide { transition: opacity 180ms ease; }
  .slide.active { opacity: 1; animation: none; }
}
