:root {
  --stage-width: 1920px;
  --stage-height: 1080px;
  --bg: #f4f7fb;
  --bg-accent: #ffffff;
  --panel: rgba(255, 255, 255, 0.7);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(133, 155, 191, 0.2);
  --text: #14213d;
  --text-soft: #58718f;
  --text-muted: #8193ab;
  --blue: #205c6f;
  --teal: #2b7a8e;
  --violet: #5ba3b5;
  --sky: #2b7a8e;
  --danger: #e85d75;
  --warn: #f6b73c;
  --success: #2ab673;
  --shadow-xl: 0 36px 120px rgba(59, 90, 152, 0.18);
  --shadow-md: 0 20px 60px rgba(74, 105, 162, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(32, 92, 111, 0.1), transparent 26%),
    radial-gradient(
      circle at 85% 15%,
      rgba(43, 122, 142, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #fbfdff 0%, #eef3fa 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
}

body.pdf-mode {
  background: #fff;
}

.viewport-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.presentation-root {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--stage-width);
  height: var(--stage-height);
  transform-origin: center center;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(32, 92, 111, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(43, 122, 142, 0.1),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(244, 248, 255, 0.92)
    );
  box-shadow: var(--shadow-xl);
}

body.pdf-mode .presentation-root {
  box-shadow: none;
  border-radius: 0;
}

.presentation-chrome {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 28px 36px 0;
}

.progress-rail {
  height: 6px;
  border-radius: 999px;
  background: rgba(32, 92, 111, 0.08);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--violet));
  transition: width 280ms ease;
}

.chrome-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.brand-lockup,
.nav-cluster,
.slide-counter,
.glass-card,
.metric-chip,
.kpi-card,
.timeline-card,
.doc-node,
.engine-core,
.lane-card,
.result-card {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 8px rgba(32, 92, 111, 0.08);
}

.eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.nav-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.12),
    rgba(43, 122, 142, 0.14)
  );
  color: var(--text);
  cursor: pointer;
}

.nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.slide-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 110px;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  backdrop-filter: none;
}

.counter-divider {
  width: 20px;
  height: 1px;
  background: rgba(20, 33, 61, 0.22);
}

.app-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  padding: 128px 56px 56px;
  display: grid;
  align-content: start;
  opacity: 0;
  pointer-events: none;
}

.slide > * {
  position: relative;
  z-index: 1;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  pointer-events: none;
}

.float-orb.blue {
  background: radial-gradient(circle, rgba(32, 92, 111, 0.2), transparent 70%);
}

.float-orb.violet {
  background: radial-gradient(
    circle,
    rgba(43, 122, 142, 0.16),
    transparent 70%
  );
}

body.pdf-mode .float-orb {
  display: none;
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(32, 92, 111, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: max-content;
  justify-self: start;
}

.slide-tag i {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  font-size: 82px;
  line-height: 0.95;
}

h2 {
  font-size: 54px;
  line-height: 1.02;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

.lede,
.support-copy,
.small-copy {
  color: var(--text-soft);
}

.lede {
  font-size: 26px;
  line-height: 1.4;
}

.support-copy {
  font-size: 18px;
  line-height: 1.6;
}

.small-copy {
  font-size: 14px;
  line-height: 1.5;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.glass-card {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

body.pdf-mode .reveal,
body.pdf-mode [data-animate] {
  opacity: 1 !important;
  transform: none !important;
}

.hero-slide {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  align-content: center;
  height: 100%;
}

.hero-slide .section-heading {
  gap: 20px;
}

.hero-slide .lede {
  font-size: 28px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.kpi-card {
  padding: 24px;
  min-height: 158px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(247, 250, 255, 0.84)
  );
  box-shadow: var(--shadow-md);
}

.kpi-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kpi-card .support-copy {
  font-size: 20px;
}

.kpi-topline i {
  color: var(--blue);
}

.kpi-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  font-family: "IBM Plex Mono", monospace;
}

.hero-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(32, 92, 111, 0.15),
    rgba(43, 122, 142, 0.15),
    transparent
  );
  margin: 8px 0;
}

.hero-ring-panel {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero-ring-panel::before,
.hero-ring-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-ring-panel::before {
  inset: 32px;
  border: 1px solid rgba(32, 92, 111, 0.18);
}

.hero-ring-panel::after {
  inset: 68px;
  border: 1px dashed rgba(15, 157, 154, 0.28);
}

.ring-svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.hero-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(240, 246, 255, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 56px rgba(32, 92, 111, 0.16);
}

.hero-core strong {
  display: block;
  font-size: 56px;
  line-height: 1;
  font-family: "IBM Plex Mono", monospace;
}

.metric-chip {
  position: absolute;
  min-width: 158px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.metric-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.metric-chip.top {
  right: 280px;
  top: -10px;
}

.metric-chip.left {
  right: 320px;
  bottom: 60px;
}

.metric-chip.right {
  left: 320px;
  bottom: 30px;
}

.timeline-slide,
.steps-slide,
.business-slide {
  grid-template-rows: auto 1fr;
  gap: 34px;
}

.results-slide {
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  height: 100%;
  align-items: stretch;
}

.timeline-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(245, 248, 255, 0.82)
  );
  box-shadow: var(--shadow-md);
}

.timeline-rail {
  position: relative;
  margin-top: 30px;
  height: 180px;
}

.timeline-line {
  position: absolute;
  top: 86px;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 182, 115, 0.6) 0%,
    rgba(42, 182, 115, 0.4) 15%,
    rgba(246, 183, 60, 0.6) 30%,
    rgba(232, 93, 117, 0.7) 55%,
    rgba(232, 93, 117, 0.9) 100%
  );
}

