﻿/* =========================================================
   elevAItor pitch â€” deck-local styles
   Sits on top of colors_and_type.css from the Synpulse DS.
   ========================================================= */

* { box-sizing: border-box; }

/* Slide root â€” every direct child of <deck-stage> gets standardised here. */
deck-stage > section {
  width: 2560px;
  height: 1440px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--fg-2);
}

/* =========================================================
   Slide 1 Â· Intro (Corporate mode)
   White + warm wash, editorial type, restrained.
   ========================================================= */

.s1 {
  background: #0a0f16;
  color: #fff;
  padding: 120px 160px 148px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  isolation: isolate;
}

/* Animated backdrop â€” rails, mesh, grid, streams, finance HUD, rings, sheen */
.s1-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.s1-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.s1-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Double-line margin rails â€” board / advisory deck */
.s1-rails {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(21, 27, 42, 0.1) 0 1px,
      transparent 1px 6px,
      rgba(21, 27, 42, 0.05) 6px 7px,
      transparent 7px 72px),
    linear-gradient(270deg,
      rgba(21, 27, 42, 0.09) 0 1px,
      transparent 1px 4px,
      rgba(21, 27, 42, 0.045) 4px 5px,
      transparent 5px 56px);
  background-repeat: no-repeat;
  background-size: 72px 100%, 56px 100%;
  background-position: 0 0, 100% 0;
  opacity: 0.9;
}

/* Perspective floor grid + horizon glow */
.s1-grid {
  position: absolute;
  left: -28%;
  right: -28%;
  bottom: -8%;
  height: 64%;
  transform-origin: 50% 100%;
  transform: perspective(980px) rotateX(74deg);
  background-image:
    linear-gradient(rgba(30, 168, 150, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 104, 44, 0.2) 1px, transparent 1px),
    radial-gradient(ellipse 80% 35% at 50% 0%, rgba(33, 120, 212, 0.12), transparent 70%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 16%, #000 52%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 16%, #000 52%, #000 100%);
  opacity: 0.88;
  animation: s1-grid-breathe 10s ease-in-out infinite;
}

@keyframes s1-grid-breathe {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 0.95; }
}

/* Horizontal scan band */
.s1-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(30, 168, 150, 0.06) 44%,
    rgba(247, 104, 44, 0.14) 50%,
    rgba(33, 120, 212, 0.05) 56%,
    transparent 62%,
    transparent 100%
  );
  background-size: 280% 100%;
  animation: s1-scan-sweep 16s ease-in-out infinite;
  mix-blend-mode: multiply;
}

@keyframes s1-scan-sweep {
  0%, 100% { background-position: 120% 0; }
  50% { background-position: -20% 0; }
}

/* Vertical data streams â€” throughput / market feed */
.s1-datastreams {
  position: absolute;
  inset: 0;
}

.s1-stream {
  position: absolute;
  top: -8%;
  width: 2px;
  height: 118%;
  border-radius: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(30, 168, 150, 0.45) 22%,
    rgba(247, 104, 44, 0.35) 48%,
    rgba(33, 120, 212, 0.3) 72%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(30, 168, 150, 0.25);
  opacity: 0;
  animation: s1-stream-fall 9s linear infinite;
}

.s1-stream--1 { left: 14%; animation-delay: 0s; }
.s1-stream--2 { left: 38%; animation-delay: 2.2s; }
.s1-stream--3 { left: 62%; animation-delay: 4.4s; }
.s1-stream--4 { left: 86%; animation-delay: 1.1s; }

@keyframes s1-stream-fall {
  0% { transform: translateY(-12%); opacity: 0; }
  12% { opacity: 0.85; }
  88% { opacity: 0.75; }
  100% { transform: translateY(12%); opacity: 0; }
}

/* Wealth / performance readout â€” sparkline + variance bars */
.s1-finance {
  position: absolute;
  left: 5%;
  right: 26%;
  bottom: 6%;
  height: 22%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  opacity: 0.48;
}

.s1-chart {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: block;
}

.s1-chart-area {
  animation: s1-area-breathe 8s ease-in-out infinite;
}

.s1-chart-line {
  stroke-dasharray: 100 820;
  animation: s1-line-scoot 14s linear infinite;
}

@keyframes s1-area-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@keyframes s1-line-scoot {
  to { stroke-dashoffset: -920; }
}

.s1-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 28%;
  padding-inline: 4px;
}

.s1-bar {
  flex: 1;
  max-width: 56px;
  height: 100%;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, rgba(33, 120, 212, 0.35), rgba(21, 27, 42, 0.22));
  transform-origin: 50% 100%;
  transform: scaleY(0.42);
  animation: s1-bar-wave 5.5s ease-in-out infinite;
}

.s1-bar:nth-child(1) { animation-delay: 0s; }
.s1-bar:nth-child(2) { animation-delay: 0.35s; }
.s1-bar:nth-child(3) { animation-delay: 0.7s; }
.s1-bar:nth-child(4) { animation-delay: 1.05s; }
.s1-bar:nth-child(5) { animation-delay: 1.4s; }
.s1-bar:nth-child(6) { animation-delay: 1.75s; }
.s1-bar:nth-child(7) { animation-delay: 2.1s; }

@keyframes s1-bar-wave {
  0%, 100% { transform: scaleY(0.38); opacity: 0.65; }
  50% { transform: scaleY(0.92); opacity: 1; }
}

/* Holographic specular sweep */
.s1-sheen {
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    118deg,
    transparent 34%,
    rgba(255, 255, 255, 0.28) 46%,
    rgba(126, 208, 197, 0.14) 49%,
    rgba(247, 104, 44, 0.12) 51%,
    rgba(128, 180, 240, 0.1) 53%,
    transparent 62%
  );
  background-size: 240% 240%;
  animation: s1-sheen-move 16s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

@keyframes s1-sheen-move {
  0%, 100% { background-position: 90% 0%; }
  50% { background-position: -10% 25%; }
}

/* Circuit / trace layer */
.s1-circuit {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -22deg,
      transparent 0,
      transparent 72px,
      rgba(247, 104, 44, 0.045) 72px,
      rgba(247, 104, 44, 0.045) 73px
    ),
    repeating-linear-gradient(
      18deg,
      transparent 0,
      transparent 140px,
      rgba(21, 27, 42, 0.025) 140px,
      rgba(21, 27, 42, 0.025) 141px
    );
  mask-image: radial-gradient(ellipse 95% 75% at 65% 35%, rgba(0, 0, 0, 0.55), transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 95% 75% at 65% 35%, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
  animation: s1-circuit-drift 48s linear infinite;
}

@keyframes s1-circuit-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, 24px); }
}

/* Advisory marginalia */
.s1-metrics {
  position: absolute;
  inset: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(21, 27, 42, 0.22);
  font-size: 10px;
}

.s1-metric--v {
  position: absolute;
  left: 58px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.s1-mesh {
  position: absolute;
  inset: -18%;
}

.s1-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.s1-blob--1 {
  width: 64%;
  height: 58%;
  top: -10%;
  right: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(251, 180, 150, 0.55) 0%, rgba(247, 104, 44, 0.35) 38%, transparent 68%);
  filter: blur(48px);
  animation: s1-blob-a 28s ease-in-out infinite;
}

.s1-blob--2 {
  width: 54%;
  height: 50%;
  bottom: 4%;
  right: 8%;
  background: radial-gradient(circle at 55% 45%, rgba(30, 168, 150, 0.28) 0%, rgba(247, 104, 44, 0.38) 45%, transparent 68%);
  filter: blur(52px);
  animation: s1-blob-b 32s ease-in-out infinite;
}

.s1-blob--3 {
  width: 48%;
  height: 46%;
  top: 14%;
  left: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(128, 180, 240, 0.22) 0%, rgba(255, 214, 194, 0.65) 42%, transparent 70%);
  filter: blur(50px);
  animation: s1-blob-c 26s ease-in-out infinite;
}

.s1-blob--4 {
  width: 42%;
  height: 40%;
  bottom: -8%;
  left: 18%;
  background: radial-gradient(circle at 40% 60%, rgba(247, 104, 44, 0.32) 0%, rgba(33, 120, 212, 0.12) 50%, transparent 72%);
  filter: blur(54px);
  animation: s1-blob-d 34s ease-in-out infinite;
}

@keyframes s1-blob-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-6%, 8%) scale(1.1); }
  66% { transform: translate(5%, -5%) scale(0.94); }
}

@keyframes s1-blob-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-7%, -6%) scale(1.08); }
  70% { transform: translate(6%, 7%) scale(0.95); }
}

@keyframes s1-blob-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 5%) scale(1.12); }
}

@keyframes s1-blob-d {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(-5%, -7%) scale(1.06); }
  68% { transform: translate(7%, 4%) scale(0.96); }
}

/* Orbital rings â€” radar halo */
.s1-rings {
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 880px;
  height: 880px;
}

.s1-rings::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(247, 104, 44, 0.38), transparent 52%),
    radial-gradient(circle at 65% 65%, rgba(30, 168, 150, 0.14), transparent 48%);
  pointer-events: none;
}

.s1-rings::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, rgba(30, 168, 150, 0.65), rgba(247, 104, 44, 0.35) 40%, transparent 100%);
  transform-origin: 0 50%;
  animation: s1-radar-sweep 5s linear infinite;
  opacity: 0.75;
}

@keyframes s1-radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.s1-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(247, 104, 44, 0.38);
  border-top-color: transparent;
  border-left-color: transparent;
  box-shadow: 0 0 40px rgba(247, 104, 44, 0.08);
  animation: s1-ring-spin 48s linear infinite;
}

.s1-ring--2 {
  inset: 68px;
  border-width: 1.5px;
  border-style: solid;
  border-color: rgba(30, 168, 150, 0.35);
  border-bottom-color: transparent;
  border-right-color: transparent;
  box-shadow: 0 0 32px rgba(30, 168, 150, 0.12);
  animation-duration: 64s;
  animation-direction: reverse;
}

.s1-ring--3 {
  inset: 140px;
  border-width: 1px;
  border-style: dotted;
  border-color: rgba(33, 120, 212, 0.28);
  border-top-color: transparent;
  border-right-color: transparent;
  animation-duration: 80s;
}

.s1-ring-dot {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 24px rgba(247, 104, 44, 0.85),
    0 0 48px rgba(30, 168, 150, 0.35);
}

.s1-ring-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(30, 168, 150, 0.5);
  animation: s1-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes s1-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 0.15; }
}

@keyframes s1-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Fine overlay grid â€” HUD texture */
.s1-bg::before {
  content: none;
}

.s1-top,
.s1-mid,
.s1-bottom {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .s1-blob,
  .s1-ring,
  .s1-grid,
  .s1-scan,
  .s1-rings::after,
  .s1-ring-dot::after,
  .s1-stream,
  .s1-bar,
  .s1-chart-area,
  .s1-chart-line,
  .s1-sheen,
  .s1-circuit {
    animation: none !important;
  }

  .s1-chart-line {
    stroke-dashoffset: 0;
    filter: none;
    animation: none !important;
  }

  .s1-bar {
    transform: scaleY(0.65);
    opacity: 0.85;
  }
}

.s1-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s1-brand { display: flex; align-items: center; gap: 22px; }
.s1-disc {
  width: 92px; height: 92px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 58px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
}
.s1-wordmark {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}
.s1-event {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.s1-mid {
  align-self: end;
  max-width: 2240px;
}
.s1-eyebrow {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 36px;
}
.s1-title {
  font-size: 168px;
  line-height: 0.96;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.s1-accent { color: #fff; white-space: nowrap; }
.s1-sub {
  font-size: 30px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  margin: 48px 0 0;
  max-width: 1500px;
  font-weight: 400;
}

.s1-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.s1-speaker { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.s1-who {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.s1-role {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.s1-cue {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.s1-cue-arrow {
  display: inline-block;
  font-size: 28px;
  animation: none;
}
@keyframes s1-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* =========================================================
   Slide 2 Â· About this elevator (Product mode)
   ========================================================= */

.s2 {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  background: var(--sp-white);
}

.s2-left {
  padding: 160px 120px 168px 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  background:
    linear-gradient(180deg, rgba(247, 104, 44, 0.04), rgba(255, 255, 255, 0) 35%);
}

.s2-eyebrow {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
}

.s2-title {
  font-size: 132px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0;
  text-wrap: pretty;
}

/* Second line: words reveal in step with the faÃ§ade height animation (see .s2-bldg height transition, 1400ms). */
.s2-title-tall {
  display: block;
}
.s2-title-tall-w,
.s2-title-tall-dot {
  display: inline-block;
  margin-right: 0.22em;
}
.s2-title-tall-dot {
  margin-right: 0;
}
.s2-title-tall-w {
  opacity: 0;
  transform: translateY(0.14em);
  transition:
    opacity 320ms ease-out,
    transform 320ms ease-out;
  transition-delay: 0ms;
}
.s2-title-tall-dot {
  opacity: 0;
  transform: translateY(0.14em);
  transition:
    opacity 320ms ease-out,
    transform 320ms ease-out;
  transition-delay: 0ms;
}

/* Same timing family as .s2-bldg height (reveal window â‰ˆ 1400ms). */
.s2:has(.s2-right.is-cruising) .s2-title-tall-w,
.s2:has(.s2-right.is-cruising) .s2-title-tall-dot {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 480ms;
  transition-timing-function: cubic-bezier(0.5, 0, 0.18, 1);
}
.s2:has(.s2-right.is-cruising) .s2-title-tall-w--1 { transition-delay: 0ms; }
.s2:has(.s2-right.is-cruising) .s2-title-tall-w--2 { transition-delay: 180ms; }
.s2:has(.s2-right.is-cruising) .s2-title-tall-w--3 { transition-delay: 360ms; }
.s2:has(.s2-right.is-cruising) .s2-title-tall-w--4 { transition-delay: 540ms; }
.s2:has(.s2-right.is-cruising) .s2-title-tall-w--5 { transition-delay: 720ms; }
.s2:has(.s2-right.is-cruising) .s2-title-tall-dot { transition-delay: 900ms; }
.s2-accent { color: var(--accent); }
.s2-strike {
  position: relative;
  white-space: nowrap;
}
.s2-strike::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 56%;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  transform: rotate(-1.5deg);
  opacity: 0.85;
}

.s2-sub {
  font-size: 30px;
  line-height: 1.45;
  color: var(--fg-3);
  margin: 0;
  max-width: 960px;
  font-weight: 400;
}

.s2-button {
  margin-top: 24px;
  align-self: flex-start;
  padding: 26px 52px;
  background: var(--gradient-hero);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(247, 104, 44, 0.30);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, opacity 240ms ease-out;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}
.s2-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(247, 104, 44, 0.40);
}
.s2-button:active:not(:disabled) { transform: translateY(0); }
.s2-button:disabled { opacity: 0.5; cursor: not-allowed; }
.s2-button:focus-visible { outline: 3px solid rgba(247, 104, 44, 0.45); outline-offset: 4px; }
.s2-btn-arrow {
  display: inline-block;
  font-size: 32px;
  transition: transform 240ms ease-out;
}
.s2-button.is-running .s2-btn-arrow { animation: s2-arrow-up 1.2s ease-in-out infinite; }
@keyframes s2-arrow-up {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-6px); opacity: 0.6; }
}

.s2-payoff {
  margin-top: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms ease-out, transform 900ms ease-out;
  max-width: 1100px;
  pointer-events: none;
}
.s2-payoff.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.s2-payoff-eyebrow {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.s2-payoff-quote {
  font-size: 38px;
  color: var(--fg-1);
  font-weight: 500;
  line-height: 1.25;
  font-style: italic;
  letter-spacing: -0.005em;
}

/* â”€â”€ Right panel â€” the gradient block + building stage â”€â”€â”€ */

.s2-right {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  background-image:
    radial-gradient(60% 80% at 80% 0%, rgba(255,255,255,0.10), transparent 70%),
    var(--gradient-hero);
}

/* HUD (top-right floor counter) â€” always above all scrolling layers */
.s2-hud {
  position: absolute;
  top: 64px;
  right: 60px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 14px 28px 14px 24px;
  color: white;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 14px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.s2-hud-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 14px rgba(74, 222, 128, 0.9);
  animation: s2-hud-pulse 1.8s ease-in-out infinite;
}
@keyframes s2-hud-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* Lobby caption â€” fades out during cruise */
.s2-lobby-label {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}
.s2-right.is-cruising .s2-lobby-label {
  opacity: 0;
  transform: translateY(50px);
}

/* Stage â€” clipping container for the elevator scene */
.s2-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* =========================================================
   Cruise environment: scrolling floor slabs (same width as faÃ§ade).
   Hidden at idle, fades in + animations play during cruise.
   ========================================================= */

.s2-env {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1100ms ease-out;
  pointer-events: none;
  z-index: 1;
}
.s2-right.is-cruising .s2-env { opacity: 1; }

/* Floor slabs â€” each one is a thick band that travels topâ†’bottom of the panel,
   suggesting a floor passing the elevator on its way up. Six staggered slabs
   loop continuously over 2.4s with -0.4s offsets so one passes every 0.4s. */
.s2-slab {
  position: absolute;
  left: 50%;
  width: 300px;
  height: 64px;
  border-top: 2px solid rgba(255, 255, 255, 0.36);
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
  background:
    /* faint window strip down the middle */
    linear-gradient(180deg, transparent 0 22px, rgba(255, 220, 180, 0.12) 22px 42px, transparent 42px 100%),
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.12) 35%, rgba(0,0,0,0.12) 65%, rgba(0,0,0,0.28) 100%);
  transform: translate(-50%, -160px);
  animation: s2-slab-fly 2.4s linear infinite;
  animation-play-state: paused;
}
.s2-right.is-cruising .s2-slab { animation-play-state: running; }

.s2-slab::after {
  /* a small label that hints at "Floor passing" */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      to right,
      transparent 0 14%,
      rgba(255, 220, 180, 0.10) 14% 26%,
      transparent 26% 32%,
      rgba(255, 220, 180, 0.10) 32% 44%,
      transparent 44% 56%,
      rgba(255, 220, 180, 0.10) 56% 68%,
      transparent 68% 74%,
      rgba(255, 220, 180, 0.10) 74% 86%,
      transparent 86% 100%
    );
  -webkit-mask-image: linear-gradient(180deg, transparent 0 22px, black 22px 42px, transparent 42px 100%);
  mask-image: linear-gradient(180deg, transparent 0 22px, black 22px 42px, transparent 42px 100%);
}

@keyframes s2-slab-fly {
  from { transform: translate(-50%, -160px); }
  to   { transform: translate(-50%, 1560px); }
}

.s2-slab--1 { animation-delay:  0.0s; }
.s2-slab--2 { animation-delay: -0.4s; }
.s2-slab--3 { animation-delay: -0.8s; }
.s2-slab--4 { animation-delay: -1.2s; }
.s2-slab--5 { animation-delay: -1.6s; }
.s2-slab--6 { animation-delay: -2.0s; }

/* =========================================================
   Clouds â€” drift down through the cruise, ahead of structure.
   Slower than the building floors â†’ parallax depth.
   ========================================================= */

.s2-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.s2-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  filter: blur(0.4px);
  box-shadow:
    -22px 8px 0 -4px rgba(255,255,255,0.78),
    24px 6px 0 -2px rgba(255,255,255,0.86),
    44px 14px 0 -8px rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(-180px);
  transition: opacity 900ms ease-out;
  animation: s2-cloud-fly linear infinite;
  animation-play-state: paused;
}
.s2-right.is-cruising .s2-cloud {
  opacity: 1;
  animation-play-state: running;
}

