/* ============================================================
   ASK MAX — full deck CSS
   Built on Lens design language (tokens.css already loaded).
   Forest green accent · sage secondary · warm cream surface.
   ============================================================ */

/* ---------- 1. Brand variables (extends Lens) ---------- */
:root {
  --am-forest:        #3D5D4A;
  --am-forest-deep:   #2A4233;
  --am-forest-soft:   #6B8576;
  --am-sage:          #7A9888;
  --am-sage-tint:     #EAF1ED;
  --am-sage-soft:     #F4F8F5;
  --am-cream:         #F5F3EE;
  --am-ink:           #1A1915;

  --acc-coral:        var(--am-forest);
  --acc-coral-deep:   var(--am-forest-deep);
  --srf-coral-tint:   var(--am-sage-tint);
  --srf-coral-soft:   var(--am-sage-soft);
  --bw-rule-eyebrow:  2px solid var(--am-forest);

  --slide-w: 1920px;
  --slide-h: 1080px;

  /* Depth elevation system — multi-stop shadows for real depth */
  --depth-1: 0 1px 2px rgba(26,25,21,0.04), 0 0 0 1px rgba(229,224,216,0.6);
  --depth-2: 0 2px 4px rgba(26,25,21,0.04), 0 8px 24px rgba(26,25,21,0.06), 0 0 0 1px rgba(229,224,216,0.6);
  --depth-3: 0 4px 8px rgba(26,25,21,0.05), 0 16px 48px rgba(26,25,21,0.10), 0 0 0 1px rgba(229,224,216,0.6);
  --depth-4: 0 8px 16px rgba(26,25,21,0.06), 0 32px 80px rgba(26,25,21,0.14), 0 0 0 1px rgba(229,224,216,0.6);
  --glow-forest: 0 0 0 12px rgba(122,152,136,0.16), 0 0 80px rgba(61,93,74,0.32), 0 0 200px rgba(61,93,74,0.18);
  --glow-sage:   0 0 0 6px rgba(122,152,136,0.20), 0 0 40px rgba(122,152,136,0.28);
}

/* ---------- 2. Page chrome ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  background: #0e1010;
  font-family: var(--font-sans);
  color: var(--ink-pri);
  overflow-x: hidden;
}
body { outline: none; }
body:focus { outline: none; }

img { max-width: 100%; display: block; }

/* ---------- 3. Slide container ---------- */
.deck-slide {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.deck-slide .stage {
  width: var(--slide-w);
  height: var(--slide-h);
  background: var(--srf-page);
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  transform: scale(min(calc(100vw / 1920), calc(100vh / 1080)));
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

/* ---------- 4. Side nav + progress ---------- */
.deck-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  background: rgba(14,16,16,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 10px;
  border-radius: 24px;
  border: 1px solid rgba(245,243,238,0.06);
}
.deck-nav a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245,243,238,0.18);
  display: block;
  transition: all 220ms ease;
  position: relative;
}
.deck-nav a:hover { background: var(--am-sage); transform: scale(1.25); }
.deck-nav a.is-current {
  background: var(--am-forest);
  box-shadow: 0 0 0 3px rgba(61,93,74,0.25);
  transform: scale(1.4);
}
.deck-nav a::after {
  content: attr(data-title);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14,16,16,0.92);
  color: var(--am-cream);
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms;
}
.deck-nav a:hover::after { opacity: 1; }

.deck-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: rgba(245,243,238,0.04);
  z-index: 99;
}
.deck-progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--am-sage), var(--am-forest));
  width: 0;
  transition: width 240ms ease;
}

.deck-help {
  position: fixed;
  left: 20px;
  bottom: 20px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.45);
  z-index: 100;
}

/* ---------- 5a. Monochrome vector icons (Lucide-derived) ---------- */
.lucide {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- 5. Shared slide bits ---------- */
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mut);
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--am-forest);
}
.slide-headline { font-size: 56px; line-height: 1.05; margin: 24px 0 0; font-weight: 400; color: var(--ink-pri); letter-spacing: -0.015em; }
.slide-headline.x-large { font-size: 96px; }
.slide-headline.huge { font-size: 120px; }
.slide-subline { font-size: 22px; line-height: 1.5; color: var(--ink-sec); margin: 24px 0 0; max-width: 1200px; }

.slide-pageno {
  position: absolute;
  bottom: 32px;
  right: 96px;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mut);
}
.slide-pageno.dark { color: rgba(245,243,238,0.5); }

.slide-eyebrow-mark {
  position: absolute;
  top: 32px;
  left: 96px;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mut);
}
.slide-eyebrow-mark.dark { color: rgba(245,243,238,0.5); }

/* ---------- 6. Animation primitives ---------- */
.anim-fade        { opacity: 0; transition: opacity 700ms 80ms ease; }
.anim-up          { opacity: 0; transform: translateY(40px); transition: opacity 700ms 80ms ease, transform 700ms 80ms cubic-bezier(.18,.7,.2,1); }
.anim-up-lg       { opacity: 0; transform: translateY(80px); transition: opacity 900ms 80ms ease, transform 900ms 80ms cubic-bezier(.18,.7,.2,1); }
.anim-scale       { opacity: 0; transform: scale(0.92); transition: opacity 700ms 80ms ease, transform 700ms 80ms cubic-bezier(.18,.7,.2,1); }
.anim-left        { opacity: 0; transform: translateX(-60px); transition: opacity 700ms 80ms ease, transform 700ms 80ms cubic-bezier(.18,.7,.2,1); }
.anim-right       { opacity: 0; transform: translateX(60px); transition: opacity 700ms 80ms ease, transform 700ms 80ms cubic-bezier(.18,.7,.2,1); }
.anim-draw-line   { transform: scaleX(0); transform-origin: left; transition: transform 1000ms 200ms cubic-bezier(.5,0,.2,1); }
.anim-blur        { opacity: 0; filter: blur(20px); transition: opacity 800ms, filter 800ms; }

.in-view .anim-fade,
.in-view .anim-up,
.in-view .anim-up-lg,
.in-view .anim-scale,
.in-view .anim-left,
.in-view .anim-right,
.in-view .anim-blur { opacity: 1; transform: none; filter: none; }
.in-view .anim-draw-line { transform: scaleX(1); }

.delay-1 { transition-delay: 160ms !important; }
.delay-2 { transition-delay: 240ms !important; }
.delay-3 { transition-delay: 320ms !important; }
.delay-4 { transition-delay: 480ms !important; }
.delay-5 { transition-delay: 600ms !important; }
.delay-6 { transition-delay: 720ms !important; }
.delay-7 { transition-delay: 840ms !important; }
.delay-8 { transition-delay: 1000ms !important; }
.delay-9 { transition-delay: 1200ms !important; }
.delay-10 { transition-delay: 1400ms !important; }