.timeline-window {
  position: absolute;
  top: 48px;
  left: 18%;
  width: 60%;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(246, 183, 60, 0.12),
    rgba(232, 93, 117, 0.18)
  );
  border: 1px dashed rgba(232, 93, 117, 0.3);
}

.timeline-window::after {
  content: "NO STRUCTURED VISIBILITY";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  color: rgba(232, 93, 117, 0.7);
  white-space: nowrap;
}

.timeline-point {
  position: absolute;
  top: 72px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--panel-strong);
  border: 1px solid rgba(32, 92, 111, 0.15);
  box-shadow: var(--shadow-md);
  font-size: 18px;
  color: var(--blue);
}

.timeline-point.origin {
  left: 10%;
}

.timeline-point.destination {
  right: 8%;
}

.timeline-labels {
  position: absolute;
  inset: 0;
}

.timeline-labels div {
  position: absolute;
  top: 122px;
  width: 210px;
}

.timeline-labels .origin-label {
  left: 0;
}

.timeline-labels .blind-label {
  left: 31%;
  top: 136px;
  text-align: center;
}

.timeline-labels .destination-label {
  right: 0;
  text-align: right;
}

.risk-grid,
.steps-grid,
.results-grid {
  display: grid;
  gap: 18px;
}

.risk-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.risk-grid .risk-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.risk-item,
.lane-card,
.result-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.bridge-slide {
  grid-template-rows: auto 1fr;
  gap: 22px;
}

.bridge-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

/* ── Redesigned digital-bridge 5-stage pipeline ── */
.db-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  height: 100%;
}

.db-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.db-stage {
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.db-stage--highlight {
  background: linear-gradient(
    180deg,
    rgba(32, 92, 111, 0.08),
    rgba(43, 122, 142, 0.05)
  );
  border-color: rgba(32, 92, 111, 0.22);
}

.db-stage-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.db-stage-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.12),
    rgba(43, 122, 142, 0.08)
  );
  color: var(--blue);
  font-size: 20px;
}

.db-stage h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.db-arrow {
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 18px;
  opacity: 0.45;
}

.db-detail-lane {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.db-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(32, 92, 111, 0.1);
  background: rgba(244, 248, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.db-detail i {
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
}

.bridge-network {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(244, 248, 255, 0.84)
  );
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-layout {
  position: absolute;
  inset: 0;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  align-items: center;
  gap: 10px;
}

.docs-stack,
.outcome-stack {
  display: grid;
  gap: 18px;
}

.doc-node,
.lane-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.doc-node i,
.lane-card i,
.result-card i,
.risk-item i {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 20px;
}

.engine-core {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.96),
    rgba(236, 243, 255, 0.9) 52%,
    rgba(223, 234, 255, 0.8) 100%
  );
  border: 1px solid rgba(32, 92, 111, 0.16);
  box-shadow: 0 28px 80px rgba(32, 92, 111, 0.18);
}

.engine-core::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px dashed rgba(15, 157, 154, 0.26);
}

.engine-core::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(32, 92, 111, 0.08);
}

.steps-grid {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 90px;
  right: 90px;
  top: 98px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(32, 92, 111, 0.35),
    rgba(43, 122, 142, 0.45),
    rgba(91, 163, 181, 0.35)
  );
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 312px;
  padding: 26px 20px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.step-visual {
  display: none;
}

.step-connector {
  position: absolute;
  inset: 34px 18px auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--violet));
}

.signal-dot {
  position: absolute;
  top: 26px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue);
  box-shadow: 0 0 0 10px rgba(32, 92, 111, 0.08);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.ai-slide,
.data-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.ai-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  height: 100%;
  align-items: stretch;
}

.insight-stack,
.next-steps-grid {
  display: grid;
  gap: 16px;
}

.insight-card,
.next-step-card,
.source-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.insight-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.insight-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
}

.terminal-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 33, 61, 0.1);
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
  box-shadow: var(--shadow-md);
}

.terminal-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.terminal-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-feed {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 1.8;
  color: #36506f;
}

.scan-bar {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(
    180deg,
    rgba(42, 182, 115, 0.08),
    rgba(42, 182, 115, 0.18),
    rgba(42, 182, 115, 0.08)
  );
  pointer-events: none;
}

.terminal-entry {
  opacity: 0;
}

.terminal-entry.alert {
  color: var(--danger);
}

.terminal-entry.ok {
  color: var(--success);
}

.terminal-entry.warn {
  color: var(--warn);
}

.verification-meter {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 33, 61, 0.08);
}

.verification-meter-track {
  height: 12px;
  margin-top: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(20, 33, 61, 0.08);
}

.verification-meter-fill {
  height: 100%;
  width: 87%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--warn), var(--danger));
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
  align-content: start;
}

.source-card i {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 24px;
}

.source-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-slide {
  grid-template-rows: auto 1fr;
  gap: 24px;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  height: 100%;
  align-items: stretch;
  align-content: center;
}

