:root {
  --ink: #14212c;
  --muted: #607082;
  --paper: #f5f7fb;
  --white: #ffffff;
  --ocaso: #006f8e;
  --ocaso-dark: #004e68;
  --teal: #1b8f83;
  --green: #2f8f59;
  --rust: #d2673a;
  --gold: #c89d46;
  --violet: #6366a8;
  --line: rgba(20, 33, 44, 0.12);
  --soft-line: rgba(20, 33, 44, 0.08);
  --shadow: 0 26px 70px rgba(27, 39, 54, 0.18);
  --radius: 22px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #e9eef4;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  overflow: hidden;
}

button {
  font: inherit;
}

.deck {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: radial-gradient(circle at top left, rgba(0, 111, 142, 0.12), transparent 34%), var(--paper);
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 52px 64px 88px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.92), rgba(245,247,251,0.92)),
    var(--paper);
}

.slide.is-active {
  display: block;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 42px;
}

.brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.brand-kicker,
.eyebrow {
  color: var(--ocaso-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.title-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  gap: 44px;
  align-items: center;
  height: calc(100% - 52px);
}

.title-copy h1 {
  margin: 18px 0 22px;
  max-width: 780px;
  font-size: 5.2rem;
  line-height: 0.98;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.42rem;
  line-height: 1.5;
}

.claim-strip,
.tech-ribbon,
.closing-pillars,
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.claim-strip span,
.tech-ribbon span,
.closing-pillars span,
.status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(0, 111, 142, 0.1);
  color: var(--ocaso-dark);
  font-weight: 800;
  border: 1px solid rgba(0, 111, 142, 0.14);
}

.device-frame,
.wide-screenshot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--soft-line);
  background: white;
  box-shadow: var(--shadow);
}

.device-frame img,
.wide-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-device {
  height: 620px;
  transform: rotate(0.6deg);
}

.section-heading {
  max-width: 1040px;
}

.section-heading.compact {
  max-width: 1180px;
}

.section-heading h2,
.slide-caption h2 {
  margin: 12px 0 0;
  font-size: 3.9rem;
  line-height: 1.05;
}

.problem-slide .section-heading h2 {
  font-size: 3.55rem;
}

.slide-caption {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.slide-caption p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.45;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 46px;
}

.pain-list,
.impact-grid,
.validation-flow,
.checklist-grid,
.architecture-map {
  display: grid;
  gap: 18px;
}

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

.pain-list article,
.impact-grid article,
.validation-flow article,
.checklist-grid article,
.architecture-map article,
.time-card,
.manual-day,
.score-list article,
.score-factors,
.campaign-note,
.quote-band,
.big-statement {
  border: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 44px rgba(31, 43, 58, 0.08);
}

.pain-list strong,
.impact-grid strong,
.validation-flow strong,
.checklist-grid h3,
.architecture-map h3,
.score-list strong,
.time-card strong,
.campaign-flow strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.pain-list span,
.impact-grid span,
.validation-flow span,
.checklist-grid p,
.architecture-map p,
.score-list span,
.score-factors span,
.campaign-flow small,
.manual-day p,
.time-card p,
.time-card small,
.closing-line,
.campaign-note p,
.big-statement span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 1.08rem;
}

.manual-day h3 {
  margin: 0 0 22px;
  font-size: 1.8rem;
}

.day-bars {
  display: grid;
  gap: 15px;
}

.day-bars div {
  position: relative;
  height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f6;
  font-weight: 800;
}

.day-bars div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--value) * 1%);
  background: var(--rust);
  opacity: 0.26;
}

.day-bars span {
  position: relative;
}

.manual-day p {
  margin: 26px 0 0;
}

.before-after {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  gap: 28px;
  align-items: center;
}

.time-card {
  min-height: 390px;
}

.time-card .time-label {
  display: inline-block;
  color: var(--ocaso-dark);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.time-card strong {
  margin: 34px 0 12px;
  font-size: 5rem;
  line-height: 1;
}

.stacked-bar {
  display: flex;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  margin: 26px 0 10px;
  background: #edf2f6;
}

.stacked-bar .low {
  background: var(--green);
}

.stacked-bar .high {
  background: rgba(210, 103, 58, 0.34);
}

.shift-arrow {
  color: var(--ocaso);
}

.shift-arrow svg {
  display: block;
  width: 120px;
  height: 120px;
  margin: auto;
}

.quote-band {
  margin-top: 34px;
  border-color: rgba(0, 111, 142, 0.18);
}

.quote-band p {
  margin: 0;
  font-size: 1.48rem;
  font-weight: 800;
}

.operating-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.operating-loop article,
.campaign-flow article,
.source-column span,
.scale-map article {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--soft-line);
  background: white;
  box-shadow: 0 16px 36px rgba(31, 43, 58, 0.08);
}