/* Continuous idle motion */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(4px,-6px); }
  66% { transform: translate(-3px,4px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(122,152,136,0.18), 0 0 48px rgba(61,93,74,0.30); }
  50% { box-shadow: 0 0 0 16px rgba(122,152,136,0.32), 0 0 96px rgba(61,93,74,0.50); }
}
@keyframes ken-burns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
@keyframes shimmer {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes flow {
  from { transform: translateX(-100%); }
  to { transform: translateX(1000%); }
}

/* ============================================================
   SLIDE 1 — Cover
   ============================================================ */
.s1 { background: #0a0d0c; }
.s1 .stage { background: transparent; box-shadow: none; }
.s1 .hero-photo {
  position: absolute;
  inset: 0;
  background:
    url('images/slide-01-cover-coworking.png?v=10') center center/cover no-repeat;
  animation: ken-burns 30s ease-in-out infinite alternate;
}
.s1 .hero-placeholder { display: none !important; }
.s1 .hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}
.s1 .hero-placeholder {
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.20);
  pointer-events: none;
}
.s1 .cover-text {
  position: absolute;
  bottom: 120px; left: 96px;
  color: var(--am-cream);
  max-width: 1500px;
  z-index: 5;
}
.s1 .cover-line {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.012em;
  margin: 0;
}
.s1 .cover-line strong { color: var(--am-sage); font-weight: 500; }
.s1 .cover-subline {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.55);
}
.s1 .cover-mark {
  position: absolute; top: 56px; left: 96px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245,243,238,0.55); z-index: 5;
}
.s1 .floating-dot {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--am-sage);
  opacity: 0.4;
  animation: drift 8s ease-in-out infinite;
}

/* ============================================================
   SLIDE 2 — Problem (4 vectors)
   ============================================================ */
.thesis {
  position: absolute;
  top: 160px; left: 96px; right: 96px;
  text-align: center;
}
.thesis-line {
  font-size: 52px; line-height: 1.1;
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--ink-pri);
  max-width: 1500px; margin: 0 auto;
}
.thesis-line em { font-style: italic; color: var(--am-forest); }

.vector-grid {
  position: absolute;
  top: 320px; left: 96px; right: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.vector-tile { padding: 20px 18px; }
.vector-tile .vector-num { font-size: 10px; top: 14px; right: 14px; }
.vector-tile .vector-icon { width: 40px; height: 40px; margin-bottom: 12px; }
.vector-tile .vector-icon .lucide { width: 32px; height: 32px; }
.vector-tile .vector-label { font-size: 18px; margin-bottom: 8px; }
.vector-tile .vector-quote { font-size: 13px; margin-bottom: 0; }
.vector-tile .vector-body { display: none; }
.vector-tile {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-top: 3px solid var(--am-forest);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--depth-2);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.vector-tile:hover { transform: translateY(-6px); box-shadow: var(--depth-3); }
.vector-tile .vector-num {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; letter-spacing: 0.22em; color: var(--ink-mut);
}
.vector-tile .vector-icon {
  width: 56px; height: 56px;
  color: var(--am-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
}
.vector-tile .vector-icon .lucide { width: 44px; height: 44px; stroke-width: 1.3; }
.vector-tile .vector-label {
  font-size: 24px; font-weight: 500; color: var(--ink-pri);
  margin-bottom: 12px;
}
.vector-tile .vector-quote {
  font-size: 15px; font-style: italic; color: var(--am-forest);
  margin-bottom: 16px; line-height: 1.4;
}
.vector-tile .vector-body {
  font-size: 13px; color: var(--ink-sec); line-height: 1.6;
}

.s2 .strap {
  position: absolute;
  bottom: 80px; left: 96px; right: 96px;
  text-align: center;
  font-size: 18px; font-style: italic;
  color: var(--ink-sec);
  padding-top: 32px;
  border-top: 1px solid var(--srf-rule);
}

/* ============================================================
   SLIDE 3 — Solution (4 vectors, forest accent)
   ============================================================ */
.s3 .vector-tile {
  border-top-color: var(--am-forest-deep);
  background: var(--am-sage-soft);
}
.s3 .vector-tile .vector-icon {
  color: var(--am-forest-deep);
}
.s3 .vector-tile .vector-icon .lucide { stroke-width: 1.6; }
.s3 .vector-tile .vector-label { color: var(--am-forest-deep); }
.s3 .arrow-down {
  font-size: 24px;
  color: var(--am-forest);
  text-align: center;
  margin: 0 auto 8px;
}

/* ============================================================
   SLIDE 4 — Market size
   ============================================================ */
.s4 { }
.s4 .market-headline {
  position: absolute;
  top: 200px; left: 96px; right: 96px;
  text-align: center;
}
.s4 .market-headline h2 {
  font-size: 56px; line-height: 1.1; font-weight: 400; margin: 24px 0 0;
  max-width: 1500px; margin-inline: auto; letter-spacing: -0.015em;
}
.s4 .market-headline h2 strong { color: var(--am-forest); font-weight: 500; }

.stat-tiles {
  position: absolute;
  top: 500px; left: 96px; right: 96px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.stat-tile {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--depth-2);
}
.stat-figure {
  font-size: 64px; font-weight: 500; line-height: 1; color: var(--am-forest-deep);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 16px; color: var(--ink-pri); margin-bottom: 12px; line-height: 1.4;
  font-weight: 500;
}
.stat-body {
  font-size: 13px; color: var(--ink-sec); line-height: 1.55;
}
.stat-source {
  font-size: 10px; color: var(--ink-mut); margin-top: 24px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.s4 .strap {
  position: absolute;
  bottom: 80px; left: 96px; right: 96px;
  text-align: center;
  font-size: 16px; font-style: italic;
  color: var(--ink-sec);
}
.s4 .strap-source {
  font-size: 10px; color: var(--ink-mut); margin-top: 8px;
  letter-spacing: 0.10em; text-transform: uppercase;
}

.nz-map {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'><path d='M50 5 Q35 15 30 30 Q25 50 35 65 Q40 80 50 90 Q55 80 60 70 Q70 60 65 45 Q60 30 50 25 Z M55 95 Q50 110 45 120 Q40 130 50 135 Q60 130 60 120 Q62 105 55 95 Z' fill='%234F6373'/></svg>") center/contain no-repeat;
}

/* ============================================================
   SLIDE 5 — Office image + tagline
   ============================================================ */
.s5 { background: #0a0d0c; }
.s5 .stage { background: transparent; box-shadow: none; }
.s5 .hero-photo {
  position: absolute; inset: 0;
  background:
    url('images/slide-05-bg-workspace.png?v=10') center center/cover no-repeat;
  animation: ken-burns 32s ease-in-out infinite alternate;
}
.s5 .hero-placeholder { display: none !important; }
.s5 .hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.s5 .hero-placeholder {
  position: absolute;
  top: 38%; left: 50%; transform: translate(-50%,-50%);
  text-align: center; font-size: 13px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245,243,238,0.18);
}
.s5 .tagline-block {
  position: absolute;
  bottom: 140px; right: 96px;
  text-align: right;
  color: var(--am-cream); z-index: 5;
}
.s5 .tagline-eyebrow {
  font-size: 12px; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--am-sage); margin-bottom: 28px;
}
.s5 .tagline {
  font-size: 144px; line-height: 1; font-weight: 300;
  letter-spacing: -0.025em; margin: 0;
}
.s5 .tagline strong { color: var(--am-sage); font-weight: 400; }
.s5 .tagline-sub {
  /* Top-left · smaller · bold · 2 lines */
  position: absolute;
  top: 140px;
  left: 96px;
  max-width: 760px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--am-cream);
  letter-spacing: -0.015em;
  font-style: normal;
  text-align: left;
  z-index: 6;
}
.s5 .tagline-sub strong { color: var(--am-sage); font-weight: 700; }

/* Slide 5 — layered images (depth composition) */
.s5 .hero-photo-mid {
  position: absolute;
  right: 96px; bottom: 96px;
  width: 580px; height: 420px;
  border-radius: 8px;
  background: url('images/slide-05-mid-lobby.png') center center/cover no-repeat;
  border: 6px solid rgba(245,243,238,0.92);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.5);
  z-index: 3;
  overflow: hidden;
}
.s5 .hero-photo-mid .ph-label { display: none; }
.s5 .hero-photo-detail {
  position: absolute;
  right: 540px; top: 96px;
  width: 360px; height: 320px;
  border-radius: 8px;
  background: url('images/slide-05-detail-workspace.png') center center/cover no-repeat;
  border: 6px solid rgba(245,243,238,0.92);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,0,0,0.5);
  z-index: 4;
  transform: rotate(-3deg);
  overflow: hidden;
}
.s5 .hero-photo-detail .ph-label { display: none; }