.benchmark-card {
  display: flex;
  flex-direction: column;
  padding: 36px 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(243, 247, 255, 0.86)
  );
  box-shadow: var(--shadow-md);
}

.benchmark-flag {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 32px;
}

.benchmark-region {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.benchmark-card h3 {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--text);
}

.benchmark-copy {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-soft);
  flex: 1 1 auto;
}

.benchmark-copy strong {
  color: var(--blue);
  font-weight: 600;
}

.benchmark-tag {
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(32, 92, 111, 0.18);
  background: rgba(32, 92, 111, 0.08);
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}

.map-panel {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.map-frame {
  position: absolute;
  inset: 0;
}

.map-frame svg {
  display: block;
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  inset: auto 34px 28px auto;
  width: 340px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.map-legend {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.map-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.map-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.map-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(32, 92, 111, 0.12);
  background: rgba(241, 246, 255, 0.92);
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  height: 100%;
  align-items: stretch;
}

.business-panel,
.business-stat,
.fund-card,
.fee-highlight,
.share-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.business-panel {
  padding: 32px;
}

.business-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.business-stat {
  padding: 24px;
}

.business-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: 38px;
  font-family: "IBM Plex Mono", monospace;
}

.fee-highlight {
  padding: 28px;
  margin-bottom: 18px;
  background: linear-gradient(
    180deg,
    rgba(237, 246, 255, 0.96),
    rgba(255, 255, 255, 0.88)
  );
}

.fee-highlight strong {
  display: block;
  margin: 10px 0;
  font-size: 72px;
  line-height: 0.95;
  font-family: "IBM Plex Mono", monospace;
  color: var(--blue);
}

.share-grid {
  display: grid;
  gap: 16px;
}

.share-card {
  padding: 22px;
}

.share-card i {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--violet);
}

.flow-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(241, 246, 255, 0.95),
    rgba(255, 255, 255, 0.88)
  );
  border: 1px solid rgba(32, 92, 111, 0.12);
}

.flow-card i {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 20px;
}

.fund-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.fund-card {
  padding: 20px;
}

.fund-card i {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--teal);
}

.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.flow-slide,
.pillars-slide,
.transformation-slide,
.benefits-slide,
.flywheel-slide,
.zero-cost-slide,
.conclusion-slide,
.economic-slide,
.profile-slide,
.case-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.partner-slide {
  grid-template-rows: auto 1fr;
  gap: 22px;
}

.technology-slide {
  grid-template-rows: auto 1fr auto;
  gap: 22px;
}

.zero-cost-slide {
  grid-template-rows: auto 1fr auto;
  gap: 22px;
}

.profile-slide {
  grid-template-rows: auto 1fr auto;
  gap: 22px;
}

.flow-chain,
.benefit-grid,
.technology-grid {
  display: grid;
  gap: 16px;
  height: 100%;
  align-content: start;
}

.flow-chain {
  position: relative;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.flow-layout {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 22px;
  height: 100%;
  align-items: stretch;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 22px;
  height: 100%;
  align-items: stretch;
}

.flow-brief,
.benefits-summary,
.pillar-hero {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(237, 246, 255, 0.96),
    rgba(255, 255, 255, 0.9)
  );
  box-shadow: var(--shadow-md);
}

.flow-chain::before {
  display: none;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid .benefit-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.technology-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-node,
.benefit-card,
.tech-card,
.state-card,
.partner-card,
.action-card,
.economic-card,
.profile-card,
.case-card,
.pillar-layer,
.zero-card,
.cycle-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.flow-node,
.benefit-card,
.tech-card {
  min-height: 250px;
}

.flow-node {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(243, 247, 255, 0.84)
  );
}

.flow-icon-tile {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(32, 92, 111, 0.15),
    rgba(43, 122, 142, 0.1)
  );
}

.flow-icon-tile i {
  margin: 0 !important;
  font-size: 24px;
}

.flow-node i,
.benefit-card i,
.tech-card i,
.partner-card i,
.action-card i,
.economic-card i,
.profile-card i,
.case-card i,
.pillar-layer i,
.zero-card i,
.cycle-card i {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 24px;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.flow-node-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32, 92, 111, 0.08);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillars-layout,
.transformation-layout,
.flywheel-layout,
.zero-cost-layout,
.partner-layout,
.conclusion-layout,
.economic-layout,
.profile-layout,
.case-layout {
  display: grid;
  gap: 24px;
  height: 100%;
  align-items: stretch;
}

.pillars-layout,
.flywheel-layout,
.zero-cost-layout,
.partner-layout,
.conclusion-layout,
.economic-layout,
.profile-layout,
.case-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.transformation-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pillar-stack,
.action-list,
.partner-points,
.stats-grid,
.cycle-list {
  display: grid;
  gap: 16px;
}

.source-mini-grid,
.partner-points,
.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.source-mini,
.stat-mini,
.badge-mini {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 92, 111, 0.12);
  background: rgba(244, 248, 255, 0.9);
  color: var(--text-soft);
}

.state-card {
  min-height: 460px;
}

.state-card--map {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: rgba(243, 248, 253, 0.6);
}

.state-card--map .map-frame {
  position: absolute;
  inset: 0;
}

.state-card--map .map-frame svg {
  display: block;
  width: 100%;
  height: 100%;
}