.operating-loop span,
.campaign-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ocaso);
  color: white;
  font-weight: 900;
}

.operating-loop strong {
  display: block;
  margin-top: 18px;
  font-size: 1.42rem;
}

.operating-loop small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

.architecture-map {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
}

.architecture-map article:nth-child(2) {
  border-color: rgba(0, 111, 142, 0.22);
}

.architecture-map article:nth-child(4) {
  border-color: rgba(99, 102, 168, 0.28);
}

.intake-grid {
  display: grid;
  grid-template-columns: 0.65fr 240px 1.35fr;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
}

.queue-intake-grid {
  grid-template-columns: 0.42fr 0.56fr 1.15fr;
}

.source-column {
  display: grid;
  gap: 14px;
}

.source-column span {
  font-weight: 850;
  color: var(--ink);
}

.conversion-copy {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--soft-line);
  background: white;
  box-shadow: 0 16px 36px rgba(31, 43, 58, 0.08);
}

.conversion-copy h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.12;
}

.conversion-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 1.04rem;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.mini-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 111, 142, 0.1);
  border: 1px solid rgba(0, 111, 142, 0.14);
  color: var(--ocaso-dark);
  font-weight: 850;
  font-size: 0.9rem;
}

.funnel-illustration {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
}

.funnel-illustration div {
  height: 72px;
  border-radius: 16px;
  background: rgba(0, 111, 142, 0.16);
  border: 1px solid rgba(0, 111, 142, 0.18);
}

.funnel-top {
  width: 220px;
}

.funnel-mid {
  width: 150px;
}

.funnel-bottom {
  width: 82px;
}

.funnel-illustration strong {
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--ocaso);
  color: white;
  font-size: 1.4rem;
}

.intake-grid .device-frame {
  height: 482px;
}

.intake-grid .queue-frame {
  height: 520px;
}

.validation-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.status-row {
  margin-top: 34px;
}

.status-row .ok {
  background: rgba(47, 143, 89, 0.12);
  color: #276f49;
}

.status-row .review {
  background: rgba(200, 157, 70, 0.16);
  color: #7a5a16;
}

.status-row .duplicate {
  background: rgba(99, 102, 168, 0.12);
  color: #454780;
}

.status-row .blocked {
  background: rgba(210, 103, 58, 0.12);
  color: #944929;
}

.closing-line {
  margin: 34px 0 0;
  font-weight: 780;
}

.wide-screenshot {
  height: calc(100vh - 430px);
  min-height: 380px;
}

.wide-screenshot.tall img {
  object-fit: contain;
  background: white;
}

.lead-shot {
  height: calc(100vh - 480px);
  min-height: 360px;
}

.screenshot-slide,
.lead-slide {
  padding-top: 38px;
}

.centered-caption {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 28px;
}

.centered-caption h2 {
  font-size: 4.15rem;
}

.centered-caption p {
  max-width: 820px;
  justify-self: center;
}

.scoring-layout,
.laura-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 46px;
}

.score-list {
  display: grid;
  gap: 16px;
}

.score-list article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
}

.score-list strong {
  margin: 0;
  color: var(--ocaso-dark);
}

.score-factors {
  display: grid;
  align-content: start;
  gap: 14px;
}

.score-factors h3,
.guardrails h3 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.score-factors span,
.guardrails span {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #eef5f7;
  color: var(--ink);
  font-weight: 800;
}

.checklist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.checklist-grid article {
  min-height: 360px;
}

.checklist-grid h3 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.checklist-grid span {
  display: inline-block;
  margin: 12px 8px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 850;
}

.checklist-grid .complete {
  background: rgba(47, 143, 89, 0.12);
  color: #276f49;
}

.checklist-grid .pending {
  background: rgba(210, 103, 58, 0.12);
  color: #944929;
}

.checklist-grid .ocaso {
  background: rgba(0, 111, 142, 0.12);
  color: var(--ocaso-dark);
}

.campaign-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.campaign-slide {
  padding-top: 38px;
}

.campaign-slide .section-heading h2 {
  font-size: 3rem;
}

.campaign-flow article {
  min-height: 210px;
}

.campaign-flow span {
  width: 58px;
  height: 58px;
  background: var(--rust);
}

.campaign-flow strong {
  margin: 22px 0 8px;
}

.campaign-note {
  margin-top: 18px;
}

.campaign-note p {
  margin: 0;
  font-weight: 780;
  color: var(--ink);
  font-size: 1.16rem;
}

.campaign-learning-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  margin-top: 18px;
  align-items: stretch;
}

.campaign-report-preview,
.coach-preview {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--soft-line);
  box-shadow: 0 18px 44px rgba(31, 43, 58, 0.08);
}

