@font-face {
  font-family: "Manrope Deck";
  src: url("./assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Deck";
  src: url("./assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Deck";
  src: url("./assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Deck";
  src: url("./assets/fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 760;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Deck";
  src: url("./assets/fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 840;
  font-style: normal;
  font-display: swap;
}

:root {
  --deck-scale: 1;
  --navy: #06041f;
  --ink: #121021;
  --paper: #f3effa;
  --paper-strong: #f8f8ff;
  --lavender: #e9e5f9;
  --lavender-strong: #cec8f9;
  --purple: #5935e9;
  --purple-dark: #3412a6;
  --pink: #ec4899;
  --teal: #14b8a6;
  --gold: #f9c152;
  --gold-soft: #fef3c7;
  --muted: #6e6a8b;
  --hairline: #d4c5e6;
  --dark-hairline: rgba(248, 248, 255, 0.14);
  --white-soft: rgba(248, 248, 255, 0.88);
  --white-muted: rgba(248, 248, 255, 0.66);
  --shadow: 0 30px 80px rgba(6, 4, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #151515;
}

body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overscroll-behavior: none;
  font-family: "Manrope Deck", Manrope, Inter, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  user-select: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(89, 53, 233, 0.2), transparent 34%),
    linear-gradient(135deg, #101010 0%, #191919 100%);
}

@page {
  size: 1280px 720px;
  margin: 0;
}

.deck {
  position: relative;
  width: 1280px;
  height: 720px;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  outline: none;
  transform: translateZ(0) scale(var(--deck-scale));
  transform-origin: center center;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
}

.slide {
  position: absolute;
  inset: 0;
  width: 1280px;
  height: 720px;
  overflow: hidden;
  padding: 52px 72px 46px;
  break-after: page;
  page-break-after: always;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(34px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 260ms ease;
}

.slide:last-child {
  break-after: auto;
  page-break-after: auto;
}

.presentation-app:not(.is-ready) .slide:first-child,
.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.slide.is-before {
  transform: translateX(-34px);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.018;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.slide::after {
  content: "";
  position: absolute;
  inset: auto 54px 28px 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 53, 233, 0.42), transparent);
  opacity: 0.6;
}

.slide-dark {
  background:
    radial-gradient(circle at 78% 16%, rgba(89, 53, 233, 0.22), transparent 26%),
    radial-gradient(circle at 12% 86%, rgba(20, 184, 166, 0.12), transparent 30%),
    linear-gradient(135deg, #080520 0%, #06041f 58%, #0d0930 100%);
  color: var(--paper-strong);
}

.slide-paper {
  background:
    radial-gradient(circle at 86% 18%, rgba(89, 53, 233, 0.11), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(20, 184, 166, 0.08), transparent 28%),
    linear-gradient(135deg, #f8f8ff 0%, #f3effa 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 32px;
  font-size: 14px;
  font-weight: 840;
  letter-spacing: 0;
  color: var(--navy);
}

.brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.mark-light {
  color: var(--paper-strong);
}

.mark-light img {
  filter: brightness(0) invert(1);
}

.slide-rule {
  position: absolute;
  top: 54px;
  left: 72px;
  right: 72px;
  height: 1px;
  background: var(--hairline);
  opacity: 0.8;
}

.slide-dark .slide-rule {
  background: var(--dark-hairline);
  opacity: 1;
}

.kicker {
  margin: 24px 0 18px;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.slide-dark .kicker {
  color: #c9b1ff;
}

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

h1 {
  font-size: 114px;
  line-height: 0.92;
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.ode {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #6b45ff;
}

.slide-dark .ode {
  color: #c9b1ff;
}

.inline {
  font-size: 1.05em;
}

.lead {
  max-width: 670px;
  margin-top: 28px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 650;
  color: var(--white-soft);
}

.subline {
  margin-top: 24px;
  font-size: 21px;
  line-height: 1.35;
  color: var(--white-muted);
}

.body-large {
  max-width: 640px;
  margin-top: 24px;
  font-size: 23px;
  line-height: 1.42;
  font-weight: 500;
  color: rgba(18, 16, 33, 0.72);
}

.slide-dark .body-large {
  color: var(--white-muted);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 42px;
  margin-top: 20px;
}

.section-head.wide {
  grid-template-columns: 1fr 430px;
}

.section-head p {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--muted);
}

footer {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 650;
  color: rgba(18, 16, 33, 0.48);
}

.slide-dark footer {
  color: rgba(248, 248, 255, 0.52);
}

/* Slide 01 */
.slide-cover {
  padding-top: 48px;
}

.cover-grid {
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 64px;
  align-items: center;
  height: 452px;
  margin-top: 46px;
}

.cover-copy .kicker {
  margin-top: 0;
}

.cover-visual {
  position: relative;
  height: 430px;
}

.travel-photo {
  position: absolute;
  inset: 0 0 74px 52px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.travel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 4, 31, 0.02), rgba(6, 4, 31, 0.68));
}

.live-card {
  position: absolute;
  right: 34px;
  bottom: 0;
  width: 340px;
  padding: 28px 30px;
  border-radius: 32px;
  background: rgba(248, 248, 255, 0.95);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.live-card h2 {
  margin-top: 20px;
  font-size: 31px;
  line-height: 1.08;
}

.live-card p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
  color: rgba(18, 16, 33, 0.6);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill.teal {
  background: rgba(20, 184, 166, 0.14);
  color: #0f766e;
}

.journey-strip {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 86px;
  display: grid;
  grid-template-columns: 190px 1fr 214px 1fr 168px 1fr 136px;
  align-items: center;
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(248, 248, 255, 0.16);
  background: rgba(248, 248, 255, 0.08);
  font-size: 14px;
  font-weight: 840;
  color: var(--white-soft);
}

.strip-item.active {
  background: var(--purple);
  border-color: var(--purple);
}

.strip-item.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.strip-line {
  height: 1px;
  background: rgba(248, 248, 255, 0.22);
}

/* Slide 02 */
.two-col {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 64px;
}

.insight-layout {
  margin-top: 38px;
  align-items: start;
}

.formula-card {
  width: 404px;
  margin-top: 46px;
  padding: 26px 30px;
  border: 1px solid rgba(248, 248, 255, 0.16);
  border-radius: 32px;
  background: rgba(248, 248, 255, 0.08);
}

.formula-card span {
  display: block;
  font-size: 14px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.formula-card strong {
  display: block;
  margin-top: 12px;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
}

.rebuild-stack {
  position: relative;
  height: 480px;
}

.rebuild-stack::before {
  content: "";
  position: absolute;
  top: 74px;
  bottom: 80px;
  left: 252px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(248, 248, 255, 0.3), transparent);
}

.tool-card {
  position: absolute;
  width: 282px;
  padding: 23px 24px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  border-radius: 28px;
  background: rgba(248, 248, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.tool-card small {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 840;
  color: #c9b1ff;
}

.tool-card h3 {
  font-size: 21px;
}

.tool-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
  color: var(--white-muted);
}

.offset-a { left: 4px; top: 0; }
.offset-b { right: 14px; top: 92px; }
.offset-c { left: 34px; top: 232px; }
.offset-d { right: 0; bottom: 2px; }

/* Slide 03 */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 84px;
}

.alt-card {
  height: 250px;
  padding: 22px 24px;
  border: 1px solid var(--hairline);
  border-radius: 30px;
  background: rgba(248, 248, 255, 0.78);
  box-shadow: 0 24px 80px rgba(6, 4, 31, 0.08);
}

.dot {
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.lavender { background: var(--lavender-strong); }
.pink { background: var(--pink); }
.gold { background: var(--gold); }
.teal-dot { background: var(--teal); }

.alt-card h3 {
  min-height: 50px;
  font-size: 21px;
}

.alt-card .muted {
  margin-top: 14px;
  min-height: 34px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 650;
  color: var(--muted);
}

.alt-card strong {
  display: block;
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.26;
  color: var(--navy);
}

.bottom-statement {
  position: absolute;
  top: 278px;
  right: 72px;
  width: 430px;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--paper-strong);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 760;
  text-align: left;
}

/* Slide 04 */
.perfect-layout {
  display: grid;
  grid-template-columns: 410px 226px 1fr;
  gap: 42px;
  align-items: center;
  margin-top: 34px;
}

.perfect-copy h2 {
  font-size: 58px;
}

.journey-core {
  position: relative;
  height: 492px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-glow {
  position: absolute;
  width: 240px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 53, 233, 0.42), transparent 68%);
  filter: blur(6px);
}

.core-card {
  position: relative;
  width: 204px;
  min-height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 34px;
  background: rgba(248, 248, 255, 0.96);
  color: var(--navy);
  text-align: center;
  box-shadow: var(--shadow);
}

.core-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-style: italic;
  color: var(--purple);
}

.core-card strong {
  max-width: 130px;
  font-size: 13px;
  line-height: 1.32;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.dark-card {
  min-height: 174px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  background: rgba(248, 248, 255, 0.08);
}

.dark-card p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 650;
  color: var(--white-muted);
}

/* Slide 05 */
.intro-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 78px;
}

.intro-layout h2 {
  font-size: 57px;
}

.product-panel {
  padding: 32px;
  border-radius: 40px;
  background: var(--navy);
  color: var(--paper-strong);
  box-shadow: 0 34px 100px rgba(6, 4, 31, 0.18);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(248, 248, 255, 0.12);
  font-size: 15px;
  font-weight: 760;
  color: var(--white-muted);
}

.panel-top strong {
  margin-left: auto;
  color: var(--teal);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.progress-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.rail-node {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 24px;
  background: rgba(248, 248, 255, 0.08);
  border: 1px solid rgba(248, 248, 255, 0.12);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 840;
  text-align: center;
}

.rail-node.done {
  background: rgba(89, 53, 233, 0.36);
  border-color: rgba(201, 177, 255, 0.45);
}

.rail-node.accent {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric-row div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(248, 248, 255, 0.08);
}

.metric-row small {
  display: block;
  font-size: 12px;
  font-weight: 760;
  color: var(--white-muted);
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.28;
}

.big-punchline {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 86px;
  padding: 26px 32px;
  border: 1px solid var(--hairline);
  border-radius: 30px;
  background: rgba(248, 248, 255, 0.78);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 840;
  color: var(--purple);
}

/* Slide 06 */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.value-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--hairline);
  border-radius: 34px;
  background: rgba(248, 248, 255, 0.8);
  box-shadow: 0 24px 78px rgba(6, 4, 31, 0.08);
}

.value-card.featured {
  background: var(--navy);
  color: var(--paper-strong);
  border-color: var(--navy);
  transform: translateY(-14px);
}

.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 18px;
  background: var(--lavender);
  color: var(--purple);
  font-size: 13px;
  font-weight: 840;
}

.value-card.featured .value-number {
  background: rgba(248, 248, 255, 0.14);
  color: var(--gold);
}

.value-card p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 650;
  color: var(--muted);
}

.value-card.featured p {
  color: var(--white-muted);
}

.mini-flow {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.mini-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(89, 53, 233, 0.1);
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 840;
}

.value-card.featured .mini-flow span {
  background: rgba(248, 248, 255, 0.1);
  color: var(--paper-strong);
}

/* Slide 07 */
.proof-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 62px;
  align-items: center;
  margin-top: 34px;
}

