@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
:root {
  --graphite: #0d1117;
  --ink: var(--graphite);
  --green: #15221f;
  --cream: #f8f3e8;
  --cream-soft: rgba(248, 243, 232, 0.78);
  --muted: rgba(248, 243, 232, 0.58);
  --teal: #00b5a6;
  --teal-soft: #78d1c6;
  --gold: #c9a24b;
  --gold-soft: #f0d37d;
  --line: rgba(248, 243, 232, 0.13);
  --line-strong: rgba(248, 243, 232, 0.24);
  --topbar-h: 58px;
  --stage-max: 1480px;
  --copy-max: 560px;
  --visual-max: 780px;
  --stage-gap: 56px;
  --visual-block: clamp(520px, calc(100dvh - 220px), 610px);
  --page-x: clamp(24px, 4vw, 64px);
  --frame-radius: 12px;
  --frame-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
  scroll-padding-top: var(--topbar-h);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 11%, rgba(0, 181, 166, 0.2), transparent 25rem),
    radial-gradient(circle at 13% 14%, rgba(201, 162, 75, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(240, 211, 125, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 243, 232, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #0a0f14, var(--graphite) 48%, #141b22);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  color: var(--cream);
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 27px 27px, rgba(248, 243, 232, 0.15) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(0, 181, 166, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 162, 75, 0.045) 1px, transparent 1px);
  background-size: 54px 54px, 72px 72px, 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
a {
  color: inherit;
  font: inherit;
}
button {
  border: 0;
}
a {
  text-decoration: none;
}
p,
h1,
h2,
blockquote {
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal-soft);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 1px solid var(--teal);
  background: var(--ink);
  color: var(--cream);
  transition: transform 180ms var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(124px, 0.8fr) auto minmax(124px, 0.8fr);
  align-items: center;
  height: var(--topbar-h);
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(240, 211, 125, 0.22);
  background: rgba(13, 17, 23, 0.88);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.topbar::after {
  position: absolute;
  right: var(--page-x);
  bottom: -1px;
  left: var(--page-x);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--teal), rgba(240, 211, 125, 0.42), transparent 76%);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  transition: opacity 180ms var(--ease);
}
.topbar--cover-active .brand {
  opacity: 0;
  pointer-events: none;
}
.brand > img:first-child {
  width: 25px;
  height: 25px;
}
.brand-wordmark {
  width: 78px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.nav a {
  position: relative;
  display: grid;
  width: 27px;
  height: 28px;
  place-items: center;
  color: rgba(216, 212, 199, 0.42);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}
.nav a::after {
  position: absolute;
  right: 7px;
  bottom: 3px;
  left: 7px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 220ms var(--ease);
}
.nav a:hover,
.nav a.active {
  color: var(--cream);
  background: rgba(242, 234, 219, 0.045);
}
.nav a:hover {
  transform: translateY(-1px);
}
.nav a.active::after {
  transform: scaleX(1);
}
.ask-link {
  justify-self: end;
  padding: 9px 0 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--cream);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms var(--ease);
}
.ask-link:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}
.deck-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(216, 212, 199, 0.05);
}
.deck-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.0769);
  transform-origin: left;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: transform 420ms var(--ease);
}
.mobile-nav {
  display: none;
}
#deck {
  position: relative;
  z-index: 1;
}
.slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, var(--copy-max)) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: var(--stage-gap);
  row-gap: 28px;
  justify-content: center;
  width: 100%;
  max-width: calc(var(--stage-max) + (var(--page-x) * 2));
  min-height: calc(100dvh - var(--topbar-h));
  margin: 0 auto;
  padding: clamp(38px, 5vh, 66px) var(--page-x) clamp(74px, 8vh, 96px);
  overflow: visible;
  scroll-margin-top: var(--topbar-h);
  border-bottom: 1px solid rgba(216, 212, 199, 0.09);
  isolation: isolate;
}
.slide::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 82% 28%, rgba(0, 181, 166, 0.08), transparent 23rem),
    radial-gradient(circle at 16% 74%, rgba(201, 162, 75, 0.065), transparent 20rem),
    linear-gradient(125deg, rgba(13, 17, 23, 0.28), transparent 56%, rgba(13, 17, 23, 0.22));
}
.slide::after {
  position: absolute;
  top: 0;
  right: calc(var(--page-x) * 1.1);
  left: calc(var(--page-x) * 1.1);
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--teal), rgba(240, 211, 125, 0.32) 35%, transparent 74%);
}
.slide-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  min-width: 0;
  max-width: var(--copy-max);
}
.kicker,
.eyebrow,
.panel-label,
.strategy-label {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-soft);
}
.kicker span {
  display: grid;
  width: 28px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(197, 164, 92, 0.35);
  color: var(--gold);
  font-size: 12px;
}
.slide h1 {
  max-width: 13ch;
  color: var(--cream);
  font-size: clamp(38px, 3.1vw, 54px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}
.lede {
  max-width: 52ch;
  margin-top: 24px;
  color: var(--cream-soft);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 350;
  line-height: 1.55;
}
.slide-visual {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: stretch;
  align-items: center;
  justify-self: stretch;
  min-width: 0;
  min-block-size: var(--visual-block);
  width: min(100%, var(--visual-max));
  max-width: var(--visual-max);
  margin-inline: auto;
}
.visual-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--visual-block);
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(248, 243, 232, 0.14);
  border-radius: var(--frame-radius);
  background:
    linear-gradient(145deg, rgba(248, 243, 232, 0.07), rgba(248, 243, 232, 0.016) 28%, transparent 62%),
    rgba(13, 17, 23, 0.74);
  box-shadow: var(--frame-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}
