:root {
  --ink: #08151b;
  --ink-2: #10242b;
  --paper: #f2f0e9;
  --muted: #aab9b7;
  --line: rgba(242, 240, 233, 0.16);
  --lime: #c9f45a;
  --teal: #53d6c8;
  --coral: #ff7a6e;
  --blue: #6aa9ff;
  --heading: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #03090c;
  color: var(--paper);
  font-family: var(--body);
  overflow: hidden;
}

button { font: inherit; }

.deck {
  position: absolute;
  inset: 0;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  margin: auto;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: clamp(34px, 4.2vw, 74px) clamp(42px, 5.8vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(83, 214, 200, 0.11), transparent 31%),
    linear-gradient(145deg, var(--ink), #0b1c22 70%, #0d2228);
}

.slide::after {
  content: attr(data-slide);
  position: absolute;
  right: 2.2%;
  bottom: 2.2%;
  color: rgba(242, 240, 233, 0.34);
  font: 600 clamp(10px, 0.9vw, 15px) var(--body);
  letter-spacing: 0.08em;
}

.slide.active { display: block; }

.slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.slide-inner.narrow { width: min(100%, 1050px); margin: 0 auto; text-align: center; }

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(83, 214, 200, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 214, 200, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(83, 214, 200, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 214, 200, 0.06) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

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

h1,
h2,
h3 { font-family: var(--heading); }

h1 {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 1220px;
  font-size: clamp(34px, 4vw, 67px);
  line-height: 1.02;
  letter-spacing: -0.038em;
}

h3 { font-size: clamp(18px, 1.9vw, 30px); line-height: 1.12; }

.accent { color: var(--lime); }

.eyebrow {
  margin-bottom: clamp(16px, 1.8vw, 30px);
  color: var(--teal);
  font-size: clamp(11px, 0.95vw, 16px);
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.subtitle {
  max-width: 800px;
  margin-top: clamp(22px, 2.4vw, 40px);
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 27px);
  line-height: 1.4;
}

.subtitle.small { max-width: 620px; font-size: clamp(15px, 1.35vw, 22px); }
.speaker { margin-top: 30px; color: var(--paper); font-size: clamp(14px, 1.1vw, 18px); font-weight: 700; }
.micro { color: var(--muted); font-size: clamp(12px, 1vw, 17px); line-height: 1.4; }
.caveat { margin-top: 24px; color: var(--muted); font-size: clamp(11px, 0.95vw, 16px); }
.takeaway { margin-top: clamp(24px, 2.7vw, 44px); color: var(--lime); font-size: clamp(16px, 1.45vw, 24px); font-weight: 700; }

.title-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(38px, 5vw, 88px);
  align-items: center;
}

.title-copy { display: flex; flex-direction: column; justify-content: center; }

.title-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
}

.chat-card,
.mini-shortlist {
  position: relative;
  padding: clamp(20px, 2vw, 34px);
  border: 1px solid rgba(242, 240, 233, 0.18);
  border-radius: 24px;
  background: rgba(8, 21, 27, 0.84);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.chat-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -13px;
  width: 24px;
  height: 24px;
  border-right: 1px solid rgba(242, 240, 233, 0.18);
  border-bottom: 1px solid rgba(242, 240, 233, 0.18);
  background: var(--ink);
  transform: rotate(45deg);
}

.chat-label,
.mini-shortlist > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chat-card p { font-size: clamp(17px, 1.5vw, 24px); line-height: 1.35; }
.connector-line { width: 2px; height: 54px; margin: 0 auto; background: linear-gradient(var(--teal), var(--lime)); }
.mini-shortlist { border-color: rgba(201, 244, 90, 0.45); }
.mini-shortlist i { display: block; height: 12px; margin-top: 12px; border-radius: 20px; background: rgba(242, 240, 233, 0.15); }
.mini-shortlist i:nth-of-type(1) { width: 86%; background: rgba(201, 244, 90, 0.45); }
.mini-shortlist i:nth-of-type(2) { width: 68%; }
.mini-shortlist i:nth-of-type(3) { width: 77%; }

.hypothetical-tag {
  position: absolute;
  right: 14px;
  bottom: -38px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 240, 233, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hypothetical-tag.static { position: static; flex: 0 0 auto; align-self: flex-start; }

.journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: clamp(55px, 6vw, 100px);
}