/* ============================================================
   SLIDE 6 — Single composite image + callouts (REVISED)
   ============================================================ */
.composite-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.composite-image {
  position: relative;
  width: 900px; height: 460px;
  background: url('images/slide-06-composite-trio.png?v=10') center center / contain no-repeat;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--depth-4);
  border: 10px solid #ffffff;
  outline: 1px solid var(--srf-border);
}
.composite-placeholder { display: none; }
/* Hide the callouts — image is small and self-explanatory now */
.s6 .callout { display: none; }
.s6 .composite-stage { top: 380px !important; }

/* Callouts — pin + leader + label */
.callout {
  position: absolute;
  z-index: 10;
}
.callout .pin {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--am-forest);
  box-shadow: 0 0 0 6px rgba(122,152,136,0.30), 0 0 24px rgba(61,93,74,0.5);
  animation: pulse-glow 2.6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.callout .leader {
  position: absolute;
  background: var(--am-forest);
  height: 1.5px;
  top: 8px;
}
.callout .label-card {
  position: absolute;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-left: 3px solid var(--am-forest);
  padding: 14px 20px;
  border-radius: 4px;
  min-width: 240px;
  box-shadow: var(--depth-3);
  z-index: 2;
}
.callout .label-num {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
  margin-bottom: 6px;
}
.callout .label-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-pri);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.callout .label-desc {
  font-size: 12px;
  color: var(--ink-sec);
  line-height: 1.4;
}

/* Callout positions — anchored to composite image */
.callout.c-mobile {
  left: 14%; top: 60%;
}
.callout.c-mobile .leader { left: 16px; width: 180px; }
.callout.c-mobile .label-card { left: -260px; top: -28px; border-left: none; border-right: 3px solid var(--am-forest); text-align: right; }

.callout.c-ball {
  left: 50%; top: 80%; transform: translateX(-50%);
}
.callout.c-ball .leader { left: 8px; top: -180px; width: 1.5px; height: 180px; background: var(--am-forest); }
.callout.c-ball .label-card { left: 32px; top: -32px; }

.callout.c-laptop {
  right: 14%; top: 30%;
}
.callout.c-laptop .leader { right: 16px; left: auto; width: 180px; }
.callout.c-laptop .label-card { right: -260px; top: -28px; }

.callout.c-max {
  left: 50%; top: 12%; transform: translateX(-50%);
}
.callout.c-max .pin {
  width: 24px; height: 24px;
  background: radial-gradient(circle at 30% 30%, var(--am-forest-soft), var(--am-forest-deep));
  box-shadow: var(--glow-forest);
}
.callout.c-max .leader { left: 12px; top: 12px; width: 60px; }
.callout.c-max .label-card {
  left: 84px; top: -8px;
  background: var(--am-forest); color: var(--am-cream);
  border-left: 3px solid var(--am-sage);
  min-width: 200px;
}
.callout.c-max .label-num { color: var(--am-sage); }
.callout.c-max .label-name { color: var(--am-cream); font-size: 26px; }
.callout.c-max .label-desc { color: rgba(245,243,238,0.75); }

.s6 .meet-final-caption {
  position: absolute;
  bottom: 60px; left: 96px; right: 96px;
  text-align: center;
  font-size: 22px;
  font-style: italic;
  color: var(--am-forest-deep);
}

/* Hide the old trio layout — overridden in HTML */
.s6 .meet-trio { display: none; }
.s6 .connections { display: none; }
.s6 .max-node-wrap { display: none; }

/* Push the headline up and tighter on s6 */
.s6 .meet-headline { font-size: 64px; top: 100px; left: 96px; }
.s6 .meet-bodyline { top: 200px; max-width: 1200px; }

/* ============================================================
   SLIDE 13 — Roadmap "Where this fits" (REVISED 2)
   ============================================================ */
.s13 .where-headline {
  position: absolute; top: 96px; left: 96px; right: 96px;
}
.s13 .where-headline h2 {
  font-size: 40px; line-height: 1.15; font-weight: 400; margin: 16px 0 0;
  letter-spacing: -0.015em; max-width: 1500px;
}
.s13 .where-headline h2 strong { color: var(--am-forest); }