.state-band {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  word-break: break-word;
}

.state-band.before {
  color: #9f3347;
  background: linear-gradient(
    90deg,
    rgba(232, 93, 117, 0.16),
    rgba(246, 183, 60, 0.16)
  );
}

.state-band.after {
  color: #1d6b58;
  background: linear-gradient(
    90deg,
    rgba(42, 182, 115, 0.16),
    rgba(32, 92, 111, 0.16)
  );
}

.emphasis-number {
  display: block;
  margin: 4px 0 24px;
  font-size: 68px;
  line-height: 0.95;
  font-family: "IBM Plex Mono", monospace;
  color: var(--blue);
}

.benefit-card {
  min-height: 270px;
}

.pillar-hero {
  display: grid;
  align-content: start;
  gap: 16px;
}

.pillar-bands {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.pillar-band {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 600;
  color: #fff;
}

.pillars-slide {
  min-height: 0;
}

.pillars-slide .pillars-layout {
  min-height: 0;
  height: 100%;
  align-items: stretch;
}

/* Left column — narrative + bands + cross-check chips */
.pillars-slide .pillar-hero {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillars-slide .pillar-hero .small-copy {
  font-size: 16px;
  letter-spacing: 0.16em;
}

.pillars-slide .pillar-hero h3 {
  font-size: 30px;
  line-height: 1.15;
  margin: 0;
}

.pillars-slide .pillar-hero .support-copy {
  font-size: 20px;
  line-height: 1.5;
}

.pillars-slide .pillar-bands {
  gap: 10px;
  margin-top: 4px;
}

.pillars-slide .pillar-band {
  padding: 14px 18px;
  font-size: 20px;
}

.pillar-sources {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(133, 155, 191, 0.25);
}

.pillar-sources-label {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pillar-sources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pillar-source-chip {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(32, 92, 111, 0.14);
  background: rgba(244, 248, 255, 0.92);
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* Right column — three equal layer cards */
.pillars-slide .pillar-stack {
  grid-template-rows: 1fr 1fr 1fr;
  gap: 18px;
  min-height: 0;
  height: 100%;
  align-content: stretch;
}

.pillars-slide .pillar-layer {
  padding: 26px 30px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillars-slide .pillar-layer i {
  font-size: 28px;
  margin-bottom: 10px;
}

.pillars-slide .pillar-layer h3 {
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.pillars-slide .pillar-layer .support-copy {
  font-size: 20px;
  line-height: 1.5;
}

.pillar-band.blue {
  background: linear-gradient(135deg, #2b7a8e, #205c6f);
}

.pillar-band.teal {
  background: linear-gradient(135deg, #2b7a8e, #2b7a8e);
}

.pillar-band.violet {
  background: linear-gradient(135deg, #5ba3b5, #205c6f);
}

.pillar-meter {
  margin-top: 8px;
}

.pillar-meter-track {
  height: 12px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.08);
}

.pillar-meter-fill {
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--violet));
}

.benefits-summary {
  display: grid;
  align-content: start;
  gap: 16px;
}

.cycle-hero {
  position: relative;
  display: grid;
  place-items: center;
  padding: 36px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(237, 246, 255, 0.95),
    rgba(255, 255, 255, 0.88)
  );
  box-shadow: var(--shadow-md);
}

.cycle-core {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.98),
    rgba(230, 240, 255, 0.92)
  );
  border: 1px solid rgba(32, 92, 111, 0.16);
  box-shadow: 0 28px 80px rgba(32, 92, 111, 0.14);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(32, 92, 111, 0.18);
}

.orbit-ring.outer {
  inset: 54px;
}

.orbit-ring.inner {
  inset: 96px;
}

.cycle-satellite {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 92, 111, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cycle-satellite.top {
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-satellite.right {
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
}

.cycle-satellite.bottom {
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-satellite.left {
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
}

.cycle-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cycle-index {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.zero-fee-banner {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(237, 246, 255, 0.96),
    rgba(255, 255, 255, 0.88)
  );
  box-shadow: var(--shadow-md);
}

.zero-fee-banner strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 72px;
  line-height: 0.95;
  font-family: "IBM Plex Mono", monospace;
  color: var(--blue);
}

.zero-waterfall {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}

.zero-waterfall-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(32, 92, 111, 0.12);
  background: rgba(244, 248, 255, 0.92);
}

.zero-waterfall-arrow {
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 22px;
}

/* ── Redesigned zero-cost / commercial model slide ── */
.zc-body {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
  height: 100%;
  align-content: center;
  justify-content: stretch;
}

.zc-flow-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  width: 100%;
}

.zc-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 22px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.zc-flow-node--highlight {
  background: linear-gradient(
    180deg,
    rgba(32, 92, 111, 0.1),
    rgba(43, 122, 142, 0.06)
  );
  border-color: rgba(32, 92, 111, 0.24);
}

.zc-flow-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.12),
    rgba(43, 122, 142, 0.08)
  );
  color: var(--blue);
  font-size: 34px;
}

.zc-flow-node--highlight .zc-flow-icon {
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.2),
    rgba(43, 122, 142, 0.14)
  );
}

.zc-flow-node h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.2;
}

.zc-flow-node .small-copy {
  font-size: 16px;
  color: var(--text-muted);
}

.zc-flow-arrow {
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 26px;
  opacity: 0.5;
}