@keyframes s2-cloud-fly {
  from { transform: translateY(-180px); }
  to   { transform: translateY(1620px); }
}

.s2-cloud--a { left:  8%; width:  90px; height: 26px; animation-duration: 17s; animation-delay:  0.0s; }
.s2-cloud--b { left: 78%; width:  70px; height: 20px; animation-duration: 23s; animation-delay: -9.0s; }
.s2-cloud--c { left: 28%; width: 120px; height: 32px; animation-duration: 19s; animation-delay: -4.0s; }
.s2-cloud--d { left: 70%; width:  60px; height: 18px; animation-duration: 14s; animation-delay: -11s;  }
.s2-cloud--e { left:  4%; width:  80px; height: 22px; animation-duration: 21s; animation-delay: -16s;  }
.s2-cloud--f { left: 52%; width: 100px; height: 28px; animation-duration: 26s; animation-delay: -22s;  }

/* =========================================================
   Building faÃ§ade (idle â†’ cruise).
   Width stays fixed; on cruise the height grows upward past the stage top.
   ========================================================= */

.s2-bldg {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 300px;
  height: 340px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.32) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  z-index: 2;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.10);
  transition:
    height 1400ms cubic-bezier(0.5, 0, 0.18, 1),
    opacity 900ms ease-out,
    transform 900ms cubic-bezier(0.6, 0, 0.2, 1);
}
.s2-bldg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to top,
    transparent 0 55px,
    rgba(255, 255, 255, 0.22) 55px 56px
  );
  pointer-events: none;
}
.s2-bldg::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(
      to right,
      transparent 0 18%,
      rgba(255, 220, 180, 0.16) 18% 30%,
      transparent 30% 36%,
      rgba(255, 220, 180, 0.16) 36% 48%,
      transparent 48% 54%,
      rgba(255, 220, 180, 0.16) 54% 66%,
      transparent 66% 72%,
      rgba(255, 220, 180, 0.16) 72% 84%,
      transparent 84% 100%
    );
  -webkit-mask-image: repeating-linear-gradient(
    to top,
    rgba(0,0,0,0.9) 8px,
    rgba(0,0,0,0.9) 48px,
    transparent 48px,
    transparent 56px
  );
  mask-image: repeating-linear-gradient(
    to top,
    rgba(0,0,0,0.9) 8px,
    rgba(0,0,0,0.9) 48px,
    transparent 48px,
    transparent 56px
  );
  pointer-events: none;
}
.s2-right.is-cruising .s2-bldg {
  /* Taller than the stage so the roof line disappears above the frame */
  height: 3400px;
  opacity: 1;
  transform: translateX(-50%);
}

.s2-antenna {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.3));
  border-radius: 2px;
}
.s2-antenna::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 14px rgba(255,255,255,0.7);
}

.s2-bldg-glow {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 6px;
  background: rgba(255, 240, 220, 0.95);
  border-radius: 3px;
  box-shadow: 0 0 30px rgba(255, 220, 180, 0.9);
}

/* =========================================================
   Elevator car â€” rises via translateY. Anchored bottom of stage.
   During cruise it stays at the cruise translation (set by JS) while
   the env layers scroll behind it.
   ========================================================= */

.s2-car {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 168px;
  height: 108px;
  background: linear-gradient(180deg, #ffffff 0%, #fff4ec 100%);
  border-radius: 10px;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 0 2px rgba(255, 255, 255, 0.7),
    inset 0 -3px 0 rgba(247, 104, 44, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, 0px);
  transition: transform 1800ms cubic-bezier(0.34, 1.18, 0.6, 1);
  z-index: 5;
  padding: 10px;
}
.s2-car-window {
  flex: 1;
  height: 100%;
  background: linear-gradient(180deg, #fff7f2, #ffe9d8);
  border-radius: 6px;
  border: 1px solid rgba(247, 104, 44, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.s2-car-s {
  width: 44px; height: 44px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 26px;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.s2-car-door {
  position: absolute;
  top: 10px; bottom: 14px;
  left: 50%;
  width: 1px;
  background: rgba(247, 104, 44, 0.35);
  transform: translateX(-0.5px);
  pointer-events: none;
}
.s2-car-base {
  position: absolute;
  left: 14px; right: 14px;
  bottom: -6px;
  height: 6px;
  background: rgba(0,0,0,0.18);
  border-radius: 4px;
  filter: blur(4px);
}

/* Soft micro-wobble during cruise â€” sells the "moving" feel */
.s2-right.is-cruising .s2-car .s2-car-window {
  animation: s2-car-rattle 0.5s linear infinite;
}
@keyframes s2-car-rattle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(0.6px); }
}

/* =========================================================
   Ground / lobby line â€” fades out during cruise
   ========================================================= */

.s2-ground {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0.85) 80%, transparent);
  z-index: 3;
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}
.s2-ground-line {
  position: absolute;
  left: 0; right: 0;
  bottom: 5px;
  height: 120px;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), transparent);
  z-index: 3;
  pointer-events: none;
  transition: opacity 800ms ease-out;
}
.s2-right.is-cruising .s2-ground { opacity: 0; transform: translateY(40px); }
.s2-right.is-cruising .s2-ground-line { opacity: 0; }

/* When the ride has "arrived" â€” freeze every animation in place */
.s2-right.is-arrived .s2-slab,
.s2-right.is-arrived .s2-cloud,
.s2-right.is-arrived .s2-car-window {
  animation-play-state: paused;
}

/* =========================================================
   Slide 3 · Agenda (Product mode, elevator floors)
   ========================================================= */

.sag {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  background: var(--sp-white);
}

.sag-left {
  padding: 160px 100px 168px 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background:
    linear-gradient(180deg, rgba(247, 104, 44, 0.04), rgba(255, 255, 255, 0) 35%);
}

.sag-eyebrow {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.sag-title {
  font-size: 88px;
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0;
  text-wrap: pretty;
  max-width: 900px;
}

.sag-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1040px;
}

.sag-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 28px 22px 88px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 27, 42, 0.08);
  box-shadow: 0 10px 28px rgba(21, 27, 42, 0.06);
}

.sag-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 26px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 3px solid var(--accent);
  box-shadow: inset 0 0 0 3px rgba(247, 104, 44, 0.08);
}

.sag-item::after {
  content: "✓";
  position: absolute;
  left: 37px;
  top: 20px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.sag-item-label {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}

.sag-item-text {
  margin: 0;
  font-size: 29px;
  line-height: 1.36;
  color: var(--fg-3);
}

/* Right panel — static elevator building (same style as slide 2) */

.sag-right {
  background-image:
    radial-gradient(60% 80% at 80% 0%, rgba(255,255,255,0.10), transparent 70%),
    var(--gradient-hero);
}

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

.sag .s2-lobby-label {
  opacity: 1;
}

.sag-checkpoint .sag-eyebrow {
  color: var(--sp-teal-600);
}

.sag-checkpoint .sag-title {
  max-width: 980px;
}

.sag-checkpoint .sag-item {
  transition: opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.sag-checkpoint .sag-item::after {
  content: "";
}

.sag-checkpoint .sag-item--done {
  border-color: rgba(30, 168, 150, 0.24);
  background: linear-gradient(180deg, rgba(237, 249, 247, 0.9), rgba(255, 255, 255, 0.94));
}

.sag-checkpoint .sag-item--done::before {
  border-color: var(--sp-teal-600);
  box-shadow: inset 0 0 0 3px rgba(30, 168, 150, 0.1);
}

.sag-checkpoint .sag-item--done::after {
  content: "✓";
  color: var(--sp-teal-600);
}

.sag-checkpoint .sag-item--active {
  transform: translateX(18px);
  border-color: rgba(247, 104, 44, 0.42);
  background:
    linear-gradient(135deg, rgba(247, 104, 44, 0.14), rgba(255, 255, 255, 0.96) 44%),
    #fff;
  box-shadow: 0 20px 54px rgba(247, 104, 44, 0.18);
}

.sag-checkpoint .sag-item--active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 8px rgba(247, 104, 44, 0.12);
}

.sag-checkpoint .sag-item--active::after {
  content: "";
  left: 39px;
  top: 37px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

.sag-checkpoint .sag-item--active .sag-item-label {
  color: var(--accent-strong);
}

.sag-checkpoint .sag-item--next {
  opacity: 0.48;
}

.sag-checkpoint .s2-bldg {
  bottom: 0;
  height: 100%;
  border-radius: 0;
}

.sag-checkpoint .sag-checkpoint-car {
  transform: translate(-50%, 0);
}

.sag-checkpoint[data-deck-active] .sag-checkpoint-car {
  animation: sag-elevator-rise 1500ms 160ms cubic-bezier(0.34, 1.12, 0.48, 1) both;
}

.sag-checkpoint[data-deck-active] .sag-item--done {
  animation: sag-why-complete 620ms 1020ms ease-out both;
}

.sag-checkpoint[data-deck-active] .sag-item--done::after {
  animation: sag-check-pop 520ms 1180ms cubic-bezier(0.34, 1.5, 0.5, 1) both;
}

.sag-checkpoint[data-deck-active] .sag-item--active {
  animation: sag-what-focus 760ms 1500ms cubic-bezier(0.2, 0.85, 0.24, 1) both;
}

.sag-checkpoint[data-deck-active] .sag-item--active::before,
.sag-checkpoint[data-deck-active] .sag-item--active::after {
  animation: sag-what-marker 520ms 1640ms ease-out both;
}

@keyframes sag-elevator-rise {
  0% { transform: translate(-50%, 0); }
  100% { transform: translate(-50%, -400px); }
}

@keyframes sag-why-complete {
  0% {
    border-color: rgba(21, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(21, 27, 42, 0.06);
  }
  100% {
    border-color: rgba(30, 168, 150, 0.24);
    background: linear-gradient(180deg, rgba(237, 249, 247, 0.9), rgba(255, 255, 255, 0.94));
    box-shadow: 0 10px 28px rgba(21, 27, 42, 0.06);
  }
}

@keyframes sag-check-pop {
  0% { opacity: 0; transform: scale(0.3); }
  60% { opacity: 1; transform: scale(1.18); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes sag-what-focus {
  0% {
    transform: translateX(0) scale(0.985);
    border-color: rgba(21, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(21, 27, 42, 0.06);
  }
  100% {
    transform: translateX(18px) scale(1);
    border-color: rgba(247, 104, 44, 0.42);
    background:
      linear-gradient(135deg, rgba(247, 104, 44, 0.14), rgba(255, 255, 255, 0.96) 44%),
      #fff;
    box-shadow: 0 20px 54px rgba(247, 104, 44, 0.18);
  }
}

@keyframes sag-what-marker {
  0% { opacity: 0; transform: scale(0.55); }
  100% { opacity: 1; transform: scale(1); }
}

/* Slide 10 · second checkpoint — What done, How & Who up next */
.sag-checkpoint--how .sag-checkpoint-car {
  transform: translate(-50%, -400px);
}

.sag-checkpoint--how[data-deck-active] .sag-checkpoint-car {
  animation: sag-elevator-rise-how 1500ms 160ms cubic-bezier(0.34, 1.12, 0.48, 1) both;
}

.sag-checkpoint--how[data-deck-active] .sag-item--done:first-child,
.sag-checkpoint--how[data-deck-active] .sag-item--done:first-child::after {
  animation: none;
}

.sag-checkpoint--how[data-deck-active] .sag-item--done:nth-child(2) {
  animation: sag-why-complete 620ms 1020ms ease-out both;
}

.sag-checkpoint--how[data-deck-active] .sag-item--done:nth-child(2)::after {
  animation: sag-check-pop 520ms 1180ms cubic-bezier(0.34, 1.5, 0.5, 1) both;
}

.sag-checkpoint--how[data-deck-active] .sag-item--active {
  animation: sag-what-focus 760ms 1500ms cubic-bezier(0.2, 0.85, 0.24, 1) both;
}

.sag-checkpoint--how[data-deck-active] .sag-item--active::before,
.sag-checkpoint--how[data-deck-active] .sag-item--active::after {
  animation: sag-what-marker 520ms 1640ms ease-out both;
}

@keyframes sag-elevator-rise-how {
  0% { transform: translate(-50%, -400px); }
  100% { transform: translate(-50%, -800px); }
}

/* Slide 18 · finale — How & Who checked, elevator to roof, doors open */
.sag-checkpoint--finale .sag-checkpoint-car {
  transform: translate(-50%, -800px);
}

.sag-checkpoint--finale[data-deck-active] .sag-checkpoint-car {
  animation: sag-elevator-rise-finale 1500ms 160ms cubic-bezier(0.34, 1.12, 0.48, 1) both;
}

.sag-checkpoint--finale[data-deck-active] .sag-item--done,
.sag-checkpoint--finale[data-deck-active] .sag-item--done::after {
  animation: none;
}

.sag-checkpoint--finale[data-deck-active] .sag-item--active {
  animation: sag-finale-how-done 620ms 1020ms ease-out both;
}

.sag-checkpoint--finale[data-deck-active] .sag-item--active::before {
  animation: sag-finale-how-marker-done 520ms 1180ms ease-out both;
}

.sag-checkpoint--finale[data-deck-active] .sag-item--active .sag-item-label {
  animation: sag-finale-how-label 620ms 1020ms ease-out both;
}

.sag-checkpoint--finale[data-deck-active] .sag-item--active::after {
  content: "✓";
  left: 37px;
  top: 20px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--sp-teal-600);
  opacity: 0;
  animation: sag-check-pop 520ms 1180ms cubic-bezier(0.34, 1.5, 0.5, 1) both;
}

.sag-checkpoint--finale .s2-lobby-label {
  bottom: auto;
  top: 72px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  text-align: center;
  letter-spacing: 0.14em;
}

.sag-checkpoint--finale .s2-car-window {
  position: relative;
  overflow: hidden;
}

.sag-checkpoint--finale .s2-car-interior {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #2f384c 0%, #151b2a 100%);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.sag-checkpoint--finale .s2-car-door-leaf {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(180deg, #ffffff 0%, #fff4ec 100%);
  box-shadow: inset 0 0 0 1px rgba(247, 104, 44, 0.12);
  z-index: 2;
  pointer-events: none;
}

.sag-checkpoint--finale .s2-car-door-leaf--left {
  left: 0;
  border-right: 1px solid rgba(247, 104, 44, 0.22);
  transform: translateX(0);
}

.sag-checkpoint--finale .s2-car-door-leaf--right {
  right: 0;
  border-left: 1px solid rgba(247, 104, 44, 0.22);
  transform: translateX(0);
}

.sag-checkpoint--finale .s2-car-s {
  position: relative;
  z-index: 3;
}

.sag-checkpoint--finale[data-deck-active] .s2-car-door-leaf--left {
  animation: sag-door-open-left 720ms 1720ms cubic-bezier(0.34, 1.02, 0.42, 1) both;
}

.sag-checkpoint--finale[data-deck-active] .s2-car-door-leaf--right {
  animation: sag-door-open-right 720ms 1720ms cubic-bezier(0.34, 1.02, 0.42, 1) both;
}

.sag-checkpoint--finale[data-deck-active] .s2-car-door {
  animation: sag-door-seam-fade 360ms 1720ms ease-out both;
}

@keyframes sag-elevator-rise-finale {
  0% { transform: translate(-50%, -800px); }
  100% { transform: translate(-50%, -1180px); }
}

@keyframes sag-finale-how-done {
  0% {
    transform: translateX(18px);
    border-color: rgba(247, 104, 44, 0.42);
    background:
      linear-gradient(135deg, rgba(247, 104, 44, 0.14), rgba(255, 255, 255, 0.96) 44%),
      #fff;
    box-shadow: 0 20px 54px rgba(247, 104, 44, 0.18);
  }
  100% {
    transform: translateX(0);
    border-color: rgba(30, 168, 150, 0.24);
    background: linear-gradient(180deg, rgba(237, 249, 247, 0.9), rgba(255, 255, 255, 0.94));
    box-shadow: 0 10px 28px rgba(21, 27, 42, 0.06);
  }
}

@keyframes sag-finale-how-marker-done {
  0% {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 8px rgba(247, 104, 44, 0.12);
  }
  100% {
    background: transparent;
    border-color: var(--sp-teal-600);
    box-shadow: inset 0 0 0 3px rgba(30, 168, 150, 0.1);
  }
}

@keyframes sag-finale-how-label {
  0% { color: var(--accent-strong); }
  100% { color: var(--fg-1); }
}

@keyframes sag-door-open-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% + 6px)); }
}

@keyframes sag-door-open-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100% - 6px)); }
}

@keyframes sag-door-seam-fade {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.sag-how-right {
  position: relative;
  display: grid;
  place-items: center;
  padding: 112px 72px;
  background:
    radial-gradient(circle at 22% 18%, rgba(247, 104, 44, 0.28), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(30, 168, 150, 0.18), transparent 38%),
    linear-gradient(150deg, #090d16 0%, #151b2a 46%, #202b3f 100%);
  overflow: hidden;
}

.sag-how-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 74%);
  opacity: 0.72;
  pointer-events: none;
}

.sag-how-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
  color: #fff;
}

.sag-how-kicker {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sp-on-accent-muted);
}