/* === Slide 13 — OMX Serving-the-Unmanaged primary + Ask Max nested === */
.s13 .omx-timeline-head {
  position: absolute;
  top: 110px; left: 96px; right: 96px;
  text-align: center;
}
.s13 .omx-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--am-forest);
  display: inline-block;
  margin-bottom: 24px;
}
.s13 .omx-h2 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink-pri);
}
.s13 .omx-h2 strong { color: var(--am-forest); font-weight: 500; }

.omx-timeline {
  position: absolute;
  top: 320px; left: 96px; right: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 2.2fr 1fr;
  gap: 16px;
}
.omx-timeline.six {
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.omx-timeline.six .omx-stage { padding: 14px 14px; }
.omx-timeline.six .omx-stage .os-name { font-size: 14px; }
.omx-timeline.six .omx-stage.hero .os-name { font-size: 15px; }
.omx-timeline.six .omx-stage .os-when,
.omx-timeline.six .omx-stage .os-status { font-size: 9px; padding: 3px 8px; }
.omx-stage {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: var(--depth-2);
  position: relative;
}
.omx-stage.hero {
  background: var(--am-sage-tint);
  border: 2px solid var(--am-forest);
  box-shadow: var(--depth-3), var(--glow-sage);
  transform: translateY(-8px);
}
.omx-stage .os-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 700;
  margin-bottom: 12px;
}
.omx-stage.hero .os-num { color: var(--am-forest-deep); }
.omx-stage .os-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-pri);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.omx-stage.hero .os-name { font-size: 19px; }
.omx-stage .os-when {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 12px;
}
.omx-stage .os-status {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}
.os-status.done { color: var(--ink-mut); background: rgba(229,224,216,0.6); }
.os-status.now  { color: var(--am-cream); background: var(--am-forest); }
.os-status.future { color: var(--ink-mut); background: transparent; border: 1px dashed var(--srf-rule); }

/* Nested Ask Max strip under Stage 3 */
.ask-nested-label {
  position: absolute;
  top: 545px; left: 96px; right: 96px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
}
.ask-nested {
  position: absolute;
  top: 590px; left: 96px; right: 96px;
  display: flex; align-items: stretch; gap: 12px;
  padding: 20px;
  background: var(--am-sage-soft);
  border: 1px dashed var(--am-sage);
  border-radius: 8px;
}
.an-phase {
  flex: 1;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 4px;
  padding: 14px 16px;
}
.an-phase.highlight {
  background: var(--am-forest);
  color: var(--am-cream);
  border: 1px solid var(--am-forest-deep);
  box-shadow: var(--glow-sage);
}
.an-phase.upside {
  background: var(--am-forest-deep);
  color: var(--am-cream);
  border: 1px solid var(--am-forest-deep);
}
.an-phase .an-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
  margin-bottom: 6px;
}
.an-phase.highlight .an-num,
.an-phase.upside .an-num { color: var(--am-sage); }
.an-phase .an-figure {
  font-size: 22px;
  font-weight: 500;
  color: var(--am-forest-deep);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.an-phase.highlight .an-figure,
.an-phase.upside .an-figure { color: var(--am-cream); }
.an-phase .an-scope {
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-sec);
}
.an-phase.highlight .an-scope,
.an-phase.upside .an-scope { color: rgba(245,243,238,0.8); }
.an-arrow {
  align-self: center;
  font-size: 18px;
  color: var(--am-forest);
}

/* OLD layout — hide */
.s13 .s13-top { display: none; }
.s13 .s13-top .eyebrow {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  border-bottom: 2px solid var(--am-forest);
  padding-bottom: 8px;
}
.s13 .s13-top h2 {
  font-size: 120px; line-height: 1; font-weight: 500;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--am-forest-deep) 0%, var(--am-forest) 60%, var(--am-sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.s13 .s13-top .sub {
  font-size: 22px; color: var(--ink-sec);
  margin-top: 20px; font-style: italic;
}

.roadmap-strip {
  position: absolute;
  top: 520px; left: 96px; right: 96px;
  display: flex; align-items: stretch; gap: 0;
}
.rs-stage {
  flex: 1;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 6px;
  padding: 22px 20px 24px;
  position: relative;
  box-shadow: var(--depth-2);
  transition: transform 240ms ease;
}
.rs-stage:hover { transform: translateY(-4px); box-shadow: var(--depth-3); }
.rs-stage.now {
  background: var(--am-sage-tint);
  border: 2px solid var(--am-forest);
  box-shadow: var(--depth-3), var(--glow-sage);
}
.rs-stage.upside {
  background: linear-gradient(180deg, var(--am-forest) 0%, var(--am-forest-deep) 100%);
  color: var(--am-cream);
  border-color: var(--am-forest-deep);
}
.rs-stage .rs-num {
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--ink-mut); font-weight: 600;
  margin-bottom: 8px;
}
.rs-stage.now .rs-num { color: var(--am-forest); }
.rs-stage.upside .rs-num { color: var(--am-sage); }
.rs-stage .rs-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--am-forest-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.rs-stage.upside .rs-tag { color: var(--am-sage); }
.rs-stage .rs-figure {
  font-size: 32px;
  font-weight: 500;
  color: var(--am-forest-deep);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.rs-stage.upside .rs-figure { color: var(--am-cream); }
.rs-stage .rs-when {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mut);
  margin-bottom: 14px;
}
.rs-stage.upside .rs-when { color: rgba(245,243,238,0.65); }
.rs-stage .rs-scope {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-sec);
}
.rs-stage.upside .rs-scope { color: rgba(245,243,238,0.85); }
.rs-stage .rs-scope em { color: var(--am-sage); font-style: italic; }

.rs-arrow {
  flex: 0 0 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--am-forest);
  align-self: center;
}