.journey-step {
  min-height: 160px;
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(242, 240, 233, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-step b { color: var(--teal); font-size: 14px; }
.journey-step span { font-size: clamp(16px, 1.5vw, 25px); font-weight: 750; }
.journey-step.spotlight { border-color: var(--lime); background: rgba(201, 244, 90, 0.1); transform: translateY(-14px); }
.journey-step.spotlight b, .journey-step.spotlight span { color: var(--lime); }
.journey-arrow { color: rgba(242, 240, 233, 0.38); font-size: 28px; }

.audience-slide { text-align: center; }
.audience-slide h2 { margin: 0 auto; }
.show-of-hands { display: flex; gap: 22px; justify-content: center; margin: 50px 0 25px; font-size: clamp(44px, 6vw, 90px); }
.show-of-hands span:nth-child(2) { transform: translateY(-20px); }
.prompt { color: var(--lime); font-size: clamp(20px, 2.2vw, 36px); font-weight: 750; }
.audience-slide .micro { margin-top: 22px; }

.split-45 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.contrast-copy { display: grid; gap: 14px; margin-top: 44px; }
.contrast-copy p { padding: 16px 20px; border-left: 4px solid var(--teal); background: rgba(83, 214, 200, 0.08); font-size: clamp(16px, 1.45vw, 24px); }
.contrast-copy span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.contrast-copy .risk { border-left-color: var(--coral); background: rgba(255, 122, 110, 0.09); }
.bottleneck-visual { display: grid; justify-items: center; }
.task-cloud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; width: 100%; }
.task-cloud i { padding: 16px 12px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); font-style: normal; text-align: center; }
.funnel-lines { width: 70%; height: 75px; clip-path: polygon(0 0, 100% 0, 58% 100%, 42% 100%); background: linear-gradient(rgba(83,214,200,.3), rgba(201,244,90,.75)); }
.operator-node { display: grid; place-items: center; width: 115px; height: 115px; border: 2px solid var(--lime); border-radius: 50%; color: var(--lime); font-size: 38px; font-weight: 800; text-align: center; }
.operator-node span { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.thesis-slide { text-align: center; }
.thesis-slide h2 { margin: 0 auto; }
.loop { display: flex; align-items: center; justify-content: center; margin-top: 62px; }
.loop > div { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 184px; min-height: 128px; padding: 16px; border: 1px solid var(--line); border-radius: 24px; background: var(--ink-2); text-align: center; }
.loop > div b { font-size: clamp(14px, 1.15vw, 19px); }
.loop > div small { margin-top: 9px; color: var(--muted); font-size: clamp(10px, .82vw, 13px); line-height: 1.3; }
.loop > span { margin: 0 -4px; color: var(--teal); font-size: 28px; z-index: 2; }
.loop > .human { border-color: var(--lime); color: var(--lime); }
.loop > .human small { color: var(--paper); }
.thesis-line { margin-top: 42px; color: var(--muted); font-size: clamp(16px, 1.5vw, 25px); }

.search-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 46px;
}