.sag-how-title {
  margin: 0 auto 48px;
  max-width: 640px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.sag-how-orbit {
  position: relative;
  width: min(640px, 86vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.sag-how-orbit::before {
  content: "";
  position: absolute;
  inset: -34px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(247, 104, 44, 0.16),
    0 28px 80px rgba(0, 0, 0, 0.28);
}

.sag-how-flow {
  position: absolute;
  z-index: 4;
  padding: 7px 13px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 13, 22, 0.58);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.sag-how-flow--insights {
  left: 9%;
  top: 14%;
  transform: rotate(-37deg);
}

.sag-how-flow--innovation {
  right: 5%;
  top: 14%;
  transform: rotate(37deg);
}

.sag-how-flow--enable {
  right: 0;
  bottom: 13%;
  transform: rotate(-34deg);
}

.sag-how-flow--implement {
  left: 6%;
  bottom: 13%;
  transform: rotate(34deg);
}

.sag-how-arrow {
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.84);
  clip-path: polygon(0 18%, 100% 50%, 0 82%);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.sag-how-arrow--top {
  top: -48px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
}

.sag-how-arrow--right {
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
}

.sag-how-arrow--bottom {
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.sag-how-arrow--left {
  top: 50%;
  left: -48px;
  transform: translateY(-50%) rotate(180deg);
}

.sag-how-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.92),
    0 24px 72px rgba(0, 0, 0, 0.28);
}

.sag-how-quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
}

.sag-how-quadrant--rd {
  top: 0;
  left: 0;
  border-radius: 100% 0 0 0;
  background: linear-gradient(145deg, #f7682c 0%, #d95216 100%);
  color: #fff;
}

.sag-how-quadrant--business {
  top: 0;
  right: 0;
  border-radius: 0 100% 0 0;
  background: linear-gradient(145deg, #ffd6c2 0%, #fbb496 100%);
  color: #5c2208;
}

.sag-how-quadrant--delivery {
  bottom: 0;
  left: 0;
  border-radius: 0 0 0 100%;
  background: linear-gradient(145deg, #edf4ff 0%, #dde3ec 100%);
  color: #2f3c4d;
}

.sag-how-quadrant--marketing {
  right: 0;
  bottom: 0;
  border-radius: 0 0 100% 0;
  background: linear-gradient(145deg, #edf9f7 0%, #7ed0c5 100%);
  color: #0f4d46;
}

.sag-how-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(21, 27, 42, 0.14);
}

.sag-how-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sag-how-step {
  display: block;
  max-width: 210px;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.018em;
  text-align: center;
}

.sag-how-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  padding: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--fg-2);
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 42px rgba(21, 27, 42, 0.15);
  transform: translate(-50%, -50%);
}

.sag-how-hub span,
.sag-how-hub strong {
  display: block;
  font-size: 22px;
  line-height: 1.16;
}

.sag-how-hub span {
  font-weight: 600;
}

.sag-how-hub strong {
  font-weight: 800;
  color: var(--accent);
}

.sag-how-caption {
  margin: 52px 0 0;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.sag-checkpoint--how[data-deck-active] .sag-how-panel {
  animation: sag-how-panel-in 780ms 220ms ease-out both;
}

.sag-checkpoint--how[data-deck-active] .sag-how-quadrant,
.sag-checkpoint--how[data-deck-active] .sag-how-hub,
.sag-checkpoint--how[data-deck-active] .sag-how-flow,
.sag-checkpoint--how[data-deck-active] .sag-how-arrow {
  animation: sag-how-diagram-in 760ms 620ms cubic-bezier(0.2, 0.85, 0.24, 1) both;
}

@keyframes sag-how-panel-in {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes sag-how-diagram-in {
  0% { opacity: 0; filter: saturate(0.8); }
  100% { opacity: 1; filter: saturate(1); }
}

.sexec-wheel--html {
  display: grid;
  place-items: center;
  filter: none;
}

.sexec-wheel--html .sag-how-orbit {
  width: min(760px, 100%);
}

.sexec-wheel--html .sag-how-orbit::before {
  border-color: rgba(61, 74, 92, 0.2);
  box-shadow:
    0 0 0 1px rgba(247, 104, 44, 0.12),
    0 26px 72px rgba(21, 27, 42, 0.12);
}

.sexec-wheel--html .sag-how-flow {
  border-color: rgba(21, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #3d4a5c;
  box-shadow: 0 12px 28px rgba(21, 27, 42, 0.08);
}

.sexec-wheel--html .sag-how-arrow {
  background: #3d4a5c;
  filter: drop-shadow(0 6px 12px rgba(21, 27, 42, 0.18));
}

.sexec-wheel--html .sag-how-arrow--top {
  transform: translateX(-50%);
}

.sexec-wheel--html .sag-how-arrow--right {
  transform: translateY(-50%) rotate(90deg);
}

.sexec-wheel--html .sag-how-arrow--bottom {
  transform: translateX(-50%) rotate(180deg);
}

.sexec-wheel--html .sag-how-arrow--left {
  transform: translateY(-50%) rotate(-90deg);
}

.sexec-wheel--html .sag-how-wheel {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.95),
    0 26px 72px rgba(21, 27, 42, 0.13);
}

.sexec-wheel--html .sag-how-quadrant--rd {
  background: linear-gradient(145deg, var(--sp-orange-100) 0%, var(--sp-orange-300) 100%);
  color: #7a3a12;
}

.sexec-wheel--html .sag-how-quadrant--business {
  background: linear-gradient(145deg, var(--sp-orange-300) 0%, var(--sp-orange-500) 100%);
  color: #6c2b08;
}

.sexec-wheel--html .sag-how-quadrant--marketing {
  background: linear-gradient(145deg, var(--sp-orange-500) 0%, var(--sp-orange-700) 100%);
  color: #fff;
}

.sexec-wheel--html .sag-how-quadrant--delivery {
  background: linear-gradient(145deg, var(--sp-orange-600) 0%, var(--sp-orange-900) 100%);
  color: #fff;
}

.sexec-wheel--html .sag-how-icon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 242, 0.9));
  color: var(--sp-orange-700);
  border: 1px solid rgba(247, 104, 44, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 24px rgba(192, 79, 22, 0.16);
}

.sexec-wheel--html .sag-how-quadrant--marketing .sag-how-icon,
.sexec-wheel--html .sag-how-quadrant--delivery .sag-how-icon {
  color: var(--sp-orange-800);
}

/* =========================================================
   Slide 11 · PBWM AI Execution Model
   ========================================================= */

.sexec {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 104, 44, 0.07), transparent 40%),
    radial-gradient(circle at 82% 88%, rgba(30, 168, 150, 0.06), transparent 38%),
    linear-gradient(180deg, #fafbfc 0%, var(--sp-white) 100%);
  overflow: hidden;
}

.sexec-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(90deg, rgba(21, 27, 42, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 27, 42, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

.sexec-head {
  position: absolute;
  left: 100px;
  right: 120px;
  top: 28px;
  z-index: 4;
  pointer-events: none;
}

.sexec-eyebrow {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.sexec-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
}

.sexec-lede {
  margin: 6px 0 0;
  max-width: 1480px;
  font-size: 24px;
  line-height: 1.32;
  color: var(--fg-3);
}

.sexec-board {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 196px;
  bottom: 54px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(840px, 900px) minmax(320px, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "c1 wheel c2"
    "c4 wheel c3";
  gap: 22px 34px;
  align-items: center;
  justify-content: stretch;
  max-width: none;
  margin: 0 auto;
}

.sexec-card--1 { grid-area: c1; align-self: center; z-index: 2; }
.sexec-card--2 { grid-area: c2; align-self: center; z-index: 2; }
.sexec-card--3 { grid-area: c3; align-self: center; z-index: 2; }
.sexec-card--4 { grid-area: c4; align-self: center; z-index: 2; }

.sexec-wheel {
  grid-area: wheel;
  grid-row: 1 / -1;
  position: relative;
  justify-self: center;
  align-self: center;
  width: min(900px, 100%);
  height: min(900px, 100%);
  max-width: 900px;
  max-height: 900px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  filter: drop-shadow(0 20px 48px rgba(21, 27, 42, 0.1));
}

.sexec-svg {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: visible;
}

.sexec-ring {
  stroke: #e8ebf0;
  stroke-width: 22;
}

.sexec-outer-band {
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.sexec-outer-band--1 { fill: rgba(242, 101, 34, 0.38); }
.sexec-outer-band--2 { fill: rgba(249, 178, 136, 0.55); }
.sexec-outer-band--3 { fill: rgba(217, 233, 240, 0.85); }
.sexec-outer-band--4 { fill: rgba(226, 227, 233, 0.9); }

.sexec-cycle-arrows path {
  fill: #3d4a5c;
  opacity: 0.75;
}

.sexec-wedge--1 { fill: url(#sexec-grad-1); }
.sexec-wedge--2 { fill: url(#sexec-grad-2); }
.sexec-wedge--3 { fill: url(#sexec-grad-3); }
.sexec-wedge--4 { fill: url(#sexec-grad-4); }

.sexec-wedge {
  stroke: #fff;
  stroke-width: 3;
  transition:
    stroke 320ms ease,
    stroke-width 320ms ease,
    filter 320ms ease;
}

.sexec-wedge-label {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.sexec-wedge-label--1 {
  fill: #fff;
}

.sexec-wedge-label--2 {
  fill: #7a3a12;
}

.sexec-wedge-label--3 {
  fill: #2a5f6e;
}

.sexec-wedge-label--4 {
  fill: #3d4f63;
}

.sexec-ring-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.sexec-ring-pill {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #3d4a5c;
  white-space: nowrap;
}

.sexec-ring-pill.sexec-reveal--1 { left: 20%; top: 22%; transform: translate(-50%, -50%); }
.sexec-ring-pill.sexec-reveal--2 { left: 80%; top: 22%; transform: translate(-50%, -50%); }
.sexec-ring-pill.sexec-reveal--3 { left: 80%; top: 78%; transform: translate(-50%, -50%); }
.sexec-ring-pill.sexec-reveal--4 { left: 20%; top: 78%; transform: translate(-50%, -50%); }

.sexec-icon-bg {
  fill: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 3px 10px rgba(21, 27, 42, 0.12));
}

.sexec-icon-dollar {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  fill: #3d4f63;
}

.sexec-hub-disc {
  filter: drop-shadow(0 4px 20px rgba(21, 27, 42, 0.08));
}

.sexec-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 200px;
  margin: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.sexec-hub-line {
  margin: 0;
  font-size: 16px;
  line-height: 1.38;
  font-weight: 600;
  color: var(--fg-2);
}

.sexec-hub-line--accent {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.sexec-card {
  position: relative;
  margin: 0;
  padding: 24px 26px 26px;
  background: #fff;
  border: 1px solid rgba(21, 27, 42, 0.07);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(21, 27, 42, 0.07);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    border-width 320ms ease;
}

.sexec-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 18px;
  background: linear-gradient(90deg, rgba(247, 104, 44, 0), rgba(247, 104, 44, 0.62));
  clip-path: polygon(0 38%, 76% 38%, 76% 0, 100% 50%, 76% 100%, 76% 62%, 0 62%);
  transform: translateY(-50%);
  pointer-events: none;
}

.sexec-card--1::after,
.sexec-card--4::after {
  right: -60px;
}

.sexec-card--2::after,
.sexec-card--3::after {
  left: -60px;
  transform: translateY(-50%) rotate(180deg);
}

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

.sexec-card-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.sexec-card--1 .sexec-card-num { background: linear-gradient(145deg, var(--sp-orange-100), var(--sp-orange-300)); color: #7a3a12; }
.sexec-card--2 .sexec-card-num { background: linear-gradient(145deg, var(--sp-orange-300), var(--sp-orange-500)); color: #6c2b08; }
.sexec-card--3 .sexec-card-num { background: linear-gradient(145deg, var(--sp-orange-500), var(--sp-orange-700)); color: #fff; }
.sexec-card--4 .sexec-card-num { background: linear-gradient(145deg, var(--sp-orange-600), var(--sp-orange-900)); color: #fff; }

.sexec-card--1 { border-top: 3px solid var(--sp-orange-300); }
.sexec-card--2 { border-top: 3px solid var(--sp-orange-500); }
.sexec-card--3 { border-top: 3px solid var(--sp-orange-700); }
.sexec-card--4 { border-top: 3px solid var(--sp-orange-900); }

.sexec-card-titles {
  min-width: 0;
}

.sexec-card-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fg-1);
}

.sexec-card-tag {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.sexec-card--1 .sexec-card-tag { color: #d95216; }
.sexec-card--2 .sexec-card-tag { color: #c94a10; }
.sexec-card--3 .sexec-card-tag { color: #136f64; }
.sexec-card--4 .sexec-card-tag { color: #4a5d73; }

.sexec-card-desc {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
  font-style: italic;
  color: var(--fg-2);
}

/* Active-step spotlight (current reveal only) */
.sexec.sexec-reveal-1:not(.sexec-reveal-2) .sexec-card--1,
.sexec.sexec-reveal-2:not(.sexec-reveal-3) .sexec-card--2,
.sexec.sexec-reveal-3:not(.sexec-reveal-4) .sexec-card--3,
.sexec.sexec-reveal-4 .sexec-card--4 {
  border: 2px solid transparent;
  border-top-width: 3px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(21, 27, 42, 0.07),
    0 0 0 1px rgba(21, 27, 42, 0.04);
}

.sexec.sexec-reveal-1:not(.sexec-reveal-2) .sexec-card--1 {
  border-color: rgba(247, 104, 44, 0.42);
  border-top-color: var(--sp-orange-300);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 2px rgba(242, 101, 34, 0.28),
    0 12px 32px rgba(242, 101, 34, 0.14);
}

.sexec.sexec-reveal-2:not(.sexec-reveal-3) .sexec-card--2 {
  border-color: rgba(249, 178, 136, 0.65);
  border-top-color: var(--sp-orange-500);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 2px rgba(249, 178, 136, 0.35),
    0 12px 32px rgba(232, 120, 64, 0.12);
}

.sexec.sexec-reveal-3:not(.sexec-reveal-4) .sexec-card--3 {
  border-color: rgba(217, 82, 22, 0.52);
  border-top-color: var(--sp-orange-700);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 2px rgba(217, 82, 22, 0.22),
    0 12px 32px rgba(217, 82, 22, 0.13);
}

.sexec.sexec-reveal-4 .sexec-card--4 {
  border-color: rgba(192, 79, 22, 0.58);
  border-top-color: var(--sp-orange-900);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 2px rgba(192, 79, 22, 0.24),
    0 12px 32px rgba(192, 79, 22, 0.12);
}

.sexec.sexec-reveal-1:not(.sexec-reveal-2) .sexec-quad.sexec-reveal--1 .sexec-wedge--1 {
  stroke: #f26522;
  stroke-width: 4;
  filter: drop-shadow(0 0 14px rgba(242, 101, 34, 0.35));
}

.sexec.sexec-reveal-2:not(.sexec-reveal-3) .sexec-quad.sexec-reveal--2 .sexec-wedge--2 {
  stroke: #e87840;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(249, 178, 136, 0.4));
}

.sexec.sexec-reveal-3:not(.sexec-reveal-4) .sexec-quad.sexec-reveal--3 .sexec-wedge--3 {
  stroke: #6a9fb0;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(142, 196, 212, 0.45));
}

.sexec.sexec-reveal-4 .sexec-quad.sexec-reveal--4 .sexec-wedge--4 {
  stroke: #8a96a8;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(184, 190, 200, 0.5));
}

/* Stepped reveal — card + wedge per step, arrows last */
.sexec .sexec-reveal,
.sexec .sexec-reveal-arrows {
  opacity: 0;
  transition:
    opacity 400ms ease,
    transform 440ms cubic-bezier(0.2, 0.85, 0.24, 1);
}

.sexec .sexec-card.sexec-reveal {
  transform: translateY(14px);
}

.sexec .sexec-quad.sexec-reveal {
  transform: scale(0.93);
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

.sexec .sexec-wheel--html .sag-how-quadrant.sexec-reveal {
  transform: scale(0.94);
  transform-origin: center;
}

.sexec.sexec-reveal-1 .sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-reveal--1,
.sexec.sexec-reveal-3 .sexec-reveal--1,
.sexec.sexec-reveal-4 .sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-reveal--2,
.sexec.sexec-reveal-4 .sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-reveal--4,
.sexec.sexec-reveal-1 .sexec-outer-band--1,
.sexec.sexec-reveal-2 .sexec-outer-band--1,
.sexec.sexec-reveal-3 .sexec-outer-band--1,
.sexec.sexec-reveal-4 .sexec-outer-band--1,
.sexec.sexec-reveal-2 .sexec-outer-band--2,
.sexec.sexec-reveal-3 .sexec-outer-band--2,
.sexec.sexec-reveal-4 .sexec-outer-band--2,
.sexec.sexec-reveal-3 .sexec-outer-band--3,
.sexec.sexec-reveal-4 .sexec-outer-band--3,
.sexec.sexec-reveal-4 .sexec-outer-band--4 {
  opacity: 1;
}

.sexec.sexec-reveal-1 .sexec-card.sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-card.sexec-reveal--1,
.sexec.sexec-reveal-3 .sexec-card.sexec-reveal--1,
.sexec.sexec-reveal-4 .sexec-card.sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-card.sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-card.sexec-reveal--2,
.sexec.sexec-reveal-4 .sexec-card.sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-card.sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-card.sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-card.sexec-reveal--4 {
  transform: translateY(0);
}

.sexec.sexec-reveal-1 .sexec-quad.sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-quad.sexec-reveal--1,
.sexec.sexec-reveal-3 .sexec-quad.sexec-reveal--1,
.sexec.sexec-reveal-4 .sexec-quad.sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-quad.sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-quad.sexec-reveal--2,
.sexec.sexec-reveal-4 .sexec-quad.sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-quad.sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-quad.sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-quad.sexec-reveal--4 {
  transform: scale(1);
}

.sexec.sexec-reveal-1 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--1,
.sexec.sexec-reveal-3 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--1,
.sexec.sexec-reveal-4 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--1,
.sexec.sexec-reveal-2 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--2,
.sexec.sexec-reveal-4 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--2,
.sexec.sexec-reveal-3 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--3,
.sexec.sexec-reveal-4 .sexec-wheel--html .sag-how-quadrant.sexec-reveal--4 {
  transform: scale(1);
}

.sexec.sexec-reveal-4 .sexec-reveal-arrows {
  opacity: 1;
}

/* Hub “E2E transformation” label — after all step reveals finish */
.sexec .sexec-hub-e2e {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 420ms ease 560ms,
    transform 460ms cubic-bezier(0.2, 0.85, 0.24, 1) 560ms;
}

.sexec.sexec-reveal-4 .sexec-hub-e2e {
  opacity: 1;
  transform: scale(1);
}

.sexec .deck-foot {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 38px;
}

/* =========================================================
   Slide 17 · Who — PBWM AI Core Team + collaboration
   ========================================================= */

.steam {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(247, 104, 44, 0.11), transparent 38%),
    radial-gradient(circle at 92% 18%, rgba(30, 168, 150, 0.09), transparent 34%),
    linear-gradient(180deg, #f8f9fc 0%, var(--sp-white) 48%, var(--sp-orange-50) 100%);
  overflow: hidden;
}

.steam-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 27, 42, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 27, 42, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
}

.steam-head {
  position: absolute;
  left: 100px;
  right: 100px;
  top: 32px;
  z-index: 3;
  pointer-events: none;
}

.steam-eyebrow {
  margin: 0 0 4px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.steam-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
}

.steam-lede {
  margin: 6px 0 0;
  max-width: 1680px;
  font-size: 26px;
  line-height: 1.34;
  color: var(--fg-2);
  font-weight: 400;
}

.steam-ecosystem {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 200px;
  bottom: 100px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 340px) 136px minmax(0, 1fr) 136px minmax(280px, 340px);
  align-items: center;
  gap: 0;
}

.steam--core-only .steam-ecosystem {
  left: 100px;
  right: 100px;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.steam--core-only .steam-core {
  width: min(1680px, 100%);
  max-height: min(720px, 82%);
}

.steam-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
}

.steam-partner-inner {
  width: 100%;
  min-height: 320px;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 27, 42, 0.08);
  box-shadow:
    0 16px 40px rgba(21, 27, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.steam-partner--domain .steam-partner-inner {
  border-top: 4px solid var(--sp-teal-600);
}

.steam-partner--synpulse .steam-partner-inner {
  border-top: 4px solid var(--sp-orange-600);
}

.steam-partner-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}

.steam-partner-desc {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: var(--fg-3);
}

.steam-partner-logo-wrap {
  width: 100%;
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f6fa 0%, #fff 100%);
  border: 1px solid rgba(21, 27, 42, 0.06);
}

.steam-partner-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: center;
}

.steam-collab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 8px;
  min-width: 0;
  opacity: 0;
  overflow: visible;
}

.steam-collab-svg {
  display: block;
  width: 100%;
  max-width: 120px;
  height: auto;
  color: var(--sp-orange-600);
  overflow: visible;
}

.steam-collab-line,
.steam-collab-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steam-collab-line {
  stroke-dasharray: 7 9;
  opacity: 0.55;
}

.steam-collab-line--fwd {
  animation: steam-collab-flow-fwd 1.35s linear infinite;
  animation-play-state: paused;
}

.steam-collab-line--rev {
  animation: steam-collab-flow-rev 1.35s linear infinite;
  animation-play-state: paused;
}

.steam-collab-arrow {
  opacity: 0.92;
}

.steam-collab-arrow--out {
  animation: steam-collab-arrow-pulse-out 1.35s ease-in-out infinite;
  animation-play-state: paused;
}

.steam-collab-arrow--in {
  animation: steam-collab-arrow-pulse-in 1.35s ease-in-out infinite;
  animation-play-state: paused;
}

@keyframes steam-collab-flow-fwd {
  to { stroke-dashoffset: -32; }
}

@keyframes steam-collab-flow-rev {
  to { stroke-dashoffset: 32; }
}

@keyframes steam-collab-arrow-pulse-out {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes steam-collab-arrow-pulse-in {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.steam-collab-label {
  margin: 0;
  width: 100%;
  max-width: 128px;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--fg-2);
  overflow: visible;
}

.steam-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-height: min(680px, 78%);
  min-height: 0;
  padding: 16px 24px 20px;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 242, 0.88) 0%,
      rgba(255, 228, 210, 0.72) 38%,
      rgba(247, 104, 44, 0.14) 100%
    );
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(247, 104, 44, 0.38);
  box-shadow:
    0 20px 48px rgba(247, 104, 44, 0.14),
    0 8px 24px rgba(21, 27, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(247, 104, 44, 0.12);
  opacity: 0;
  transform: translateY(14px);
  overflow: hidden;
}

.steam-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.55) 0%,
    transparent 42%,
    rgba(247, 104, 44, 0.06) 100%
  );
  pointer-events: none;
}

.steam-core-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  padding-bottom: 10px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--fg-1);
  border-bottom: 1px solid rgba(247, 104, 44, 0.2);
}

.steam-gallery {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 14px;
  align-content: center;
  align-items: end;
}

.steam-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(18px);
}

.steam-card:nth-child(5) {
  grid-column: 2 / span 3;
}

.steam-card:nth-child(6) {
  grid-column: 5 / span 3;
}

.steam-card:nth-child(7) {
  grid-column: 8 / span 3;
}

.steam[data-deck-active] .steam-partner,
.steam[data-deck-active] .steam-core {
  animation: steam-panel-in 560ms cubic-bezier(0.2, 0.85, 0.24, 1) forwards;
}

.steam[data-deck-active] .steam-partner--domain { animation-delay: 30ms; }
.steam[data-deck-active] .steam-core { animation-delay: 80ms; }
.steam[data-deck-active] .steam-partner--synpulse { animation-delay: 130ms; }

.steam[data-deck-active] .steam-collab {
  animation: steam-collab-in 480ms ease forwards;
  animation-delay: 200ms;
}

@keyframes steam-panel-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes steam-collab-in {
  to { opacity: 1; }
}

.steam[data-deck-active] .steam-card {
  animation: steam-card-in 520ms cubic-bezier(0.2, 0.85, 0.24, 1) forwards;
}

.steam[data-deck-active] .steam-card:nth-child(1) { animation-delay: 40ms; }
.steam[data-deck-active] .steam-card:nth-child(2) { animation-delay: 90ms; }
.steam[data-deck-active] .steam-card:nth-child(3) { animation-delay: 140ms; }
.steam[data-deck-active] .steam-card:nth-child(4) { animation-delay: 190ms; }
.steam[data-deck-active] .steam-card:nth-child(5) { animation-delay: 260ms; }
.steam[data-deck-active] .steam-card:nth-child(6) { animation-delay: 310ms; }
.steam[data-deck-active] .steam-card:nth-child(7) { animation-delay: 360ms; }

@keyframes steam-card-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steam-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(145deg, var(--sp-orange-600), var(--sp-teal-600));
  box-shadow:
    0 18px 44px rgba(21, 27, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.steam-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(21, 27, 42, 0.06);
  pointer-events: none;
}

.steam-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  background: linear-gradient(180deg, #eef1f6, #fff);
}

.steam-name {
  margin: 0;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--fg-1);
}

.steam[data-deck-active] .steam-collab-line--fwd,
.steam[data-deck-active] .steam-collab-line--rev,
.steam[data-deck-active] .steam-collab-arrow--out,
.steam[data-deck-active] .steam-collab-arrow--in {
  animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
  .steam-collab-line--fwd,
  .steam-collab-line--rev,
  .steam-collab-arrow--out,
  .steam-collab-arrow--in {
    animation: none;
  }

  .steam-collab-line {
    opacity: 0.85;
  }
}

.steam .deck-foot {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 38px;
}

/* =========================================================
   Shared slide footer (all slides)
   ========================================================= */

.deck-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 160px 52px;
  pointer-events: none;
  font-size: 22px;
  color: var(--sp-ink-300);
}

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

.deck-foot-mark {
  display: block;
  width: auto;
  height: 36px;
  max-width: 216px;
  border-radius: 0;
}

.deck-foot-word {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sp-ink-600);
  text-transform: lowercase;
}

.deck-foot-legal {
  margin: 0;
  text-align: center;
  font-size: 20px;
  color: var(--sp-ink-300);
  white-space: nowrap;
}

.deck-foot-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--sp-ink-400);
  min-width: 1.5ch;
  text-align: right;
}

/* Slide-specific footer contrast */
.s1 .deck-foot-word { color: #fff; }
.s1 .deck-foot-legal,
.s1 .deck-foot-num { color: rgba(255, 255, 255, 0.82); }

.s1-bottom {
  padding-bottom: 8px;
}

.s2 .deck-foot,
.sag .deck-foot {
  padding-left: 160px;
  padding-right: 120px;
}

/* =========================================================
   Slide 4 · Why Synpulse (simplified)
   ========================================================= */

.s3a {
  position: relative;
  padding: 0;
  background:
    linear-gradient(165deg, rgba(237, 249, 247, 0.28) 0%, transparent 30%),
    linear-gradient(180deg, #f8f9fc 0%, var(--sp-white) 52%, var(--sp-orange-50) 100%);
  overflow: hidden;
}

.s3a-head {
  position: absolute;
  top: 36px;
  left: 100px;
  right: 100px;
  z-index: 2;
}

.s3a-eyebrow {
  margin: 0 0 6px;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.s3a-title {
  margin: 0;
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
  max-width: 1700px;
}

.s3a-lede {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.32;
  font-weight: 400;
  color: var(--fg-2);
  max-width: 1760px;
}

.s3a-map-wrap {
  position: absolute;
  left: 76px;
  right: 76px;
  top: 246px;
  bottom: 110px;
}

.s3a-map {
  width: 100%;
  height: calc(100% - 50px);
  display: block;
}

.s3a-board {
  fill: url(#s3a-board-grad);
  stroke: rgba(21, 27, 42, 0.08);
  stroke-width: 1.5;
}

.s3a-quadrant {
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
}

.s3a-quadrant--target {
  fill: url(#s3a-target-grad);
}

.s3a-quadrant--muted {
  fill: url(#s3a-muted-grad);
}

.s3a-quadrant--quiet {
  fill: url(#s3a-quiet-grad);
}

.s3a-quadrant--cool {
  fill: url(#s3a-cool-grad);
}

.s3a-grid-line {
  stroke: rgba(95, 103, 122, 0.22);
  stroke-width: 1.6;
  stroke-dasharray: 7 9;
}

.s3a-axis-line {
  stroke: #5f677a;
  stroke-width: 2.8;
  stroke-linecap: round;
}

.s3a-axis-label {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  fill: var(--fg-2);
}

.s3a-axis-low {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  fill: var(--sp-ink-300);
}

.s3a-map-tag {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: #d95b1d;
}

.s3a-quadrant-label {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  fill: rgba(21, 27, 42, 0.62);
}

.s3a-quadrant-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  fill: rgba(95, 103, 122, 0.72);
}

.s3a-card rect {
  fill: rgba(255, 255, 255, 0.94);
  stroke-width: 1.5;
}

.s3a-card--muted rect {
  stroke: rgba(147, 163, 188, 0.42);
}

.s3a-card--quiet rect {
  stroke: rgba(184, 194, 208, 0.42);
}

.s3a-card--cool rect {
  stroke: rgba(128, 180, 240, 0.38);
}

.s3a-node-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  fill: var(--fg-1);
}

.s3a-node-title--accent {
  fill: #c74b12;
}

.s3a-node-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  fill: var(--fg-2);
}

.s3a-synpulse-card rect {
  fill: rgba(255, 255, 255, 0.96);
  stroke: #f7682c;
  stroke-width: 2.4;
}

.s3a-synpulse-card circle {
  fill: var(--accent);
}

.s3a-s-mark {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 800;
  fill: #fff;
}

.s3a-s-title {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.015em;
  fill: #c74b12;
}

.s3a-s-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  fill: #7a3411;
}

.s3a-proof-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  fill: var(--fg-1);
}

.s3a-proof-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  fill: var(--fg-3);
}

.s3a-proof-num {
  font-family: var(--font-sans);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  fill: rgba(247, 104, 44, 0.48);
}

.s3a-proof-divider {
  stroke: rgba(247, 104, 44, 0.18);
  stroke-width: 1.6;
}

.s3a-proof-tile {
  fill: rgba(255, 250, 246, 0.78);
  stroke: rgba(247, 104, 44, 0.14);
  stroke-width: 1.4;
}

.s3a-factor {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 360ms ease;
}

.s3a[data-s3a-step="1"] .s3a-factor--1,
.s3a[data-s3a-step="2"] .s3a-factor--1,
.s3a[data-s3a-step="3"] .s3a-factor--1,
.s3a[data-s3a-step="4"] .s3a-factor--1,
.s3a[data-s3a-step="2"] .s3a-factor--2,
.s3a[data-s3a-step="3"] .s3a-factor--2,
.s3a[data-s3a-step="4"] .s3a-factor--2,
.s3a[data-s3a-step="3"] .s3a-factor--3,
.s3a[data-s3a-step="4"] .s3a-factor--3 {
  opacity: 1;
  transform: translateY(0);
}

.s3a[data-s3a-step="4"] .s3a-factor:not(.s3a-factor--2) {
  opacity: 0.44;
  filter: saturate(0.55);
}

.s3a[data-s3a-step="4"] .s3a-factor--2 {
  filter: drop-shadow(0 12px 16px rgba(247, 104, 44, 0.22));
}

.s3a[data-s3a-step="4"] .s3a-factor--2 .s3a-proof-tile {
  fill: rgba(255, 242, 235, 0.98);
  stroke: #f7682c;
  stroke-width: 2.8;
}

.s3a[data-s3a-step="4"] .s3a-factor--2 .s3a-proof-num {
  fill: rgba(247, 104, 44, 0.88);
}

.s3a-map-note {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--fg-2);
  font-weight: 600;
  text-align: center;
}

.s3a-points {
  position: absolute;
  left: 1188px;
  right: 86px;
  top: 264px;
  bottom: 110px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 14px;
  z-index: 2;
}

.s3a-point {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 27, 42, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(21, 27, 42, 0.06);
}

.s3a-point h3 {
  margin: 0 0 6px;
  font-size: 29px;
  line-height: 1.12;
  color: var(--fg-1);
  font-weight: 700;
}

.s3a-point p {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
  color: var(--fg-2);
  font-weight: 500;
}

.s3a .deck-foot {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 34px;
}

/* =========================================================
   Slide 3 Â· The adoption gap
   Full-slide chart + right insights rail Â· stepped reveal
   ========================================================= */

.s3 {
  position: relative;
  height: 1440px;
  padding: 0;
  background:
    linear-gradient(165deg, rgba(237, 249, 247, 0.4) 0%, transparent 30%),
    linear-gradient(180deg, #f8f9fc 0%, var(--sp-white) 50%, var(--sp-orange-50) 100%);
  overflow: hidden;
  cursor: pointer;
}

.s3.s3-steps-complete {
  cursor: default;
}

.s3-top {
  position: absolute;
  top: 40px;
  right: 48px;
  z-index: 12;
}

.s3-mark {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--sp-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-soft);
}

/* Full-slide stage: chart fills canvas, insights overlay right */
.s3-stage {
  position: absolute;
  inset: 0 0 72px 0;
  display: block;
}

.s3-overlay-head {
  position: absolute;
  top: 36px;
  left: 100px;
  right: 110px;
  z-index: 4;
  pointer-events: none;
}

.s3-eyebrow {
  margin: 0 0 6px;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.s3-title {
  margin: 0;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
}

.s3-lede {
  margin: 8px 0 0;
  font-size: 29px;
  line-height: 1.34;
  font-weight: 400;
  color: var(--fg-2);
  max-width: none;
}

.s3-lede strong {
  font-weight: 700;
  color: var(--fg-1);
}

.s3-chart-area {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 154px 540px 32px 44px;
  min-height: 0;
}

.s3-chart {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.s3-axis-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  fill: var(--sp-ink-600);
}

.s3-axis-tick {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  fill: var(--sp-ink-500);
}

.s3-axis-years text {
  font-size: 22px;
  font-weight: 600;
  fill: var(--sp-ink-600);
}

.s3-gap-label {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 800;
  fill: #fff;
}

/* Stepped line draw */
.s3-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

@keyframes s3-draw-line {
  from {
    stroke-dashoffset: 1;
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.s3.s3-reveal-avg .s3-line--avg {
  opacity: 1;
  animation: s3-draw-line 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.s3.s3-reveal-pot .s3-line--pot {
  opacity: 1;
  animation: s3-draw-line 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.s3.s3-reveal-opt .s3-line--opt {
  opacity: 1;
  animation: s3-draw-line 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Prior lines stay drawn â€” no re-animation */
.s3.s3-reveal-pot .s3-line--avg,
.s3.s3-reveal-opt .s3-line--avg,
.s3.s3-reveal-opt .s3-line--pot {
  opacity: 1;
  stroke-dashoffset: 0;
  animation: none;
}

.s3-dot--avg,
.s3-dot--pot,
.s3-dot--opt {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.s3.s3-reveal-avg .s3-dot--avg,
.s3.s3-reveal-pot .s3-dot--pot,
.s3.s3-reveal-opt .s3-dot--opt {
  opacity: 1;
}

.s3-dot--start {
  opacity: 1;
}

.s3-data-label {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.1, 0.6, 1);
  transform: translateX(10px);
}

.s3.s3-reveal-avg .s3-data-label--avg,
.s3.s3-reveal-pot .s3-data-label--pot,
.s3.s3-reveal-opt .s3-data-label--opt {
  opacity: 1;
  transform: translateX(0);
}

.s3-data-label-bg {
  stroke-width: 2;
}

.s3-data-label-bg--avg {
  fill: #ffffff;
  stroke: rgba(33, 120, 212, 0.35);
}

.s3-data-label-bg--pot {
  fill: #ffffff;
  stroke: rgba(247, 104, 44, 0.4);
}

.s3-data-label-bg--opt {
  fill: #ffffff;
  stroke: rgba(232, 160, 120, 0.45);
}

.s3-data-label-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  fill: var(--sp-ink-600);
}

.s3-data-label-pct {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  fill: var(--sp-ink-800);
}

.s3-data-label--avg .s3-data-label-pct { fill: #0d4f9e; }
.s3-data-label--pot .s3-data-label-pct { fill: #c94a10; }
.s3-data-label--opt .s3-data-label-pct { fill: #9a5a30; }

.s3-gap-callout {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.s3.s3-reveal-b .s3-gap-callout--b {
  opacity: 1;
}

.s3.s3-reveal-a .s3-gap-callout--a {
  opacity: 1;
}

@media print {
  .s3-line,
  .s3-dot--avg,
  .s3-dot--pot,
  .s3-dot--opt,
  .s3-data-label,
  .s3-gap-callout {
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
  }
  .s3-gap--a,
  .s3-gap--b {
    opacity: 1;
    transform: none;
  }
}

.s3-insights {
  position: absolute;
  top: 110px;
  right: 88px;
  bottom: 74px;
  width: 440px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.s3-gap {
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(21, 27, 42, 0.1);
  border-radius: 14px;
  padding: 14px 18px 12px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.s3-gap--b {
  flex: 1.12 1 0;
}

.s3-gap--a {
  flex: 0.84 1 0;
}

.s3.s3-reveal-b .s3-gap--b {
  opacity: 1;
  transform: translateX(0);
}

.s3.s3-reveal-a .s3-gap--a {
  opacity: 1;
  transform: translateX(0);
}

.s3-gap--a {
  border-left: 6px solid var(--sp-orange-600);
}

.s3-gap--b {
  border-left: 6px solid var(--sp-blue-600);
}

.s3-gap-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(21, 27, 42, 0.06);
  flex-shrink: 0;
}

.s3-gap-head-text {
  flex: 1;
  min-width: 0;
}

.s3-gap-badge {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.s3-gap-badge--a { background: var(--sp-orange-600); }
.s3-gap-badge--b { background: var(--sp-blue-600); }

.s3-gap-title {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.15;
}

.s3-gap-sub {
  margin: 2px 0 0;
  font-size: 19px;
  color: var(--fg-3);
  font-weight: 600;
}

.s3-gap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  overflow: visible;
}

.s3-gap-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 10px;
  background: rgba(21, 27, 42, 0.04);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.1, 0.6, 1);
}

.s3.s3-reveal-b .s3-gap--b .s3-gap-list li,
.s3.s3-reveal-a .s3-gap--a .s3-gap-list li {
  opacity: 1;
  transform: translateY(0);
}

.s3.s3-reveal-b .s3-gap--b .s3-gap-list li:nth-child(1) { transition-delay: 0.05s; }
.s3.s3-reveal-b .s3-gap--b .s3-gap-list li:nth-child(2) { transition-delay: 0.12s; }
.s3.s3-reveal-b .s3-gap--b .s3-gap-list li:nth-child(3) { transition-delay: 0.19s; }
.s3.s3-reveal-b .s3-gap--b .s3-gap-list li:nth-child(4) { transition-delay: 0.26s; }
.s3.s3-reveal-b .s3-gap--b .s3-gap-list li:nth-child(5) { transition-delay: 0.33s; }

.s3.s3-reveal-a .s3-gap--a .s3-gap-list li:nth-child(1) { transition-delay: 0.05s; }
.s3.s3-reveal-a .s3-gap--a .s3-gap-list li:nth-child(2) { transition-delay: 0.12s; }
.s3.s3-reveal-a .s3-gap--a .s3-gap-list li:nth-child(3) { transition-delay: 0.19s; }
.s3.s3-reveal-a .s3-gap--a .s3-gap-list li:nth-child(4) { transition-delay: 0.26s; }

.s3-gap--a .s3-gap-list li {
  background: rgba(247, 104, 44, 0.07);
}

.s3-gap--b .s3-gap-list {
  gap: 4px;
}

.s3-gap--b .s3-gap-list li {
  background: rgba(33, 120, 212, 0.06);
  padding: 5px 10px;
  gap: 1px;
}

.s3-gap--b .s3-gap-term {
  font-size: 19px;
}

.s3-gap-term {
  font-size: 21px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.22;
}

.s3-gap-desc {
  font-size: 19px;
  line-height: 1.3;
  color: var(--fg-2);
}

.s3-gap--b .s3-gap-desc {
  font-size: 16px;
  line-height: 1.28;
}

.s3-gap-desc--journey {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s3-gap-phase {
  display: block;
}

.s3-gap-phase-label {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: baseline;
}

.s3-gap-phase-label--today {
  color: var(--fg-3);
}

.s3-gap-phase-label--target {
  color: var(--sp-blue-700, #1a5fa8);
}

.s3-gap-arrow {
  display: block;
  margin: 1px 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: var(--sp-blue-600);
}

.s3 .deck-foot {
  padding-left: 100px;
  padding-right: 56px;
  padding-bottom: 36px;
  z-index: 10;
}

/* =========================================================
   Slide 4 Â· AI Operating Model
   Symmetric quarter-circle compounding diagram
   ========================================================= */

.s4 {
  position: relative;
  padding: 82px 120px 112px;
  background:
    radial-gradient(circle at 10% 5%, rgba(247, 104, 44, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(30, 168, 150, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f9fc 0%, var(--sp-white) 48%, var(--sp-orange-50) 100%);
  overflow: hidden;
}

.s4-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 27, 42, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 78%);
}

.s4-head {
  position: absolute;
  left: 100px;
  right: 110px;
  top: 36px;
  z-index: 2;
  pointer-events: none;
}

.s4-eyebrow {
  margin: 0 0 6px;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.s4-title {
  margin: 0;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
}

.s4-model {
  position: absolute;
  left: -40px;
  right: -480px;
  top: 240px;
  bottom: 62px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s4-radial {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.s4-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Right-side editorial aside */
.s4-aside {
  position: absolute;
  left: 1840px;
  right: 48px;
  top: 244px;
  bottom: 112px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}

.s4-lede {
  margin: 8px 0 0;
  max-width: none;
  font-size: 29px;
  line-height: 1.34;
  color: var(--fg-2);
  font-weight: 400;
}

/* Concentric quarter-circle bands (compounding) */
.s4-arc-band {
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.s4-arc-band--1 { fill: url("#s4-band-grad-1"); }
.s4-arc-band--2 { fill: url("#s4-band-grad-2"); }
.s4-arc-band--3 { fill: url("#s4-band-grad-3"); }

.s4-arc-stroke {
  fill: none;
  stroke: rgba(247, 104, 44, 0.32);
  stroke-width: 2.5;
}

.s4-arc-stroke--soft {
  stroke: rgba(247, 104, 44, 0.18);
  stroke-width: 1.5;
}

/* Two upward radial dividers split the quadrant into three equal sectors */
.s4-divider {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.85;
}

.s4-dim-sep {
  stroke: rgba(247, 104, 44, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 3 10;
}

/* Plot axes */
.s4-axis {
  fill: none;
  stroke: var(--sp-ink-700);
  stroke-width: 3;
  stroke-linecap: round;
}

.s4-axis-label,
.s4-axis-sub {
  font-family: var(--font-sans);
}

.s4-axis-label {
  font-size: 26px;
  font-weight: 700;
  fill: var(--fg-1);
}

.s4-axis-sub {
  font-size: 20px;
  font-weight: 600;
  fill: var(--fg-3);
}

/* Y-axis phase markers */
.s4-y-marker circle {
  fill: #fff;
  stroke: var(--sp-ink-300);
  stroke-width: 2;
}

.s4-y-marker text {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 800;
  fill: var(--fg-1);
}

/* X-axis stage labels */
.s4-x-label {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  fill: var(--fg-1);
}

.s4-x-sub {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  fill: var(--fg-3);
}

.s4-phase-flow {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
}

.s4-phase-guide {
  stroke: rgba(247, 104, 44, 0.72);
  stroke-width: 1.8;
  stroke-dasharray: 4 8;
  stroke-linecap: round;
}

.s4-phase-label text {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  fill: var(--fg-1);
}

.s4-phase-label .s4-phase-meta {
  font-size: 23px;
  font-weight: 600;
  fill: var(--fg-3);
}

/* Dimension header pills on outer side */
.s4-dim rect {
  fill: #fff;
  stroke: var(--accent);
  stroke-width: 2;
}

.s4-dim text {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--accent);
}

.s4-dim--arch rect {
  stroke: var(--sp-orange-500);
}

.s4-dim--arch text {
  fill: var(--sp-orange-700);
}

.s4-dim--model rect {
  stroke: var(--sp-orange-500);
}

.s4-dim--model text {
  fill: var(--sp-orange-700);
}

/* Content nodes inside each sector Ã— phase */
.s4-node text {
  font-family: var(--font-sans);
  fill: var(--fg-1);
}

.s4-h {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  fill: var(--fg-1);
}

.s4-s {
  font-size: 18px;
  font-weight: 500;
  fill: var(--fg-3);
}

/* Slide 4 stepped reveal (phase 1 -> 2 -> 3 -> arrows) */
.s4 .s4-reveal-phase,
.s4 .s4-reveal-arrows {
  opacity: 0;
  transition: opacity 320ms ease;
}

.s4.s4-reveal-1 .s4-reveal-phase--1,
.s4.s4-reveal-2 .s4-reveal-phase--1,
.s4.s4-reveal-3 .s4-reveal-phase--1,
.s4.s4-reveal-4 .s4-reveal-phase--1 {
  opacity: 1;
}

.s4.s4-reveal-2 .s4-reveal-phase--2,
.s4.s4-reveal-3 .s4-reveal-phase--2,
.s4.s4-reveal-4 .s4-reveal-phase--2 {
  opacity: 1;
}

.s4.s4-reveal-3 .s4-reveal-phase--3,
.s4.s4-reveal-4 .s4-reveal-phase--3 {
  opacity: 1;
}

.s4.s4-reveal-4 .s4-reveal-arrows {
  opacity: 1;
}

.s4 .deck-foot {
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 38px;
}

/* =========================================================
   Slide 7 · What transition
   ========================================================= */

.swhat {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(247, 104, 44, 0.22), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(30, 168, 150, 0.12), transparent 32%),
    linear-gradient(150deg, #090d16 0%, #111827 42%, #1b2333 100%);
  color: #fff;
  overflow: hidden;
}

.swhat-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 82%);
}

.swhat-copy {
  position: absolute;
  left: 140px;
  top: 150px;
  z-index: 2;
  max-width: 1180px;
}

.swhat-eyebrow {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--sp-orange-500);
}

.swhat-title {
  margin: 0;
  font-size: 104px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff;
}

.swhat-lede {
  margin: 28px 0 0;
  max-width: 1080px;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
}

.swhat-panel {
  position: absolute;
  right: 150px;
  top: 172px;
  z-index: 2;
  width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.swhat-floor {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.swhat-floor--active {
  border-color: rgba(247, 104, 44, 0.78);
  background:
    linear-gradient(135deg, rgba(247, 104, 44, 0.2), rgba(247, 104, 44, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.swhat-floor--next {
  opacity: 0.62;
}

.swhat-floor-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}

.swhat-floor--done .swhat-floor-icon {
  background: rgba(30, 168, 150, 0.22);
  color: #91e0d6;
}

.swhat-floor--active .swhat-floor-icon {
  background: var(--accent);
}

.swhat-floor-kicker {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.swhat-floor h3 {
  margin: 0;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.swhat-floor p:last-child {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.7);
}

.swhat-connector {
  width: 3px;
  height: 44px;
  margin-left: 76px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30, 168, 150, 0.85), rgba(247, 104, 44, 0.85));
}

.swhat-connector--muted {
  background: rgba(255, 255, 255, 0.18);
}

.swhat-lift {
  position: absolute;
  left: 146px;
  bottom: 180px;
  width: 990px;
  height: 250px;
  opacity: 0.95;
}

.swhat-shaft {
  position: absolute;
  left: 0;
  right: 0;
  top: 112px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.swhat-car {
  position: absolute;
  left: 560px;
  top: 54px;
  width: 260px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(17, 24, 39, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.swhat-car span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--sp-orange-500);
}

.swhat .deck-foot {
  padding-left: 140px;
  padding-right: 140px;
  padding-bottom: 44px;
  color: rgba(255, 255, 255, 0.58);
}

.swhat .deck-foot-legal,
.swhat .deck-foot-num {
  color: rgba(255, 255, 255, 0.58);
}

/* =========================================================
   Slide 8 · PBWM Offering Building Blocks
   ========================================================= */

.soffer {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(247, 104, 44, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(30, 168, 150, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f9fc 0%, var(--sp-white) 48%, var(--sp-orange-50) 100%);
  overflow: hidden;
}

.soffer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 27, 42, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 78%);
}

.soffer-bg::after {
  content: "";
  position: absolute;
  inset: 198px 120px 104px;
  border-radius: 56px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.soffer-head {
  position: absolute;
  left: 100px;
  right: 110px;
  top: 36px;
  z-index: 4;
}

.soffer-eyebrow {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.soffer-title {
  margin: 0;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
}

.soffer-lede {
  margin: 8px 0 0;
  max-width: 1680px;
  font-size: 29px;
  line-height: 1.34;
  font-weight: 400;
  color: var(--fg-2);
}

.soffer-model {
  position: absolute;
  left: 150px;
  right: 150px;
  top: 272px;
  bottom: 132px;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto auto auto auto auto auto;
  row-gap: 12px;
  column-gap: 10px;
  padding-left: 44px;
}

.soffer-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  justify-self: center;
  z-index: 3;
  pointer-events: none;
}

.soffer-connector-arrow {
  position: relative;
  width: 3px;
  height: 32px;
  border-radius: 999px;
}

.soffer-connector-arrow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid currentColor;
}

.soffer-connector--blue .soffer-connector-arrow {
  color: var(--sp-blue-600);
  background: linear-gradient(180deg, var(--sp-blue-600), rgba(33, 120, 212, 0.15));
  box-shadow: 0 0 14px rgba(33, 120, 212, 0.2);
}

.soffer-connector--orange .soffer-connector-arrow {
  color: var(--accent);
  background: linear-gradient(180deg, var(--accent), rgba(247, 104, 44, 0.15));
  box-shadow: 0 0 14px rgba(247, 104, 44, 0.22);
}

.soffer-connector--blend .soffer-connector-arrow {
  color: var(--accent);
  background: linear-gradient(180deg, var(--accent) 0%, var(--sp-blue-600) 100%);
  box-shadow: 0 0 14px rgba(247, 104, 44, 0.16), 0 0 14px rgba(33, 120, 212, 0.14);
}

.soffer-connector--blend .soffer-connector-arrow::before {
  border-bottom-color: var(--sp-blue-600);
}

.soffer-connector-label {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
}

.soffer-connector--blue .soffer-connector-label {
  color: var(--sp-blue-800);
  background: rgba(237, 244, 255, 0.55);
  border-color: rgba(128, 180, 240, 0.45);
}

.soffer-model > .soffer-connector--blue {
  margin-top: 6px;
}

.soffer-connector--orange .soffer-connector-label {
  color: var(--accent-strong);
  background: rgba(255, 242, 235, 0.55);
  border-color: rgba(251, 180, 150, 0.45);
}

.soffer-connector--bidirectional .soffer-connector-arrow--down {
  transform: rotate(180deg);
}

.soffer-connector--bidirectional .soffer-connector-arrow--down::before {
  border-bottom-color: var(--accent);
}

.soffer-connector--blend .soffer-connector-label {
  color: var(--fg-1);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.soffer-layer--client::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(33, 120, 212, 0.55), transparent);
  pointer-events: none;
  z-index: 2;
}

.soffer-model::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 72px;
  bottom: 28px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(33, 120, 212, 0.55) 0%,
    rgba(33, 120, 212, 0.85) 38%,
    rgba(247, 104, 44, 0.85) 62%,
    rgba(247, 104, 44, 0.95) 100%
  );
  box-shadow: 0 0 20px rgba(33, 120, 212, 0.12), 0 0 20px rgba(247, 104, 44, 0.16);
}

.soffer-market {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  align-self: start;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: -4px;
  min-height: 0;
  border-radius: 32px;
  transform: translateY(-3px);
  border: 2px dotted rgba(33, 120, 212, 0.42);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.soffer-offering,
.soffer-foundation,
.soffer-layer {
  position: relative;
  isolation: isolate;
  transform: translateY(-3px);
  backdrop-filter: blur(36px) saturate(1.75) brightness(1.04);
  -webkit-backdrop-filter: blur(36px) saturate(1.75) brightness(1.04);
}

.soffer-offering,
.soffer-layer--client {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-top-color: rgba(255, 255, 255, 0.82);
  border-left-color: rgba(255, 255, 255, 0.68);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(33, 120, 212, 0.08) 100%),
    rgba(237, 244, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    inset 0 -18px 36px rgba(33, 120, 212, 0.06),
    inset 0 -1px 0 rgba(33, 120, 212, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px rgba(33, 120, 212, 0.14),
    0 32px 64px rgba(15, 23, 42, 0.1);
}

.soffer-foundation,
.soffer-layer--biab {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-top-color: rgba(255, 255, 255, 0.82);
  border-left-color: rgba(255, 255, 255, 0.68);
  border-bottom-color: rgba(251, 180, 150, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(247, 104, 44, 0.1) 100%),
    rgba(255, 242, 235, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    inset 0 -18px 36px rgba(247, 104, 44, 0.07),
    inset 0 -1px 0 rgba(247, 104, 44, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px rgba(247, 104, 44, 0.16),
    0 32px 64px rgba(15, 23, 42, 0.1);
}

.soffer-offering::after,
.soffer-foundation::before,
.soffer-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.18) 22%,
    transparent 48%,
    transparent 72%,
    rgba(255, 255, 255, 0.08) 100%
  );
  z-index: 0;
}

.soffer-offering {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-content: start;
  padding: 16px 18px 14px;
  padding-right: 56px;
  border-radius: 20px;
  overflow: hidden;
}

.soffer-offering > *,
.soffer-foundation > *,
.soffer-layer > *,
.soffer-market > * {
  position: relative;
  z-index: 1;
}

.soffer-number {
  position: absolute;
  right: 22px;
  top: 16px;
  color: rgba(33, 120, 212, 0.28);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.soffer-block-title {
  margin: 0;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--fg-1);
  text-transform: none;
}


.soffer-tag {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
}

.soffer-offering--fd .soffer-tag {
  color: var(--sp-ink-500);
}

.soffer-offering .soffer-block-title {
  align-self: start;
  line-height: 1.02;
}

.soffer-offering p:last-child,
.soffer-foundation p:last-child {
  margin: 12px 0 0;
  max-width: 820px;
  font-size: 25px;
  line-height: 1.24;
  color: var(--fg-3);
  font-weight: 500;
}

.soffer-offering p:last-child {
  font-size: 20px;
  line-height: 1.26;
  margin-top: 4px;
}

.soffer-offering p:last-child {
  grid-column: 2;
}

.soffer-icon {
  grid-row: 1 / span 2;
  align-self: start;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 20px;
  color: var(--sp-blue-600);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 24px rgba(33, 120, 212, 0.12);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
}

.soffer-icon--ink {
  color: var(--sp-blue-800);
}

.soffer-svg {
  width: 48px;
  height: 48px;
  display: block;
}

.soffer-layer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: min(920px, 88%);
  max-width: 920px;
  justify-self: center;
  padding: 18px 26px;
  border-radius: 22px;
  overflow: hidden;
}

.soffer-layer-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--sp-blue-600);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 8px 18px rgba(33, 120, 212, 0.1);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
}

.soffer-layer--biab .soffer-layer-icon,
.soffer-layer-icon--light {
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 8px 18px rgba(247, 104, 44, 0.14);
}

.soffer-svg--layer {
  width: 40px;
  height: 40px;
}

.soffer-layer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.soffer-block-title--layer {
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.soffer-layer .soffer-block-title {
  position: relative;
  z-index: 1;
}

.soffer-layer--biab .soffer-block-title--layer {
  color: var(--accent-strong);
}

.soffer-layer span {
  position: relative;
  z-index: 1;
  max-width: 100%;
  font-size: 20px;
  line-height: 1.3;
  color: var(--fg-2);
  font-weight: 600;
}

.soffer-layer--client span {
  color: var(--sp-blue-800);
}

.soffer-layer--biab span {
  color: var(--accent-strong);
}

.soffer-foundation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  padding: 18px 36px 20px;
  border-radius: 26px;
  overflow: hidden;
}

.soffer-foundation::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  left: 0;
  right: 0;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent, rgba(247, 104, 44, 0.12));
  pointer-events: none;
  z-index: 0;
}

.soffer-foundation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2px;
}

.soffer-foundation .soffer-tag {
  margin-bottom: 0;
  font-size: 17px;
}

.soffer-foundation .soffer-block-title {
  margin-top: 4px;
  line-height: 1.02;
}

.soffer-foundation p:last-child {
  max-width: 1280px;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.22;
}

.soffer-cube {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-top-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(247, 104, 44, 0.18);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
}

.soffer-cube::before,
.soffer-cube::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 2px solid rgba(247, 104, 44, 0.34);
}

.soffer-cube::before {
  inset: 10px;
}

.soffer-cube::after {
  inset: 18px;
}


.soffer .deck-foot {
  padding-left: 108px;
  padding-right: 108px;
  padding-bottom: 36px;
}

/* =========================================================
   Slide 8 · PBWM AI Offering / BIAB Architecture
   ========================================================= */

.sbiab {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(247, 104, 44, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(30, 168, 150, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f9fc 0%, var(--sp-white) 48%, var(--sp-orange-50) 100%);
  overflow: hidden;
}

.sbiab-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 27, 42, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 78%);
}

.sbiab-head {
  position: absolute;
  left: 100px;
  right: 110px;
  top: 36px;
  z-index: 4;
  color: var(--fg-1);
}

.sbiab-eyebrow {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
}

.sbiab-title {
  margin: 0;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
}

.sbiab-lede {
  margin: 8px 0 0;
  max-width: 1600px;
  font-size: 29px;
  line-height: 1.34;
  font-weight: 400;
  color: var(--fg-2);
}

.sbiab-callout {
  position: absolute;
  right: 100px;
  top: 106px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(247, 104, 44, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(21, 27, 42, 0.12);
  color: var(--fg-2);
  font-size: 22px;
  font-weight: 700;
}

.sbiab-callout span:nth-child(2) {
  color: var(--sp-orange-500);
}

.sbiab-stack {
  position: absolute;
  left: 76px;
  right: 76px;
  top: 244px;
  bottom: 112px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sbiab-layer,
.sbiab-config,
.sbiab-base {
  position: relative;
  border: 1px solid rgba(21, 27, 42, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(21, 27, 42, 0.08);
}

.sbiab-layer {
  padding: 18px 22px 20px;
}

.sbiab-layer-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 14px;
}

.sbiab-layer-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--fg-1);
}

.sbiab-layer-head p {
  margin: 0;
  max-width: 1140px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--fg-3);
  text-align: right;
}

.sbiab-layer--capabilities {
  min-height: 312px;
  border-color: rgba(247, 104, 44, 0.2);
  background:
    linear-gradient(180deg, rgba(247, 104, 44, 0.12), rgba(255, 255, 255, 0.94)),
    #fff;
}

.sbiab-dim-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.sbiab-dim {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(21, 27, 42, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 252, 0.92));
}

.sbiab-dim h4 {
  margin: 0 0 2px;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 12px;
  background: var(--sp-ink-800);
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
}

.sbiab-dim:nth-child(2) h4 { background: #243047; }
.sbiab-dim:nth-child(3) h4 { background: #2f3b52; }
.sbiab-dim:nth-child(4) h4 { background: #3b465d; }
.sbiab-dim:nth-child(5) h4 { background: #475168; }
.sbiab-dim:nth-child(6) h4 { background: var(--accent-strong); }

.sbiab-dim span {
  display: flex;
  align-items: center;
  min-height: 37px;
  padding: 7px 9px;
  border-radius: 11px;
  border: 1px solid rgba(21, 27, 42, 0.11);
  background: rgba(255, 255, 255, 0.86);
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.08;
  font-weight: 700;
}

.sbiab-config {
  min-height: 54px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(247, 104, 44, 0.16), rgba(255, 255, 255, 0.94));
}

.sbiab-config strong,
.sbiab-base-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--sp-ink-800);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.sbiab-config span,
.sbiab-base-bar span {
  font-size: 20px;
  line-height: 1.15;
  color: var(--fg-3);
  font-weight: 600;
}

.sbiab-layer--fd {
  min-height: 204px;
  background:
    linear-gradient(180deg, rgba(30, 168, 150, 0.08), rgba(255, 255, 255, 0.95)),
    #fff;
}

.sbiab-fd-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.sbiab-fd-step {
  min-height: 118px;
  padding: 14px 20px 14px 16px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  background: linear-gradient(180deg, #24445c, #18263a);
  color: #fff;
}

.sbiab-fd-step:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.sbiab-fd-step h4 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.sbiab-fd-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.sbiab-layer--bank {
  min-height: 244px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(255, 255, 255, 0.96)),
    #fff;
}

.sbiab-bank-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.sbiab-bank-col {
  min-height: 160px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(21, 27, 42, 0.11);
  border-radius: 18px;
  background: rgba(248, 249, 252, 0.9);
}

.sbiab-bank-col h4 {
  margin: 0 0 10px;
  min-height: 40px;
  color: var(--fg-1);
  font-size: 19px;
  line-height: 1.08;
  font-weight: 800;
}

.sbiab-bank-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sbiab-bank-col li {
  position: relative;
  padding-left: 16px;
  color: var(--fg-3);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 600;
}

.sbiab-bank-col li + li {
  margin-top: 5px;
}

.sbiab-bank-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.sbiab-base {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.35fr minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-color: rgba(247, 104, 44, 0.2);
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(35, 46, 66, 0.94)),
    var(--sp-ink-800);
  color: #fff;
}

.sbiab-base::before,
.sbiab-base::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sp-orange-500));
}

.sbiab-base::before {
  left: 30.2%;
}

.sbiab-base::after {
  right: 30.2%;
  transform: rotate(180deg);
}

.sbiab-data {
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
}

.sbiab-data span {
  display: block;
  margin-bottom: 3px;
  color: var(--sp-orange-500);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.sbiab-data p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 600;
}

.sbiab-base-bar {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: center;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.sbiab-base-bar strong {
  background: var(--accent);
}

.sbiab-base-bar span {
  color: rgba(255, 255, 255, 0.78);
}

.sbiab .sbiab-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
  filter: blur(3px);
}

.sbiab.sbiab-reveal-1 .sbiab-reveal--bank,
.sbiab.sbiab-reveal-2 .sbiab-reveal--bank,
.sbiab.sbiab-reveal-3 .sbiab-reveal--bank,
.sbiab.sbiab-reveal-4 .sbiab-reveal--bank,
.sbiab.sbiab-reveal-5 .sbiab-reveal--bank,
.sbiab.sbiab-reveal-2 .sbiab-reveal--fd,
.sbiab.sbiab-reveal-3 .sbiab-reveal--fd,
.sbiab.sbiab-reveal-4 .sbiab-reveal--fd,
.sbiab.sbiab-reveal-5 .sbiab-reveal--fd,
.sbiab.sbiab-reveal-3 .sbiab-reveal--client,
.sbiab.sbiab-reveal-4 .sbiab-reveal--client,
.sbiab.sbiab-reveal-5 .sbiab-reveal--client,
.sbiab.sbiab-reveal-4 .sbiab-reveal--capabilities,
.sbiab.sbiab-reveal-5 .sbiab-reveal--capabilities,
.sbiab.sbiab-reveal-5 .sbiab-reveal--callout {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sbiab .deck-foot {
  padding-left: 108px;
  padding-right: 108px;
  padding-bottom: 36px;
}

/* =========================================================
   Slides 9–13 · Under the hood (in-place drill + full)
   Same grid positions as slide 8; detail expands inside each block.
   ========================================================= */

.soffer-model--drill,
.soffer-model--full {
  row-gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}

/* Drill slides 9–12: tighter header + more vertical room for stack + detail */
.soffer--drill .soffer-head {
  top: 28px;
}

.soffer--drill .soffer-title {
  font-size: 54px;
}

.soffer--drill .soffer-lede {
  font-size: 24px;
  max-width: 1280px;
}

.soffer-model--drill {
  top: 218px;
  bottom: 118px;
}

.soffer-slot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  transition: opacity 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.soffer-market.soffer-slot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.soffer-market.soffer-slot .soffer-slot-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 16px;
}

.soffer-layer.soffer-slot,
.soffer-foundation.soffer-slot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.soffer-expand {
  display: none;
  width: 100%;
}

.soffer--drill:not(.soffer--full) .soffer-slot:not(.soffer-slot--active):not(.soffer-slot--conn) {
  opacity: 0.82;
}

.soffer--drill:not(.soffer--full) .soffer-slot--conn {
  opacity: 0.58;
}

.soffer--drill .soffer-slot--active .soffer-expand,
.soffer--full .soffer-expand {
  display: block;
}

.soffer--drill .soffer-slot--active.soffer-market,
.soffer--drill .soffer-slot--active.soffer-layer--client,
.soffer--drill .soffer-slot--active.soffer-foundation,
.soffer--drill .soffer-slot--active.soffer-layer--biab {
  opacity: 1;
  transform: translateY(-3px);
}

.soffer--focus-foundation .soffer-slot--active.soffer-foundation,
.soffer--focus-foundation .soffer-slot--active.soffer-layer--biab {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 2px rgba(247, 104, 44, 0.4),
    0 16px 36px rgba(247, 104, 44, 0.2);
}

.soffer--focus-client .soffer-slot--active.soffer-layer--client {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 2px rgba(33, 120, 212, 0.38),
    0 16px 36px rgba(33, 120, 212, 0.16);
}

.soffer--focus-fd .soffer-slot--active.soffer-market,
.soffer--focus-capabilities .soffer-slot--active.soffer-market {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 0 2px rgba(33, 120, 212, 0.32),
    0 14px 32px rgba(33, 120, 212, 0.14);
}

.soffer--focus-fd .soffer-market.soffer-slot--active .soffer-offering--capabilities,
.soffer--focus-capabilities .soffer-market.soffer-slot--active .soffer-offering--fd {
  opacity: 0.78;
}

/* Compact stack labels — underlying layers stay legible at drill scale */
.soffer-model--drill .soffer-offering {
  padding: 12px 14px 10px;
  padding-right: 44px;
  grid-template-columns: 52px 1fr;
  column-gap: 12px;
  row-gap: 4px;
}

.soffer-model--drill .soffer-slot-summary .soffer-block-title {
  font-size: 26px;
  line-height: 1.06;
}

.soffer-model--drill .soffer-slot-summary .soffer-block-title--layer {
  font-size: 24px;
}

.soffer-model--drill .soffer-offering p:last-child,
.soffer-model--drill .soffer-foundation .soffer-slot-summary > p:last-child {
  font-size: 15px;
  line-height: 1.24;
  margin-top: 2px;
}

.soffer-model--drill .soffer-layer {
  padding: 12px 18px;
  gap: 14px;
  width: min(100%, 920px);
  overflow: visible;
}

.soffer-model--drill .soffer-layer span {
  font-size: 15px;
  line-height: 1.28;
}

.soffer-model--drill .soffer-foundation {
  padding: 12px 22px 14px;
  overflow: visible;
}

.soffer-model--drill .soffer-foundation .soffer-tag {
  font-size: 14px;
}

.soffer-model--drill .soffer-number {
  font-size: 32px;
  top: 10px;
  right: 14px;
}

.soffer-model--drill .soffer-icon {
  width: 52px;
  height: 52px;
  padding: 8px;
}

.soffer-model--drill .soffer-layer-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.soffer-model--drill .soffer-svg--layer {
  width: 34px;
  height: 34px;
}

.soffer-model--drill .soffer-cube {
  width: 44px;
  height: 44px;
}

.soffer-model--drill .soffer-connector-arrow {
  height: 22px;
}

.soffer-model--drill .soffer-connector-label {
  font-size: 15px;
  padding: 5px 12px;
}

.soffer-model--drill .soffer-detail-list {
  margin: 0;
  padding: 14px 18px 14px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(33, 120, 212, 0.08) 100%),
    rgba(237, 244, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 28px rgba(33, 120, 212, 0.12);
  font-size: 17px;
  line-height: 1.34;
}

.soffer-model--drill .soffer-detail-grid--5 {
  gap: 8px;
}

.soffer-model--drill .soffer-detail-grid--5 .soffer-detail-card {
  min-height: 108px;
  padding: 12px 10px 10px;
}

.soffer-model--drill .soffer-detail-card h4 {
  font-size: 15px;
}

.soffer-model--drill .soffer-detail-card ul {
  font-size: 14px;
}

.soffer-model--drill .soffer-detail-fd {
  gap: 6px;
}

.soffer-model--drill .soffer-detail-step {
  min-height: 96px;
  padding: 10px 12px;
}

.soffer-model--drill .soffer-detail-step h4 {
  font-size: 16px;
}

.soffer-model--drill .soffer-detail-step p {
  font-size: 13px;
}

.soffer-model--drill .soffer-detail-dims {
  gap: 8px;
}

.soffer-model--drill .soffer-detail-dim {
  min-height: 148px;
  padding: 8px;
}

.soffer-model--drill .soffer-detail-dim h4 {
  font-size: 14px;
  padding: 6px 8px;
}

.soffer-model--drill .soffer-detail-dim span {
  min-height: 30px;
  font-size: 12px;
  padding: 5px 7px;
}

.soffer-model--drill .soffer-detail-config {
  padding: 12px 14px;
}

.soffer-model--drill .soffer-detail-io p,
.soffer-model--drill .soffer-detail-config-bar span {
  font-size: 14px;
}

.soffer-model--drill .soffer-detail-config-bar strong {
  font-size: 14px;
  min-height: 30px;
}

/* Slide 13 · full reference — readable single-slide layout */
.soffer--full .soffer-head--compact {
  top: 24px;
}

.soffer--full .soffer-eyebrow {
  font-size: 22px;
  margin-bottom: 4px;
}

.soffer--full .soffer-title {
  font-size: 48px;
  line-height: 1.06;
}

.soffer-model--full {
  top: 148px;
  bottom: 96px;
  left: 110px;
  right: 110px;
  row-gap: 6px;
  overflow: hidden;
}

.soffer--full .soffer-slot:not(.soffer-slot--conn) {
  opacity: 1;
}

/* Market: each offering with its detail in a column */
.soffer--full .soffer-market.soffer-slot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 18px;
  row-gap: 10px;
  padding: 14px 16px 12px;
}

.soffer--full .soffer-market .soffer-slot-summary {
  display: contents;
}

.soffer--full .soffer-market .soffer-offering--capabilities {
  grid-column: 1;
  grid-row: 1;
  height: auto;
  min-height: 0;
  padding: 12px 14px 10px;
  padding-right: 48px;
}

.soffer--full .soffer-market .soffer-offering--fd {
  grid-column: 2;
  grid-row: 1;
  height: auto;
  min-height: 0;
  padding: 12px 14px 10px;
  padding-right: 48px;
}

.soffer--full .soffer-market .soffer-expand--capabilities {
  grid-column: 1;
  grid-row: 2;
}

.soffer--full .soffer-market .soffer-expand--fd {
  grid-column: 2;
  grid-row: 2;
}

.soffer--full .soffer-market .soffer-block-title {
  font-size: 22px;
}

.soffer--full .soffer-market .soffer-offering p:last-child {
  font-size: 14px;
  line-height: 1.25;
}

.soffer--full .soffer-market .soffer-number {
  font-size: 30px;
  top: 8px;
  right: 12px;
}

.soffer--full .soffer-market .soffer-icon {
  width: 52px;
  height: 52px;
  padding: 8px;
}

.soffer--full .soffer-market .soffer-detail-dims,
.soffer--full .soffer-market .soffer-detail-fd {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.soffer--full .soffer-market .soffer-detail-dim {
  min-height: 0;
  padding: 8px;
  gap: 5px;
}

.soffer--full .soffer-market .soffer-detail-dim h4 {
  font-size: 13px;
  padding: 6px 8px;
  margin: 0 0 2px;
}

.soffer--full .soffer-market .soffer-detail-dim span {
  min-height: 0;
  font-size: 11.5px;
  line-height: 1.2;
  padding: 5px 7px;
}

.soffer--full .soffer-market .soffer-detail-step {
  min-height: 0;
  padding: 10px 10px 8px;
}

.soffer--full .soffer-market .soffer-detail-step h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.soffer--full .soffer-market .soffer-detail-step p {
  font-size: 11.5px;
  line-height: 1.22;
}

/* Client layer: compact header + four readable columns */
.soffer--full .soffer-layer--client {
  gap: 8px;
  padding: 10px 14px 12px;
}

.soffer--full .soffer-layer--client .soffer-slot-summary {
  padding: 0;
  gap: 12px;
}

.soffer--full .soffer-layer--client .soffer-layer-copy span {
  display: none;
}

.soffer--full .soffer-layer--client .soffer-block-title--layer {
  font-size: 24px;
}

.soffer-model--full .soffer-detail-list--cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13.5px;
  line-height: 1.28;
  font-weight: 600;
  color: var(--fg-2);
}

.soffer-model--full .soffer-detail-list--cols li {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(33, 120, 212, 0.08) 100%),
    rgba(237, 244, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.soffer-model--full .soffer-detail-list--cols li + li {
  margin-top: 0;
}

/* Foundation: one-line summary + five readable pillars */
.soffer--full .soffer-foundation {
  gap: 8px;
  padding: 10px 14px 12px;
}

.soffer--full .soffer-foundation .soffer-slot-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.soffer--full .soffer-foundation .soffer-slot-summary > p:last-child {
  display: none;
}

.soffer--full .soffer-foundation .soffer-block-title {
  font-size: 24px;
  margin: 0;
}

.soffer--full .soffer-foundation .soffer-foundation-top {
  margin: 0;
}

.soffer--full .soffer-foundation .soffer-cube {
  width: 44px;
  height: 44px;
}

.soffer-model--full .soffer-detail-grid--5 {
  gap: 10px;
}

.soffer-model--full .soffer-detail-grid--5 .soffer-detail-card {
  min-height: 0;
  padding: 12px 11px 10px;
}

.soffer-model--full .soffer-detail-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.15;
}

.soffer-model--full .soffer-detail-card ul {
  font-size: 12.5px;
  line-height: 1.26;
}

/* BIAB config: drop duplicate layer summary */
.soffer--full .soffer-layer--biab {
  padding: 10px 14px 12px;
}

.soffer--full .soffer-layer--biab .soffer-slot-summary {
  display: none;
}

.soffer-model--full .soffer-detail-config {
  padding: 12px 16px;
  gap: 12px;
}

.soffer-model--full .soffer-detail-io-label {
  font-size: 12px;
}

.soffer-model--full .soffer-detail-io p,
.soffer-model--full .soffer-detail-config-bar span {
  font-size: 13px;
  line-height: 1.24;
}

.soffer-model--full .soffer-detail-config-bar strong {
  font-size: 13px;
  min-height: 30px;
  padding: 6px 12px;
}

/* Tighter connectors */
.soffer-model--full .soffer-connector {
  gap: 3px;
}

.soffer-model--full .soffer-connector-arrow {
  height: 14px;
}

.soffer-model--full .soffer-connector-label {
  font-size: 13px;
  padding: 4px 10px;
  max-width: 520px;
  text-align: center;
  line-height: 1.2;
}

/* Detail components (shared) */
.soffer-detail {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 4px 8px;
  overflow: auto;
}

.soffer-detail-kicker {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
}

.soffer-detail-card,
.soffer-detail-dim,
.soffer-detail-step {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(36px) saturate(1.75) brightness(1.04);
  -webkit-backdrop-filter: blur(36px) saturate(1.75) brightness(1.04);
}

.soffer-detail-card::after,
.soffer-detail-dim::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.18) 22%,
    transparent 48%,
    transparent 72%,
    rgba(255, 255, 255, 0.08) 100%
  );
  z-index: 0;
}

.soffer-detail-card--orange {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(251, 180, 150, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(247, 104, 44, 0.1) 100%),
    rgba(255, 242, 235, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(247, 104, 44, 0.14);
}

.soffer-detail-card h4,
.soffer-detail-dim h4,
.soffer-detail-step h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--fg-1);
}

.soffer-detail-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0 16px;
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 600;
}