.demo-list {
  display: grid;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.demo-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 50px;
  padding: 10px 18px 10px 12px;
  border-radius: 18px;
  background: rgba(248, 248, 255, 0.08);
  border: 1px solid rgba(248, 248, 255, 0.12);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 760;
  color: var(--white-soft);
}

.demo-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(201, 177, 255, 0.16);
  color: #c9b1ff;
  font-size: 11px;
  font-weight: 840;
}

.demo-panel {
  padding: 22px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  border-radius: 36px;
  background: rgba(248, 248, 255, 0.08);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.2);
}

.demo-toolbar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 22px 22px 0 0;
  background: rgba(248, 248, 255, 0.12);
}

.demo-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(248, 248, 255, 0.36);
}

.demo-toolbar strong {
  margin-left: 12px;
  font-size: 13px;
  color: var(--white-muted);
}

.demo-body {
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 16px;
  min-height: 250px;
  padding: 18px;
  border-radius: 0 0 22px 22px;
  background: rgba(6, 4, 31, 0.34);
}

.demo-main {
  display: grid;
  gap: 14px;
}

.demo-card {
  display: flex;
  align-items: center;
  padding: 0 18px;
  min-height: 64px;
  border-radius: 20px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 840;
}

.lavender-block { background: var(--lavender-strong); }
.teal-block { background: #9ff9cc; }
.gold-block { background: var(--gold); }

.demo-sidebar {
  display: grid;
  gap: 12px;
}

.demo-sidebar span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 18px;
  background: rgba(248, 248, 255, 0.09);
  font-size: 12px;
  font-weight: 760;
  color: var(--white-muted);
  text-align: center;
}