.report-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mini-eyebrow {
  display: block;
  color: var(--ocaso-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.campaign-report-preview h3,
.coach-preview h3 {
  margin: 8px 0 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.report-preview-header > strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 111, 142, 0.1);
  color: var(--ocaso-dark);
  white-space: nowrap;
}

.report-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.status.contacted,
.report-row.contacted {
  background: rgba(0, 111, 142, 0.09);
  border-color: rgba(0, 111, 142, 0.18);
}

.status.useful,
.report-row.useful {
  background: rgba(47, 143, 89, 0.1);
  border-color: rgba(47, 143, 89, 0.2);
}

.status.pending,
.report-row.pending {
  background: rgba(200, 157, 70, 0.13);
  border-color: rgba(200, 157, 70, 0.22);
}

.status.blocked,
.report-row.blocked {
  background: rgba(210, 103, 58, 0.1);
  border-color: rgba(210, 103, 58, 0.22);
}

.report-table,
.coach-suggestion-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.report-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 8px 18px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-sm);
}

.report-row strong {
  grid-row: span 2;
}

.report-row span,
.report-row small,
.coach-suggestion-list span {
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.96rem;
}

.coach-preview {
  display: grid;
  align-content: start;
}

.coach-suggestion-list div {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #eef5f7;
  border: 1px solid rgba(0, 111, 142, 0.12);
}

.coach-suggestion-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.chat-illustration {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  min-height: 480px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 111, 142, 0.14);
  background: linear-gradient(135deg, rgba(0, 111, 142, 0.08), rgba(27, 143, 131, 0.08));
}

.bubble {
  max-width: 75%;
  padding: 20px 22px;
  border-radius: 20px;
  font-size: 1.18rem;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(31, 43, 58, 0.08);
}

.bubble.client {
  justify-self: start;
  background: white;
}

.bubble.laura {
  justify-self: end;
  background: var(--ocaso);
  color: white;
}

.crm-sync {
  justify-self: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(0, 111, 142, 0.16);
  color: var(--ocaso-dark);
  font-weight: 900;
}

.guardrails {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--soft-line);
  box-shadow: 0 18px 44px rgba(31, 43, 58, 0.08);
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}

.impact-grid article {
  min-height: 260px;
}

.big-statement {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.big-statement strong {
  font-size: 2.25rem;
  line-height: 1.08;
}

.closing-slide {
  background:
    linear-gradient(135deg, rgba(0, 111, 142, 0.12), rgba(210, 103, 58, 0.08)),
    var(--paper);
}

.closing-content {
  display: grid;
  align-content: center;
  height: calc(100% - 58px);
  max-width: 1120px;
}

.closing-content h2 {
  margin: 0;
  font-size: 5rem;
  line-height: 0.98;
}

.closing-content p {
  margin: 28px 0 0;
  max-width: 890px;
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1.45;
}

.final-line {
  display: block;
  margin-top: 44px;
  font-size: 1.85rem;
  color: var(--ocaso-dark);
}

.deck-controls {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--soft-line);
  box-shadow: 0 18px 44px rgba(31, 43, 58, 0.12);
  backdrop-filter: blur(12px);
}

.nav-button {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #eaf3f6;
  color: var(--ocaso-dark);
  cursor: pointer;
  font-weight: 850;
}

.nav-button:hover {
  background: var(--ocaso);
  color: white;
}

.nav-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-button.wide {
  padding: 0 16px;
}

#slide-counter {
  min-width: 66px;
  text-align: center;
  color: var(--muted);
  font-weight: 850;
}

.progress-track {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: rgba(20, 33, 44, 0.08);
  z-index: 11;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--ocaso), var(--teal), var(--rust));
  transition: width 180ms ease;
}

@media (max-width: 1100px) {
  .slide {
    padding: 34px 30px 86px;
    overflow: auto;
  }

  body {
    overflow: auto;
  }

  .title-grid,
  .split-layout,
  .slide-caption,
  .intake-grid,
  .scoring-layout,
  .laura-layout,
  .big-statement {
    grid-template-columns: 1fr;
  }

  .architecture-map,
  .validation-flow,
  .impact-grid,
  .campaign-flow,
  .operating-loop,
  .checklist-grid,
  .pain-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .title-copy h1,
  .closing-content h2 {
    font-size: 3.2rem;
  }

  .section-heading h2,
  .slide-caption h2 {
    font-size: 2.5rem;
  }
}

@media print {
  body {
    overflow: visible;
    background: white;
  }

  .deck {
    width: auto;
    height: auto;
    background: white;
  }

  .slide {
    position: relative;
    display: block !important;
    page-break-after: always;
    width: 100vw;
    height: 100vh;
  }

  .deck-controls,
  .progress-track {
    display: none !important;
  }
}