.s13-strap {
  position: absolute;
  bottom: 80px; left: 96px; right: 96px;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: var(--am-forest-deep);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.s13-strap strong { color: var(--am-forest); font-weight: 500; }

/* Hide the OLD slide-13 visual that we replaced */
.s13 .roadmap, .s13 .priorities-strip, .s13 .figure-block, .s13 .scope-card,
.s13 .timeline, .s13 .strap, .s13 .phase2-card { display: none; }

.roadmap {
  position: absolute;
  top: 320px; left: 96px; right: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.roadmap-stage {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-top: 4px solid var(--am-forest);
  border-radius: 6px;
  padding: 22px 22px 24px;
  position: relative;
  box-shadow: var(--depth-2);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.roadmap-stage:hover { transform: translateY(-4px); box-shadow: var(--depth-3); }
.roadmap-stage.now {
  background: var(--am-sage-tint);
  border-top-color: var(--am-forest-deep);
}
.roadmap-stage.future {
  background: var(--srf-card);
  border-top-color: var(--am-sage);
  border-style: solid;
}
.roadmap-stage.marketplace {
  background: linear-gradient(180deg, var(--am-forest) 0%, var(--am-forest-deep) 100%);
  color: var(--am-cream);
  border-top-color: var(--am-sage);
  box-shadow: var(--depth-3), var(--glow-sage);
}
.roadmap-stage .when {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
  margin-bottom: 12px;
}
.roadmap-stage.marketplace .when { color: var(--am-sage); }
.roadmap-stage .what {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-pri);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.roadmap-stage.marketplace .what { color: var(--am-cream); }
.roadmap-stage .figure {
  font-size: 28px;
  font-weight: 500;
  color: var(--am-forest-deep);
  margin: 12px 0;
  letter-spacing: -0.02em;
}
.roadmap-stage.marketplace .figure { color: var(--am-sage); }
.roadmap-stage .scope {
  font-size: 13px;
  color: var(--ink-sec);
  line-height: 1.55;
}
.roadmap-stage.marketplace .scope { color: rgba(245,243,238,0.85); }
.roadmap-stage .scope strong { color: var(--am-forest-deep); }
.roadmap-stage.marketplace .scope strong { color: var(--am-cream); }
.roadmap-stage .stage-tag {
  position: absolute;
  top: -12px; left: 22px;
  background: var(--am-forest);
  color: var(--am-cream);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}
.roadmap-stage.marketplace .stage-tag { background: var(--am-sage); color: var(--am-forest-deep); }

.priorities-strip {
  position: absolute;
  bottom: 170px; left: 96px; right: 96px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--am-sage-soft);
  border: 1px dashed var(--am-sage);
  border-radius: 6px;
}
.priorities-strip .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 600;
  flex-shrink: 0;
}
.priorities-strip .pillars {
  font-size: 14px;
  color: var(--ink-pri);
  line-height: 1.5;
}
.priorities-strip .pillars strong {
  color: var(--am-forest-deep);
  font-weight: 600;
}
.s13 .phase2-card {
  position: absolute;
  top: 250px; right: 96px;
  width: 540px;
  background: var(--am-sage-soft);
  border: 1px dashed var(--am-sage);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--depth-1);
}
.s13 .phase2-card .p2-eyebrow {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--am-forest); font-weight: 600; margin-bottom: 16px;
}
.s13 .phase2-card .p2-title {
  font-size: 22px; line-height: 1.2; color: var(--am-forest-deep); font-weight: 500;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.s13 .phase2-card .p2-body {
  font-size: 13px; color: var(--ink-sec); line-height: 1.6;
}
.s13 .phase2-card .p2-figure {
  font-size: 32px; font-weight: 500;
  color: var(--am-forest); margin-top: 12px;
  letter-spacing: -0.015em;
}

/* ============================================================
   SLIDE 6 — Meet Max
   ============================================================ */
.s6 .stage {
  background:
    radial-gradient(ellipse at 50% 30%, var(--am-sage-tint) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 70%, rgba(122,152,136,0.06) 0%, transparent 55%),
    var(--srf-page);
}
.s6 .meet-eyebrow {
  position: absolute; top: 96px; left: 96px;
}
.s6 .meet-headline {
  position: absolute; top: 150px; left: 96px;
  font-size: 120px; line-height: 1; font-weight: 400; margin: 0;
  letter-spacing: -0.03em; color: var(--ink-pri);
}
.s6 .meet-bodyline {
  position: absolute; top: 290px; left: 96px; max-width: 900px;
  font-size: 22px; line-height: 1.5; color: var(--ink-sec);
}
.s6 .meet-bodyline strong { color: var(--am-forest); font-weight: 500; }

.s6 .meet-trio {
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-30%);
  display: flex; justify-content: center; align-items: flex-end;
  gap: 100px;
}
.body-tile {
  width: 340px;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--depth-3);
  position: relative;
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.body-tile:hover { transform: translateY(-10px); box-shadow: var(--depth-4); }
.body-tile .body-frame {
  width: 100%; height: 280px;
  background: var(--am-sage-soft);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative; overflow: hidden;
}
.body-tile .body-icon { font-size: 92px; color: var(--am-forest-soft); }
.body-tile .body-label {
  font-size: 18px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--am-forest-deep); font-weight: 500;
}
.body-tile .body-sub {
  font-size: 12px; color: var(--ink-mut); margin-top: 8px;
}

/* Ball — the actual round device representation */
.body-tile.ball .body-frame { background: var(--am-forest-deep); }
.body-tile.ball .body-icon {
  width: 200px; height: 200px;
  background:
    radial-gradient(circle at 35% 30%, #fff 0%, var(--am-sage) 25%, var(--am-forest) 65%, var(--am-forest-deep) 100%);
  border-radius: 50%;
  font-size: 0;
  position: relative;
  animation: pulse-glow 4s ease-in-out infinite;
}
.body-tile.ball .body-icon::before {
  content: ''; position: absolute; inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(245,243,238,0.6);
  animation: shimmer 3s ease-in-out infinite;
}

/* Max AI node — the brain — floats above the trio */
.max-node-wrap {
  position: absolute;
  left: 50%; top: 32%;
  transform: translate(-50%, -50%);
  z-index: 6;
  animation: float-slow 5s ease-in-out infinite;
}
.max-node {
  width: 220px; height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--am-forest-soft), var(--am-forest) 45%, var(--am-forest-deep) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--am-cream);
  box-shadow: var(--glow-forest);
  position: relative;
}
.max-node::before, .max-node::after {
  content: ''; position: absolute; inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(122,152,136,0.18);
}
.max-node::after { inset: -48px; border-color: rgba(122,152,136,0.10); }
.max-node .label {
  font-size: 40px; font-weight: 400; letter-spacing: -0.01em;
}
.max-node .tag {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  margin-top: 8px; color: rgba(245,243,238,0.75);
}

/* SVG lines from Max node to each body */
.s6 .connections {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}
.s6 .connections path {
  fill: none;
  stroke: var(--am-sage);
  stroke-width: 2;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  opacity: 0.5;
}
.in-view .s6 .connections path {
  animation: draw 1500ms 400ms cubic-bezier(.5,0,.2,1) forwards;
}

.s6 .meet-caption {
  position: absolute;
  bottom: 100px; left: 96px; right: 96px;
  text-align: center;
  font-size: 20px; font-style: italic;
  color: var(--ink-sec);
}

/* ============================================================
   SLIDE 7 — Mind map around Max the ball (REVISED)
   ============================================================ */
.mindmap-stage {
  position: absolute;
  top: 200px; left: 0; right: 0; bottom: 100px;
  display: flex; align-items: center; justify-content: center;
}
.mindmap {
  position: relative;
  width: 1700px; height: 780px;
}