.visual-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(248, 243, 232, 0.1);
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(248, 243, 232, 0.05), transparent 18%, transparent 82%, rgba(0, 181, 166, 0.05));
  content: "";
  pointer-events: none;
}
.slide-footer {
  position: absolute;
  right: var(--page-x);
  bottom: 18px;
  left: var(--page-x);
  z-index: 7;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: 28px;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 212, 199, 0.09);
  color: var(--muted);
}
.slide-footer > p {
  max-width: 68ch;
  font-size: 12px;
  line-height: 1.42;
}
.slide-sources {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  white-space: nowrap;
}
.slide-sources > span {
  color: rgba(216, 212, 199, 0.48);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.slide-sources > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.slide-sources a {
  position: relative;
  display: grid;
  width: 23px;
  height: 23px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(69, 184, 170, 0.22);
  color: var(--teal-soft);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms var(--ease);
}
.slide-sources a:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
  background: rgba(69, 184, 170, 0.08);
}
.slide-sources a b {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-style: normal;
}
.slide-sources a em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.compact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.compact-list li {
  position: relative;
  padding: 7px 0 7px 17px;
  border-bottom: 1px solid rgba(216, 212, 199, 0.09);
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.35;
}
.compact-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--teal);
}
.panel-label,
.strategy-label {
  color: var(--gold-soft);
  font-size: 14px;
}
/* Maps */
.africa-map {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.map-country {
  fill: #142b25;
  stroke: rgba(197, 164, 92, 0.42);
  stroke-width: 0.85;
  vector-effect: non-scaling-stroke;
  transition: fill 300ms ease, stroke 300ms ease;
}
.map-country.is-regional {
  fill: #1b3d33;
  stroke: rgba(69, 184, 170, 0.68);
}
.map-country.is-highlighted {
  fill: var(--gold);
  stroke: var(--gold-soft);
  stroke-width: 1.5;
}
.route-path {
  fill: none;
  stroke: rgba(69, 184, 170, 0.88);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  vector-effect: non-scaling-stroke;
}
.map-node circle {
  vector-effect: non-scaling-stroke;
}
.node-ring {
  fill: rgba(7, 17, 15, 0.7);
  stroke: var(--teal);
  stroke-width: 1.5;
}
.node-core {
  fill: var(--teal-soft);
}
.map-node--origin .node-ring {
  stroke: var(--gold);
}
.map-node--origin .node-core {
  fill: var(--gold-soft);
}
.node-pulse {
  fill: rgba(197, 164, 92, 0.08);
  stroke: rgba(197, 164, 92, 0.45);
  stroke-width: 1;
}
/* Cover */
.slide--cover {
  --copy-max: 500px;
  --visual-max: 700px;
  --visual-block: clamp(480px, calc(100dvh - 240px), 550px);
}
.slide--cover::before {
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(7, 17, 15, 0.94) 32%, rgba(7, 17, 15, 0.35) 64%, rgba(12, 39, 32, 0.54) 100%),
    var(--ink);
}
.slide--cover h1 {
  max-width: 10ch;
  font-size: clamp(52px, 4.7vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.slide--cover .lede {
  max-width: 48ch;
}
.cover-visual {
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 67% 49%, rgba(0, 181, 166, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(9, 14, 19, 0.92), rgba(20, 29, 34, 0.82));
}
.cover-visual::before {
  border-color: rgba(216, 212, 199, 0.05);
  background:
    linear-gradient(110deg, rgba(7, 17, 15, 0.78), transparent 34%),
    linear-gradient(290deg, rgba(69, 184, 170, 0.06), transparent 45%);
}
.cover-map-stage {
  position: absolute;
  inset: 9% 4% 8% 2%;
  transform: scale(1.35);
  transform-origin: 58% 50%;
}
.cover-copy-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin: -4px 0 18px;
}
.cover-copy-brand .cover-mark {
  width: 38px;
}
.cover-copy-brand .cover-wordmark {
  width: 118px;
}
.cover-copy-status {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 20px;
  color: var(--cream-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cover-copy-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 181, 166, 0.11);
}
.cover-mark {
  width: 38px;
}
.cover-wordmark {
  width: 112px;
}
/* Problem */
.problem-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(20, 50, 42, 0.66), rgba(7, 17, 15, 0.12));
}
.problem-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(28px, 4vw, 54px) minmax(150px, 0.82fr) clamp(28px, 4vw, 54px) minmax(0, 1fr);
  align-items: center;
  min-height: 230px;
}
.problem-signals,
.problem-market,
.problem-record {
  min-width: 0;
}
.problem-inbound,
.problem-outbound {
  position: relative;
  align-self: stretch;
  min-height: 230px;
}
.problem-inbound {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  padding-block: 40px 16px;
}
.problem-inbound::before {
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 18%;
  width: 1px;
  content: "";
  background: linear-gradient(var(--teal), rgba(0, 181, 166, 0.2));
}
.problem-inbound i,
.problem-outbound i {
  display: block;
  align-self: center;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 181, 166, 0.76), rgba(0, 181, 166, 0.24));
}
.problem-outbound {
  display: grid;
  align-items: center;
}
.problem-outbound i {
  background: linear-gradient(90deg, rgba(240, 211, 125, 0.58), rgba(201, 162, 75, 0.9));
}
.problem-market {
  min-height: 228px;
  border-radius: var(--frame-radius);
  border-color: rgba(240, 211, 125, 0.58);
  background:
    radial-gradient(circle at 50% 33%, rgba(0, 181, 166, 0.15), transparent 10rem),
    rgba(15, 20, 26, 0.94);
}
.problem-market > strong {
  color: var(--teal-soft);
}
.problem-record > strong {
  color: var(--gold-soft);
}
.problem-object {
  position: relative;
  z-index: 2;
}
.problem-object > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.signal-cloud > div {
  display: grid;
  gap: 11px;
}
.signal-cloud span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border-left: 2px solid var(--teal);
  background: rgba(7, 17, 15, 0.58);
  color: var(--cream);
  font-size: 15px;
}
.signal-cloud span::after {
  width: 18px;
  height: 1px;
  content: "";
  background: var(--teal);
}
.market-core {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border: 1px solid rgba(197, 164, 92, 0.58);
  background: rgba(7, 17, 15, 0.88);
  box-shadow: inset 0 1px 0 rgba(242, 234, 219, 0.08), 0 22px 60px rgba(0, 0, 0, 0.22);
}
.market-core img {
  width: 36px;
  margin-bottom: 18px;
}
.market-core > strong {
  margin-bottom: 15px;
  text-align: center;
}
.market-price {
  position: relative;
  width: 78%;
  height: 22px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(216, 212, 199, 0.22);
  border-bottom: 1px solid rgba(216, 212, 199, 0.1);
}
.market-price i {
  position: absolute;
  top: 9px;
  right: 12%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.market-price b {
  position: absolute;
  top: 5px;
  left: 66%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  background: var(--ink);
}
.market-core ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.market-core li {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.3;
}
.record-stack > div {
  display: grid;
  gap: 8px;
}
.record-stack span {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 47px;
  padding: 0 14px 0 0;
  border-top: 1px solid rgba(197, 164, 92, 0.4);
  border-right: 1px solid rgba(216, 212, 199, 0.12);
  border-bottom: 1px solid rgba(216, 212, 199, 0.08);
  background: rgba(12, 31, 26, 0.7);
  color: var(--cream);
  font-size: 15px;
}
.record-stack span b {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 500;
}
.problem-arguments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}
.problem-arguments article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 10px;
  padding: 16px 16px 0;
  border-right: 1px solid var(--line);
}
.problem-arguments article:last-child {
  border-right: 0;
}
.problem-arguments span {
  grid-row: 1 / span 2;
  color: var(--teal);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.problem-arguments strong {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: -0.01em;
}
.problem-arguments p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}
/* Product lifecycle */
.slide--product {
  --visual-max: 760px;
}
.product-visual {
  display: grid;
  grid-template-rows: 1.2fr 0.8fr;
  padding: 30px;
  background: linear-gradient(155deg, rgba(20, 50, 42, 0.7), rgba(7, 17, 15, 0.2));
}
.lifecycle-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 0;
}
.lifecycle-rail::before {
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--teal), var(--gold));
}
.lifecycle-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 170px;
  grid-template-rows: 32px 42px auto;
  align-items: center;
  justify-items: center;
  padding: 8px;
  text-align: center;
}
.lifecycle-step > span {
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.lifecycle-step i {
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: var(--ink);
}
.lifecycle-step:nth-last-child(-n + 2) i {
  border-color: var(--gold);
}
.lifecycle-step strong {
  max-width: 12ch;
  color: var(--cream);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.3;
}
.product-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: end;
  border-top: 1px solid var(--line-strong);
}
.product-state {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 22px 20px;
}
.product-state:first-child {
  border-right: 1px solid var(--line-strong);
  background: rgba(69, 184, 170, 0.06);
}
.product-state:last-child {
  background: rgba(197, 164, 92, 0.055);
}
.product-state span {
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.12em;
}
.product-state:last-child span {
  color: var(--gold-soft);
}
.product-state p {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.45;
}
/* Category */
.slide--category,
.slide--proof {
  --copy-max: 500px;
  --visual-max: 880px;
  --visual-block: clamp(560px, calc(100dvh - 180px), 650px);
}
.category-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(210px, 0.55fr);
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 18px 24px;
  padding: 22px;
  border-color: rgba(0, 181, 166, 0.3);
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 162, 75, 0.2), transparent 18rem),
    radial-gradient(circle at 38% 68%, rgba(0, 181, 166, 0.18), transparent 19rem),
    rgba(15, 20, 26, 0.88);
}
.category-chart {
  position: relative;
  min-height: 0;
  border-radius: 10px;
  border-left: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(0, 181, 166, 0.12), rgba(13, 17, 23, 0.28));
}
.category-chart svg {
  position: absolute;
  inset: 18px 18px 28px 58px;
  width: calc(100% - 76px);
  height: calc(100% - 46px);
  overflow: visible;
}
.chart-grid {
  fill: none;
  stroke: rgba(216, 212, 199, 0.1);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.chart-area {
  fill: rgba(0, 181, 166, 0.22);
}
.chart-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.chart-point {
  fill: var(--ink);
  stroke: var(--teal-soft);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}
.chart-point--end {
  fill: var(--gold);
  stroke: var(--gold-soft);
}
.chart-scale {
  position: absolute;
  top: 18px;
  bottom: 27px;
  left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.chart-start,
.chart-end {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chart-start {
  bottom: 20px;
  left: 74px;
}
.chart-end {
  top: 10px;
  right: 18px;
  align-items: flex-end;
}
.chart-start strong,
.chart-end strong {
  color: var(--cream);
  font-size: clamp(18px, 1.8vw, 30px);
  letter-spacing: -0.04em;
}
.chart-end strong {
  color: var(--gold-soft);
}
.chart-start span,
.chart-end span,
.category-interval strong {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.category-interval {
  position: absolute;
  top: 50%;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
}
.category-interval i {
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.sports-metrics {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 18px 0 18px 20px;
  border-left: 1px solid var(--line-strong);
}
.sports-metrics > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 12px;
}
.sports-metrics span {
  color: var(--cream-soft);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.35;
}
.sports-metrics strong {
  color: var(--cream);
  font-size: 30px;
  letter-spacing: -0.05em;
}
.sports-metrics i {
  grid-column: 1 / -1;
  height: 4px;
  background: rgba(216, 212, 199, 0.1);
}
.sports-metrics i b {
  display: block;
  width: var(--share);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.category-supports {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.35fr;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.category-supports article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 9px;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
}
.category-supports article:last-child {
  border-right: 0;
}
.category-supports span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.category-supports strong {
  color: var(--cream);
  font-size: 14px;
}
.category-supports p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}
.logic-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(7, 17, 15, 0.68);
}
.logic-strip span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-right: 1px solid var(--line);
  color: var(--cream-soft);
  font-size: 14px;
}
.logic-strip span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  background: var(--ink);
}
.logic-strip b {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
/* Africa evidence */
.slide--africa {
  --visual-block: clamp(500px, calc(100dvh - 230px), 590px);
}
.africa-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px 26px;
  padding: 20px;
  background:
    radial-gradient(circle at 32% 42%, rgba(0, 181, 166, 0.18), transparent 18rem),
    rgba(15, 20, 26, 0.86);
}
.africa-map-wrap {
  position: relative;
  min-height: 0;
  padding: 10px;
  border-right: 1px solid var(--line-strong);
}
.africa-evidence-list {
  display: grid;
  align-content: center;
}
.africa-evidence-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line-strong);
}
.africa-evidence-list article:last-child {
  border-bottom: 1px solid var(--line-strong);
}
.africa-evidence-list > article > span {
  padding-top: 3px;
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.africa-evidence-list b {
  display: block;
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
.africa-evidence-list strong {
  display: block;
  margin: 5px 0 4px;
  color: var(--cream);
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: -0.055em;
  line-height: 1;
}
.africa-evidence-list p {
  max-width: 42ch;
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.38;
}
.africa-layers {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}
.africa-layers span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px 0;
  border-right: 1px solid var(--line);
  color: var(--cream-soft);
  font-size: 14px;
}
.africa-layers span:last-child {
  border-right: 0;
}
.africa-layers b {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
/* Product proof */
.proof-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border-color: rgba(0, 181, 166, 0.3);
  background:
    radial-gradient(circle at 76% 22%, rgba(0, 181, 166, 0.18), transparent 20rem),
    rgba(15, 20, 26, 0.86);
}
.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(200px, 0.62fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 0;
}
.proof-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 212, 199, 0.16);
  background: #0b1412;
  color: var(--cream);
  cursor: zoom-in;
  transition: transform 260ms var(--ease), border-color 180ms ease;
}
.proof-shot:hover {
  z-index: 2;
  transform: translateY(-3px);
  border-color: rgba(69, 184, 170, 0.62);
}
.proof-shot:active {
  transform: translateY(-1px) scale(0.995);
}
.proof-shot--1 {
  grid-row: 1 / -1;
}
.proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.proof-shot span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(7, 17, 15, 0.92);
  color: var(--cream-soft);
  font-size: 14px;
  font-weight: 550;
}
.proof-shot span b {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.proof-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 13px;
  border-top: 1px solid var(--line-strong);
}
.proof-lists section > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.11em;
}
.proof-lists .compact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 14px;
}
.proof-lists .compact-list li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
}
/* Information layer */
.slide--information .slide-copy,
.slide--competition .slide-copy {
  align-self: center;
  padding-top: 0;
}
.slide--information h1,
.slide--competition h1 {
  max-width: 15ch;
  font-size: clamp(34px, 2.7vw, 48px);
}
.information-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 16px;
  width: 100%;
  height: var(--visual-block);
  max-height: var(--visual-block);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.information-visual::before,