.honesty-note {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(249, 193, 82, 0.12);
  border: 1px solid rgba(249, 193, 82, 0.26);
  color: #ffe3a1;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
}

/* Slide 08 */
.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.objection-card {
  min-height: 174px;
  padding: 27px 30px;
  border: 1px solid var(--hairline);
  border-radius: 30px;
  background: rgba(248, 248, 255, 0.8);
  box-shadow: 0 24px 78px rgba(6, 4, 31, 0.08);
}

.objection-card h3 {
  font-size: 23px;
}

.objection-card p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.46;
  font-weight: 650;
  color: var(--muted);
}

/* Slide 09 */
.slide-ask {
  padding-top: 48px;
}

.ask-layout {
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 46px;
}

.ask-layout h2 {
  font-size: 58px;
}

.ask-steps {
  display: grid;
  gap: 14px;
}

.ask-steps article {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 20px;
  padding: 18px 24px;
  border-radius: 28px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  background: rgba(248, 248, 255, 0.08);
}

.ask-steps span {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(201, 177, 255, 0.16);
  color: #c9b1ff;
  font-size: 13px;
  font-weight: 840;
}

.ask-steps p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 650;
  color: var(--white-muted);
}

.cta-bar {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 28px 0 34px;
  border-radius: 28px;
  background: var(--paper-strong);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.cta-bar span {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 760;
}

.cta-bar strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Calmer 12-slide expansion */
.stack-layout {
  display: grid;
  grid-template-columns: 455px 1fr;
  gap: 74px;
  align-items: center;
  margin-top: 92px;
}

.stack-layout h2 {
  font-size: 54px;
}

.stack-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stack-block {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 26px;
  border: 1px solid var(--hairline);
  border-radius: 26px;
  background: rgba(248, 248, 255, 0.78);
  box-shadow: 0 18px 58px rgba(6, 4, 31, 0.07);
}

.stack-block span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 840;
}