/* Connecting SVG canvas */
.mindmap-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.mindmap-lines path {
  fill: none;
  stroke: var(--am-sage);
  stroke-width: 1.5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: 0.55;
}
.in-view .mindmap-lines path {
  animation: draw 2000ms 400ms cubic-bezier(.5,0,.2,1) forwards;
}

/* Centre — Max the ball */
.mindmap-centre {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.mindmap-ball {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: url('images/slide-07-ball-centre.png?v=13') center center/contain no-repeat;
  box-shadow: var(--glow-forest);
  position: relative;
  animation: pulse-glow 4s ease-in-out infinite;
}
.mindmap-ball::before, .mindmap-ball::after {
  content: ''; position: absolute; inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(122,152,136,0.18);
}
.mindmap-ball::after { inset: -56px; border-color: rgba(122,152,136,0.10); }
.mindmap-ball::before, .mindmap-ball::after {
  content: ''; position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(122,152,136,0.18);
}
.mindmap-ball::after { inset: -60px; border-color: rgba(122,152,136,0.10); }
.mindmap-centre .label {
  position: absolute;
  bottom: -38px; left: 50%; transform: translateX(-50%);
  font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--am-forest-deep); font-weight: 600;
  white-space: nowrap;
}

/* Branch nodes — 8 around the ball */
.branch {
  position: absolute;
  width: 280px;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-left: 3px solid var(--am-forest);
  padding: 16px 20px;
  border-radius: 4px;
  box-shadow: var(--depth-2);
  z-index: 4;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.branch:hover { transform: translateY(-4px); box-shadow: var(--depth-3); }
.branch .b-icon {
  width: 28px; height: 28px;
  color: var(--am-forest);
  margin-bottom: 8px;
}
.branch .b-icon .lucide { width: 100%; height: 100%; stroke-width: 1.4; }
.branch .b-title {
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-pri);
  font-weight: 600;
  margin-bottom: 8px;
}
.branch .b-quote {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-sec);
  line-height: 1.4;
}

/* 8-position clock layout — pushed further from centre for breathing room */
.branch.p12 { top: -30px;  left: 50%; transform: translateX(-50%); }
.branch.p1  { top: 30px;   right: 80px;  }
.branch.p3  { top: 50%;    right: -40px; transform: translateY(-50%); }
.branch.p5  { bottom: 30px; right: 80px; }
.branch.p6  { bottom: -30px; left: 50%; transform: translateX(-50%); }
.branch.p7  { bottom: 30px; left: 80px; }
.branch.p9  { top: 50%;    left: -40px;  transform: translateY(-50%); }
.branch.p11 { top: 30px;   left: 80px;  }

/* Strap for s7 */
.s7 .strap {
  position: absolute;
  bottom: 50px; left: 96px; right: 96px;
  text-align: center;
  font-size: 18px; font-style: italic;
  color: var(--am-forest-deep);
  z-index: 6;
}

/* Hide old bubble layout */
.bubble-canvas, .max-silhouette { display: none !important; }

/* OLD bubble styles kept for reference but unused: */
.s7 { }
.s7 .ask-headline {
  position: absolute; top: 96px; left: 96px; right: 96px;
  display: flex; flex-direction: column; gap: 16px;
}
.s7 .ask-headline h2 {
  font-size: 48px; line-height: 1.15; font-weight: 400; margin: 0;
  max-width: 1400px; letter-spacing: -0.012em;
}

.bubble-canvas {
  position: absolute;
  top: 280px; left: 96px; right: 96px; bottom: 120px;
}
.bubble {
  position: absolute;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-left: 3px solid var(--am-forest);
  padding: 18px 24px;
  border-radius: 16px;
  max-width: 360px;
  box-shadow: var(--depth-2);
  animation: float-slow 6s ease-in-out infinite;
}
.bubble.service { border-left-color: var(--acc-slate-deep); }
.bubble .quote {
  font-size: 15px; line-height: 1.5; color: var(--ink-pri);
  font-style: italic;
}
.bubble .persona {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mut); margin-top: 8px;
}

/* Positions for 10 bubbles */
.b1 { top: 0; left: 4%; animation-delay: 0s; }
.b2 { top: 8%; left: 32%; animation-delay: 0.5s; }
.b3 { top: 2%; left: 58%; animation-delay: 1s; }
.b4 { top: 14%; right: 6%; animation-delay: 1.5s; }
.b5 { top: 36%; left: 12%; animation-delay: 0.3s; }
.b6 { top: 44%; left: 44%; animation-delay: 0.8s; }
.b7 { top: 38%; right: 14%; animation-delay: 1.3s; }
.b8 { top: 66%; left: 6%; animation-delay: 0.7s; }
.b9 { top: 70%; left: 38%; animation-delay: 1.2s; }
.b10 { top: 68%; right: 8%; animation-delay: 0.4s; }

.s7 .max-silhouette {
  position: absolute;
  bottom: 70px; right: 96px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--am-forest-soft), var(--am-forest-deep) 100%);
  box-shadow: var(--glow-sage);
}

.s7 .strap {
  position: absolute;
  bottom: 80px; left: 96px;
  font-size: 16px; font-style: italic;
  color: var(--ink-sec);
  max-width: 1200px;
}

/* ============================================================
   SLIDE 8 — How it works (image-left / steps-right, coffee scenario)
   ============================================================ */
.s8 .left-photo {
  position: absolute;
  top: 96px; left: 96px; bottom: 96px;
  width: 720px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%),
    url('images/slide-08-coffee-team.png?v=10') center 30%/cover no-repeat;
  box-shadow: var(--depth-3);
  overflow: hidden;
}
.s8 .left-photo .coffee-icon,
.s8 .left-photo .ph-label { display: none; }
.s8 .left-photo .ph-label {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245,243,238,0.30); margin-top: 24px;
}
.s8 .left-photo .moment {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(245,243,238,0.10);
}
.s8 .left-photo .moment .time {
  font-size: 11px; letter-spacing: 0.20em; color: var(--am-sage);
  text-transform: uppercase;
}
.s8 .left-photo .moment .desc {
  font-size: 18px; color: var(--am-cream); margin-top: 6px;
}