.competition-visual::before {
  display: none;
}
.information-cutout {
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(248, 243, 232, 0.14);
  border-radius: var(--frame-radius);
  background:
    linear-gradient(145deg, rgba(248, 243, 232, 0.055), transparent 48%),
    rgba(13, 17, 23, 0.78);
  box-shadow: var(--frame-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.information-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.information-creation {
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 12px;
}
.information-primary-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.information-primary-node {
  position: relative;
  display: grid;
  grid-template-rows: auto 18px auto;
  gap: 8px;
  align-items: center;
  min-height: 112px;
  padding: 12px;
  border: 1px solid rgba(0, 181, 166, 0.22);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(0, 181, 166, 0.12), rgba(13, 17, 23, 0.42));
}
.information-primary-node:last-child {
  border-color: rgba(201, 162, 75, 0.38);
  background: linear-gradient(145deg, rgba(201, 162, 75, 0.14), rgba(13, 17, 23, 0.42));
}
.information-primary-node span {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}
.information-primary-node i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--teal);
}
.information-primary-node:not(:last-child) i::after {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 7px;
  height: 7px;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid var(--teal);
  border-right: 1px solid var(--teal);
}
.information-primary-node:last-child i {
  background: var(--gold);
}
.information-primary-node:last-child i::after {
  border-top-color: var(--gold);
  border-right-color: var(--gold);
}
.information-primary-node b {
  color: var(--cream);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.3;
}
.maturity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.maturity-strip span {
  padding: 8px 10px;
  border-left: 2px solid var(--teal);
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.maturity-strip span:last-child {
  border-left-color: var(--gold);
  color: var(--gold-soft);
}
.african-information {
  align-self: end;
  padding: 15px 16px;
  border-left: 2px solid var(--teal);
  background: rgba(7, 17, 15, 0.46);
}
.information-asset {
  display: grid;
  gap: 10px;
  align-content: end;
}
.african-information strong,
.commercial-path > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cream);
  font-size: 14px;
}
.african-information p,
.commercial-path p {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.42;
}
.commercial-path {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 162, 75, 0.05);
}
.commercial-path p b {
  color: var(--gold-soft);
}
.information-demand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.information-demand > p {
  margin: 10px 0 12px;
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 1.4;
}
.demand-lines {
  display: grid;
  border-top: 1px solid var(--line-strong);
}
.demand-lines span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 15px;
}
.demand-lines b {
  color: var(--teal);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.alternative-data {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(197, 164, 92, 0.46);
}
.alternative-data strong {
  display: block;
  color: var(--gold-soft);
  overflow-wrap: anywhere;
  font-size: clamp(20px, 1.9vw, 30px);
  letter-spacing: -0.055em;
  line-height: 1;
}
.alternative-data p {
  margin-top: 8px;
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 1.34;
}
/* Go to market */
.gtm-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  gap: 8px;
  padding: 16px;
  background: var(--green);
}
.gtm-photo,
.gtm-photo-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.gtm-photo {
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.18;
  filter: saturate(0.78) contrast(1.04) brightness(0.62);
}
.gtm-photo-wash {
  background:
    linear-gradient(180deg, rgba(13, 33, 28, 0.2), rgba(13, 17, 23, 0.9)),
    linear-gradient(90deg, rgba(13, 33, 28, 0.95), rgba(13, 33, 28, 0.62) 54%, rgba(7, 17, 15, 0.72));
}
.gtm-arms,
.gtm-convergence,
.gtm-outputs,
.gtm-equation {
  position: relative;
  z-index: 2;
}
.gtm-arms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 0;
}
.gtm-arm {
  display: grid;
  grid-template-columns: 26px minmax(0, 1.25fr) minmax(145px, 0.85fr) minmax(120px, 0.7fr);
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 5px 10px;
  padding: 10px 12px;
  border-top: 2px solid var(--teal);
  background: rgba(7, 17, 15, 0.77);
  box-shadow: inset 0 1px 0 rgba(242, 234, 219, 0.06);
}
.gtm-arm--2 {
  border-top-color: var(--gold);
}
.gtm-arm > span {
  grid-column: 1;
  grid-row: 1 / -1;
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.gtm-arm > strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--cream);
  font-size: 15px;
  letter-spacing: -0.02em;
}
.gtm-arm > p,
.arm-purpose p {
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 1.32;
}
.gtm-arm > p {
  grid-column: 2;
  grid-row: 2;
  line-height: 1.3;
}
.channel-list {
  display: flex;
  grid-column: 2 / -1;
  grid-row: 3;
  flex-wrap: wrap;
  gap: 5px;
}
.channel-list span {
  padding: 4px 6px;
  border: 1px solid rgba(216, 212, 199, 0.14);
  color: var(--cream-soft);
  font-size: 14px;
}
.gtm-arm--1 .channel-chip {
  border-color: rgba(0, 181, 166, 0.38);
  background: rgba(0, 181, 166, 0.09);
  color: var(--teal-soft);
}
.gtm-arm--2 .channel-chip {
  border-color: rgba(201, 162, 75, 0.44);
  background: rgba(201, 162, 75, 0.09);
  color: var(--gold-soft);
}
.arm-purpose {
  display: flex;
  min-width: 0;
  grid-column: 3;
  grid-row: 1 / 3;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 0 0 0 10px;
  border-top: 0;
  border-left: 1px solid var(--line);
}
.arm-output {
  display: flex;
  min-width: 0;
  grid-column: 4;
  grid-row: 1 / 3;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 0 0 0 10px;
  border-top: 0;
  border-left: 1px solid var(--line);
}
.arm-purpose b,
.arm-output b {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gtm-arm--2 .arm-purpose b,
.gtm-arm--2 .arm-output b {
  color: var(--gold-soft);
}
.arm-output span {
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
}
.gtm-convergence {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
}
.gtm-convergence i {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.gtm-convergence i:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.gtm-convergence strong {
  padding: 9px 17px;
  border: 1px solid rgba(197, 164, 92, 0.55);
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
}
.gtm-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gtm-outputs span {
  padding: 10px 13px;
  border-left: 2px solid var(--teal);
  background: rgba(7, 17, 15, 0.72);
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
}
.gtm-outputs span:last-child {
  border-left-color: var(--gold);
}
.gtm-equation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--line-strong);
}
.gtm-equation > strong {
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.gtm-equation p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 8px;
  color: var(--cream-soft);
  font-size: 12px;
  line-height: 1.3;
}
.gtm-equation p span:nth-child(even) {
  color: var(--gold);
  font-size: 16px;
}
/* Pilot */
.slide--pilot {
  --visual-max: 760px;
}
.pilot-visual {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(18, 43, 37, 0.78), rgba(7, 17, 15, 0.12));
}
.user-interface {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(13, 17, 23, 0.64);
}
.user-interface span {
  display: block;
  max-inline-size: 100%;
  padding: 9px 16px;
  border-bottom: 1px solid var(--teal);
  color: var(--cream);
  font-size: 14px;
  text-align: center;
}
.pilot-mansa {
  border-left: 2px solid var(--teal);
  background: rgba(69, 184, 170, 0.055);
}
.pilot-operator {
  border-right: 2px solid var(--gold);
  background: rgba(197, 164, 92, 0.05);
}
.pilot-flow {
  display: grid;
  grid-template-columns: minmax(124px, 0.48fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
}
.pilot-flow > section {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 18px;
}
.pilot-flow > section > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 13px;
  line-height: 1.32;
}
.pilot-flow-arrow {
  display: grid;
  place-items: center;
  min-height: 0;
}
.pilot-flow-arrow i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 181, 166, 0.3), var(--teal));
}
.pilot-flow-arrow i::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid var(--teal);
  border-right: 1px solid var(--teal);
}
.regulated-boundary {
  padding: 0;
  border: 0;
  background: none;
}
.regulated-boundary i {
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.3), var(--gold));
}
.regulated-boundary i::after {
  border-top-color: var(--gold);
  border-right-color: var(--gold);
}
.regulated-boundary-label {
  padding: 10px 0;
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.pilot-scope {
  display: grid;
  grid-template-columns: auto repeat(6, 1fr);
  border-top: 1px solid var(--line-strong);
}
.pilot-scope strong,
.pilot-scope span {
  padding: 10px;
  border-right: 1px solid var(--line);
  color: var(--cream-soft);
  font-size: 14px;
  text-align: center;
}
.pilot-scope strong {
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.pilot-why {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.pilot-why strong {
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.09em;
}
.pilot-why p {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.38;
}
/* Economics */
.economics-visual {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  align-content: center;
  gap: 13px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(17, 42, 35, 0.78), rgba(7, 17, 15, 0.1));
}
.economics-formula {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr) auto minmax(150px, 0.8fr);
  align-items: center;
  border-top: 1px solid rgba(197, 164, 92, 0.5);
  border-bottom: 1px solid rgba(197, 164, 92, 0.28);
}
.formula-item {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--cream);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 620;
  line-height: 1.15;
  text-align: center;
}
.formula-item--2,
.formula-item--4 {
  min-height: 0;
  color: var(--gold);
  font-size: 28px;
  font-weight: 350;
}
.formula-item--5 {
  border-right: 0;
  background: rgba(197, 164, 92, 0.075);
  color: var(--gold-soft);
  font-size: clamp(22px, 2vw, 34px);
}
.economics-explanation {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.4;
  text-align: right;
}
.scale-label {
  margin-top: 3px;
}
.scale-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.scale-examples article {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto 1px auto;
  gap: 8px;
  padding: 14px;
  border-right: 1px solid var(--line);
}
.scale-examples article:last-child {
  border-right: 0;
}
.scale-examples span {
  grid-row: 1 / -1;
  color: var(--teal);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.scale-examples p {
  color: var(--cream-soft);
  font-size: 15px;
}
.scale-examples i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.scale-examples strong {
  color: var(--cream);
  font-size: clamp(17px, 1.6vw, 26px);
  letter-spacing: -0.04em;
}
.economics-upside {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 16px;
  padding-top: 4px;
}
.economics-upside strong {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.09em;
}
.economics-upside p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}
/* Competition */
.competition-visual {
  display: grid;
  grid-template-rows: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  width: 100%;
  height: var(--visual-block);
  max-height: var(--visual-block);
  padding: 0;
  overflow: visible;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.competitor-field--muted {
  padding: 10px 14px;
  border: 1px solid rgba(248, 243, 232, 0.12);
  border-radius: var(--frame-radius);
  background: rgba(13, 17, 23, 0.58);
}
.competitor-muted-layer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.competitor-entry {
  min-width: 0;
  padding: 0 12px 0 0;
  border-right: 1px solid var(--line);
}
.competitor-entry:last-child {
  padding-right: 0;
  border-right: 0;
}
.competitor-entry > strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 243, 232, 0.72);
  font-size: 13px;
  letter-spacing: -0.02em;
}
.competitor-entry > div {
  margin-top: 6px;
}
.competitor-entry b {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.competitor-entry p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.28;
}
.competitor-single {
  background: rgba(197, 164, 92, 0.05);
}
.competitor-single b {
  color: var(--gold-soft);
}
.mansa-focus-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 181, 166, 0.36);
  border-radius: var(--frame-radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 75, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(0, 181, 166, 0.13), rgba(13, 17, 23, 0.86));
  box-shadow: var(--frame-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.strategy-label {
  padding-top: 3px;
}
.mansa-strategy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  border-top: 1px solid rgba(0, 181, 166, 0.42);
  background: transparent;
}
.mansa-strategy article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 8px;
  padding: 8px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(248, 243, 232, 0.1);
}
.mansa-strategy article:nth-last-child(-n + 2) {
  border-right: 0;
  border-bottom: 0;
}
.mansa-strategy span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}
.mansa-strategy strong {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.25;
}
.mansa-strategy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}
.must-prove {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 10px 0 0;
  border: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.46);
  background: transparent;
}
.must-prove strong {
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.must-prove p {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.3;
}
/* Team */
.team-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 22px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(18, 43, 37, 0.76), rgba(7, 17, 15, 0.12));
}
.founders {
  display: grid;
  align-content: center;
}
.founders article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--line-strong);
}
.founders article:last-child {
  border-bottom: 1px solid var(--line-strong);
}
.founders article > span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(197, 164, 92, 0.52);
  color: var(--gold-soft);
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.05em;
}
.founders article:nth-child(1) > span {
  border-color: rgba(0, 181, 166, 0.6);
  color: var(--teal-soft);
}
.founders article:nth-child(2) > span {
  border-color: rgba(201, 162, 75, 0.62);
  color: var(--gold-soft);
}
.founders article:nth-child(3) > span {
  border-color: rgba(248, 243, 232, 0.42);
  color: var(--cream);
}
.founders b {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.founders strong {
  display: block;
  margin-bottom: 5px;
  color: var(--cream);
  font-size: 15px;
  letter-spacing: -0.02em;
}
.founders p {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.4;
}
.next-layer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-left: 2px solid var(--teal);
  background: rgba(7, 17, 15, 0.54);
}
.next-layer > strong {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.11em;
}
.next-layer > p {
  margin-top: 18px;
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.44;
}
/* Raise */
.slide--raise {
  --copy-max: 500px;
  --visual-max: 880px;
  --visual-block: clamp(560px, calc(100dvh - 180px), 650px);
}
.slide--raise h1 {
  max-width: 15ch;
  font-size: clamp(34px, 2.8vw, 48px);
}
.raise-visual {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 20px;
  min-height: 540px;
  padding: 28px;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 14%, rgba(0, 181, 166, 0.26), transparent 18rem),
    radial-gradient(circle at 14% 86%, rgba(201, 162, 75, 0.18), transparent 18rem),
    #10171c;
}
.raise-photo,
.raise-photo-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.raise-photo {
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.08) brightness(0.52);
}
.raise-photo-wash {
  background: linear-gradient(105deg, rgba(13, 17, 23, 0.92) 0%, rgba(13, 17, 23, 0.72) 47%, rgba(13, 17, 23, 0.32) 100%);
}
.raise-amount {
  position: relative;
  z-index: 2;
  width: fit-content;
  color: var(--cream);
  font-size: clamp(58px, 6.5vw, 96px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}
.raise-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.raise-milestone {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  min-width: 0;
  padding: 12px 10px;
  border-top: 1px solid rgba(248, 243, 232, 0.22);
  background: rgba(13, 17, 23, 0.5);
}
.raise-milestone > span {
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}
.raise-milestone > i {
  display: none;
}
.raise-milestone strong {
  display: block;
  color: var(--cream);
  font-size: 13px;
  line-height: 1.25;
}
.raise-milestone p {
  margin-top: 5px;
  color: var(--cream-soft);
  font-size: 12px;
  line-height: 1.35;
}
.raise-milestone:last-child {
  border-top-color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
}
.raise-milestone:last-child > span {
  color: var(--gold-soft);
}
.raise-closing {
  position: relative;
  z-index: 2;
}
.raise-closing {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 162, 75, 0.55);
}
.raise-closing > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.raise-closing > div img:first-child {
  width: 38px;
}
.raise-closing > div img:last-child {
  width: 112px;
}
.raise-closing blockquote {
  color: var(--cream);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
/* Source ledger */
.source-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  padding: 84px var(--page-x) 110px;
  border-top: 1px solid var(--line-strong);
  background: #091512;
}
.source-heading {
  position: sticky;
  top: calc(var(--topbar-h) + 34px);
  align-self: start;
}
.source-heading .eyebrow {
  color: var(--gold);
}
.source-heading h2 {
  margin: 12px 0 14px;
  color: var(--cream);
  font-size: clamp(32px, 3.5vw, 54px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.source-heading > p:last-child {
  max-width: 40ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
}
.source {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 18px 16px 20px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, transform 180ms var(--ease);
}
.source:nth-child(even) {
  padding-left: 18px;
  border-right: 0;
}
.source:hover {
  transform: translateY(-2px);
  background: rgba(69, 184, 170, 0.035);
}
.source span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}
.source strong {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.35;
}
.source p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
/* Dialogs */
.lightbox,
.slide-index {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 1px solid rgba(216, 212, 199, 0.24);
  background: #08120f;
  color: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(242, 234, 219, 0.08);
}
.lightbox::backdrop,
.slide-index::backdrop {
  background: rgba(2, 8, 7, 0.86);
  backdrop-filter: blur(8px);
}
.lightbox {
  width: min(92vw, 1320px);
  height: min(90vh, 900px);
}
.lightbox-bar,
.dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-strong);
}
.lightbox-bar strong {
  font-size: 14px;
}
.lightbox-bar button,
.dialog-bar button {
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream-soft);
  font-size: 11px;
  cursor: pointer;
}
.lightbox > img {
  width: 100%;
  height: calc(100% - 58px);
  object-fit: contain;
  padding: 18px;
  background: #050b09;
}
.slide-index {
  width: min(92vw, 820px);
  height: min(88vh, 760px);
}
.dialog-bar .eyebrow {
  color: var(--gold);
}
.dialog-bar h2 {
  margin-top: 3px;
  font-size: 24px;
  letter-spacing: -0.04em;
}
#slide-index-list {
  display: grid;
  max-height: calc(88vh - 70px);
  overflow-y: auto;
  padding: 12px 18px 24px;
}
#slide-index-list a {
  display: grid;
  grid-template-columns: 44px 165px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
}
#slide-index-list a.active {
  border-left: 2px solid var(--gold);
  background: rgba(197, 164, 92, 0.05);
}
#slide-index-list span {
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}
#slide-index-list b {
  color: var(--teal-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}