.stack-block strong {
  font-size: 23px;
  line-height: 1.1;
  color: var(--navy);
}

.stack-connector {
  width: 1px;
  height: 18px;
  margin-left: 55px;
  background: var(--hairline);
}

.quiet-statement {
  position: absolute;
  left: 72px;
  right: auto;
  bottom: 66px;
  width: 456px;
  padding: 24px 28px;
  border-radius: 28px;
  background: var(--navy);
  color: var(--paper-strong);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 760;
  text-align: left;
}

.calm-alt {
  margin-top: 56px;
}

.calm-alt .alt-card {
  height: 238px;
}

.bottom-statement.calm {
  top: auto;
  right: 72px;
  bottom: 88px;
  width: 536px;
  padding: 18px 22px;
  font-size: 20px;
}

.value-solo-slide h2 {
  font-size: 70px;
  max-width: 560px;
}

.value-solo-slide.slide-dark .body-large {
  font-size: 21px;
  line-height: 1.32;
}

.value-solo {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 78px;
  align-items: center;
  margin-top: 86px;
}

.value-number.large {
  width: 62px;
  height: 62px;
  margin-bottom: 30px;
  border-radius: 22px;
  font-size: 16px;
}

.dark-number {
  background: rgba(248, 248, 255, 0.14);
  color: var(--gold);
}

.value-visual,
.agent-panel,
.workspace-grid {
  min-height: 384px;
  border-radius: 40px;
}

.value-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  background: rgba(248, 248, 255, 0.78);
  box-shadow: 0 28px 86px rgba(6, 4, 31, 0.1);
}

.single-journey-card {
  width: 366px;
  padding: 34px;
  border-radius: 34px;
  background: var(--navy);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.single-journey-card span {
  display: block;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-style: italic;
  color: #c9b1ff;
}

.single-journey-card strong {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(248, 248, 255, 0.1);
  font-size: 18px;
}

.journey-arrow {
  width: 1px;
  height: 22px;
  margin: 0 0 0 28px;
  background: rgba(248, 248, 255, 0.26);
}

.agent-panel {
  display: grid;
  grid-template-columns: 198px 1fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  background: rgba(248, 248, 255, 0.08);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.18);
}

.agent-ring {
  width: 178px;
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(248, 248, 255, 0.94) 0 44%, transparent 45%),
    conic-gradient(from 220deg, var(--purple), var(--teal), var(--gold), var(--purple));
  color: var(--navy);
  font-size: 25px;
  font-weight: 840;
}

.agent-metrics {
  display: grid;
  gap: 14px;
}

.agent-metrics article {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(248, 248, 255, 0.1);
  border: 1px solid rgba(248, 248, 255, 0.12);
}

.agent-metrics span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9b1ff;
}

.agent-metrics strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
  color: var(--paper-strong);
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--hairline);
  background: rgba(248, 248, 255, 0.78);
  box-shadow: 0 28px 86px rgba(6, 4, 31, 0.1);
}

.workspace-grid article {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 0 22px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--paper-strong);
  font-size: 18px;
  font-weight: 760;
}

.workspace-grid article:nth-child(2),
.workspace-grid article:nth-child(5),
.workspace-grid article:nth-child(8) {
  background: var(--lavender);
  color: var(--purple-dark);
}

.workspace-grid article:nth-child(3),
.workspace-grid article:nth-child(6) {
  background: rgba(20, 184, 166, 0.18);
  color: #0f766e;
}

.demo-path-layout {
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 74px;
  align-items: center;
  margin-top: 72px;
}

.demo-path-layout h2 {
  font-size: 66px;
}

.path-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-items: start;
  min-height: 120px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  background: rgba(248, 248, 255, 0.08);
  color: var(--white-soft);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 760;
}

.path-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 14px;
  background: rgba(201, 177, 255, 0.16);
  color: #c9b1ff;
  font-size: 12px;
  font-weight: 840;
}

.objection-grid.three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.objection-grid.three .objection-card {
  min-height: 260px;
}

/* Slide 10 - Where it's going (motion) */
.motion-layout {
  display: grid;
  grid-template-columns: 432px 1fr;
  gap: 58px;
  align-items: start;
  margin-top: 24px;
}

.motion-copy h2 {
  font-size: 50px;
  line-height: 1.04;
  max-width: 430px;
}

.motion-copy .body-large {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.4;
  max-width: 412px;
}

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