.search-panel,
.answer-panel { min-height: 300px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(242,240,233,.035); }
.answer-panel { border-color: rgba(201,244,90,.45); background: rgba(201,244,90,.06); }
.panel-label { margin-bottom: 25px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.search-bar { width: 76%; min-height: 30px; margin-bottom: 22px; padding: 7px 14px; border-radius: 20px; background: rgba(242,240,233,.12); color: var(--muted); font-size: 12px; }
.result-line { display: flex; gap: 16px; align-items: center; margin: 18px 0; }
.result-line b { color: var(--muted); font-size: 13px; }
.result-line span { width: 78%; color: var(--muted); font-size: clamp(11px, .9vw, 15px); }
.search-panel strong, .answer-panel strong { display: block; margin-top: 28px; color: var(--paper); font-size: clamp(16px, 1.35vw, 22px); }
.answer-lines { display: grid; gap: 15px; }
.answer-lines i { height: 12px; border-radius: 8px; background: rgba(242,240,233,.15); }
.answer-lines i:nth-child(2) { width: 82%; }
.answer-lines i:nth-child(3) { width: 92%; }
.answer-lines i:nth-child(4) { width: 68%; }
.answer-example { min-height: 122px; color: var(--paper); font-size: clamp(16px, 1.3vw, 22px); line-height: 1.45; }
.source-pills { display: flex; gap: 8px; margin-top: 25px; }
.source-pills span { padding: 6px 10px; border-radius: 999px; background: rgba(83,214,200,.16); color: var(--teal); font-size: 11px; }

.evidence-ladder { display: grid; justify-items: stretch; gap: 5px; }
.evidence-ladder > div { display: flex; justify-content: space-between; align-items: center; min-height: 70px; padding: 15px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(242,240,233,.04); }
.evidence-ladder > div b { font-size: clamp(16px, 1.35vw, 23px); }
.evidence-ladder > div span { color: var(--muted); font-size: clamp(12px, 1vw, 16px); }
.evidence-ladder > div span { text-align: right; }
.evidence-ladder > div small { display: block; margin-top: 4px; color: var(--paper); font-size: clamp(10px, .82vw, 13px); font-weight: 650; }
.evidence-ladder > i { color: rgba(242,240,233,.35); font-style: normal; text-align: center; }
.evidence-ladder .observed { border-color: var(--teal); background: rgba(83,214,200,.09); }
.evidence-ladder .outcome { border-color: var(--lime); background: rgba(201,244,90,.08); }

.test-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; margin-top: 42px; }
.test-checklist { display: grid; gap: 10px; margin: 0; padding: 0; counter-reset: test; list-style: none; }
.test-checklist li { display: flex; justify-content: space-between; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.test-checklist b { font-size: clamp(14px, 1.15vw, 19px); }
.test-checklist span { color: var(--muted); font-size: clamp(11px, .9vw, 15px); }
.audit-card { position: relative; padding: 42px 30px 25px; border: 1px solid rgba(201,244,90,.4); border-radius: 22px; background: rgba(242,240,233,.05); }
.audit-card p { font-size: clamp(16px, 1.35vw, 22px); line-height: 1.5; }
.audit-card mark { padding: 0 4px; background: rgba(201,244,90,.22); color: var(--lime); }
.illustrative { position: absolute; top: 12px; left: 18px; color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.audit-sources { display: flex; gap: 10px; margin-top: 28px; }
.audit-sources span { padding: 7px 10px; border-radius: 999px; background: rgba(83,214,200,.12); color: var(--teal); font-size: 11px; }
.demo-capture-card { overflow: hidden; border: 1px solid rgba(201,244,90,.45); border-radius: 20px; background: #f4f5f1; }
.demo-capture-card img { display: block; width: 100%; height: 275px; object-fit: cover; object-position: top; }
.demo-caption { display: flex; justify-content: space-between; gap: 15px; padding: 11px 14px; background: var(--ink-2); }
.demo-caption span { color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-caption b { color: var(--paper); font-size: 11px; }
.warning-line { margin-top: 24px; color: var(--coral); font-size: clamp(13px, 1.05vw, 18px); font-weight: 750; }
.demo-finding { display: flex; gap: 18px; align-items: baseline; margin-top: 17px; padding: 12px 16px; border-left: 3px solid var(--lime); background: rgba(201,244,90,.07); }
.demo-finding b { flex: 0 0 auto; color: var(--lime); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.demo-finding span { color: var(--paper); font-size: clamp(11px, .92vw, 15px); line-height: 1.35; }
.demo-finding + .warning-line { margin-top: 12px; }

.gates { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 10px; align-items: center; margin-top: 64px; }
.gates > div { display: flex; flex-direction: column; min-height: 190px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(242,240,233,.035); }
.gates > div span { color: var(--teal); font-size: 12px; font-weight: 800; }
.gates > div b { margin-top: auto; font-size: clamp(19px, 1.65vw, 28px); }
.gates > div small { margin-top: 9px; color: var(--muted); font-size: clamp(11px, .9vw, 15px); line-height: 1.3; }
.gates > i { color: rgba(242,240,233,.34); font-style: normal; font-size: 24px; }
.gates > div:last-of-type { border-color: var(--lime); }

.scoreboard-shift { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; margin-top: 54px; }
.scoreboard { min-height: 210px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; display: flex; flex-direction: column; justify-content: center; }
.scoreboard span { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scoreboard b { margin: 20px 0 10px; font-size: clamp(20px, 2vw, 34px); }
.scoreboard small { color: var(--muted); font-size: clamp(12px, 1vw, 16px); }
.scoreboard.new { border-color: var(--lime); background: rgba(201,244,90,.07); }
.shift-arrow { color: var(--lime); font-size: 32px; }
.scoreboard-shift > p { grid-column: 1 / -1; color: var(--lime); font-size: clamp(16px, 1.4vw, 23px); text-align: center; font-weight: 750; }
.metric-proof { display: none; margin-top: 34px; }
body.evidence-approved-mode .evidence-fallback { display: none; }
body.evidence-approved-mode .evidence-approved { display: block; }
.bars { display: grid; gap: 24px; }
.bar-row { display: grid; grid-template-columns: 170px 1fr 90px; gap: 20px; align-items: center; }
.bar-row span { color: var(--muted); font-size: 17px; }
.bar-row i { display: block; width: var(--value); height: 40px; border-radius: 8px; background: linear-gradient(90deg, var(--teal), var(--lime)); }
.bar-row b { color: var(--lime); font-size: 30px; }
.metric-conclusion { margin-top: 24px; color: var(--lime); font-size: 22px; font-weight: 800; }
.metric-period { margin-top: 8px; color: var(--muted); font-size: 13px; }
.gsc-context { display: flex; align-items: baseline; gap: 14px; margin-top: 15px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(242,240,233,.035); }
.gsc-context b { color: var(--teal); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.gsc-context span { color: var(--paper); font-size: 14px; font-weight: 750; }
.gsc-context small { margin-left: auto; color: var(--muted); font-size: 10px; }

.four-checks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.four-checks article { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(242,240,233,.035); display: flex; flex-direction: column; }
.four-checks article span { color: var(--teal); font-size: 12px; font-weight: 800; }
.four-checks article b { margin-top: auto; color: var(--lime); font-size: clamp(20px, 1.75vw, 29px); }
.four-checks article p { margin-top: 12px; color: var(--muted); font-size: clamp(13px, 1.05vw, 18px); line-height: 1.35; }
.four-checks article small { display: block; margin-top: auto; padding-top: 15px; color: var(--paper); font-size: clamp(11px, .92vw, 15px); font-weight: 650; line-height: 1.35; }

.heading-row { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.heading-row > div:first-child { min-width: 0; }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-top: 34px; }
.page-mock { min-height: 360px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(242,240,233,.035); }
.page-mock > span { color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-mock h3 { margin-top: 16px; }
.mock-hero { height: 78px; margin: 18px 0; border-radius: 10px; background: linear-gradient(120deg, rgba(83,214,200,.16), rgba(242,240,233,.05)); }
.page-mock > p { margin-top: 18px; color: var(--muted); font-size: clamp(11px, .9vw, 15px); line-height: 1.4; }
.page-mock ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); font-size: clamp(11px, .9vw, 15px); line-height: 1.6; }
.page-mock.before { border-color: rgba(255,122,110,.35); }
.page-mock.after { border-color: rgba(201,244,90,.45); }
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 18px; }
.fact-grid i { padding: 10px; border-radius: 9px; background: rgba(201,244,90,.1); color: var(--paper); font-size: 11px; font-style: normal; line-height: 1.25; text-align: left; }
.fact-grid b { color: var(--lime); }
.transform-arrow { color: var(--lime); font-size: 32px; }

.remedy-router { display: grid; gap: 9px; margin-top: 45px; }
.remedy-router > div { display: grid; grid-template-columns: 1fr 80px 1.2fr; gap: 20px; align-items: center; min-height: 68px; padding: 10px 20px; border: 1px solid var(--line); border-radius: 12px; }
.remedy-router b { color: var(--muted); font-size: clamp(14px, 1.1vw, 19px); }
.remedy-router small { display: block; margin-top: 4px; color: var(--paper); font-size: clamp(10px, .82vw, 13px); }
.remedy-router span { color: var(--teal); text-align: center; }
.remedy-router strong { color: var(--paper); font-size: clamp(15px, 1.2vw, 20px); }
.remedy-router > div:first-child strong { color: var(--lime); }

.role-pipeline { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 58px; }
.role-pipeline div { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 135px; min-height: 100px; padding: 12px; border: 1px solid rgba(83,214,200,.35); border-radius: 15px; background: rgba(83,214,200,.06); text-align: center; }
.role-pipeline b { font-size: clamp(13px, 1.05vw, 18px); }
.role-pipeline small { margin-top: 8px; color: var(--muted); font-size: clamp(10px, .8vw, 13px); line-height: 1.25; }
.role-pipeline i { color: rgba(242,240,233,.35); font-style: normal; }
.authority-layer { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-top: 40px; padding: 18px; border: 1px solid rgba(201,244,90,.4); border-radius: 15px; background: rgba(201,244,90,.06); }
.authority-layer span { margin-right: 15px; color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.authority-layer b { padding: 7px 12px; border-radius: 999px; background: rgba(201,244,90,.12); color: var(--paper); font-size: 13px; }

.operating-loop { display: grid; grid-template-columns: repeat(11, auto); align-items: center; justify-content: space-between; gap: 8px; margin-top: 58px; }
.operating-loop > div { display: flex; flex-direction: column; min-width: 128px; min-height: 145px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; }
.operating-loop > div span { font-size: 11px; font-weight: 800; }
.operating-loop > div b { margin-top: auto; font-size: clamp(14px, 1.08vw, 18px); line-height: 1.2; }
.operating-loop > div small { margin-top: 7px; color: var(--muted); font-size: 11px; }
.operating-loop > i { color: rgba(242,240,233,.32); font-style: normal; }
.operating-loop .software { border: 2px solid rgba(106,169,255,.75); background: rgba(106,169,255,.14); }
.operating-loop .software span { color: var(--blue); }
.operating-loop .agent { border: 2px solid rgba(83,214,200,.72); background: rgba(83,214,200,.14); }
.operating-loop .agent span { color: var(--teal); }
.operating-loop .human { border: 2px solid rgba(201,244,90,.85); background: rgba(201,244,90,.17); }
.operating-loop .human span, .operating-loop .human b { color: var(--lime); }
.legend { display: flex; justify-content: center; gap: 30px; margin-top: 35px; color: var(--muted); font-size: 12px; }
.legend span::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; }
.software-dot::before { background: var(--blue); }
.agent-dot::before { background: var(--teal); }
.human-dot::before { background: var(--lime); }

.guardrail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.guardrail-grid article { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(242,240,233,.035); }
.guardrail-grid span { color: var(--coral); font-size: 12px; font-weight: 800; }
.guardrail-grid b { display: block; margin-top: 55px; color: var(--lime); font-size: clamp(19px, 1.6vw, 27px); }
.guardrail-grid p { margin-top: 12px; color: var(--muted); font-size: clamp(12px, 1vw, 17px); line-height: 1.4; }
.stories-approved { display: none; }
body.stories-approved-mode .stories-fallback { display: none; }
body.stories-approved-mode .stories-approved { display: grid; }
.failure-pairs { gap: 12px; margin-top: 52px; }
.failure-pairs > div { display: grid; grid-template-columns: 1fr 80px 1.3fr; align-items: center; min-height: 85px; padding: 16px 22px; border: 1px solid var(--line); border-radius: 15px; }
.failure-pairs span { color: var(--coral); font-size: clamp(15px, 1.2vw, 20px); }
.failure-context small { display: block; margin-top: 6px; color: var(--muted); font-size: clamp(11px, .88vw, 14px); line-height: 1.3; }
.failure-pairs i { color: var(--muted); font-style: normal; text-align: center; }
.failure-pairs b { color: var(--lime); font-size: clamp(15px, 1.2vw, 20px); }

.time-chip { flex: 0 0 auto; padding: 14px 20px; border: 1px solid var(--lime); border-radius: 999px; color: var(--lime); font-size: clamp(14px, 1.15vw, 19px); font-weight: 800; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.action-grid article { min-height: 145px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(242,240,233,.035); }
.action-grid span { display: grid; place-items: center; float: left; width: 34px; height: 34px; margin-right: 14px; border-radius: 50%; background: rgba(83,214,200,.13); color: var(--teal); font-size: 13px; font-weight: 800; }
.action-grid b { display: block; padding-top: 4px; color: var(--lime); font-size: clamp(17px, 1.4vw, 23px); }
.action-grid p { clear: both; padding-top: 18px; color: var(--muted); font-size: clamp(13px, 1.05vw, 18px); line-height: 1.35; }
.action-grid small { display: block; clear: both; margin-top: 9px; color: var(--paper); font-size: clamp(11px, .9vw, 15px); font-weight: 650; line-height: 1.3; }
.exercise-slide .micro { margin-top: 20px; }

.closing-slide { text-align: center; }
.closing-slide h2 { margin: 0 auto; font-size: clamp(45px, 5.5vw, 90px); }
.closing-loop { margin-top: 48px; color: var(--muted); font-size: clamp(15px, 1.35vw, 23px); letter-spacing: .03em; }
.closing-loop i { margin: 0 12px; color: var(--teal); font-style: normal; }
.thirty-day-path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; margin-top: 40px; }
.thirty-day-path > div { min-height: 90px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(242,240,233,.035); }
.thirty-day-path span { display: block; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.thirty-day-path b { display: block; margin-top: 8px; color: var(--paper); font-size: clamp(13px, 1.05vw, 18px); }
.thirty-day-path > i { color: var(--lime); font-style: normal; }
.closing-callback { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; color: var(--muted); font-size: clamp(11px, 1vw, 16px); }
.closing-callback span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; }
.closing-callback b { color: var(--paper); font-weight: 650; }
.closing-callback i { color: var(--lime); font-style: normal; }
.closing-question { margin-top: 50px; color: var(--lime); font-size: clamp(18px, 1.7vw, 29px); font-weight: 800; }
.q-and-a { margin-top: 15px; color: var(--muted); font-size: 14px; letter-spacing: .15em; text-transform: uppercase; }

.speaker-note { display: none; }

.controls {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(242,240,233,.12);
  border-radius: 999px;
  background: rgba(3,9,12,.72);
  backdrop-filter: blur(12px);
}

.controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(242,240,233,.08);
  color: var(--paper);
  cursor: pointer;
}

.controls button:hover,
.controls button:focus-visible { outline: 2px solid var(--teal); background: rgba(83,214,200,.16); }
.controls button[aria-pressed="true"] { background: var(--lime); color: var(--ink); }
#slideCounter { min-width: 68px; color: var(--muted); font-size: 12px; text-align: center; }

.progress { position: fixed; z-index: 30; top: 0; left: 0; width: 100%; height: 3px; background: transparent; }
.progress span { display: block; width: 5.55%; height: 100%; background: linear-gradient(90deg, var(--teal), var(--lime)); transition: width .25s ease; }

.notes-panel {
  position: fixed;
  z-index: 25;
  left: 50%;
  bottom: 16px;
  display: none;
  width: min(760px, calc(100vw - 330px));
  padding: 15px 18px;
  border: 1px solid rgba(201,244,90,.35);
  border-radius: 14px;
  background: rgba(3,9,12,.92);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.notes-panel.open { display: block; }
.notes-panel span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.notes-panel p { margin-top: 7px; color: var(--paper); font-size: 13px; line-height: 1.4; }

body.print-mode,
body.print-mode .deck { overflow: visible; }
body.print-mode .deck { position: static; width: auto; height: auto; box-shadow: none; }
body.print-mode .slide { position: relative; display: block; width: 1600px; height: 900px; }
body.print-mode .controls,
body.print-mode .progress,
body.print-mode .notes-panel { display: none !important; }

body.render-mode *,
body.render-mode *::before,
body.render-mode *::after {
  animation: none !important;
  transition: none !important;
  caret-color: transparent !important;
}

@media (max-width: 900px) {
  .slide { padding: 30px 38px; }
  .controls { right: 10px; bottom: 10px; }
  .notes-panel { bottom: 60px; width: calc(100vw - 24px); }
}

@page { size: 13.333in 7.5in; margin: 0; }

@media print {
  html,
  body { width: auto; height: auto; overflow: visible; background: #fff; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .deck { position: static; width: auto; height: auto; margin: 0; overflow: visible; box-shadow: none; }
  .slide { position: relative; display: block !important; width: 13.333in; height: 7.5in; page-break-after: always; break-after: page; }
  .slide:last-child { page-break-after: auto; break-after: auto; }
  .controls,
  .progress,
  .notes-panel { display: none !important; }
}

@media (prefers-reduced-motion: no-preference) {
  .slide.active .slide-inner > * { animation: rise .45s ease both; }
  .slide.active .slide-inner > *:nth-child(2) { animation-delay: .05s; }
  .slide.active .slide-inner > *:nth-child(3) { animation-delay: .1s; }
  @keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}

/* ============================================================
   v2 components: cycles, blind spot, prompt card, role bands
   ============================================================ */

.shot-tag {
  align-self: flex-start;
  flex: none;
  padding: 8px 16px;
  border: 1px solid rgba(201, 244, 90, 0.5);
  border-radius: 999px;
  background: rgba(201, 244, 90, 0.1);
  color: var(--lime);
  font: 700 clamp(10px, 0.85vw, 14px) var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shot-tag::before { content: "\25A3  "; opacity: 0.85; }

/* --- repeating cycle --- */

.cycle { margin: clamp(14px, 2vw, 30px) 0 0; }

.cycle-track {
  display: flex;
  align-items: stretch;
  gap: clamp(6px, 0.7vw, 12px);
}

.cycle-track > i {
  flex: none;
  align-self: center;
  color: var(--teal);
  font-size: clamp(14px, 1.4vw, 24px);
  font-style: normal;
}

.cycle-node {
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(12px, 1.4vw, 22px) clamp(10px, 1.1vw, 18px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(242, 240, 233, 0.045);
}

.cycle-node span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font: 700 clamp(9px, 0.72vw, 12px) var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cycle-node b {
  display: block;
  font: 700 clamp(13px, 1.15vw, 20px) var(--heading);
  line-height: 1.2;
}

.cycle-node small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(10px, 0.82vw, 14px);
  line-height: 1.35;
}

.cycle-node.human {
  border-color: var(--lime);
  background: rgba(201, 244, 90, 0.1);
}

.cycle-node.human b { color: var(--lime); }
.cycle-node.software { border-color: rgba(106, 169, 255, 0.45); }
.cycle-node.software b { color: var(--blue); }
.cycle-node.agent { border-color: rgba(83, 214, 200, 0.4); }
.cycle-node.agent b { color: var(--teal); }

.cycle-return {
  position: relative;
  height: clamp(26px, 2.6vw, 42px);
  margin: 0 clamp(20px, 3vw, 54px);
  border: 2px solid rgba(83, 214, 200, 0.55);
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.cycle-return::after {
  content: "\25B2";
  position: absolute;
  top: -11px;
  left: -9px;
  color: var(--teal);
  font-size: 15px;
  line-height: 1;
}

.cycle-return span {
  position: absolute;
  bottom: -11px;
  left: 50%;
  padding: 0 14px;
  transform: translateX(-50%);
  background: #0b1c22;
  color: var(--teal);
  font: 600 clamp(11px, 0.92vw, 16px) var(--body);
  white-space: nowrap;
}

/* --- the blind spot --- */

.blindspot {
  display: flex;
  align-items: stretch;
  gap: clamp(8px, 1vw, 18px);
  margin-top: clamp(16px, 2.2vw, 34px);
}

.blindspot > i {
  flex: none;
  align-self: center;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 26px);
  font-style: normal;
}

.blindspot article {
  flex: 1 1 0;
  padding: clamp(14px, 1.6vw, 26px) clamp(12px, 1.4vw, 22px);
  border-radius: 18px;
  text-align: center;
}

.blindspot span {
  display: block;
  margin-bottom: 8px;
  font: 700 clamp(9px, 0.74vw, 12px) var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blindspot b {
  display: block;
  font: 700 clamp(15px, 1.35vw, 24px) var(--heading);
  line-height: 1.2;
}

.blindspot small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(10px, 0.85vw, 14px);
  line-height: 1.45;
}

.bs-known {
  border: 1px solid var(--line);
  background: rgba(242, 240, 233, 0.05);
}

.bs-known span { color: var(--teal); }

.bs-dark {
  border: 2px dashed rgba(255, 122, 110, 0.6);
  background: #030a0d;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.9);
}

.bs-dark span { color: var(--coral); }
.bs-dark b { color: var(--coral); }

.bs-probe {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  width: min(100%, 660px);
  margin: clamp(10px, 1.2vw, 18px) auto 0;
  padding: clamp(12px, 1.3vw, 20px) clamp(14px, 1.6vw, 26px);
  border: 1px solid var(--lime);
  border-radius: 16px;
  background: rgba(201, 244, 90, 0.09);
}

.bs-probe i {
  flex: none;
  color: var(--lime);
  font-size: clamp(20px, 1.9vw, 32px);
  font-style: normal;
}

.bs-probe b {
  display: block;
  color: var(--lime);
  font: 700 clamp(13px, 1.1vw, 19px) var(--heading);
}

.bs-probe small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: clamp(10px, 0.85vw, 14px);
  line-height: 1.4;
}

/* --- take-home prompt --- */

.prompt-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(14px, 1.8vw, 30px);
  margin-top: clamp(12px, 1.6vw, 26px);
  min-height: 0;
}

.prompt-card {
  padding: clamp(16px, 1.8vw, 30px) clamp(18px, 2vw, 34px);
  border: 1px solid rgba(83, 214, 200, 0.45);
  border-radius: 18px;
  background: #030a0d;
}

.prompt-card pre {
  margin: 0;
  color: var(--paper);
  font: 500 clamp(11px, 1.02vw, 18px)/1.55 ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.prompt-read {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
}

.prompt-read div {
  padding: clamp(10px, 1.2vw, 18px) clamp(12px, 1.3vw, 20px);
  border-left: 3px solid var(--lime);
  border-radius: 0 12px 12px 0;
  background: rgba(242, 240, 233, 0.05);
}

.prompt-read b {
  display: block;
  color: var(--lime);
  font: 700 clamp(12px, 1vw, 17px) var(--heading);
}

.prompt-read span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: clamp(10px, 0.85vw, 14px);
  line-height: 1.4;
}

/* --- who does what --- */

.role-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.3vw, 22px);
  margin-top: clamp(12px, 1.6vw, 26px);
  min-height: 0;
}

.role-bands .band {
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1.6vw, 26px) clamp(12px, 1.4vw, 22px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(242, 240, 233, 0.045);
}

.role-bands .band > span {
  font: 700 clamp(10px, 0.82vw, 14px) var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-bands .band > b {
  margin: 6px 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font: 700 clamp(12px, 1.05vw, 18px) var(--heading);
}

.role-bands ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-bands li {
  position: relative;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: clamp(10px, 0.88vw, 15px);
  line-height: 1.75;
}

.role-bands li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.band.software { border-color: rgba(106, 169, 255, 0.4); }
.band.software > span, .band.software > b { color: var(--blue); }
.band.agent { border-color: rgba(83, 214, 200, 0.4); }
.band.agent > span, .band.agent > b { color: var(--teal); }
.band.human { border-color: rgba(201, 244, 90, 0.55); background: rgba(201, 244, 90, 0.07); }
.band.human > span, .band.human > b { color: var(--lime); }

/* ============================================================
   Step-through: overview first, then spotlight each part
   ============================================================ */

.slide [data-step] {
  transition: opacity 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.slide.stepping [data-step] { opacity: 0.26; }
.slide.stepping [data-step].is-past { opacity: 0.46; }

.slide.stepping [data-step].is-live {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(242, 240, 233, 0.9), 0 20px 55px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
}

.step-caption {
  display: grid;
  align-items: center;
  min-height: clamp(58px, 6.2vw, 96px);
  margin-top: clamp(12px, 1.5vw, 24px);
}

.step-caption > p {
  grid-area: 1 / 1;
  margin: 0;
  color: var(--muted);
  font: 400 clamp(13px, 1.18vw, 21px)/1.45 var(--body);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.step-caption > p.is-live {
  color: var(--paper);
  opacity: 1;
  transform: none;
}

.step-caption > p b { color: var(--lime); font-weight: 700; }
.step-caption > p.rest { color: var(--teal); }