.coffee-icon {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(122,152,136,0.10);
  border: 1px dashed rgba(122,152,136,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}

.s8 .right-flow {
  position: absolute;
  top: 96px; right: 96px;
  width: 880px; bottom: 96px;
  display: flex; flex-direction: column;
}
.s8 .right-flow h2 { font-size: 36px; font-weight: 400; margin: 0 0 28px; letter-spacing: -0.012em; }

.flow-step {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-left: 3px solid var(--am-forest);
  border-radius: 4px;
  padding: 18px 24px;
  margin-bottom: 14px;
  display: flex; gap: 20px;
  box-shadow: var(--depth-1);
}
.flow-step .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--am-forest);
  color: var(--am-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  flex-shrink: 0;
}
.flow-step .label {
  font-size: 16px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--am-forest); font-weight: 500;
  margin-bottom: 6px;
}
.flow-step .transcript {
  font-size: 14px; line-height: 1.5; color: var(--ink-sec); font-style: italic;
}
.flow-step .transcript strong { font-style: normal; color: var(--ink-pri); font-weight: 500; }

.s8 .strap {
  margin-top: 24px;
  font-size: 15px; font-style: italic;
  color: var(--ink-sec);
  padding-top: 16px;
  border-top: 1px solid var(--srf-rule);
}

/* ============================================================
   SLIDE 9 — Benefits (3 cards)
   ============================================================ */
.s9 .benefit-headline {
  position: absolute; top: 140px; left: 96px; right: 96px;
}
.s9 .benefit-headline h2 {
  font-family: var(--font-sans);
  font-size: 52px; line-height: 1.1; font-weight: 400; margin: 0;
  letter-spacing: -0.015em;
  color: var(--ink-pri);
  text-align: center;
  max-width: 1500px; margin-inline: auto;
}
.s9 .benefit-headline h2 strong { color: var(--am-forest); font-weight: 500; }

.benefit-cards {
  position: absolute;
  top: 420px; left: 96px; right: 96px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.benefit-card {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--depth-2);
  overflow: hidden;
  font-family: var(--font-sans);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--am-sage), var(--am-forest));
}
.benefit-card .who {
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mut); font-weight: 500;
  margin-bottom: 20px;
}
.benefit-card .what {
  font-family: var(--font-sans);
  font-size: 38px; font-weight: 500; color: var(--am-forest-deep);
  margin-bottom: 28px; letter-spacing: -0.018em; line-height: 1.05;
}
.benefit-card .body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.55; color: var(--ink-sec);
}
.benefit-card .body strong {
  color: var(--ink-pri); font-weight: 500;
}

.s9 .strap {
  position: absolute;
  bottom: 70px; left: 96px; right: 96px;
  text-align: center;
  font-size: 38px; line-height: 1.2; font-weight: 400;
  color: var(--am-forest-deep);
  letter-spacing: -0.015em;
}
.s9 .strap strong { color: var(--am-forest); font-weight: 500; }

/* ============================================================
   SLIDE 10 — Differentiation
   ============================================================ */
.s10 .diff-headline {
  position: absolute; top: 96px; left: 96px; right: 96px;
}
.s10 .diff-headline h2 {
  font-size: 44px; line-height: 1.1; font-weight: 400; margin: 24px 0 0;
  max-width: 1500px;
}

.diff-table {
  position: absolute;
  top: 350px; left: 96px; right: 96px;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 8px;
  box-shadow: var(--depth-2);
  overflow: hidden;
}
.diff-row {
  display: grid;
  grid-template-columns: 2.4fr 0.9fr 0.9fr 0.9fr 1.6fr;
  align-items: center;
}
.diff-row > div { padding: 12px 18px; }
.diff-row.head {
  border-bottom: 2px solid var(--am-forest);
  background: var(--srf-page);
}
.diff-row.head > div {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mut); font-weight: 500;
  text-align: center;
}
.diff-row.head > div:first-child { text-align: left; }
.diff-row.head .col-max {
  background: var(--am-forest);
  color: var(--am-cream);
  font-weight: 500;
}
.diff-row + .diff-row { border-top: 1px solid var(--srf-rule); }
.diff-row .col-q { font-size: 14px; color: var(--ink-pri); font-style: italic; }
.diff-row .col-q.plain { font-style: normal; }
.diff-row .col-p, .diff-row .col-w, .diff-row .col-a {
  font-size: 14px; color: var(--ink-sec); text-align: center;
  font-variant-numeric: tabular-nums;
}
.diff-row .col-max {
  background: rgba(122,152,136,0.10);
  font-size: 14px; color: var(--am-forest-deep); font-weight: 500;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.diff-row .check { color: var(--am-forest); font-size: 18px; }
.diff-row .cross { color: var(--ink-mut); font-size: 16px; }
.diff-row.total {
  background: var(--srf-page);
  border-top: 2px solid var(--am-forest);
}
.diff-row.total > div {
  font-size: 14px; font-weight: 500; color: var(--ink-pri);
  padding: 18px 18px;
}
.diff-row.total .col-q { font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; color: var(--ink-mut); }
.diff-row.total .col-p, .diff-row.total .col-w, .diff-row.total .col-a {
  font-size: 18px; color: var(--ink-pri); font-weight: 500;
}
.diff-row.total .col-max {
  font-size: 22px;
  color: var(--am-forest-deep);
  background: var(--am-sage-tint);
  font-weight: 600;
}

.s10 .strap {
  position: absolute;
  bottom: 70px; left: 96px; right: 96px;
  text-align: center;
  font-size: 36px; line-height: 1.2; font-weight: 400;
  color: var(--am-forest-deep);
  letter-spacing: -0.015em;
}
.s10 .strap strong { color: var(--am-forest); font-weight: 500; }

/* ============================================================
   SLIDE 11 — Architecture (pipeline)
   ============================================================ */
.s11 .arch-headline {
  position: absolute; top: 80px; left: 96px; right: 96px;
}
.s11 .arch-headline h2 {
  font-size: 36px; line-height: 1.15; font-weight: 400; margin: 16px 0 0;
  max-width: 1500px;
}
.s11 .arch-headline h2 strong { color: var(--am-forest); }

/* Pipeline — 4 columns of richer vector tiles */
.pipeline {
  position: absolute;
  top: 270px; left: 96px; right: 96px;
  display: grid;
  grid-template-columns: 1.3fr 40px 1fr 40px 1.6fr 40px 1.1fr;
  gap: 12px;
  align-items: stretch;
  height: 480px;
}

.arch-col {
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.arch-col .col-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mut);
  font-weight: 600;
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--srf-rule);
}

.arch-arrow {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding-top: 28px;
}
.arch-arrow::after {
  content: '→'; font-size: 28px; color: var(--am-forest);
}
.arch-arrow.bidi::after { content: '↔'; color: var(--am-sage); }