.helper-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  background: linear-gradient(150deg, rgba(248, 248, 255, 0.1), rgba(248, 248, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.helper-head {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.helper-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  animation: helper-pulse 2.6s ease-out infinite;
}

.helper-card.soon .helper-dot {
  background: #c9b1ff;
  animation: none;
}

.helper-tag {
  margin-left: auto;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.helper-tag.live {
  background: rgba(20, 184, 166, 0.16);
  color: #5eead4;
}

.helper-tag.soon {
  background: rgba(201, 177, 255, 0.14);
  color: #c9b1ff;
}

.helper-card h3 {
  font-size: 20px;
  line-height: 1.12;
}

.helper-card p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 650;
  color: var(--white-muted);
}

@keyframes helper-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(20, 184, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

.collab-bar {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
  border-radius: 26px;
  border: 1px solid rgba(248, 248, 255, 0.16);
  background: linear-gradient(120deg, rgba(89, 53, 233, 0.22), rgba(20, 184, 166, 0.12));
}

.collab-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.collab-bar p {
  font-size: 26px;
  line-height: 1.16;
  font-weight: 760;
  color: var(--paper-strong);
}

.collab-ai {
  color: var(--gold);
}

/* Slides 14-15 - The vision capstone */
.eco-title {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.08;
  max-width: 940px;
}

.eco-map {
  position: relative;
  width: 100%;
  height: 330px;
  margin-top: 20px;
}

.eco-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.eco-links line {
  stroke: rgba(160, 124, 255, 0.45);
  stroke-width: 1.4;
  stroke-dasharray: 5 8;
  animation: eco-flow 1.4s linear infinite;
}

@keyframes eco-flow {
  to {
    stroke-dashoffset: -26;
  }
}

.eco-node {
  position: absolute;
  z-index: 1;
  width: 272px;
  padding: 18px 22px;
  border-radius: 26px;
  border: 1px solid rgba(248, 248, 255, 0.16);
  background: linear-gradient(150deg, rgba(36, 27, 72, 0.95), rgba(16, 11, 38, 0.95));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
}

.eco-node.nw { left: 0; top: 0; }
.eco-node.ne { right: 0; top: 0; }
.eco-node.sw { left: 0; bottom: 0; }
.eco-node.se { right: 0; bottom: 0; }

.eco-node h3 {
  font-size: 20px;
}

.eco-node h3 em {
  font-style: normal;
  font-weight: 650;
  font-size: 15px;
  color: var(--white-muted);
}

.eco-node p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.36;
  font-weight: 650;
  color: var(--white-muted);
}

.eco-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
}

.eco-dot.purple { background: #9b7bff; }
.eco-dot.teal { background: var(--teal); }
.eco-dot.gold { background: var(--gold); }
.eco-dot.pink { background: var(--pink); }

.eco-dot.grad {
  width: 11px;
  height: 11px;
  margin-bottom: 0;
  background: conic-gradient(from 200deg, var(--purple), var(--teal), var(--gold), var(--purple));
}

.eco-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-core-glow {
  position: absolute;
  width: 320px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 53, 233, 0.5), transparent 66%);
  filter: blur(8px);
}

.eco-core-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 226px;
  padding: 26px 22px;
  border-radius: 30px;
  background: rgba(248, 248, 255, 0.97);
  color: var(--navy);
  text-align: center;
  box-shadow: var(--shadow);
}

.eco-core-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
  color: var(--purple);
}

.eco-core-card strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 16, 33, 0.66);
}

.eco-foundation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 20px 28px;
  border-radius: 26px;
  border: 1px solid rgba(248, 248, 255, 0.18);
  background: linear-gradient(120deg, rgba(89, 53, 233, 0.26), rgba(20, 184, 166, 0.14));
}

.eco-foundation-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eco-foundation-label strong {
  font-size: 21px;
  color: var(--paper-strong);
}

.eco-foundation-label em {
  font-style: normal;
  font-size: 15px;
  font-weight: 650;
  color: var(--white-muted);
}

.eco-chips {
  display: flex;
  gap: 10px;
}

.eco-chips span {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(248, 248, 255, 0.12);
  border: 1px solid rgba(248, 248, 255, 0.16);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.04em;
  color: var(--paper-strong);
}

/* Slide 15 - maturity rail */
.path-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.path-col {
  min-height: 318px;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid var(--hairline);
  background: rgba(248, 248, 255, 0.82);
  box-shadow: 0 24px 78px rgba(6, 4, 31, 0.08);
}

.path-col.vision {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper-strong);
  transform: translateY(-12px);
  box-shadow: 0 34px 90px rgba(6, 4, 31, 0.22);
}

.path-flag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-col.live .path-flag {
  background: rgba(20, 184, 166, 0.16);
  color: #0f766e;
}

.path-col.build .path-flag {
  background: var(--lavender);
  color: var(--purple-dark);
}

.path-col.vision .path-flag {
  background: rgba(249, 193, 82, 0.18);
  color: var(--gold);
}

.path-col ul {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.path-col li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 650;
  color: var(--ink);
}

.path-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--purple);
}

.path-col.live li::before { background: var(--teal); }
.path-col.build li::before { background: var(--purple); }

.path-col.vision li {
  color: var(--white-soft);
}

.path-col.vision li::before {
  background: var(--gold);
}

.path-note {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 760;
  color: var(--purple-dark);
}

/* Slide 15 - the living system (wow) */
.sys-slide .kicker {
  margin: 16px 0 4px;
}

.sys-head {
  max-width: 760px;
}