.soffer-detail-card li + li {
  margin-top: 4px;
}

.soffer-detail-grid--5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.soffer-detail-grid--5 .soffer-detail-card {
  padding: 14px 12px 12px;
  min-height: 140px;
}

.soffer-detail-config {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.4fr minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(251, 180, 150, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35) 0%, rgba(17, 24, 39, 0.88) 100%),
    var(--sp-ink-800);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.2);
  color: #fff;
}

.soffer-detail-io-label {
  display: block;
  margin-bottom: 4px;
  color: var(--sp-orange-500);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.soffer-detail-io p {
  margin: 0;
  font-size: 15px;
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.soffer-detail-config-bar {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.soffer-detail-config-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.soffer-detail-config-bar span {
  font-size: 15px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.soffer-detail-hero {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding: 22px 28px;
}

.soffer-detail-hero .soffer-block-title--layer {
  font-size: 40px;
}

.soffer-detail-hero span {
  font-size: 22px;
}

.soffer-detail-list {
  margin: 0;
  padding: 0 0 0 24px;
  color: var(--fg-2);
  font-size: 24px;
  line-height: 1.36;
  font-weight: 600;
}

.soffer-detail-list li + li {
  margin-top: 10px;
}

.soffer-detail-fd {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  flex: 1;
  min-height: 0;
  align-content: start;
}

.soffer-detail-step {
  min-height: 118px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(33, 120, 212, 0.12) 100%),
    linear-gradient(180deg, #24445c, #18263a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 24px rgba(33, 120, 212, 0.12);
  color: #fff;
}

.soffer-detail-step h4 {
  color: #fff;
  font-size: 18px;
}

.soffer-detail-step p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.soffer-detail-dims {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.soffer-detail-dim {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(33, 120, 212, 0.08) 100%),
    rgba(237, 244, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 24px rgba(33, 120, 212, 0.12);
}

.soffer-detail-dim h4 {
  margin: 0 0 4px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--sp-ink-800);
  color: #fff;
  font-size: 15px;
}

.soffer-detail-dim:nth-child(6) h4 {
  background: var(--accent-strong);
}

.soffer-detail-dim span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.55);
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
}

/* =========================================================
   Slides 8–9 · PBWM framework (detail on 8, overview on 9)
   ========================================================= */

.soffer--framework .soffer-bg {
  display: none;
}

.soffer-head--framework {
  top: 28px;
  right: 120px;
}

.soffer-head--framework .soffer-eyebrow {
  font-size: 24px;
  margin-bottom: 4px;
}

.soffer-head--framework .soffer-title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.soffer-model--framework {
  --sfw-head-gutter: 18px;
  --sfw-head-mark-size: 40px;
  --sfw-head-gap: 14px;
  --sfw-head-subtitle-size: 22px;
  --sfw-tile-title-size: 20px;
  --sfw-tile-body-size: 19px;
  --sfw-tile-dense-size: 17px;
  top: 148px;
  bottom: 100px;
  left: 120px;
  right: 120px;
  grid-template-rows: repeat(7, auto);
  align-content: space-evenly;
  row-gap: 0;
  overflow: hidden;
}

.soffer-model--framework::before {
  top: 4px;
  bottom: 4px;
  width: 4px;
  left: 12px;
  background: linear-gradient(
    180deg,
    rgba(33, 120, 212, 0.55) 0%,
    rgba(33, 120, 212, 0.9) 34%,
    rgba(247, 104, 44, 0.9) 66%,
    rgba(247, 104, 44, 1) 100%
  );
}

/* Market offerings · single grouped band */
.soffer--framework .sfw-market {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  align-self: stretch;
  justify-self: stretch;
  min-height: 0;
  height: auto;
  padding: 6px var(--sfw-head-gutter) 4px;
  border-radius: 26px;
  border: 2px dotted rgba(33, 120, 212, 0.42);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.soffer--framework .sfw-market-title {
  margin: 0;
  padding: 0 0 4px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sp-blue-800);
}

.soffer--framework .sfw-market .sfw-offering {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  min-height: 0;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.soffer--framework .sfw-market .sfw-offering--fd {
  padding-top: 10px;
  border-top: 1px dashed rgba(33, 120, 212, 0.28);
}

/* Slide 8 · PBWM AI Capabilities draft status */
.soffer--framework-morph .sfw-offering--caps {
  position: relative;
}

.soffer--framework-morph .sfw-draft-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  margin: 0;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  color: #8a4b00;
  background: rgba(255, 214, 102, 0.92);
  border: 2px solid rgba(247, 104, 44, 0.55);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Unified section headers — offerings, BIAB, config layers */
.soffer--framework .sfw-head-row {
  display: grid;
  grid-template-columns: var(--sfw-head-mark-size) minmax(0, 1fr);
  align-items: center;
  gap: var(--sfw-head-gap);
  flex-shrink: 0;
  min-height: 0;
  width: 100%;
}

.soffer--framework .sfw-head-copy--inline {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 16px;
  min-width: 0;
}

.soffer--framework .sfw-head-title {
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  flex-shrink: 0;
  white-space: nowrap;
}

.soffer--framework .sfw-head-subtitle {
  margin: 0;
  padding: 0;
  font-size: var(--sfw-head-subtitle-size);
  line-height: 1.22;
  font-weight: 500;
  color: var(--fg-3);
  flex: 1;
  min-width: 12rem;
}

/* Same subtitle scale everywhere (overrides legacy offering/foundation p rules) */
.soffer--framework .sfw-offering p.sfw-head-subtitle,
.soffer--framework .soffer-foundation p.sfw-head-subtitle,
.soffer--framework .soffer-layer p.sfw-head-subtitle {
  margin: 0;
  max-width: none;
  font-size: var(--sfw-head-subtitle-size);
  line-height: 1.22;
  font-weight: 500;
  color: var(--fg-3);
}

.soffer--framework .sfw-head-num {
  justify-self: start;
  align-self: center;
  width: var(--sfw-head-mark-size);
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(33, 120, 212, 0.28);
  text-align: left;
}

.soffer--framework .sfw-head-mark {
  justify-self: start;
  align-self: center;
  width: var(--sfw-head-mark-size);
  height: var(--sfw-head-mark-size);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-top-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(247, 104, 44, 0.18);
  position: relative;
}

.soffer--framework .sfw-head-mark::before,
.soffer--framework .sfw-head-mark::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 2px solid rgba(247, 104, 44, 0.34);
}

.soffer--framework .sfw-head-mark::before {
  inset: 8px;
}

.soffer--framework .sfw-head-mark::after {
  inset: 14px;
}

.soffer--framework .soffer-layer--biab .sfw-head-title {
  color: var(--accent-strong);
}

/* Shared blue glass tiles — capabilities, FD chevrons, BIAB pillars */
.soffer--framework .sfw-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(33, 120, 212, 0.08) 100%),
    rgba(237, 244, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(33, 120, 212, 0.12);
  backdrop-filter: blur(36px) saturate(1.75) brightness(1.04);
  -webkit-backdrop-filter: blur(36px) saturate(1.75) brightness(1.04);
}

.soffer--framework .sfw-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.18) 22%,
    transparent 48%,
    transparent 72%,
    rgba(255, 255, 255, 0.08) 100%
  );
  z-index: 0;
}