.zc-outcome-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.zc-outcome-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 28px 28px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.zc-outcome-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.2;
}

.zc-outcome-card .support-copy {
  font-size: 18px;
  line-height: 1.5;
}

.zc-outcome-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 24px;
}

/* ── Sri Lanka country fit slide ── */
.sl-fit-slide {
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  min-height: 0;
}

.sl-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sl-metric {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(237, 246, 255, 0.96),
    rgba(255, 255, 255, 0.9)
  );
  box-shadow: var(--shadow-md);
}

.sl-metric-num {
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.sl-metric-label {
  font-size: 18px;
  line-height: 1.35;
  color: var(--text-soft);
  margin: 0;
}

.sl-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  min-height: 0;
}

.sl-card {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.sl-card--highlight {
  background: linear-gradient(
    180deg,
    rgba(32, 92, 111, 0.08),
    rgba(91, 163, 181, 0.05)
  );
  border-color: rgba(32, 92, 111, 0.24);
}

.sl-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.sl-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(32, 92, 111, 0.12), rgba(43, 122, 142, 0.08));
  color: var(--blue);
  font-size: 26px;
  flex-shrink: 0;
}

.sl-card-icon--accent {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
}

.sl-card-kicker {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.sl-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.sl-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sl-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-soft);
}

.sl-bullets li i {
  margin-top: 4px;
  font-size: 14px;
  color: var(--success);
  flex-shrink: 0;
}

.sl-card--highlight .sl-bullets li i {
  color: var(--blue);
}

.sl-callout {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 32px;
  border-radius: 22px;
  border: 1px solid rgba(32, 92, 111, 0.2);
  background: linear-gradient(
    90deg,
    rgba(32, 92, 111, 0.1),
    rgba(91, 163, 181, 0.06)
  );
  box-shadow: var(--shadow-md);
}

.sl-callout-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.sl-callout p {
  font-size: 20px;
  line-height: 1.45;
  color: var(--text-soft);
  margin: 0;
}

.sl-callout strong {
  color: var(--blue);
  font-weight: 600;
}

/* ── Track record / delivery credibility slide ── */
.track-record-slide {
  grid-template-rows: auto 1fr;
  gap: 24px;
}

.tr-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  height: 100%;
  align-items: stretch;
}

/* Timeline (left) */
.tr-timeline {
  position: relative;
  padding: 12px 0 12px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.tr-timeline-rail {
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--teal), var(--violet));
  opacity: 0.25;
}

.tr-moment {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
}

.tr-moment-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
  margin-left: -30px;
  box-shadow: 0 0 0 5px rgba(32, 92, 111, 0.1);
  flex-shrink: 0;
}

.tr-moment-dot.accent {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.1);
}

.tr-moment-dot.active {
  background: var(--teal);
  box-shadow:
    0 0 0 5px rgba(15, 157, 154, 0.12),
    0 0 0 10px rgba(15, 157, 154, 0.06);
}

.tr-moment-content {
  min-width: 0;
}

.tr-moment-year {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 8px;
}

.tr-moment-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}

.tr-moment-content .small-copy {
  font-size: 18px;
  line-height: 1.45;
}

/* Proof list (right) */
.tr-proof-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.tr-proof-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.tr-proof-row h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tr-proof-row .support-copy {
  font-size: 18px;
  line-height: 1.5;
}

.tr-proof-row-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.1),
    rgba(43, 122, 142, 0.08)
  );
  color: var(--blue);
  font-size: 20px;
}

/* Footnote */
.tr-footnote {
  padding: 14px 24px;
  border-radius: 14px;
  background: rgba(32, 92, 111, 0.03);
  border: 1px solid rgba(32, 92, 111, 0.06);
  text-align: center;
}

.tr-footnote .small-copy {
  color: var(--text-muted);
  font-style: italic;
  font-size: 12px;
}

/* ── Sri Lanka profile slide ── */
.slk-body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  height: 100%;
}

.slk-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.slk-metric-card {
  padding: 26px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(237, 246, 255, 0.96),
    rgba(255, 255, 255, 0.9)
  );
  box-shadow: var(--shadow-md);
}

.slk-big-number {
  display: block;
  margin: 8px 0 6px;
  font-size: 36px;
  line-height: 1;
  font-family: "IBM Plex Mono", monospace;
  color: var(--blue);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.slk-big-number.teal {
  color: var(--teal);
}
.slk-big-number.violet {
  color: var(--violet);
}

.slk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.slk-content-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.slk-content-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.slk-card-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.12),
    rgba(43, 122, 142, 0.08)
  );
  color: var(--blue);
  font-size: 20px;
}

.slk-callout {
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(32, 92, 111, 0.06),
    rgba(43, 122, 142, 0.04)
  );
  border: 1px solid rgba(32, 92, 111, 0.08);
  text-align: center;
}

.slk-callout .small-copy {
  color: var(--text-soft);
  letter-spacing: 0.06em;
}

/* ── Redesigned data-sources / verification layers ── */
.ds-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  height: 100%;
  align-items: center;
}

.ds-hub {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.98),
    rgba(236, 243, 255, 0.92)
  );
  border: 1px solid rgba(32, 92, 111, 0.18);
  box-shadow: 0 20px 60px rgba(32, 92, 111, 0.14);
}