.sys-title {
  font-size: 32px;
  line-height: 1.04;
}

.sys-sub {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white-muted);
}

.sys-legend {
  position: absolute;
  top: 60px;
  right: 72px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  color: var(--white-muted);
}

.sys-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pip {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.pip.live { background: var(--teal); }
.pip.build { background: #9b7bff; }
.pip.vision { background: var(--gold); }

.sys-stage {
  position: relative;
  width: 100%;
  height: 452px;
  margin-top: 10px;
}

.sys-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(248, 248, 255, 0.06) 1px, transparent 1.4px);
  background-size: 27px 27px;
  -webkit-mask-image: radial-gradient(ellipse 76% 88% at 50% 46%, #000 48%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 88% at 50% 46%, #000 48%, transparent 100%);
}

.sys-flows {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-glow {
  fill: none;
  stroke: rgba(120, 90, 220, 0.16);
  stroke-width: 7;
}

.flow-line {
  fill: none;
  stroke-width: 1.7;
  stroke-dasharray: 5 9;
  animation: sys-dash 1.1s linear infinite;
}

@keyframes sys-dash {
  to { stroke-dashoffset: -28; }
}

.sys-flow-label {
  position: absolute;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(6, 4, 31, 0.72);
  border: 1px solid rgba(248, 248, 255, 0.12);
  font-size: 11.5px;
  font-weight: 760;
  letter-spacing: 0.02em;
  color: var(--white-soft);
  white-space: nowrap;
}

.sys-flow-label.sup { left: 250px; top: 86px; }
.sys-flow-label.dmc { left: 250px; top: 338px; }
.sys-flow-label.agt { left: 742px; top: 86px; }
.sys-flow-label.trv { left: 742px; top: 338px; }

.sys-pod {
  position: absolute;
  z-index: 2;
  width: 232px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(248, 248, 255, 0.16);
  background: linear-gradient(150deg, rgba(34, 25, 70, 0.96), rgba(14, 10, 34, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.sys-pod.sup { left: 0; top: 8px; }
.sys-pod.dmc { left: 0; bottom: 0; }
.sys-pod.agt { right: 0; top: 8px; }
.sys-pod.trv { right: 0; bottom: 0; }

.sys-pod-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sys-ico {
  width: 26px;
  height: 26px;
}

.sys-pod.sup .sys-ico { color: var(--gold); }
.sys-pod.dmc .sys-ico { color: #c9b1ff; }
.sys-pod.agt .sys-ico { color: #5eead4; }
.sys-pod.trv .sys-ico { color: #f9a8d4; }

.sys-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sys-status.live { background: rgba(20, 184, 166, 0.16); color: #5eead4; }
.sys-status.build { background: rgba(155, 123, 255, 0.18); color: #c9b1ff; }
.sys-status.vision { background: rgba(249, 193, 82, 0.18); color: var(--gold); }

.sys-pod h3 {
  font-size: 19px;
}

.sys-pod h3 em {
  font-style: normal;
  font-weight: 650;
  font-size: 14px;
  color: var(--white-muted);
}

.sys-pod p {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.34;
  font-weight: 650;
  color: var(--white-muted);
}

.sys-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-rings span {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 1px solid rgba(146, 109, 255, 0.5);
  animation: sys-ring 3.6s ease-out infinite;
}

.sys-rings span:nth-child(2) { animation-delay: 1.2s; }
.sys-rings span:nth-child(3) { animation-delay: 2.4s; }

@keyframes sys-ring {
  0% { transform: scale(0.52); opacity: 0.55; }
  80% { opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.sys-core-panel {
  position: relative;
  width: 250px;
  padding: 22px 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(146, 109, 255, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(89, 53, 233, 0.55), transparent 70%),
    linear-gradient(160deg, rgba(26, 18, 60, 0.98), rgba(10, 7, 30, 0.98));
  box-shadow: 0 0 0 6px rgba(89, 53, 233, 0.08), 0 30px 80px rgba(89, 53, 233, 0.3);
}

.sys-core-eyebrow {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: #c9b1ff;
  text-align: center;
}

.sys-modules {
  display: grid;
  gap: 8px;
}

.sys-mod {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(248, 248, 255, 0.07);
  border: 1px solid rgba(248, 248, 255, 0.1);
  font-size: 12px;
  font-weight: 760;
  color: var(--white-soft);
  white-space: nowrap;
}

.sys-mod .pip {
  flex: 0 0 auto;
}

.sys-ticker {
  position: relative;
  margin-top: 14px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(248, 248, 255, 0.12);
  background: rgba(6, 4, 31, 0.5);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.sys-ticker-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  white-space: nowrap;
  animation: sys-marquee 26s linear infinite;
}

@keyframes sys-marquee {
  to { transform: translateX(-50%); }
}

.sys-ticker-track span {
  font-family: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(201, 177, 255, 0.78);
}

.sys-ticker-track span::before {
  content: "\203A";
  margin-right: 10px;
  color: var(--teal);
}

/* Slide 14 - sequence diagram (one change keeps the trip accurate) */
.seq-slide .kicker {
  margin: 16px 0 4px;
}

.seq-head {
  max-width: 840px;
}

.seq-title {
  font-size: 34px;
  line-height: 1.04;
}

.seq-sub {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white-muted);
}

.seq-legend {
  position: absolute;
  top: 60px;
  right: 72px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 760;
  color: var(--white-muted);
}

.seq-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.seq-stage {
  position: relative;
  height: 446px;
  margin-top: 12px;
}

.seq-lanes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
}

.seq-lane {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 14px;
  border: 1px solid rgba(248, 248, 255, 0.16);
  background: rgba(248, 248, 255, 0.06);
  font-size: 13px;
  font-weight: 760;
  color: var(--white-soft);
  white-space: nowrap;
}

.seq-lane.sup { left: 100px; }
.seq-lane.dmc { left: 334px; }
.seq-lane.jrn {
  left: 568px;
  background: rgba(89, 53, 233, 0.22);
  border-color: rgba(146, 109, 255, 0.45);
}
.seq-lane.agt { left: 802px; }
.seq-lane.trv { left: 1036px; }

.seq-ldot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.seq-lane.sup .seq-ldot { background: #f9c152; }
.seq-lane.dmc .seq-ldot { background: #c9b1ff; }
.seq-lane.jrn .seq-ldot { background: #b89bff; }
.seq-lane.agt .seq-ldot { background: #5eead4; }
.seq-lane.trv .seq-ldot { background: #f472b6; }

.seq-tag {
  font-style: normal;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 840;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seq-tag.live { background: rgba(20, 184, 166, 0.16); color: #5eead4; }
.seq-tag.build { background: rgba(155, 123, 255, 0.18); color: #c9b1ff; }
.seq-tag.vision { background: rgba(249, 193, 82, 0.18); color: var(--gold); }
.seq-tag.core { background: rgba(146, 109, 255, 0.24); color: #c9b1ff; }

.seq-body {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  bottom: 0;
}

.seq-life {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 1px dashed rgba(248, 248, 255, 0.14);
}

.seq-life.sup { left: 100px; }
.seq-life.dmc { left: 334px; }
.seq-life.jrn {
  left: 568px;
  border-left: 1px solid rgba(146, 109, 255, 0.45);
  box-shadow: 0 0 26px rgba(89, 53, 233, 0.4);
  animation: seq-glow 3.4s ease-in-out infinite;
}
.seq-life.agt { left: 802px; }
.seq-life.trv { left: 1036px; }

@keyframes seq-glow {
  0%, 100% { box-shadow: 0 0 18px rgba(89, 53, 233, 0.26); }
  50% { box-shadow: 0 0 32px rgba(89, 53, 233, 0.5); }
}

.seq-msg {
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
}

.seq-num {
  position: absolute;
  left: 8px;
  top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
  color: var(--navy);
}

.seq-num.sup { background: #f9c152; }
.seq-num.dmc { background: #c9b1ff; }
.seq-num.jrn { background: #b89bff; }
.seq-num.agt { background: #5eead4; }

.seq-conn {
  position: absolute;
  top: 32px;
  height: 0;
  border-top: 1.5px dashed currentColor;
  color: rgba(248, 248, 255, 0.5);
}

.seq-conn.sup { color: #f9c152; }
.seq-conn.dmc { color: #c9b1ff; }
.seq-conn.jrn { color: #b89bff; }
.seq-conn.agt { color: #5eead4; }

.seq-conn::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}

.seq-conn.dir-r::after { right: -2px; transform: rotate(45deg); }
.seq-conn.dir-l::after { left: -2px; transform: rotate(-135deg); }

.seq-cap {
  position: absolute;
  top: 6px;
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--white-muted);
  white-space: nowrap;
}

.seq-cap b {
  margin-right: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12.5px;
  font-weight: 600;
}

.seq-cap.sup b { color: #f9c152; }
.seq-cap.dmc b { color: #c9b1ff; }
.seq-cap.jrn b { color: #c2a9ff; }
.seq-cap.agt b { color: #5eead4; }

.p-supjrn { left: 100px; width: 468px; }
.p-dmcjrn { left: 334px; width: 234px; }
.p-jrnagt { left: 568px; width: 234px; }
.p-agtjrn { left: 568px; width: 234px; }
.p-jrntrv { left: 568px; width: 468px; }

.seq-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(90deg, transparent, rgba(146, 109, 255, 0.12), transparent);
  pointer-events: none;
  animation: seq-scan-move 7s ease-in-out infinite;
}

@keyframes seq-scan-move {
  0% { top: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 340px; opacity: 0; }
}

.seq-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid rgba(248, 248, 255, 0.14);
  background: linear-gradient(120deg, rgba(89, 53, 233, 0.2), rgba(20, 184, 166, 0.1));
  font-size: 16px;
  font-weight: 700;
  color: var(--paper-strong);
}

.seq-foot-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

/* Slide 14 - constellation (real-life cause and effect) */
.con-stage {
  position: relative;
  width: 100%;
  height: 452px;
  margin-top: 8px;
}

.con-sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.con-star {
  fill: rgba(248, 248, 255, 0.55);
  animation: con-twinkle 4s ease-in-out infinite;
}

.con-star:nth-child(odd) { animation-delay: 1.3s; }
.con-star:nth-child(3n) { animation-delay: 2.4s; }

@keyframes con-twinkle {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.7; }
}

.con-edge {
  fill: none;
  stroke-width: 1.3;
}

.con-edge.gold { stroke: rgba(249, 193, 82, 0.45); }
.con-edge.teal { stroke: rgba(20, 184, 166, 0.45); }
.con-edge.rose { stroke: rgba(236, 72, 153, 0.42); }
.con-edge.violet { stroke: rgba(155, 123, 255, 0.45); }
.con-edge.purple { stroke: rgba(146, 109, 255, 0.5); }
.con-edge.faint { stroke: rgba(248, 248, 255, 0.13); stroke-width: 1; }

.con-spark { filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.45)); }

.con-node { position: absolute; }

.con-orb {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #b89bff;
  box-shadow: 0 0 0 4px rgba(146, 109, 255, 0.14), 0 0 18px rgba(146, 109, 255, 0.55);
}

.con-orb.gold { background: #f9c152; box-shadow: 0 0 0 4px rgba(249, 193, 82, 0.14), 0 0 18px rgba(249, 193, 82, 0.6); }
.con-orb.teal { background: #5eead4; box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16), 0 0 18px rgba(20, 184, 166, 0.6); }
.con-orb.rose { background: #f472b6; box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.16), 0 0 18px rgba(236, 72, 153, 0.6); }
.con-orb.violet { background: #b89bff; box-shadow: 0 0 0 4px rgba(155, 123, 255, 0.16), 0 0 18px rgba(155, 123, 255, 0.6); }
.con-orb.purple { background: #b89bff; box-shadow: 0 0 0 4px rgba(146, 109, 255, 0.16), 0 0 18px rgba(146, 109, 255, 0.55); }

.con-node.player .con-orb { width: 17px; height: 17px; }
.con-node.fx .con-orb { width: 12px; height: 12px; }

.con-node.trip .con-orb {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 38% 32%, #ffffff, #b89bff 70%);
  box-shadow: 0 0 0 7px rgba(146, 109, 255, 0.16), 0 0 40px rgba(146, 109, 255, 0.85);
  animation: con-pulse 3.4s ease-in-out infinite;
}

@keyframes con-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(146, 109, 255, 0.14), 0 0 32px rgba(146, 109, 255, 0.7); }
  50% { box-shadow: 0 0 0 11px rgba(146, 109, 255, 0.1), 0 0 48px rgba(146, 109, 255, 0.95); }
}

.con-cap {
  position: absolute;
  left: 0;
  top: 16px;
  transform: translateX(-50%);
  width: 158px;
  text-align: center;
  line-height: 1.18;
}

.con-node.cap-up .con-cap { top: auto; bottom: 16px; }
.con-node.trip .con-cap { top: 26px; width: 184px; }

.con-cap b {
  display: block;
  font-size: 14.5px;
  font-weight: 760;
  color: var(--paper-strong);
  text-shadow: 0 1px 8px rgba(6, 4, 31, 0.92);
}

.con-node.trip .con-cap b { font-size: 16px; }

.con-cap i {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-muted);
  text-shadow: 0 1px 8px rgba(6, 4, 31, 0.92);
}

.presentation-controls {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.nav-button {
  position: fixed;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(248, 248, 255, 0.26);
  border-radius: 999px;
  background: rgba(6, 4, 31, 0.66);
  color: var(--paper-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-button:hover {
  background: rgba(89, 53, 233, 0.92);
  border-color: rgba(248, 248, 255, 0.36);
  transform: translateY(-50%) scale(1.04);
}

.nav-button:focus-visible {
  outline: 3px solid rgba(249, 193, 82, 0.72);
  outline-offset: 4px;
}

.nav-button-prev {
  left: clamp(12px, 2.2vw, 32px);
}

.nav-button-next {
  right: clamp(12px, 2.2vw, 32px);
}

.arrow {
  position: relative;
  width: 14px;
  height: 14px;
}

.arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 1px;
}

.arrow-left::before {
  transform: rotate(-135deg);
}

.arrow-right::before {
  transform: rotate(45deg);
}

.slide-status {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 2.5vh, 24px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(248, 248, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 4, 31, 0.64);
  color: rgba(248, 248, 255, 0.82);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  pointer-events: auto;
  transform: translateX(-50%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.status-divider {
  width: 22px;
  height: 1px;
  background: rgba(248, 248, 255, 0.32);
}

@media print {
  html,
  body {
    background: white;
    display: block;
    height: auto;
    overflow: visible;
  }

  .deck {
    position: static;
    width: 1280px;
    height: auto;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .presentation-controls {
    display: none;
  }
}