.soffer--framework .sfw-tile > h4 {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  min-height: 52px;
  margin: 0;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: var(--sp-ink-800);
  color: #fff;
  font-size: var(--sfw-tile-title-size);
  line-height: 1.12;
  font-weight: 800;
}

.soffer--framework .sfw-tile > p,
.soffer--framework .sfw-tile > span {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  padding: 10px 10px;
  text-align: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.55);
  color: var(--fg-2);
  font-size: var(--sfw-tile-body-size);
  line-height: 1.26;
  font-weight: 700;
}

.soffer--framework .sfw-tile > ul {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soffer--framework .sfw-tile > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 10px;
  text-align: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.55);
  color: var(--fg-2);
  font-size: var(--sfw-tile-body-size);
  line-height: 1.26;
  font-weight: 700;
}

.soffer--framework .sfw-dim--dense > span,
.soffer--framework .sfw-dim--dense > ul > li {
  min-height: 38px;
  font-size: var(--sfw-tile-dense-size);
  padding: 8px 9px;
}

/* Market offerings · compact layout only (typography matches BIAB tiles) */
.soffer--framework .sfw-offering .sfw-tile > h4,
.soffer--framework .sfw-offering .sfw-chevron.sfw-tile > h4 {
  min-height: 38px;
  padding: 6px 8px;
}