.ds-hub h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  margin: 6px 0 4px;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ds-pill {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.ds-pill h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ds-pill-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.12),
    rgba(43, 122, 142, 0.08)
  );
  color: var(--blue);
  font-size: 18px;
}

.ds-pill-kicker {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── Technology strip ── */
.tech-strip {
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(32, 92, 111, 0.06),
    rgba(43, 122, 142, 0.04)
  );
  border: 1px solid rgba(32, 92, 111, 0.08);
  text-align: center;
}

.tech-strip .small-copy {
  color: var(--text-soft);
  letter-spacing: 0.06em;
}

/* ── Redesigned partner / delivery model phases ── */
.pm-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  height: 100%;
}

.pm-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.pm-phase {
  padding: 28px 22px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pm-phase-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.pm-phase-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(32, 92, 111, 0.12),
    rgba(43, 122, 142, 0.08)
  );
  color: var(--blue);
  font-size: 22px;
}

.pm-phase h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pm-connector {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  align-self: center;
  opacity: 0.35;
}

.pm-detail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pm-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(32, 92, 111, 0.1);
  background: rgba(244, 248, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.pm-detail i {
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
}

.trust-strip,
.delivery-strip,
.journey-strip {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.trust-strip,
.delivery-strip,
.journey-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-badge,
.delivery-badge,
.journey-segment {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 92, 111, 0.12);
  background: rgba(244, 248, 255, 0.92);
  color: var(--text-soft);
}

.journey-segment {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-points,
.action-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-card {
  min-height: 180px;
}

/* ── Risk severity ranking (slide 02) ── */
.risk-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 16px;
  right: 16px;
}

.risk-item {
  position: relative;
}

.risk-severity-1 {
  border-left: 4px solid var(--danger);
}
.risk-severity-1 .risk-rank {
  background: var(--danger);
}
.risk-severity-2 {
  border-left: 4px solid #f47a53;
}
.risk-severity-2 .risk-rank {
  background: #f47a53;
}
.risk-severity-3 {
  border-left: 4px solid var(--warn);
}
.risk-severity-3 .risk-rank {
  background: var(--warn);
  color: var(--text);
}
.risk-severity-4 {
  border-left: 4px solid var(--text-muted);
}
.risk-severity-4 .risk-rank {
  background: var(--text-muted);
}

.risk-resolution {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(42, 182, 115, 0.08),
    rgba(32, 92, 111, 0.06)
  );
  border: 1px solid rgba(42, 182, 115, 0.22);
  border-left: 4px solid var(--success);
}

/* ── Flow connectors (slide 05) ── */
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  opacity: 0.5;
}

.flow-slide .flow-node h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.flow-slide .flow-node .support-copy {
  font-size: 19px;
  line-height: 1.55;
}

.flow-slide .flow-node .flow-node-tag {
  font-size: 14px;
  padding: 9px 14px;
}

.flow-slide .flow-node .flow-number {
  width: 42px;
  height: 42px;
  font-size: 16px;
}

/* ── Journey connectors (slide 17) ── */
.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  opacity: 0.45;
}

