/* ═══════════════════════════════════════════════════════════════
   Bipa — Company Deck — Aug 2026
   Brand vocabulary cloned from the live Figma "Pitch Deck 2026":
   pure #000, white rounded cards, grey #8e8e93/#aeaeb2, ABC Ginto,
   color only from the rainbow swirl + product imagery.
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "ABC Ginto";
  src: url("fonts/ABCGinto-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
  font-family: "ABC Ginto";
  src: url("fonts/ABCGinto-Medium.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: block;
}
/* No Bold/Black faces on purpose — Ginto Bold is too heavy for the
   brand. Requests for 700+ resolve to Medium; font-synthesis on the
   body keeps browsers from faux-bolding the 500 face. */

:root {
  --w: #ffffff;
  --g1: #aeaeb2;
  --g2: #8e8e93;
  --g3: #6e6e73;
  --g4: #5c5c61;
  --tile: #131316;
  --tile-edge: rgba(255, 255, 255, 0.07);
  --hair: #26262a;
  --card: #fbfbfd;
  --ink: #0b0b0d;
}

* { box-sizing: border-box; }
/* every default-bold element reads as Medium */
b, strong, th, h1, h2, h3, h4, h5, h6 { font-weight: 500; }
html, body {
  margin: 0; padding: 0;
  background: #000;
}
body {
  font-family: "ABC Ginto", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── deck scaffolding (screen) ─────────────────────────────── */
.deck {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}
.slide {
  position: relative;
  width: 1920px;
  height: 1080px;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.inner { position: absolute; inset: 72px 96px 96px; }

/* ── slide chrome ──────────────────────────────────────────── */
.pill {
  position: absolute; left: 56px; bottom: 40px;
  font: 500 14px/1 "ABC Ginto", sans-serif;
  letter-spacing: 0.1em;
  color: #c9c9ce;
  background: rgba(88, 88, 92, 0.55);
  padding: 11px 20px;
  border-radius: 999px;
}
.mark {
  position: absolute; right: 56px; bottom: 34px;
  height: 50px; width: auto;
}

/* ── shared type ───────────────────────────────────────────── */
.kicker {
  margin: 0 0 22px;
  font: 500 19px/1 "ABC Ginto", sans-serif;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
h1 {
  margin: 0;
  font-weight: 500;
  font-size: 58px;
  line-height: 1.12;
  color: var(--w);
  letter-spacing: -0.012em;
}
.micro {
  font: 400 15px/1.5 "ABC Ginto", sans-serif;
  color: var(--g4);
  margin: 34px 0 0;
}
.quiet { font: 400 20px/1.5 "ABC Ginto", sans-serif; color: var(--g2); }
.closing {
  margin: 54px 0 0;
  font: 500 30px/1.3 "ABC Ginto", sans-serif;
  color: var(--w);
}
.hair { height: 1px; background: var(--hair); }

/* ═══ 1 · COVER ═══════════════════════════════════════════── */
.cover-photo {
  mask-image: linear-gradient(90deg, #000 86%, transparent 99.5%);
  -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent 99.5%);
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cover-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    #000 0%, #000 52%,
    rgba(0, 0, 0, 0.72) 62%,
    rgba(0, 0, 0, 0.18) 74%,
    rgba(0, 0, 0, 0) 84%);
}
.cover-block { position: absolute; left: 120px; top: 296px; }
.cover-logo { display: block; height: 176px; width: auto; margin-left: -14px; }
.cover-tagline {
  margin: 64px 0 0;
  font: 500 40px/1.25 "ABC Ginto", sans-serif;
  color: var(--w);
  max-width: 580px;
  letter-spacing: -0.01em;
}
.cover-deck { margin: 58px 0 0; font: 500 30px/1 "ABC Ginto", sans-serif; color: var(--w); }
.cover-date { margin: 16px 0 0; font: 400 25px/1 "ABC Ginto", sans-serif; color: var(--g1); }

/* ═══ 2 · WHAT WE'VE BUILT ════════════════════════════════── */
#s2 h1 { font-size: 54px; }
.pcards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.pcard {
  background: var(--card);
  border-radius: 28px;
  text-align: center;
  padding: 0 28px 38px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.iconzone { position: relative; height: 200px; }
.picon { position: absolute; left: 50%; transform: translateX(-50%); }
.i-save   { top: 18px;  height: 178px; }
.i-bank   { top: -62px; height: 248px; }  /* crop boundary (25.0%) sits on card edge */
.i-card   { top: -30px; height: 224px; }  /* boundary 13.3% */
.i-borrow { top: -65px; height: 238px; }  /* boundary 27.5% */
.pcard h3 {
  margin: 20px 0 0;
  font-weight: 500; font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pcard p {
  margin: 12px 0 0;
  font: 400 18px/1.4 "ABC Ginto", sans-serif;
  color: #7c7c82;
}
.proofstrip {
  margin-top: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}
.proof { text-align: center; }
.pnum {
  font-weight: 500; font-size: 64px; line-height: 1;
  color: var(--w);
  letter-spacing: -0.015em;
}
.plab { margin-top: 12px; font: 400 18px/1.3 "ABC Ginto", sans-serif; color: var(--g2); }
.pdiv { width: 1px; height: 68px; background: var(--hair); }

/* ═══ 3 · WHY NOW ═════════════════════════════════════════── */
.giants { margin-top: 108px; }
.giant {
  display: flex;
  align-items: flex-end;
  gap: 56px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hair);
}
.giant:last-child { border-bottom: none; }
.gnum {
  font-weight: 500; font-size: 148px; line-height: 0.96;
  color: var(--w);
  letter-spacing: -0.025em;
  min-width: 900px;
}
.glab {
  font: 400 21px/1.45 "ABC Ginto", sans-serif;
  color: var(--g2);
  padding-bottom: 14px;
}
#s3 .micro { margin-top: 40px; }

/* ═══ 4 · THE MOAT ════════════════════════════════════════── */
.moat { margin-top: 66px; }
.timeline { position: relative; height: 400px; }
.track {
  position: absolute; left: 0; right: 0; top: 150px;
  height: 2px; background: var(--hair);
}
.station { position: absolute; top: 0; width: 380px; transform: translateX(-50%); text-align: center; }
.s-a { left: 8%; }
.s-b { left: 33%; }
.s-c { left: 62%; }
.s-d { left: 92%; }
.station .dot {
  position: absolute; left: 50%; top: 151px;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #48484a;
}
.station.em .dot { width: 20px; height: 20px; background: var(--w); }
.station.dominant .dot {
  width: 28px; height: 28px; background: var(--w);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.12);
}
.tdate { margin-top: 186px; font: 500 28px/1 "ABC Ginto", sans-serif; color: var(--g2); }
.station.em .tdate { color: var(--w); font-weight: 500; }
.tbig {
  margin-top: 168px;
  font-weight: 500; font-size: 104px; line-height: 1;
  color: var(--w);
  letter-spacing: -0.02em;
}
.tdesc { margin-top: 14px; font: 400 19px/1.4 "ABC Ginto", sans-serif; color: var(--g3); }
.station.dominant .tdesc { color: var(--g1); font-size: 21px; }
.wallchips {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 28px;
}
.chip {
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  padding: 32px 52px;
  text-align: center;
}
.cval { font-weight: 500; font-size: 52px; line-height: 1; color: var(--w); letter-spacing: -0.015em; }
.clab { margin-top: 12px; font: 400 18px/1.35 "ABC Ginto", sans-serif; color: var(--g2); }

/* ═══ 5 · THE EMPTY SEAT ══════════════════════════════════── */
#s5 h1 { font-size: 54px; }
.seatgrid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.seatcol {
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 26px;
  padding: 46px 36px;
  min-height: 416px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.seattitle { font: 500 29px/1.2 "ABC Ginto", sans-serif; color: var(--g1); }
.seatline { margin-top: 16px; font: 400 21px/1.45 "ABC Ginto", sans-serif; color: var(--g3); }
.seatcol.bipa {
  background: var(--card);
  border: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding-top: 38px;
  justify-content: flex-start;
}
.seatswirl { height: 54px; width: 52px; display: block; align-self: flex-start; object-fit: contain; }
.seatcol.bipa .seattitle { margin-top: 16px; font-weight: 500; font-size: 36px; color: var(--ink); }
.caps { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.caps span {
  background: #ececf1;
  border-radius: 12px;
  padding: 12px 0;
  text-align: center;
  font: 500 21px/1 "ABC Ginto", sans-serif;
  color: var(--ink);
}
.seatsub { margin-top: 18px; font: 400 18px/1 "ABC Ginto", sans-serif; color: var(--g3); }
#s5 .closing { margin-top: 66px; }

/* ═══ 6 · PROOF WE EXECUTE ════════════════════════════════── */
#s6 h1 { font-size: 54px; }
.chartwrap { margin-top: 42px; }
.chart { display: block; width: 100%; height: auto; }
.chart .lbl-btc { font: 500 36px "ABC Ginto", sans-serif; fill: var(--g2); }
.chart .lbl-dep { font: 500 46px "ABC Ginto", sans-serif; fill: var(--w); letter-spacing: -0.01em; }
.chart .lbl-dep-sub { font: 400 19px "ABC Ginto", sans-serif; fill: var(--g2); }
.chart .tick { font: 400 16px "ABC Ginto", sans-serif; fill: var(--g4); }
.chartcap { margin-top: 0; }
.microtiles { margin-top: 34px; display: flex; gap: 22px; }
.mtile {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 18px;
  padding: 27px 10px;
}
.mtile b { font-weight: 500; font-size: 38px; color: var(--w); letter-spacing: -0.01em; }
.mtile span { font: 400 18px/1 "ABC Ginto", sans-serif; color: var(--g2); }
#s6 .micro { margin-top: 30px; }

.seatnames {
  margin-top: 30px;
  border-top: 1px solid var(--hair);
  padding-top: 8px;
}
.sn {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.sn:last-child { border-bottom: none; }
.sn b { font-weight: 500; font-size: 22px; color: var(--g1); letter-spacing: -0.01em; }
.sn span { font: 400 15px/1.35 "ABC Ginto", sans-serif; color: var(--g3); }

/* ═══ 9 · THE HARDWARE ═══════════════════════════════════── */
#s8c h1 { font-size: 54px; }
.hwgrid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}
.hwshot {
  margin: 0;
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hwshot img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.hwshot figcaption {
  padding: 16px 22px;
  font: 400 15px/1.4 "ABC Ginto", sans-serif;
  color: var(--g2);
}
#s8c .micro { margin-top: 30px; }

/* ═══ 9 · WHAT USERS SAY ═════════════════════════════════── */
#s8b h1 { font-size: 54px; }
.ratewrap { margin-top: 44px; display: flex; gap: 22px; }
.ratetile {
  flex: 1;
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  padding: 30px 36px;
  text-align: center;
}
.rateval { font-weight: 500; font-size: 64px; line-height: 1; color: var(--w); letter-spacing: -0.015em; }
.ratelab { margin-top: 10px; font: 400 18px/1.3 "ABC Ginto", sans-serif; color: var(--g2); }
.revgrid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.revq {
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.revtext { margin: 0; font: 400 21px/1.5 "ABC Ginto", sans-serif; color: var(--g1); }
.revby { margin: 0; font: 400 14px/1.3 "ABC Ginto", sans-serif; color: var(--g3); }
#s8b .micro { margin-top: 30px; }

/* ═══ 12 · WHY INVEST / WHY NOT ══════════════════════════── */
#s11b h1 { font-size: 54px; }
.wnw { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.wnwcol {
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  padding: 26px 32px 14px;
}
.wnwtitle { font-weight: 500; font-size: 24px; color: var(--w); padding-bottom: 8px; }
.wnwtitle.dim { color: var(--g2); }
.wnwrow {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 0;
  border-top: 1px solid var(--hair);
}
.wnwrow b { font-weight: 500; font-size: 19px; color: var(--g1); }
.wnwcol:first-child .wnwrow b { color: var(--g2); }
.wnwrow span { font: 400 14.5px/1.4 "ABC Ginto", sans-serif; color: var(--g3); }
#s11b .micro { margin-top: 30px; }

/* ═══ 7 · THE EMERGING BANK ═══════════════════════════════── */
#s6b h1 { font-size: 54px; }
.bankgrid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bktile {
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  padding: 24px 30px 12px;
}
.bkhead { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.bktitle { font: 400 19px/1.3 "ABC Ginto", sans-serif; color: var(--g2); }
.bkbadge { font-weight: 500; font-size: 38px; line-height: 1; color: var(--w); letter-spacing: -0.015em; }
.bksvg { display: block; width: 100%; height: auto; margin-top: 10px; }
.bksvg .bkval { font: 500 26px "ABC Ginto", sans-serif; fill: var(--w); letter-spacing: -0.01em; }
.bksvg .bkval.dim { fill: var(--g2); font-weight: 400; }
.bksvg .tick { font: 400 15px "ABC Ginto", sans-serif; fill: var(--g4); }
#s6b .micro { margin-top: 34px; }

/* ═══ 8 · UNIT ECONOMICS ══════════════════════════════════── */
#s6c h1 { font-size: 54px; }
.uegrid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.uecell {
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 24px;
  padding: 32px 36px;
}
.ueval { font-weight: 500; font-size: 56px; line-height: 1; color: var(--w); letter-spacing: -0.015em; }
.uelab { margin-top: 14px; font: 400 19px/1.4 "ABC Ginto", sans-serif; color: var(--g1); }
.uesub { margin-top: 8px; font: 400 15px/1.45 "ABC Ginto", sans-serif; color: var(--g3); }
#s6c .micro { margin-top: 40px; }

/* ═══ 7 · PROJECT PONTE ═══════════════════════════════════── */
#s7 h1 { font-size: 54px; }
.flow { margin-top: 76px; display: flex; align-items: center; gap: 40px; }
.flowbox {
  border-radius: 26px;
  padding: 40px 44px;
  text-align: center;
}
.flowbox.from { background: var(--tile); border: 1px solid var(--tile-edge); width: 400px; }
.fb-title { font: 500 30px/1.25 "ABC Ginto", sans-serif; color: var(--g1); }
.fb-sub { margin-top: 12px; font: 400 17px/1.4 "ABC Ginto", sans-serif; color: var(--g3); }
.flowarrow { flex: 1; text-align: center; }
.arrowlab { font: 400 24px/1 "ABC Ginto", sans-serif; color: var(--g1); margin-bottom: 18px; }
.arrowlab b { font-weight: 500; font-size: 34px; color: var(--w); }
.arrowbody { display: flex; align-items: center; }
.arrowbody .shaft {
  flex: 1; height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, #232327, #e9e9ee);
}
.arrowbody .head {
  width: 0; height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 30px solid #fff;
  margin-left: -2px;
}
.arrowsub { margin-top: 18px; font: 400 18px/1 "ABC Ginto", sans-serif; color: var(--g2); }
.flowbox.to {
  background: var(--card);
  width: 330px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.flowswirl { height: 58px; display: block; margin: 0 auto; }
.fb-title.dark { margin-top: 12px; font-weight: 500; font-size: 42px; color: var(--ink); }
.fb-sub.dark { color: #7c7c82; }
.ponte-bottom {
  margin-top: 92px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cacrow { display: flex; align-items: center; margin-bottom: 20px; }
.cacrow:last-child { margin-bottom: 0; }
.cacbar { display: block; height: 46px; border-radius: 10px; }
.cacbar.b90 { width: 360px; background: var(--w); }
.cacbar.borg { width: 516px; background: #48484a; }
.caclab { margin-left: 22px; font: 400 20px/1.3 "ABC Ginto", sans-serif; color: var(--g2); white-space: nowrap; }
.caclab b { color: var(--w); font-weight: 500; font-size: 24px; }
.dealchips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
#s7 .micro { margin-top: 48px; }

/* ═══ 8 · THE PATH ════════════════════════════════════════── */
.pathwrap { margin-top: 66px; position: relative; height: 448px; }
.pathline { position: absolute; left: 0; top: 0; width: 100%; height: auto; }
.mile { position: absolute; width: 360px; background: var(--tile); border: 1px solid var(--tile-edge); border-radius: 20px; padding: 24px 30px; }
.m1 { left: 448px; top: 288px; }
.m2 { left: 1008px; top: 178px; }
.m3 { left: 1310px; top: 88px; }
.mnum { font-weight: 500; font-size: 42px; line-height: 1; color: var(--w); letter-spacing: -0.015em; }
.mlab { margin-top: 10px; font: 400 17px/1.4 "ABC Ginto", sans-serif; color: var(--g2); }
.roadmap { margin-top: 48px; display: flex; gap: 18px; }
.roadnode {
  border: 1px solid var(--hair);
  background: var(--tile);
  border-radius: 999px;
  padding: 18px 30px;
  font: 400 21px/1 "ABC Ginto", sans-serif;
  color: var(--g2);
}
.roadnode b { color: var(--w); font-weight: 500; margin-right: 10px; }

/* ═══ 9 · TEAM ════════════════════════════════════════════── */
.teamgrid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 26px;
}
.person {
  background: var(--tile);
  border: 1px solid var(--tile-edge);
  border-radius: 26px;
  padding: 52px 40px 44px;
  text-align: center;
  min-height: 452px;
}
.face {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
}
.face.sm { width: 122px; height: 122px; }
.faces { display: flex; justify-content: center; gap: 16px; padding: 32px 0; }
.pname { margin-top: 26px; font: 500 31px/1 "ABC Ginto", sans-serif; color: var(--w); }
.person.team .pname { margin-top: 22px; }
.prole { margin-top: 10px; font: 400 19px/1 "ABC Ginto", sans-serif; color: var(--g2); }
.pcred { margin: 18px auto 0; font: 400 19px/1.45 "ABC Ginto", sans-serif; color: var(--g1); max-width: 380px; }
.backers { margin-top: 62px; }
.backlabel {
  font: 500 16px/1 "ABC Ginto", sans-serif;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.backstrip { display: block; width: 1450px; max-width: 100%; height: auto; }

/* ═══ 10 · THE ASK ════════════════════════════════════════── */
.askhero { margin-top: 22px; }
.asknum {
  font-weight: 500; font-size: 200px; line-height: 0.95;
  color: var(--w);
  letter-spacing: -0.03em;
}
.asksub { margin-top: 22px; font: 400 26px/1.35 "ABC Ginto", sans-serif; color: var(--g2); }
.bar {
  margin-top: 62px;
  display: flex;
  gap: 5px;
  height: 92px;
  border-radius: 20px;
  overflow: hidden;
}
.seg { display: flex; align-items: center; justify-content: center; }
.seg1 {
  width: 68%; background: var(--w); padding: 0 28px; text-align: center;
  font: 500 21px/1.25 "ABC Ginto", sans-serif; color: var(--ink);
}
.seg2 { width: 32%; background: #55555a; padding: 0 22px; text-align: center; }
.seg3 { width: 15%; background: #38383c; }
.seg4 { width: 10%; background: #232327; }
.seg2, .seg3, .seg4 { font: 500 21px/1.25 "ABC Ginto", sans-serif; color: var(--w); }
.legend { margin-top: 18px; display: flex; gap: 44px; justify-content: flex-end; }
.legend span { font: 400 17px/1 "ABC Ginto", sans-serif; color: var(--g2); display: inline-flex; align-items: center; }
.sw { display: inline-block; width: 12px; height: 12px; border-radius: 4px; margin-right: 10px; }
.sw2 { background: #55555a; }
.sw3 { background: #38383c; }
.sw4 { background: #232327; }
.cal { margin-top: 54px; display: flex; gap: 16px; }
.calchip {
  border: 1px solid var(--hair);
  background: var(--tile);
  border-radius: 999px;
  padding: 15px 26px;
  font: 400 19px/1 "ABC Ginto", sans-serif;
  color: var(--g2);
  white-space: nowrap;
}
.calchip b { color: var(--w); font-weight: 500; }
#s10 .micro { margin-top: 32px; }
.askclose { margin-top: 40px; font-size: 33px; }

/* ── reveal (screen only, ≤300ms, CSS transitions) ─────────── */
.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.28s ease-out, transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.slide.in .rv { opacity: 1; transform: none; }
.inner > .rv:nth-child(2), .cover-block > .rv:nth-child(2) { transition-delay: 0.05s; }
.inner > .rv:nth-child(3), .cover-block > .rv:nth-child(3) { transition-delay: 0.1s; }
.inner > .rv:nth-child(4), .cover-block > .rv:nth-child(4) { transition-delay: 0.15s; }
.inner > .rv:nth-child(5) { transition-delay: 0.2s; }
.inner > .rv:nth-child(6) { transition-delay: 0.25s; }
.inner > .rv:nth-child(7) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ── print: pixel-identical, one slide per page ────────────── */

/* ── mobile story (≤760px): the 1920 stage linearizes into a readable
      single-column narrative — same copy, same order, phone typography.
      Story.tsx skips zoom-fit at this width; the deck scrolls naturally. ── */
@media (max-width: 760px) {
  .hwgrid {
    grid-template-columns: 1fr;
  }
  .hwshot img {
    height: 260px;
  }
  /* the welcome-kit shot is portrait (full open box) — give it height
     so the package stays whole when the grid linearizes */
  .hwshot img[src$="hw_kit.webp"] {
    height: 420px;
  }

  .ratewrap {
    flex-direction: column;
  }
  .revgrid,
  .wnw {
    grid-template-columns: 1fr;
  }

  .bankgrid,
  .uegrid {
    grid-template-columns: 1fr;
  }
  .bkbadge {
    font-size: 30px;
  }
  .ueval {
    font-size: 40px;
  }

  .deck {
    scroll-snap-type: none;
  }
  .slide {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 64px 22px 56px;
    border-bottom: 1px solid #161618;
  }
  .inner {
    position: static;
    inset: auto;
  }
  .pill {
    position: static;
    display: inline-block;
    margin-top: 40px;
  }
  .mark { display: none; }

  /* type scale: roughly half the stage sizes, floored for legibility */
  .slide h1 { font-size: 29px !important; line-height: 1.18 !important; }
  .kicker { font-size: 12px !important; letter-spacing: 0.14em; }
  .quiet, .closing { font-size: 15px !important; line-height: 1.5 !important; }
  .closing { margin-top: 28px; }

  /* cover: photo becomes a banner, text flows under it */
  .cover-photo {
    position: static;
    width: calc(100% + 44px);
    margin: -64px -22px 0;
    height: 44vh;
    /* dedicated crop — the full asset's left half has baked-in title text */
    content: url("img/cover_mobile.jpg");
    object-position: center;
    mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
  }
  .cover-shade { display: none; }
  .cover-block { position: static; margin-top: 10px; }
  .cover-logo { height: 84px; margin-left: -7px; }
  .cover-tagline { font-size: 26px !important; }
  .cover-deck { font-size: 17px; margin-top: 26px; }
  .cover-date { font-size: 14px; }

  /* product pillars + proof strip */
  .pcards { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
  .pcard { padding: 18px 16px 16px; border-radius: 18px; }
  .pcard h3 { font-size: 18px !important; }
  .pcard p { font-size: 12.5px !important; line-height: 1.4 !important; }
  .iconzone { height: 74px !important; }
  .picon {
    position: static !important;
    transform: none !important;
    display: block;
    margin: 0 auto;
    height: 70px !important;
    max-width: 100%;
    object-fit: contain;
  }
  .proofstrip { flex-wrap: wrap; gap: 18px 26px; margin-top: 34px; }
  .pnum { font-size: 26px !important; }
  .plab { font-size: 11.5px !important; }

  /* market slide */
  .giants { margin-top: 36px; }
  .giant { flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 22px; }
  .gnum { font-size: 44px !important; }
  .glab { font-size: 13.5px !important; max-width: none !important; }

  /* moat timeline: vertical list, no track */
  .timeline { height: auto; margin-top: 8px; }
  .track { display: none; }
  .station {
    position: static;
    transform: none;
    width: auto;
    text-align: left;
    margin-top: 26px;
    padding-left: 18px;
    border-left: 2px solid #2c2c2e;
  }
  .station.dominant { border-left-color: var(--w); }
  .station .dot { display: none; }
  .tdate { margin-top: 0 !important; font-size: 15px !important; }
  .tbig { font-size: 40px !important; }
  .tdesc { font-size: 13px !important; }
  .wallchips { flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .chip { font-size: 13px !important; padding: 12px 14px !important; }
  .clab { font-size: 11px !important; }
  .cval { font-size: 17px !important; }

  /* seat grid, deposits chart, ponte flow, path, team, ask */
  .seatgrid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .seatline { font-size: 13.5px !important; }
  .seatsub { font-size: 12px !important; }
  .seattitle { font-size: 20px !important; }
  .chartwrap { margin-top: 26px; }
  .chart { width: 100%; height: auto; }
  .caps { grid-template-columns: 1fr; }
  .caps span { font-size: 12.5px !important; }
  .microtiles { flex-direction: column; gap: 12px; margin-top: 24px; }
  .mtile { padding: 16px !important; }
  .mnum { font-size: 24px !important; }
  .mlab { font-size: 12px !important; }
  .flow { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 30px; }
  .flowarrow { transform: rotate(90deg); align-self: center; flex: none; }
  .fb-title { font-size: 18px !important; }
  .fb-sub { font-size: 12.5px !important; }
  .arrowlab { font-size: 14px !important; }
  .arrowlab b { font-size: 18px !important; }
  .arrowsub { font-size: 11.5px !important; }
  .dealchips { flex-wrap: wrap; gap: 10px; }
  .pathwrap { height: auto; margin-top: 28px; }
  .pathline { display: none; }
  .mile { position: static; width: auto; margin-top: 14px; }
  .roadmap { flex-direction: column; gap: 12px; margin-top: 26px; }
  .teamgrid { grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
  .faces { flex-wrap: wrap; }
  .face { width: 52px; height: 52px; }
  .backstrip { flex-wrap: wrap; gap: 10px 18px; }
  .backlabel { font-size: 11px !important; }
  .asknum { font-size: 56px !important; }
  .asksub { font-size: 15px !important; }
  .askhero { margin-top: 24px; }
  .bar { height: 44px !important; }
  .seg { font-size: 11px !important; }
  .legend { flex-wrap: wrap; gap: 8px 16px; font-size: 10.5px !important; }
  .cal { flex-wrap: wrap; gap: 10px; }
  .calchip { font-size: 12px !important; padding: 10px 12px !important; }
  .askclose { font-size: 18px !important; margin-top: 30px; }
  .cacrow { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media print {
  @page { size: 1920px 1080px; margin: 0; }
  html { zoom: 1 !important; }
  html, body { width: 1920px; background: #000 !important; }
  .deck {
    height: auto !important;
    overflow: visible !important;
    scroll-snap-type: none;
  }
  .slide {
    page-break-after: always;
    break-after: page;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .slide:last-child { page-break-after: auto; break-after: auto; }
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