.soffer--framework .sfw-offering .sfw-tile > p,
.soffer--framework .sfw-offering .sfw-tile > span,
.soffer--framework .sfw-offering .sfw-chevron.sfw-tile > p {
  flex: 0 1 auto;
  min-height: 34px;
  padding: 6px 8px;
}

.soffer--framework .sfw-offering .sfw-dim--dense > span {
  min-height: 30px;
  padding: 5px 7px;
}

/* Offering 1 · capabilities grid */
.soffer--framework .sfw-offering--caps .sfw-detail-dims {
  flex: 0 1 auto;
  min-height: 0;
  gap: 6px;
  align-items: start;
}

.soffer--framework .sfw-offering--caps .soffer-detail-dim.sfw-tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
  align-self: start;
  padding: 6px;
  gap: 5px;
  border-radius: 16px;
}

/* Offering 2 · FD chevron flow (same tile skin, chevron shape) */
.soffer--framework .sfw-offering--fd .sfw-fd-flow {
  display: flex;
  align-items: flex-start;
  flex: 0 1 auto;
  min-height: 0;
  margin: 0 -4px;
  filter: drop-shadow(0 10px 24px rgba(33, 120, 212, 0.12));
}

.soffer--framework .sfw-offering--fd .sfw-chevron.sfw-tile {
  height: auto;
  align-self: flex-start;
}