#slide-index-list em {
  color: var(--cream);
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
}
.deck-error {
  display: grid;
  min-height: calc(100svh - var(--topbar-h));
  place-content: center;
  gap: 18px;
  padding: 40px;
  text-align: center;
}
.deck-error .eyebrow {
  color: var(--gold);
}
.deck-error h1 {
  font-size: 42px;
}
.deck-error p:last-child {
  color: var(--muted);
  font-size: 15px;
}
/* First-entry motion */
@keyframes route-draw {
  from { stroke-dashoffset: 220; }
  to { stroke-dashoffset: 0; }
}
@keyframes chart-draw {
  from { stroke-dashoffset: 1200; }
  to { stroke-dashoffset: 0; }
}
@keyframes node-arrive {
  from { opacity: 0.35; transform: scale(0.78); }
  to { opacity: 1; transform: scale(1); }
}
.motion-ready .route-path {
  stroke-dasharray: 8 10;
  stroke-dashoffset: 0;
}
.motion-ready .slide.entered .route-path {
  animation: route-draw 1.25s var(--ease) both;
  animation-delay: calc(var(--i) * 85ms);
}
.motion-ready .slide.entered .map-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: node-arrive 520ms var(--ease) both;
  animation-delay: calc(320ms + var(--i) * 80ms);
}
.motion-ready .slide.entered .chart-line {
  stroke-dasharray: 1200;
  animation: chart-draw 1.2s var(--ease) both;
}
.motion-ready .slide.entered .signal-cloud span,
.motion-ready .slide.entered .record-stack span,
.motion-ready .slide.entered .lifecycle-step {
  animation: node-arrive 440ms var(--ease) both;
  animation-delay: calc(var(--i) * 70ms);
}
/* Short desktop */
@media (min-width: 1024px) and (max-height: 820px) {
  :root {
    --topbar-h: 54px;
  }
  .slide {
    --visual-block: clamp(480px, calc(100dvh - 220px), 540px);
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 65px;
    column-gap: clamp(28px, 3.6vw, 56px);
    row-gap: 24px;
  }
  .slide--category,
  .slide--proof,
  .slide--raise {
    --visual-block: clamp(520px, calc(100dvh - 190px), 570px);
  }
  .slide--africa {
    --visual-block: clamp(480px, calc(100dvh - 230px), 530px);
  }
  .slide--information {
    --visual-block: 550px;
  }
  .kicker {
    margin-bottom: 16px;
  }
  .slide h1 {
    font-size: clamp(42px, 3.8vw, 62px);
  }
  .slide--cover h1 {
    font-size: clamp(60px, 5.4vw, 82px);
  }
  .slide--raise h1 {
    font-size: clamp(45px, 4.1vw, 66px);
  }
  .slide--information h1,
  .slide--competition h1 {
    font-size: clamp(38px, 3.2vw, 52px);
  }
  .lede {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.48;
  }
  .slide-footer {
    bottom: 12px;
  }
  .problem-visual,
  .product-visual,
  .category-visual,
  .africa-visual,
  .information-visual,
  .gtm-visual,
  .pilot-visual,
  .economics-visual,
  .competition-visual,
  .team-visual,
  .raise-visual {
    padding: 16px;
  }
  .market-core {
    min-height: 205px;
  }
  .problem-object > strong {
    font-size: 14px;
  }
  .signal-cloud span,
  .record-stack span,
  .lifecycle-step strong {
    font-size: 15px;
  }
  .product-state p,
  .gtm-arm > strong,
  .founders strong {
    font-size: 15px;
  }
  .lifecycle-step {
    min-height: 130px;
  }
  .product-state {
    padding: 15px 16px;
  }
  .africa-evidence-list article {
    padding: 10px 0;
  }
  .proof-gallery {
    gap: 9px;
  }
  .proof-lists {
    padding-top: 8px;
  }
  .information-primary-node {
    min-height: 88px;
    grid-template-rows: auto 14px auto;
    gap: 6px;
    padding: 8px;
  }
  .gtm-arm {
    padding: 12px;
  }
  .channel-list span {
    padding: 3px 5px;
  }
  .compact-list li {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 15px;
  }
  .formula-item {
    min-height: 82px;
  }
  .competitor-row article,
  .mansa-strategy article {
    padding: 10px;
  }
  .founders article {
    padding: 10px 0;
  }
  .founders article > span {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) and (max-height: 820px) {
  .slide--information,
  .slide--gtm,
  .slide--competition {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.68fr);
    gap: 30px;
  }
  .information-visual {
    grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.78fr);
    gap: 14px;
  }
  .information-creation {
    grid-template-rows: auto auto auto minmax(0, 1fr);
    align-content: start;
    gap: 7px;
    padding-right: 14px;
  }
  .information-primary-node {
    min-height: 78px;
    grid-template-rows: auto 12px auto;
    padding: 6px;
  }
  .information-primary-node b {
    line-height: 1.18;
  }
  .maturity-strip span {
    padding: 6px 7px;
  }
  .african-information {
    align-self: auto;
    padding: 10px 12px;
  }
  .african-information strong,
  .commercial-path > strong {
    margin-bottom: 4px;
  }
  .african-information p,
  .commercial-path p,
  .alternative-data p {
    line-height: 1.3;
  }
  .commercial-path {
    gap: 7px 12px;
    padding-top: 8px;
  }
  .information-demand > p {
    margin: 6px 0 8px;
    font-size: 13px;
    line-height: 1.32;
  }
  .demand-lines span {
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.25;
  }
  .demand-lines b {
    font-size: 12px;
  }
  .information-demand {
    padding: 14px;
  }
  .alternative-data {
    margin-top: 6px;
    padding-top: 8px;
  }
  .alternative-data strong {
    font-size: 30px;
  }
  .alternative-data p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.25;
  }
  .gtm-visual {
    grid-template-rows: auto auto auto auto;
    gap: 8px;
  }
  .gtm-arms {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .gtm-arm {
    grid-template-columns: 26px minmax(0, 1.25fr) minmax(145px, 0.85fr) minmax(120px, 0.7fr);
    grid-template-rows: auto auto auto;
    gap: 5px 10px;
    padding: 10px 12px;
  }
  .gtm-arm > span {
    grid-column: 1;
    grid-row: 1 / -1;
  }
  .gtm-arm > strong {
    grid-column: 2;
    grid-row: 1;
  }
  .gtm-arm > p {
    grid-column: 2;
    grid-row: 2;
    line-height: 1.3;
  }
  .gtm-arm .channel-list {
    grid-column: 2 / -1;
    grid-row: 3;
  }
  .gtm-arm .arm-purpose,
  .gtm-arm .arm-output {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    padding: 0 0 0 10px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .gtm-arm .arm-purpose {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .gtm-arm .arm-output {
    grid-column: 4;
    grid-row: 1 / 3;
  }
  .arm-purpose p {
    line-height: 1.3;
  }
  .gtm-equation {
    padding-top: 7px;
  }
}
@media (min-width: 1200px) and (max-height: 950px) {
  .competition-visual {
    align-content: start;
    gap: 8px;
    padding: 12px 16px;
  }
  .competitor-row {
    grid-template-columns: 0.95fr 1.15fr 0.9fr;
  }
  .competitor-row article {
    padding: 8px;
  }
  .competitor-row article > strong {
    min-height: 0;
    margin-bottom: 5px;
  }
  .competitor-row article > div {
    margin-top: 5px;
    padding-top: 5px;
  }
  .competitor-row p {
    line-height: 1.25;
  }
  .strategy-label {
    padding-top: 0;
  }
  .mansa-strategy {
    grid-template-columns: repeat(2, 1fr);
  }
  .mansa-strategy article {
    grid-template-columns: 24px minmax(115px, 0.82fr) minmax(0, 1.18fr);
    grid-template-rows: auto;
    align-items: start;
    padding: 4px 8px;
  }
  .mansa-strategy article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .mansa-strategy article:nth-child(2n) {
    border-right: 0;
  }
  .mansa-strategy span {
    grid-column: 1;
    grid-row: 1;
  }
  .mansa-strategy strong {
    grid-column: 2;
    grid-row: 1;
    line-height: 1.18;
  }
  .mansa-strategy p {
    grid-column: 3;
    grid-row: 1;
    line-height: 1.2;
  }
  .must-prove {
    grid-template-columns: 145px 1fr;
    gap: 12px;
    padding: 8px 10px;
  }
  .must-prove p {
    line-height: 1.3;
  }
}
/* Tablet */
@media (max-width: 1180px) {
  :root {
    --page-x: clamp(28px, 4vw, 48px);
  }
  .slide {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
  }
  .slide h1 {
    font-size: clamp(42px, 4.6vw, 62px);
  }
  .nav a {
    width: 24px;
  }
  .market-core {
    padding: 18px 12px;
  }
  .category-supports p {
    display: none;
  }
  .proof-lists .compact-list {
    grid-template-columns: 1fr;
  }
  .pilot-scope {
    grid-template-columns: repeat(3, 1fr);
  }
  .pilot-scope strong {
    grid-column: 1 / -1;
  }
  .team-visual {
    grid-template-columns: 1fr 0.55fr;
  }
}
/* Compact tablet desktop: preserve a complete, legible stage at 1024 × 768. */
@media (min-width: 768px) and (max-width: 1180px) and (max-height: 820px) {
  .slide {
    --visual-block: 500px;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 52px;
  }
  .slide--category,
  .slide--proof,
  .slide--raise {
    --visual-block: 540px;
  }
  .slide--africa {
    --visual-block: 500px;
  }
  .kicker {
    margin-bottom: 12px;
  }
  .slide h1 {
    font-size: clamp(32px, 3.7vw, 38px);
  }
  .slide--information h1,
  .slide--competition h1 {
    font-size: clamp(29px, 3.2vw, 34px);
  }
  .lede {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }
  .slide-footer {
    bottom: 8px;
  }
  .slide-footer p {
    font-size: 10px;
    line-height: 1.25;
  }
  .information-visual {
    grid-template-columns: minmax(0, 1.12fr) minmax(215px, 0.88fr);
    gap: 10px;
  }
  .information-cutout {
    padding: 12px;
  }
  .information-creation {
    gap: 8px;
  }
  .information-panel-heading {
    padding-bottom: 7px;
  }
  .information-primary-node {
    grid-template-rows: auto 13px auto;
    gap: 5px;
    min-height: 76px;
    padding: 8px;
  }
  .information-primary-node span {
    font-size: 10px;
  }
  .information-primary-node b {
    font-size: 12px;
    line-height: 1.15;
  }
  .maturity-strip span {
    padding: 6px;
    font-size: 10px;
    letter-spacing: 0.05em;
  }
  .african-information,
  .commercial-path {
    padding: 10px;
  }
  .commercial-path {
    gap: 4px;
  }
  .african-information strong,
  .commercial-path > strong {
    margin-bottom: 4px;
    font-size: 12px;
  }
  .african-information p,
  .commercial-path p,
  .information-demand > p,
  .alternative-data p {
    font-size: 12px;
    line-height: 1.28;
  }
  .information-demand > p {
    margin: 8px 0 10px;
  }
  .demand-lines span {
    grid-template-columns: 22px 1fr;
    gap: 6px;
    padding: 7px 0;
    font-size: 12px;
  }
  .demand-lines b {
    font-size: 11px;
  }
  .alternative-data {
    margin-top: 8px;
    padding-top: 8px;
  }
  .alternative-data strong {
    font-size: 22px;
  }
  .alternative-data p {
    margin-top: 6px;
  }
  .gtm-visual {
    gap: 7px;
    padding: 12px;
  }
  .gtm-arms {
    gap: 10px;
  }
  .gtm-arm {
    gap: 5px 8px;
    padding: 10px;
  }
  .gtm-arm > span,
  .arm-purpose b,
  .arm-output b,
  .gtm-equation > strong {
    font-size: 11px;
  }
  .gtm-arm > strong,
  .arm-output span {
    font-size: 13px;
  }
  .gtm-arm > p,
  .arm-purpose p {
    font-size: 12px;
    line-height: 1.25;
  }
  .channel-list {
    gap: 4px;
  }
  .channel-list span {
    padding: 3px 5px;
    font-size: 11px;
  }
  .arm-purpose {
    padding-top: 6px;
  }
  .gtm-convergence {
    gap: 10px;
  }
  .gtm-convergence strong {
    padding: 6px 10px;
    font-size: 12px;
  }
  .gtm-outputs {
    gap: 10px;
  }
  .gtm-outputs span {
    padding: 7px 9px;
    font-size: 13px;
  }
  .gtm-equation {
    gap: 4px;
    padding-top: 6px;
  }
  .gtm-equation p {
    font-size: 10px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  :root {
    --topbar-h: 56px;
    --page-x: 20px;
  }
  html {
    scroll-snap-type: none;
  }
  body::before {
    opacity: 0.14;
    background-size: 48px 48px;
  }
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 0 14px;
  }
  .brand {
    gap: 7px;
  }
  .brand > img:first-child {
    width: 22px;
    height: 22px;
  }
  .brand-wordmark {
    width: 58px;
  }
  .nav {
    display: none;
  }
  .mobile-nav {
    display: grid;
    grid-template-columns: 30px auto 30px;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }
  .mobile-nav button {
    display: grid;
    min-width: 30px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(216, 212, 199, 0.14);
    background: transparent;
    color: var(--cream-soft);
    cursor: pointer;
  }
  .mobile-nav button:active:not(:disabled) {
    transform: scale(0.96);
  }
  .mobile-nav button:disabled {
    opacity: 0.28;
  }
  .mobile-nav svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }
  #mobile-index-trigger {
    display: flex;
    min-width: 68px;
    flex-direction: column;
    gap: 0;
    padding: 2px 6px;
  }
  #mobile-index-trigger span {
    color: var(--cream);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
  }
  #mobile-index-trigger small {
    color: var(--muted);
    font-size: 12px;
  }
  .ask-link {
    padding-bottom: 5px;
    font-size: 12px;
  }
  .slide {
    display: block;
    height: auto;
    min-height: 0;
    padding: 32px var(--page-x) 46px;
    overflow: visible;
  }
  .slide::after {
    right: var(--page-x);
    left: var(--page-x);
  }
  .slide-copy {
    max-width: none;
    margin-bottom: 28px;
  }
  .kicker {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .slide h1,
  .slide--cover h1,
  .slide--information h1,
  .slide--competition h1,
  .slide--raise h1 {
    max-width: 12ch;
    font-size: clamp(39px, 11.2vw, 54px);
    line-height: 0.96;
  }
  .lede {
    max-width: none;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.58;
  }
  .slide-visual {
    width: 100%;
    max-width: none;
    min-block-size: 0;
    margin: 0;
  }
  .visual-frame {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .information-visual {
    height: auto;
    max-height: none;
  }
  .slide-footer {
    position: static;
    display: grid;
    gap: 13px;
    margin-top: 24px;
    padding-top: 14px;
  }
  .slide-footer > p {
    max-width: none;
    font-size: 13px;
  }
  .slide-sources {
    display: block;
    margin: 0;
    white-space: normal;
  }
  .slide-sources > span {
    display: block;
    margin-bottom: 8px;
  }
  .slide-sources > div {
    display: grid;
    gap: 7px;
  }
  .slide-sources a {
    display: grid;
    width: auto;
    height: auto;
    min-height: 34px;
    grid-template-columns: 27px 1fr;
    gap: 8px;
    justify-items: start;
    padding: 6px 8px;
  }
  .slide-sources a em {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    color: var(--cream-soft);
    font-size: 12px;
    font-style: normal;
    line-height: 1.35;
    white-space: normal;
  }
  .compact-list li {
    font-size: 15px;
  }
  .slide--cover {
    min-height: calc(100svh - var(--topbar-h));
  }
  .cover-visual {
    min-height: 560px;
    overflow: hidden;
  }
  .cover-map-stage {
    inset: 80px -12% 28px;
  }
  .problem-visual {
    display: block;
    padding: 18px;
  }
  .problem-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .problem-inbound,
  .problem-outbound {
    min-height: 28px;
    height: 28px;
    padding: 0;
  }
  .problem-inbound {
    display: block;
  }
  .problem-inbound::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    background: linear-gradient(var(--teal), rgba(0, 181, 166, 0.2));
  }
  .problem-inbound i {
    display: none;
  }
  .problem-outbound i {
    width: 1px;
    height: 100%;
    justify-self: center;
    background: linear-gradient(var(--gold), rgba(201, 162, 75, 0.2));
  }
  .problem-market {
    min-height: 0;
  }
  .problem-object > strong {
    font-size: 13px;
  }
  .signal-cloud span,
  .record-stack span {
    font-size: 15px;
  }
  .market-core {
    min-height: 260px;
  }
  .market-core li {
    font-size: 13px;
  }
  .problem-arguments {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .problem-arguments article {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .problem-arguments strong,
  .problem-arguments p {
    font-size: 13px;
  }
  .product-visual {
    display: block;
    padding: 18px;
  }
  .lifecycle-rail {
    display: grid;
    grid-template-columns: 1fr;
  }
  .lifecycle-rail::before {
    top: 20px;
    bottom: 20px;
    left: 23px;
    width: 1px;
    height: auto;
  }
  .lifecycle-step {
    display: grid;
    min-height: 74px;
    grid-template-columns: 32px 22px 1fr;
    grid-template-rows: 1fr;
    justify-items: start;
    padding: 8px 0;
    text-align: left;
  }
  .lifecycle-step strong {
    max-width: none;
    font-size: 15px;
  }
  .product-states {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .product-state,
  .product-state:first-child {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-state p {
    font-size: 15px;
  }
  .category-visual {
    display: block;
    padding: 16px;
  }
  .category-chart {
    height: 390px;
    margin-bottom: 24px;
  }
  .sports-metrics {
    padding: 18px 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }
  .sports-metrics span,
  .category-supports strong,
  .category-supports p,
  .logic-strip span {
    font-size: 13px;
  }
  .category-supports,
  .logic-strip {
    grid-template-columns: 1fr;
  }
  .category-supports article,
  .logic-strip span {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .category-supports p {
    display: block;
  }
  .logic-strip span::after {
    display: none;
  }
  .africa-visual {
    display: block;
    padding: 16px;
  }
  .africa-map-wrap {
    height: 430px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }
  .africa-evidence-list article {
    padding: 18px 0;
  }
  .africa-evidence-list b {
    font-size: 13px;
  }
  .africa-evidence-list p {
    max-width: none;
    font-size: 15px;
  }
  .africa-layers {
    grid-template-columns: 1fr;
  }
  .africa-layers span {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .proof-visual {
    display: block;
    padding: 14px;
  }
  .proof-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .proof-shot,
  .proof-shot--1 {
    grid-row: auto;
    min-height: 250px;
  }
  .proof-shot--1 {
    min-height: 390px;
  }
  .proof-lists {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 22px;
  }
  .proof-lists .compact-list {
    grid-template-columns: 1fr;
  }
  .proof-lists .compact-list li,
  .proof-shot span {
    font-size: 13px;
  }
  .information-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }
  .information-cutout {
    padding: 16px;
  }
  .information-primary-flow {
    grid-template-columns: 1fr;
  }
  .information-primary-node {
    min-height: 74px;
    grid-template-columns: 30px 32px 1fr;
    grid-template-rows: 1fr;
    gap: 8px;
  }
  .information-primary-node b,
  .african-information strong,
  .commercial-path > strong,
  .demand-lines span,
  .information-demand > p {
    font-size: 15px;
  }
  .maturity-strip {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .maturity-strip span {
    font-size: 13px;
  }
  .african-information {
    margin: 0;
  }
  .african-information p,
  .commercial-path p,
  .alternative-data p {
    font-size: 15px;
  }
  .commercial-path {
    display: grid;
    grid-template-columns: 1fr;
  }
  .information-demand {
    padding-top: 0;
  }
  .alternative-data {
    margin-top: 24px;
  }
  .gtm-visual {
    display: block;
    padding: 286px 16px 16px;
  }
  .gtm-photo,
  .gtm-photo-wash {
    inset: 0 0 auto;
    width: 100%;
    height: 270px;
  }
  .gtm-photo {
    object-position: 67% center;
  }
  .gtm-photo-wash {
    background: linear-gradient(180deg, rgba(7, 17, 15, 0.2), var(--green));
  }
  .gtm-arms,
  .gtm-outputs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gtm-arm {
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 8px 10px;
    padding: 16px;
  }
  .gtm-arm > span {
    grid-column: 1;
    grid-row: 1 / -1;
  }
  .gtm-arm > strong {
    grid-column: 2;
    grid-row: 1;
  }
  .gtm-arm > p {
    grid-column: 2;
    grid-row: 2;
    line-height: 1.42;
  }
  .gtm-arm .channel-list {
    grid-column: 2;
    grid-row: 3;
  }
  .gtm-arm .arm-purpose {
    display: block;
    grid-column: 2;
    grid-row: 4;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .gtm-arm .arm-output {
    display: block;
    grid-column: 2;
    grid-row: 5;
    padding: 0;
    border: 0;
  }
  .gtm-arm > strong,
  .arm-output span {
    font-size: 15px;
  }
  .gtm-arm > p,
  .arm-purpose p {
    font-size: 14px;
  }
  .channel-list span {
    font-size: 13px;
  }
  .gtm-convergence {
    margin: 20px 0;
  }
  .gtm-outputs span {
    font-size: 14px;
  }
  .gtm-equation {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .gtm-equation p {
    display: grid;
    gap: 8px;
    font-size: 14px;
  }
  .pilot-visual {
    display: block;
    padding: 16px;
  }
  .user-interface {
    margin-bottom: 18px;
  }
  .user-interface span {
    font-size: 14px;
  }
  .pilot-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pilot-flow-arrow {
    min-height: 28px;
  }
  .pilot-flow-arrow i {
    width: 1px;
    height: 100%;
    background: linear-gradient(var(--teal), rgba(0, 181, 166, 0.24));
  }
  .pilot-flow-arrow i::after {
    top: auto;
    right: calc(50% - 3px);
    bottom: 0;
    transform: rotate(135deg);
  }
  .regulated-boundary i {
    background: linear-gradient(var(--gold), rgba(201, 162, 75, 0.24));
  }
  .regulated-boundary-label {
    padding: 10px 0;
    font-size: 13px;
  }
  .pilot-scope {
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }
  .pilot-scope strong {
    grid-column: 1 / -1;
  }
  .pilot-scope strong,
  .pilot-scope span {
    font-size: 13px;
  }
  .pilot-why {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .pilot-why p {
    font-size: 15px;
  }
  .economics-visual {
    display: block;
    padding: 16px;
  }
  .economics-formula {
    grid-template-columns: 1fr;
    margin: 14px 0;
  }
  .formula-item,
  .formula-item--2,
  .formula-item--4,
  .formula-item--5 {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }
  .formula-item--2,
  .formula-item--4 {
    min-height: 46px;
    font-size: 28px;
  }
  .economics-explanation {
    margin: 12px 0 24px;
    font-size: 14px;
    text-align: left;
  }
  .scale-examples {
    grid-template-columns: 1fr;
    margin: 14px 0;
  }
  .scale-examples article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .scale-examples p {
    font-size: 14px;
  }
  .economics-upside {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .economics-upside p {
    font-size: 14px;
  }
  .competition-visual {
    display: block;
    height: auto;
    max-height: none;
    padding: 0;
  }
  .competitor-row,
  .mansa-strategy {
    grid-template-columns: 1fr;
    margin: 14px 0 20px;
  }
  .competitor-row article,
  .mansa-strategy article {
    padding: 16px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .competitor-row article > strong,
  .competitor-row p,
  .mansa-strategy strong,
  .mansa-strategy p {
    font-size: 14px;
  }
  .competitor-row p,
  .mansa-strategy p {
    display: block;
  }
  .must-prove {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .must-prove p {
    font-size: 15px;
  }
  .team-visual {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .founders article {
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }
  .founders article > span {
    width: 66px;
    height: 66px;
    font-size: 23px;
  }
  .founders strong,
  .founders p {
    font-size: 14px;
  }
  .next-layer {
    padding: 20px 16px;
    border-top: 2px solid var(--teal);
    border-left: 0;
  }
  .next-layer > p {
    font-size: 15px;
  }
  .raise-visual {
    display: block;
    min-height: 0;
    padding: 300px 16px 18px;
  }
  .raise-photo,
  .raise-photo-wash {
    bottom: auto;
    height: 285px;
  }
  .raise-photo {
    object-position: center 24%;
  }
  .raise-photo-wash {
    background: linear-gradient(180deg, rgba(7, 17, 15, 0.1), var(--green));
  }
  .raise-amount {
    font-size: clamp(54px, 17vw, 72px);
  }
  .raise-rail {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 22px;
  }
  .raise-milestone {
    padding: 10px 8px;
  }
  .raise-milestone p {
    font-size: 11px;
  }
  .raise-closing {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .raise-closing blockquote {
    font-size: 29px;
  }
  .source-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 58px var(--page-x) 76px;
  }
  .source-heading {
    position: static;
  }
  .sources {
    grid-template-columns: 1fr;
  }
  .source,
  .source:nth-child(even) {
    padding: 16px 0 18px;
    border-right: 0;
  }
  .source strong {
    font-size: 14px;
  }
  .source p {
    font-size: 13px;
  }
  .lightbox {
    width: 96vw;
    height: 88vh;
  }
  .slide-index {
    width: 94vw;
    height: 88vh;
  }
  #slide-index-list {
    padding: 8px 12px 20px;
  }
  #slide-index-list a {
    grid-template-columns: 35px 1fr;
    gap: 4px 10px;
    padding: 12px 6px;
  }
  #slide-index-list em {
    grid-column: 2;
    font-size: 12px;
  }
  .visual-frame p,
  .visual-frame li,
  .visual-frame .compact-list li {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* Export and reduced motion */
.export-mode .topbar,
.export-mode .source-panel,
.export-mode .lightbox,
.export-mode .slide-index {
  display: none !important;
}
/* A hash-targeted export is an isolated capture surface. Normal deck reading
   remains sequential, while screenshot tools receive one complete slide. */
body.export-mode:has(.slide:target) .slide:not(:target) {
  display: none !important;
}
html:has(body.export-mode) {
  scroll-padding-top: 0;
}
.export-mode .slide {
  height: 100vh;
  min-height: 0;
  scroll-margin-top: 0;
}
.export-mode .slide-footer {
  bottom: 16px;
}
.export-mode *,
.export-mode *::before,
.export-mode *::after {
  animation: none !important;
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