/* Rich tile — used for every node in the pipeline */
.arch-tile {
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-left: 3px solid var(--am-forest);
  border-radius: 4px;
  padding: 14px 16px;
  flex: 1;
  display: flex; flex-direction: column;
  box-shadow: var(--depth-1);
  min-height: 0;
}
.arch-tile .tile-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.phase-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--am-forest);
  background: var(--am-sage-tint);
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}
.phase-tag.late {
  color: var(--ink-mut);
  background: rgba(229,224,216,0.6);
  border: 1px dashed var(--srf-rule);
}
.arch-tile.future {
  opacity: 0.78;
  border-left-style: dashed;
}
.arch-tile .tile-icon {
  width: 22px; height: 22px;
  color: var(--am-forest);
  flex-shrink: 0;
}
.arch-tile .tile-icon .lucide { width: 100%; height: 100%; stroke-width: 1.5; }
.arch-tile .tile-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-pri);
  letter-spacing: -0.005em;
}
.arch-tile .tile-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--am-forest);
  font-weight: 500;
  margin-bottom: 8px;
}
.arch-tile .tile-detail {
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-sec);
}
.arch-tile.customer { border-left-color: var(--am-sage); }
.arch-tile.customer .tile-icon { color: var(--am-sage); }
.arch-tile.customer .tile-role { color: var(--am-forest-deep); }

/* Max — the brain — gets the hero tile */
.arch-tile.max-tile {
  background: var(--am-forest);
  color: var(--am-cream);
  border: 1px solid var(--am-forest-deep);
  border-left: 3px solid var(--am-sage);
  box-shadow: var(--depth-2), var(--glow-sage);
  justify-content: center;
  text-align: center;
  align-items: center;
}
.arch-tile.max-tile .tile-head { justify-content: center; }
.arch-tile.max-tile .tile-icon { color: var(--am-sage); }
.arch-tile.max-tile .tile-name { color: var(--am-cream); font-size: 30px; }
.arch-tile.max-tile .tile-role { color: var(--am-sage); font-size: 11px; }
.arch-tile.max-tile .tile-detail { color: rgba(245,243,238,0.85); text-align: center; }

.s11 .strap-block {
  position: absolute;
  bottom: 60px; left: 96px; right: 96px;
  text-align: center;
}
.s11 .strap-block .top {
  font-size: 44px; font-weight: 400; color: var(--am-forest-deep);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.s11 .strap-block .top strong { color: var(--am-forest); font-weight: 500; }
.s11 .strap-block .bot {
  font-size: 18px; font-style: italic; color: var(--ink-sec);
}

/* ============================================================
   SLIDE 12 — When Max grows up (laptop scenario)
   ============================================================ */
.s12 .left-photo {
  position: absolute;
  top: 96px; left: 96px; bottom: 96px;
  width: 580px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.65) 100%),
    url('images/slide-12-max-at-desk.png?v=10') center 30%/cover no-repeat;
  box-shadow: var(--depth-3);
  overflow: hidden;
}
.s12 .left-photo .ph-label { display: none; }
.s12 .left-photo .moment {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(245,243,238,0.08);
}
.s12 .left-photo .moment .time {
  font-size: 11px; letter-spacing: 0.20em; color: var(--am-sage);
  text-transform: uppercase;
}
.s12 .left-photo .moment .desc {
  font-size: 18px; color: var(--am-cream); margin-top: 6px;
}
.s12 .left-photo .ph-label {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,243,238,0.20); text-align: center;
}

.s12 .right-chat {
  position: absolute;
  top: 96px; right: 96px; bottom: 96px;
  width: 1020px;
  display: flex; flex-direction: column;
}
.s12 .right-chat h2 {
  font-size: 36px; font-weight: 400; margin: 0 0 24px;
  letter-spacing: -0.012em;
}
.s12 .chat-stream {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}
.chat-turn {
  padding: 14px 20px;
  border-radius: 12px;
  max-width: 760px;
  font-size: 14px; line-height: 1.5;
}
.chat-turn.user {
  background: var(--acc-slate-deep);
  color: var(--am-cream);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.chat-turn.max {
  background: var(--am-forest);
  color: var(--am-cream);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: var(--depth-1);
}
.chat-turn .who {
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 6px;
}

/* ============================================================
   SLIDE 13 — Prototype cost
   ============================================================ */
.s13 .stage {
  background:
    radial-gradient(ellipse at 50% 30%, var(--am-sage-tint) 0%, transparent 55%),
    var(--srf-page);
}
.s13 .ask-eyebrow {
  position: absolute; top: 96px; left: 96px;
}
.s13 .figure-block {
  position: absolute;
  top: 250px; left: 96px;
  z-index: 3;
}
.s13 .figure-label {
  font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mut);
}
.s13 .figure {
  font-size: 280px; line-height: 1; font-weight: 400;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--am-forest-deep) 0%, var(--am-forest) 60%, var(--am-sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 0;
}
.s13 .figure-sub {
  font-size: 22px; color: var(--ink-sec); margin-top: 16px;
  max-width: 900px; line-height: 1.5;
}

.s13 .scope-card {
  position: absolute;
  top: 250px; right: 96px;
  width: 540px;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--depth-3);
}
.s13 .scope-card h3 {
  font-size: 14px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-mut); margin: 0 0 24px;
}
.scope-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--srf-rule);
}
.scope-row:last-child { border-bottom: 0; }
.scope-row .k { font-size: 14px; color: var(--ink-sec); }
.scope-row .v { font-size: 24px; color: var(--am-forest-deep); font-weight: 500; }

.timeline {
  position: absolute;
  bottom: 170px; left: 96px; right: 96px;
  height: 90px;
  background: var(--srf-card);
  border: 1px solid var(--srf-border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: var(--depth-2);
}
.timeline-step {
  padding: 16px 20px;
  border-right: 1px solid var(--srf-rule);
  display: flex; flex-direction: column; justify-content: center;
}
.timeline-step:last-child { border-right: 0; }
.timeline-step .week {
  font-size: 11px; letter-spacing: 0.20em; color: var(--am-forest); text-transform: uppercase;
  font-weight: 500;
}
.timeline-step .what {
  font-size: 14px; color: var(--ink-pri); margin-top: 4px;
  line-height: 1.3;
}

.s13 .strap {
  position: absolute;
  bottom: 80px; left: 96px; right: 96px;
  text-align: center;
  font-size: 18px; font-style: italic;
  color: var(--am-forest-deep);
}

/* ============================================================
   Image placeholder utility (shared)
   ============================================================ */
.ph-img {
  background:
    repeating-linear-gradient(45deg,
      rgba(122,152,136,0.06) 0,
      rgba(122,152,136,0.06) 12px,
      rgba(122,152,136,0.10) 12px,
      rgba(122,152,136,0.10) 24px);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(122,152,136,0.40);
  color: var(--am-forest-deep);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