.soffer--framework .sfw-chevron.sfw-tile {
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  margin-left: -14px;
  padding: 6px 16px 6px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  border-right: none;
  border-radius: 0;
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    0 100%,
    18px 50%
  );
}

.soffer--framework .sfw-chevron.sfw-tile:first-child {
  z-index: 1;
  margin-left: 0;
  padding-left: 10px;
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    0 100%
  );
}

.soffer--framework .sfw-chevron.sfw-tile:nth-child(2) { z-index: 2; }
.soffer--framework .sfw-chevron.sfw-tile:nth-child(3) { z-index: 3; }
.soffer--framework .sfw-chevron.sfw-tile:nth-child(4) { z-index: 4; }
.soffer--framework .sfw-chevron.sfw-tile:nth-child(5) { z-index: 5; }
.soffer--framework .sfw-chevron.sfw-tile:nth-child(6) { z-index: 6; }

.soffer--framework .sfw-chevron.sfw-tile:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom-color: rgba(128, 180, 240, 0.38);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    18px 50%
  );
}

/* Connectors */
.soffer--framework .soffer-connector {
  margin: 0;
  gap: 2px;
}

.soffer-model--framework > .soffer-connector--blue {
  margin-top: 0;
}

.soffer--framework .soffer-connector-arrow {
  height: 14px;
}

.soffer--framework .soffer-connector-label {
  font-size: 13px;
  padding: 5px 14px;
}

/* Configuration layers · same header row as offerings */
.soffer--framework .sfw-layer-compact {
  display: grid;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding: 8px var(--sfw-head-gutter);
  transform: none;
  border-radius: 20px;
  min-height: 0;
  flex-shrink: 0;
}

.soffer--framework .sfw-head-row .soffer-layer-icon {
  justify-self: start;
  align-self: center;
  flex: 0 0 var(--sfw-head-mark-size);
  width: var(--sfw-head-mark-size);
  height: var(--sfw-head-mark-size);
}

/* BIAB foundation block — same flex shell as market offerings (avoids legacy centering) */
.soffer--framework .soffer-foundation.sfw-foundation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: auto;
  gap: 6px;
  min-height: 0;
  overflow: hidden;
  padding: 6px var(--sfw-head-gutter) 4px;
  transform: none;
  border-radius: 26px;
}

.soffer--framework .soffer-foundation.sfw-foundation > .sfw-head-row {
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
}

.soffer--framework .sfw-biab-grid {
  flex: 0 1 auto;
  min-height: 0;
  overflow: hidden;
  align-self: stretch;
  width: 100%;
  gap: 6px;
}

.soffer--framework .sfw-biab-grid .soffer-detail-card.sfw-tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
  align-self: stretch;
  padding: 8px;
  gap: 6px;
  border-radius: 18px;
}

/* Slide 8 · room for lede under title */
.soffer--framework:has(.soffer-lede) .soffer-model--framework {
  top: 196px;
}

.soffer--framework:has(.soffer-lede) .soffer-head--framework .soffer-lede {
  margin-top: 6px;
  max-width: 1480px;
  font-size: 24px;
  line-height: 1.32;
}

/* Slide 9 · framework overview — band type matches slide 8 slide title + lede */
.soffer-model--framework-overview {
  --sfw-overview-slide-title-size: 52px;
  --sfw-overview-slide-lede-size: 24px;
  grid-template-rows: repeat(7, auto);
  align-content: space-evenly;
  row-gap: 0;
  overflow: hidden;
}

.soffer--framework-overview .sfw-market-title {
  font-size: var(--sfw-overview-slide-title-size);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.soffer--framework-overview .sfw-market .sfw-offering .sfw-head-title,
.soffer--framework-overview .soffer-foundation.sfw-foundation--overview .sfw-head-title {
  font-size: var(--sfw-overview-slide-title-size);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg-1);
  white-space: normal;
}

.soffer--framework-overview .sfw-market .sfw-offering .sfw-head-subtitle,
.soffer--framework-overview .soffer-foundation.sfw-foundation--overview .sfw-head-subtitle {
  font-size: var(--sfw-overview-slide-lede-size);
  line-height: 1.32;
  font-weight: 400;
  color: var(--fg-2);
}

.soffer--framework-overview .sfw-market .sfw-head-num {
  font-size: 48px;
  line-height: 1;
  width: auto;
  min-width: 0;
}

/* Match slide 8 band heights (measured at 2560×1440) */
.soffer--framework-overview .sfw-market {
  min-height: 477px;
}

.soffer--framework-overview .sfw-market .sfw-offering--caps {
  flex: 0 0 auto;
  min-height: 244px;
}

.soffer--framework-overview .sfw-market .sfw-offering--fd {
  flex: 0 0 auto;
  min-height: 168px;
}

.soffer--framework-overview .soffer-foundation.sfw-foundation.sfw-foundation--overview {
  min-height: 302px;
}

/* Slide 9 · inner copy centred vertically + horizontally in each band */
.soffer--framework-overview .sfw-market-title {
  text-align: center;
  width: 100%;
}

.soffer--framework-overview .sfw-market .sfw-offering,
.soffer--framework-overview .soffer-foundation.sfw-foundation.sfw-foundation--overview {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.soffer--framework-overview .soffer-foundation.sfw-foundation.sfw-foundation--overview {
  justify-content: center;
  align-items: center;
}

.soffer--framework-overview .sfw-market .sfw-offering .sfw-head-row,
.soffer--framework-overview .soffer-foundation.sfw-foundation.sfw-foundation--overview > .sfw-head-row {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 14px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  width: fit-content;
  max-width: min(1040px, 94%);
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  align-self: center;
}

.soffer--framework-overview .sfw-market .sfw-offering .sfw-head-copy--inline,
.soffer--framework-overview .soffer-foundation.sfw-foundation--overview .sfw-head-copy--inline {
  display: contents;
}

.soffer--framework-overview .sfw-market .sfw-head-num,
.soffer--framework-overview .soffer-foundation.sfw-foundation--overview .sfw-head-mark {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: end;
}

.soffer--framework-overview .sfw-market .sfw-offering .sfw-head-title,
.soffer--framework-overview .soffer-foundation.sfw-foundation--overview .sfw-head-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  text-align: left;
}

.soffer--framework-overview .sfw-market .sfw-offering .sfw-head-subtitle,
.soffer--framework-overview .soffer-foundation.sfw-foundation--overview .sfw-head-subtitle {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  text-align: center;
  flex: none;
  min-width: 0;
}

/* Config layers — icon + title + subtitle centred as one row in the bar */
.soffer--framework-overview .sfw-layer-compact.sfw-head-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sfw-head-gap);
  width: 100%;
  max-width: none;
  min-height: 0;
  height: auto;
  padding: 8px var(--sfw-head-gutter);
  text-align: center;
}

.soffer--framework-overview .sfw-layer-compact .soffer-layer-icon {
  flex: 0 0 var(--sfw-head-mark-size);
  width: var(--sfw-head-mark-size);
  height: var(--sfw-head-mark-size);
}

.soffer--framework-overview .sfw-layer-compact .sfw-head-copy--inline {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  min-width: 0;
  flex: 0 1 auto;
  text-align: center;
}

.soffer--framework-overview .sfw-layer-compact .sfw-head-title {
  white-space: normal;
  text-align: center;
  flex: 0 1 auto;
}

.soffer--framework-overview .sfw-layer-compact .sfw-head-subtitle {
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
}