.journey-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ── Terminal dark theme (slide 08) ── */
.terminal-panel {
  background: linear-gradient(180deg, #0f1a2e 0%, #152238 100%);
  border-color: rgba(32, 92, 111, 0.15);
}

.terminal-toolbar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.terminal-toolbar .small-copy {
  color: rgba(255, 255, 255, 0.55);
}

.terminal-feed {
  color: rgba(180, 210, 240, 0.85);
}

.terminal-entry.alert {
  color: #ff7b8a;
}

.terminal-entry.ok {
  color: #5ee89e;
}

.terminal-entry.warn {
  color: #ffd06b;
}

.verification-meter {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.verification-meter .small-copy {
  color: rgba(180, 210, 240, 0.7);
}

.scan-bar {
  background: linear-gradient(
    180deg,
    rgba(42, 182, 115, 0.04),
    rgba(42, 182, 115, 0.12),
    rgba(42, 182, 115, 0.04)
  );
}

/* ── Source card spacing (slide 09) ── */
.data-grid {
  gap: 22px;
}

.source-kicker {
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* ── Results comparison chart (slide 10) ── */
.results-comparison {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  height: 100%;
  align-items: stretch;
}

.results-chart {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(243, 247, 255, 0.88)
  );
  box-shadow: var(--shadow-md);
}

.results-cards {
  display: grid;
  gap: 14px;
  align-content: start;
}

.chart-bars {
  display: grid;
  gap: 22px;
}

.chart-group {
  display: grid;
  gap: 8px;
}

.chart-label {
  font-weight: 600;
  color: var(--text);
}

.chart-bar-row {
  display: grid;
  gap: 6px;
}

.chart-bar {
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  min-width: 48px;
  transition: width 1s ease;
}

.chart-bar.before {
  background: rgba(232, 93, 117, 0.6);
}

.chart-bar.after {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

/* ── Hero control-window dial (adapted from preso) ── */
.control-dial {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
}

.dial-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dial-outer {
  inset: 0;
  background: conic-gradient(
    from 200deg,
    var(--blue) 0deg,
    var(--blue) 290deg,
    rgba(133, 155, 191, 0.2) 290deg,
    rgba(133, 155, 191, 0.2) 360deg
  );
  box-shadow:
    0 20px 50px rgba(32, 92, 111, 0.15),
    0 8px 20px rgba(32, 92, 111, 0.1);
}

.dial-mid {
  inset: 48px;
  background: conic-gradient(
    from 200deg,
    rgba(133, 155, 191, 0.25) 0deg,
    rgba(133, 155, 191, 0.25) 42deg,
    transparent 42deg
  );
  z-index: 2;
}

.dial-inner {
  inset: 86px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(244, 248, 255, 0.96)
  );
  z-index: 3;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(32, 92, 111, 0.12);
}

.dial-big {
  font-size: 52px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.dial-label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
}

.dial-legend {
  position: absolute;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.dial-legend-35 {
  top: 22%;
  right: -14%;
  color: var(--blue);
}

.dial-legend-5 {
  bottom: 28%;
  left: -8%;
  color: var(--text-soft);
}

/* ── Document-flow full-width chain ── */
.flow-chain--full {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  height: 100%;
  align-content: center;
}

/* ── Preso architecture slide ── */
.preso-arch-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.pa-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pa-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.pa-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 56px 56px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  flex: 1 1 0;
  min-width: 0;
  max-width: 420px;
  transition: all 0.4s;
}

.pa-stage:hover {
  box-shadow: 0 20px 60px rgba(32, 92, 111, 0.16);
  transform: translateY(-4px);
}

.pa-stage-icon {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background: rgba(244, 248, 255, 0.92);
  border: 1.5px solid rgba(133, 155, 191, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 38px;
  color: var(--text-soft);
}

.pa-stage-icon--primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border: none;
  color: #fff;
}

.pa-stage-icon--authority {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: none;
  color: #fff;
}

.pa-stage--engine {
  border-color: rgba(32, 92, 111, 0.2);
  background: linear-gradient(
    180deg,
    rgba(32, 92, 111, 0.04),
    rgba(43, 122, 142, 0.02)
  );
}

.pa-stage--authority {
  border-color: rgba(32, 92, 111, 0.2);
  background: linear-gradient(
    180deg,
    rgba(32, 92, 111, 0.06),
    rgba(43, 122, 142, 0.03)
  );
}

.pa-stage h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pa-stage .small-copy {
  font-size: 18px;
  line-height: 1.45;
}

.pa-arrow {
  display: grid;
  place-items: center;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 30px;
  opacity: 0.5;
}

/* ── Preso verification (hub-spoke) slide ── */
.preso-verify-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.pv-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pv-hub-spoke {
  position: relative;
  width: 820px;
  height: 600px;
  margin: 0 auto;
}

.pv-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.pv-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(32, 92, 111, 0.2);
  z-index: 3;
  text-align: center;
  gap: 6px;
  padding: 0 14px;
}

.pv-hub i {
  font-size: 36px;
  margin-bottom: 6px;
  color: #fff;
}

.pv-hub span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pv-spoke {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(133, 155, 191, 0.2);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 0 12px;
  z-index: 2;
  transition: all 0.4s;
}

.pv-spoke:hover {
  box-shadow: 0 12px 36px rgba(32, 92, 111, 0.16);
  transform: scale(1.06);
  border-color: rgba(32, 92, 111, 0.2);
}

.pv-spoke i {
  font-size: 32px;
  color: var(--blue);
  margin: 0;
}

.pv-spoke span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.pv-spoke--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pv-spoke--top:hover {
  transform: translateX(-50%) scale(1.06);
}
.pv-spoke--top-right {
  top: 15%;
  right: 2%;
}
.pv-spoke--bottom-right {
  bottom: 15%;
  right: 2%;
}
.pv-spoke--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pv-spoke--bottom:hover {
  transform: translateX(-50%) scale(1.06);
}
.pv-spoke--bottom-left {
  bottom: 15%;
  left: 2%;
}
.pv-spoke--top-left {
  top: 15%;
  left: 2%;
}

/* ── Preso discrepancy (mock screen) slide ── */
.preso-discrep-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.pd-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pd-screen {
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(32, 92, 111, 0.12);
  overflow: hidden;
}

.pd-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 248, 255, 0.92);
}

.pd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pd-rows {
  padding: 18px;
}

.pd-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.pd-row:last-child {
  margin-bottom: 0;
}

.pd-row:hover {
  border-color: rgba(32, 92, 111, 0.18);
  box-shadow: 0 4px 16px rgba(32, 92, 111, 0.06);
}

.pd-row-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.pd-row-content {
  flex: 1;
}

.pd-row-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.pd-row-desc {
  color: var(--text-soft);
}

.pd-badge {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.pd-badge--high {
  background: rgba(232, 93, 117, 0.1);
  color: var(--danger);
}

.pd-badge--med {
  background: rgba(246, 183, 60, 0.12);
  color: #c77d0a;
}

.pd-badge--clear {
  background: rgba(42, 182, 115, 0.1);
  color: var(--success);
}

.pd-footer {
  border-top: 1px solid var(--border);
}

/* ── Preso government slide ── */
.preso-gov-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  height: 100%;
  align-content: center;
}

.pg-grid .tech-card {
  min-height: 280px;
  text-align: center;
}

.pg-grid .tech-card i {
  font-size: 32px;
  margin-bottom: 18px;
}

.pg-cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pg-cert {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(32, 92, 111, 0.22);
  background: rgba(32, 92, 111, 0.08);
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pg-cert-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
}