/* Slide 9 · BIAB Configuration — narrow core + internal / external flows */
.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 38%) minmax(0, 1fr);
  align-items: center;
  gap: 14px 18px;
  width: 100%;
  min-height: 0;
  flex-shrink: 0;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--internal {
  justify-content: flex-end;
  text-align: right;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--external {
  justify-content: flex-start;
  text-align: left;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow-copy {
  min-width: 0;
  flex: 1 1 auto;
  max-width: 520px;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow-label {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--internal .sfw-biab-flow-label {
  color: var(--accent-strong);
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--external .sfw-biab-flow-label {
  color: var(--sp-blue-800);
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow-hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
  color: var(--fg-3);
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow-arrow {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--internal .sfw-biab-flow-arrow {
  background: linear-gradient(90deg, rgba(247, 104, 44, 0.15), rgba(247, 104, 44, 0.95));
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--internal .sfw-biab-flow-arrow::after {
  right: -1px;
  border-left: 8px solid rgba(247, 104, 44, 0.95);
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--external .sfw-biab-flow-arrow {
  background: linear-gradient(90deg, rgba(33, 120, 212, 0.95), rgba(33, 120, 212, 0.15));
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-flow--external .sfw-biab-flow-arrow::after {
  left: -1px;
  border-right: 8px solid rgba(33, 120, 212, 0.95);
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sfw-head-gap);
  width: 100%;
  max-width: 100%;
  justify-self: center;
  text-align: center;
  padding: 8px 16px;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core .soffer-layer-icon {
  flex: 0 0 var(--sfw-head-mark-size);
  width: var(--sfw-head-mark-size);
  height: var(--sfw-head-mark-size);
  justify-self: auto;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core .sfw-head-copy--inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  min-width: 0;
  flex: 0 1 auto;
  text-align: center;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core .sfw-head-title,
.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core .sfw-head-subtitle {
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core .sfw-head-title {
  white-space: normal;
  font-size: 20px;
}

.soffer--framework:not(.soffer--framework-overview) .sfw-biab-config-core .sfw-head-subtitle {
  font-size: 15px;
  line-height: 1.25;
}

/* =========================================================
   Slide 8 · stepped morph (overview bands → slide 9 detail)
   ========================================================= */

/* Active-step spotlight (current reveal only — steps are cumulative) */
.soffer--framework-morph.sfw-reveal-1:not(.sfw-reveal-2) .sfw-biab-config-row--morph,
.soffer--framework-morph.sfw-reveal-2:not(.sfw-reveal-3) .soffer-foundation.sfw-foundation--overview,
.soffer--framework-morph.sfw-reveal-3:not(.sfw-reveal-4) .sfw-offering--fd,
.soffer--framework-morph.sfw-reveal-4:not(.sfw-reveal-complete) .sfw-offering--caps {
  position: relative;
  isolation: isolate;
}

.soffer--framework-morph.sfw-reveal-1:not(.sfw-reveal-2) .sfw-biab-config-row--morph::before,
.soffer--framework-morph.sfw-reveal-2:not(.sfw-reveal-3) .soffer-foundation.sfw-foundation--overview::before,
.soffer--framework-morph.sfw-reveal-3:not(.sfw-reveal-4) .sfw-offering--fd::before,
.soffer--framework-morph.sfw-reveal-4:not(.sfw-reveal-complete) .sfw-offering--caps::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: sfw-morph-spotlight-in 520ms ease forwards;
}

.soffer--framework-morph.sfw-reveal-1:not(.sfw-reveal-2) .sfw-biab-config-row--morph::before {
  background:
    radial-gradient(ellipse 88% 120% at 50% 58%, rgba(247, 104, 44, 0.14) 0%, transparent 68%),
    linear-gradient(180deg, rgba(247, 104, 44, 0.06) 0%, transparent 42%);
  border: 2px solid rgba(247, 104, 44, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(247, 104, 44, 0.2),
    0 0 36px rgba(247, 104, 44, 0.12);
}

.soffer--framework-morph.sfw-reveal-2:not(.sfw-reveal-3) .soffer-foundation.sfw-foundation--overview::before {
  inset: -4px -8px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 92% 110% at 50% 42%, rgba(247, 104, 44, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(247, 104, 44, 0.05) 0%, transparent 50%);
  border: 2px solid rgba(247, 104, 44, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 0 1px rgba(247, 104, 44, 0.18),
    0 0 32px rgba(247, 104, 44, 0.1);
}

.soffer--framework-morph.sfw-reveal-3:not(.sfw-reveal-4) .sfw-offering--fd::before,
.soffer--framework-morph.sfw-reveal-4:not(.sfw-reveal-complete) .sfw-offering--caps::before {
  inset: -4px -6px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 94% 115% at 50% 40%, rgba(33, 120, 212, 0.13) 0%, transparent 72%),
    linear-gradient(180deg, rgba(33, 120, 212, 0.06) 0%, transparent 48%);
  border: 2px solid rgba(33, 120, 212, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(33, 120, 212, 0.2),
    0 0 28px rgba(33, 120, 212, 0.11);
}

@keyframes sfw-morph-spotlight-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.soffer--framework-morph .sfw-morph-detail {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 380ms ease,
    transform 380ms ease,
    max-height 480ms ease,
    visibility 0s linear 380ms;
}

.soffer--framework-morph.sfw-reveal-2 .sfw-morph-detail--foundation,
.soffer--framework-morph.sfw-reveal-3 .sfw-morph-detail--fd,
.soffer--framework-morph.sfw-reveal-4 .sfw-morph-detail--caps {
  opacity: 1;
  visibility: visible;
  max-height: 720px;
  margin-top: 8px;
  transform: none;
  pointer-events: auto;
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    max-height 520ms ease,
    visibility 0s;
}

/* Market / foundation bands · shift from centred overview to detail layout */
.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview,
.soffer--framework-morph.sfw-reveal-3 .sfw-offering--fd,
.soffer--framework-morph.sfw-reveal-4 .sfw-offering--caps {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
  min-height: 0;
  height: auto;
}

.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview {
  min-height: 0;
}

.soffer--framework-morph.sfw-reveal-2 .sfw-market,
.soffer--framework-morph.sfw-reveal-3 .sfw-market,
.soffer--framework-morph.sfw-reveal-4 .sfw-market,
.soffer--framework-morph.sfw-reveal-complete .sfw-market {
  min-height: 0;
  height: auto;
  flex: 1 1 auto;
}

/* Detail headers · left-aligned, title + subtitle on one line (morph reveals + slide 9) */
.soffer--framework-detail .sfw-market-title,
.soffer--framework-morph.sfw-reveal-2 .sfw-market-title,
.soffer--framework-morph.sfw-reveal-3 .sfw-market-title,
.soffer--framework-morph.sfw-reveal-4 .sfw-market-title,
.soffer--framework-morph.sfw-reveal-complete .sfw-market-title {
  text-align: left;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.soffer--framework-detail .sfw-head-row,
.soffer--framework-detail .sfw-layer-compact.sfw-head-row,
.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview > .sfw-head-row,
.soffer--framework-morph.sfw-reveal-3 .sfw-offering--fd .sfw-head-row,
.soffer--framework-morph.sfw-reveal-4 .sfw-offering--caps .sfw-head-row,
.soffer--framework-morph.sfw-reveal-complete .sfw-offering .sfw-head-row,
.soffer--framework-morph.sfw-reveal-complete .soffer-foundation.sfw-foundation--overview > .sfw-head-row {
  display: grid;
  grid-template-columns: var(--sfw-head-mark-size) minmax(0, 1fr);
  grid-template-rows: auto;
  column-gap: var(--sfw-head-gap);
  row-gap: 0;
  align-items: center;
  justify-content: start;
  justify-items: start;
  align-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.soffer--framework-detail .sfw-head-copy--inline,
.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview .sfw-head-copy--inline,
.soffer--framework-morph.sfw-reveal-3 .sfw-offering--fd .sfw-head-copy--inline,
.soffer--framework-morph.sfw-reveal-4 .sfw-offering--caps .sfw-head-copy--inline,
.soffer--framework-morph.sfw-reveal-complete .sfw-head-copy--inline {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.soffer--framework-detail .sfw-head-title,
.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview .sfw-head-title,
.soffer--framework-morph.sfw-reveal-3 .sfw-offering--fd .sfw-head-title,
.soffer--framework-morph.sfw-reveal-4 .sfw-offering--caps .sfw-head-title,
.soffer--framework-morph.sfw-reveal-complete .sfw-head-title {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  text-align: left;
  white-space: nowrap;
}

.soffer--framework-detail .sfw-head-subtitle,
.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview .sfw-head-subtitle,
.soffer--framework-morph.sfw-reveal-3 .sfw-offering--fd .sfw-head-subtitle,
.soffer--framework-morph.sfw-reveal-4 .sfw-offering--caps .sfw-head-subtitle,
.soffer--framework-morph.sfw-reveal-complete .sfw-head-subtitle {
  font-size: var(--sfw-head-subtitle-size);
  line-height: 1.22;
  font-weight: 500;
  color: var(--fg-3);
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.soffer--framework-detail .sfw-head-num,
.soffer--framework-morph.sfw-reveal-3 .sfw-offering--fd .sfw-head-num,
.soffer--framework-morph.sfw-reveal-4 .sfw-offering--caps .sfw-head-num,
.soffer--framework-morph.sfw-reveal-complete .sfw-head-num {
  font-size: 22px;
  line-height: 1;
  width: var(--sfw-head-mark-size);
  min-width: 0;
  text-align: left;
}

.soffer--framework-detail .sfw-head-mark,
.soffer--framework-morph.sfw-reveal-2 .soffer-foundation.sfw-foundation--overview .sfw-head-mark {
  grid-column: auto;
  grid-row: auto;
  justify-self: start;
}

/* Client Configuration Layer — centred bar (detail slide 9) */
.soffer--framework-detail .soffer-layer--client.sfw-layer-compact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sfw-head-gap);
  width: 100%;
  max-width: none;
  text-align: center;
}

.soffer--framework-detail .soffer-layer--client.sfw-layer-compact .soffer-layer-icon {
  justify-self: center;
  flex: 0 0 var(--sfw-head-mark-size);
}

.soffer--framework-detail .soffer-layer--client .sfw-head-copy--inline {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  min-width: 0;
  flex: 0 1 auto;
  width: auto;
  text-align: center;
}

.soffer--framework-detail .soffer-layer--client .sfw-head-title,
.soffer--framework-detail .soffer-layer--client .sfw-head-subtitle {
  text-align: center;
  white-space: normal;
}

/* BIAB config row · overview (centred core) → detail (flows in) */
.soffer--framework-morph .sfw-biab-config-row--morph {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  transition: gap 420ms ease;
}

.soffer--framework-morph .sfw-morph-biab-side {
  opacity: 0;
  visibility: hidden;
  flex: 0 0 0;
  width: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  pointer-events: none;
  transition:
    opacity 380ms ease,
    flex-basis 480ms ease,
    width 480ms ease,
    visibility 0s linear 380ms;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-config-row--morph {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 38%) minmax(0, 1fr);
  align-items: center;
  gap: 14px 18px;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-morph-biab-side {
  opacity: 1;
  visibility: visible;
  flex: initial;
  width: auto;
  min-width: 0;
  overflow: visible;
  pointer-events: auto;
  transition:
    opacity 420ms ease,
    flex-basis 520ms ease,
    width 520ms ease,
    visibility 0s;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--internal {
  justify-content: flex-end;
  text-align: right;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--external {
  justify-content: flex-start;
  text-align: left;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow-copy {
  min-width: 0;
  flex: 1 1 auto;
  max-width: 520px;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--internal .sfw-biab-flow-label {
  color: var(--accent-strong);
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--external .sfw-biab-flow-label {
  color: var(--sp-blue-800);
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow-label {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow-hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
  color: var(--fg-3);
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow-arrow {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--internal .sfw-biab-flow-arrow {
  background: linear-gradient(90deg, rgba(247, 104, 44, 0.15), rgba(247, 104, 44, 0.95));
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--internal .sfw-biab-flow-arrow::after {
  right: -1px;
  border-left: 8px solid rgba(247, 104, 44, 0.95);
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--external .sfw-biab-flow-arrow {
  background: linear-gradient(90deg, rgba(33, 120, 212, 0.95), rgba(33, 120, 212, 0.15));
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-flow--external .sfw-biab-flow-arrow::after {
  left: -1px;
  border-right: 8px solid rgba(33, 120, 212, 0.95);
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-config-core {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sfw-head-gap);
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 8px 16px;
}

.soffer--framework-morph.sfw-reveal-1 .sfw-biab-config-core .sfw-head-copy--inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.soffer--framework-morph:not(.sfw-reveal-1) .sfw-biab-config-core {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sfw-head-gap);
  width: auto;
  max-width: min(720px, 92%);
  margin: 0 auto;
  text-align: center;
  padding: 8px var(--sfw-head-gutter);
}

.soffer--framework-morph:not(.sfw-reveal-1) .sfw-biab-config-core .sfw-head-copy--inline {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  text-align: center;
}

/* Slide 9 · static full detail (rail / jump-to); skipped on forward from slide 8 */
.soffer--framework-detail .sfw-morph-detail {
  display: none;
}

/* =========================================================
   Slide 10 · work example overlay
   ========================================================= */

.soffer--case .soffer-head--framework {
  z-index: 4;
}

.soffer--case .soffer-model--framework {
  z-index: 1;
}

.soffer--case .sfw-tile,
.soffer--case .sfw-market-title,
.soffer--case .sfw-head-row,
.soffer--case .soffer-layer,
.soffer--case .soffer-connector,
.soffer--case .sfw-biab-config-row {
  opacity: 0.22;
  filter: grayscale(1) saturate(0.35);
  transition: opacity 240ms ease, filter 240ms ease;
}

.soffer--case .soffer-case-used {
  z-index: 5;
  opacity: 1;
  filter: none;
  border-color: rgba(247, 104, 44, 0.74);
  border-bottom-color: rgba(247, 104, 44, 0.86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 236, 224, 0.28) 46%, rgba(247, 104, 44, 0.22) 100%),
    rgba(255, 242, 235, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 3px rgba(247, 104, 44, 0.22),
    0 20px 44px rgba(247, 104, 44, 0.22);
}

.soffer--case .soffer-case-used > h4 {
  background: var(--accent-strong);
}

.soffer--case .soffer-case-used-line {
  color: #fff;
  border-color: rgba(247, 104, 44, 0.72);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 22px rgba(247, 104, 44, 0.22);
}

.soffer-case-popup {
  position: absolute;
  z-index: 6;
  top: 160px;
  left: 190px;
  width: 1260px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(247, 104, 44, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 246, 241, 0.92) 48%, rgba(237, 244, 255, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 34px 88px rgba(17, 24, 39, 0.24),
    0 0 0 8px rgba(247, 104, 44, 0.08);
  animation: soffer-case-pop 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.soffer-case-media {
  position: relative;
  height: 912px;
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 104, 44, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(33, 120, 212, 0.12), rgba(17, 24, 39, 0.12)),
    #0a0f16;
}

.soffer-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.soffer-case-copy {
  padding: 26px 34px 32px;
}

.soffer-case-copy h3 {
  margin: 0;
  color: var(--fg-1);
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.soffer-case-copy p:last-child {
  margin: 12px 0 0;
  color: var(--fg-2);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 500;
}

.soffer--case-popup-right .soffer-case-popup {
  left: auto;
  right: 120px;
}

.soffer--case-agent-assessment .soffer-case-copy p:last-child,
.soffer--case-sow-ai .soffer-case-copy p:last-child {
  font-size: 21px;
  line-height: 1.3;
}

/* SoW · lower popup so Client Lifecycle capability stays visible above */
.soffer--case-sow-ai .soffer-case-popup {
  top: 430px;
}

.soffer--case-sow-ai .soffer-case-media {
  height: 720px;
}

/* Agentic AI Testing · popup left so Build & Deliver chevron stays visible */
.soffer--case-agentic-testing .soffer-case-popup {
  left: 50px;
  right: auto;
}

.soffer--case-agentic-testing .soffer-case-copy p:last-child {
  font-size: 21px;
  line-height: 1.3;
}

/* GEO · popup left so Content & Distribution (rightmost dim) stays visible */
.soffer--case-geo .soffer-case-popup {
  left: 50px;
  right: auto;
}

.soffer--case-geo .soffer-case-copy p:last-child {
  font-size: 20px;
  line-height: 1.3;
}

.soffer-case-arrows {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.soffer-case-arrow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#case-arrow-head-training-lab);
  filter: drop-shadow(0 8px 12px rgba(247, 104, 44, 0.2));
  stroke-dasharray: 12 12;
  animation: soffer-case-arrow-dash 1.8s linear infinite;
}

.soffer-case-arrows marker path {
  fill: var(--accent);
}

@keyframes soffer-case-pop {
  from {
    opacity: 0;
    transform: translate3d(24px, 18px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes soffer-case-arrow-dash {
  to {
    stroke-dashoffset: -54;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soffer--framework-morph .sfw-morph-detail,
  .soffer--framework-morph .sfw-morph-biab-side {
    transition: none;
  }

  .soffer-case-popup,
  .soffer-case-arrow {
    animation: none;
  }

  .soffer--framework-morph.sfw-reveal-1:not(.sfw-reveal-2) .sfw-biab-config-row--morph::before,
  .soffer--framework-morph.sfw-reveal-2:not(.sfw-reveal-3) .soffer-foundation.sfw-foundation--overview::before,
  .soffer--framework-morph.sfw-reveal-3:not(.sfw-reveal-4) .sfw-offering--fd::before,
  .soffer--framework-morph.sfw-reveal-4:not(.sfw-reveal-complete) .sfw-offering--caps::before {
    animation: none;
    opacity: 1;
  }
}

/* =========================================================
   Slide 19 · Recap & next steps
   ========================================================= */

.srecap {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 104, 44, 0.1), transparent 36%),
    radial-gradient(circle at 88% 92%, rgba(33, 120, 212, 0.08), transparent 34%),
    linear-gradient(180deg, #fafbfc 0%, var(--sp-white) 55%, #fff8f4 100%);
  overflow: hidden;
}

.srecap-inner {
  position: absolute;
  inset: 82px 100px 112px 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2;
}

.srecap-head {
  flex-shrink: 0;
}

.srecap-eyebrow {
  margin: 0 0 8px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
}

.srecap-title {
  margin: 0;
  font-size: 88px;
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--fg-1);
  text-wrap: pretty;
  max-width: 1400px;
}

.srecap-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.srecap-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 30px 24px;
  border-radius: 18px;
  border: 2px solid rgba(21, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.srecap-col--next {
  border-left: 6px solid var(--sp-blue-600);
  background: linear-gradient(180deg, rgba(33, 120, 212, 0.04), rgba(255, 255, 255, 0.97) 28%);
}

.srecap-col--recap {
  border-left: 6px solid var(--sp-orange-600);
}

.srecap-col-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.srecap-list,
.srecap-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 10px;
}

.srecap-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(21, 27, 42, 0.03);
}

.srecap-item-label {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
}

.srecap-item-text {
  margin: 0;
  font-size: 26px;
  line-height: 1.32;
  color: var(--fg-2);
  font-weight: 500;
}

.srecap-item-text strong {
  font-weight: 700;
  color: var(--fg-1);
}

.srecap-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 18px;
  border-radius: 14px;
  background: rgba(33, 120, 212, 0.06);
  flex: 1 1 0;
}

.srecap-step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  background: var(--sp-blue-600);
}

.srecap-step-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.srecap-step-label {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--fg-1);
  line-height: 1.15;
}

.srecap-step-text {
  margin: 0;
  font-size: 26px;
  line-height: 1.34;
  color: var(--fg-2);
  font-weight: 500;
}

.srecap-step-text strong {
  font-weight: 700;
  color: var(--fg-1);
}

.srecap .deck-foot {
  z-index: 10;
}