/* ── Preso delivery slide ── */
.preso-delivery-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.pdl-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pdl-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
}

.pdl-phase {
  position: relative;
  padding: 36px 28px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s;
}

.pdl-phase:hover {
  box-shadow: 0 16px 48px rgba(32, 92, 111, 0.14);
  transform: translateY(-4px);
}

.pdl-phase-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(32, 92, 111, 0.1);
  margin: 0 auto 18px;
}

.pdl-phase h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pdl-connector {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0.3;
  align-self: center;
}

/* ── Preso implementation (teal background) slide ── */
.preso-impl-slide {
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.pi-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1a4f5e 0%, #205c6f 30%, #1a4a58 100%);
  border-radius: 0;
}

.pi-heading {
  position: relative;
  z-index: 1;
}

.pi-tag {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.pi-tag i {
  color: rgba(255, 255, 255, 0.5);
}

.pi-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  height: 100%;
}

.pi-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pi-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: left;
  max-width: 380px;
  min-width: 320px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.pi-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.pi-step-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.pi-step h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.pi-step .small-copy {
  font-size: 18px;
  line-height: 1.5;
}

.pi-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.pi-stat {
  text-align: center;
  transition: all 0.4s;
}

.pi-stat:hover {
  transform: translateY(-4px);
}

.pi-stat-num {
  font-size: 84px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pi-stat-num--cyan {
  color: var(--violet);
}

.pi-stat-num--gold {
  color: #d4a843;
}

.pi-stat-label {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
}

/* ── Chrome on dark background (last slide) ── */
.chrome-on-dark .progress-rail {
  background: rgba(255, 255, 255, 0.12);
}

.chrome-on-dark .progress-bar {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgba(91, 163, 181, 0.8),
    rgba(255, 255, 255, 0.6)
  );
}

.chrome-on-dark .brand-mark {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(91, 163, 181, 0.8)
  );
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.chrome-on-dark .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.chrome-on-dark .brand-lockup strong {
  color: rgba(255, 255, 255, 0.95);
}

.chrome-on-dark .nav-cluster {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.chrome-on-dark .nav-btn {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.chrome-on-dark .nav-btn:disabled {
  opacity: 0.25;
}

.chrome-on-dark .slide-counter {
  color: rgba(255, 255, 255, 0.85);
}

.chrome-on-dark .counter-divider {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Blind-period line bleed fix ── */
.slide:not(.is-active) .timeline-line,
.slide:not(.is-active) .timeline-window,
.slide:not(.is-active) .steps-grid::before {
  display: none;
}

/* ──────────────────────────────────────────────────────────
   Readability sweep — body floor 20px, caption floor 16px
   ────────────────────────────────────────────────────────── */

/* Slide 2 — blind-period (timeline + risk grid) */
.timeline-slide .timeline-card .small-copy.mono {
  font-size: 16px;
}

.timeline-slide .timeline-labels div {
  width: 240px;
}

.timeline-slide .timeline-labels h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.timeline-slide .timeline-labels .small-copy {
  font-size: 16px;
  line-height: 1.45;
}

.timeline-slide .timeline-window::after {
  font-size: 14px;
  letter-spacing: 0.14em;
}

.timeline-slide .risk-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.timeline-slide .risk-item .support-copy {
  font-size: 18px;
  line-height: 1.5;
}

/* Slide 3 — transformation (right card kicker + stats) */
.transformation-slide .state-card .small-copy.mono {
  font-size: 18px;
  letter-spacing: 0.14em;
}

.transformation-slide .state-card .support-copy {
  font-size: 20px;
  line-height: 1.5;
}

.transformation-slide .state-band {
  font-size: 18px;
  padding: 18px 22px;
}

.transformation-slide .stat-mini {
  font-size: 18px;
  padding: 18px;
  line-height: 1.45;
}

/* Slide 4 — global-map / benchmark cards */
.map-slide .benchmark-tag {
  font-size: 16px;
  padding: 12px 18px;
}

.map-slide .benchmark-region {
  font-size: 18px;
}

/* Slide 7 — document-flow */
.flow-slide .flow-node-tag {
  font-size: 16px;
  padding: 10px 16px;
}

/* Slide 9 — preso-discrepancy mock screen */
.preso-discrep-slide .pd-titlebar .small-copy {
  font-size: 16px;
}

.preso-discrep-slide .pd-row {
  padding: 22px 24px;
  gap: 20px;
}

.preso-discrep-slide .pd-row-icon {
  font-size: 26px;
}

.preso-discrep-slide .pd-row-title {
  font-size: 20px;
  margin-bottom: 4px;
}

.preso-discrep-slide .pd-row-desc.small-copy {
  font-size: 17px;
  line-height: 1.45;
}

.preso-discrep-slide .pd-badge {
  font-size: 14px;
  padding: 8px 16px;
  letter-spacing: 0.08em;
}

.preso-discrep-slide .pd-footer.small-copy {
  font-size: 16px;
  padding: 16px;
}

/* Slide 11 — preso-government cert chips */
.preso-gov-slide .pg-cert {
  font-size: 16px;
  padding: 9px 16px;
}

.preso-gov-slide .tech-card .support-copy {
  font-size: 20px;
  line-height: 1.5;
}

.preso-gov-slide .tech-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
