/*
 * Pitch deck styles.
 *
 * Layer order matters: "base" and "ui" are cascade layers, so every unlayered rule
 * below them (the slide styles) wins regardless of specificity. This mirrors how the
 * original Tailwind build behaved.
 */
@layer base, ui;

/* ---------- Base: minimal reset + fonts ---------- */
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
    border-color: var(--border);
  }
  html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    font-family: var(--font-sans);
    -webkit-tap-highlight-color: transparent;
  }
  h1,
  h2,
  h3 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  ol,
  ul {
    list-style: none;
  }
  img,
  svg,
  video,
  iframe {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input {
    font: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: transparent;
    border-radius: 0;
  }
  button {
    appearance: button;
  }
  body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    margin: 0;
    overflow: hidden;
  }
}

/* ---------- UI button (ghost style from shadcn/ui) ---------- */
@layer ui {
  .ui-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition:
      color,
      background-color,
      border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition-property:
      color, background-color, border-color, outline-color,
      text-decoration-color, fill, stroke;
    transition-duration: 0.15s;
  }
  .ui-btn--default {
    height: 2.25rem;
    padding: 0.5rem 1rem;
  }
  .ui-btn--icon {
    height: 2.25rem;
    width: 2.25rem;
  }
  .ui-btn svg {
    pointer-events: none;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }
  @media (hover: hover) {
    .ui-btn:hover {
      background-color: var(--accent);
      color: var(--accent-foreground);
    }
  }
  .ui-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 1px var(--ring);
  }
  .ui-btn:disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
  }
}

/* ---------- Theme ---------- */
:root {
  --font-sans: "Raleway", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Slides ---------- */
:root {
  --radius: 0.5rem;
  --background: oklch(98.5% 0.002 250);
  --foreground: oklch(25.1% 0.048 262);
  --slide-blue: oklch(54.8% 0.199 27.5);
  --slide-blue-soft: oklch(97.2% 0.012 250);
  --slide-navy: oklch(25.1% 0.048 262);
  --slide-gradient: linear-gradient(
    135deg,
    oklch(56.5% 0.196 26.5),
    oklch(62.9% 0.176 45)
  );
  --slide-ink-muted: oklch(46% 0.028 258);
  --slide-rule: oklch(90% 0.012 258);
  --slide-paper: oklch(100% 0 0);
  --card: oklch(100% 0 0);
  --card-foreground: oklch(12.9% 0.042 264.695);
  --popover: oklch(100% 0 0);
  --popover-foreground: oklch(12.9% 0.042 264.695);
  --primary: oklch(20.8% 0.042 265.755);
  --primary-foreground: oklch(98.4% 0.003 247.858);
  --secondary: oklch(96.8% 0.007 247.896);
  --secondary-foreground: oklch(20.8% 0.042 265.755);
  --muted: oklch(96.8% 0.007 247.896);
  --muted-foreground: oklch(55.4% 0.046 257.417);
  --accent: oklch(96.8% 0.007 247.896);
  --accent-foreground: oklch(20.8% 0.042 265.755);
  --destructive: oklch(57.7% 0.245 27.325);
  --destructive-foreground: oklch(98.4% 0.003 247.858);
  --border: oklch(92.9% 0.013 255.508);
  --input: oklch(92.9% 0.013 255.508);
  --ring: oklch(70.4% 0.04 256.788);
  --chart-1: oklch(64.6% 0.222 41.116);
  --chart-2: oklch(60% 0.118 184.704);
  --chart-3: oklch(39.8% 0.07 227.392);
  --chart-4: oklch(82.8% 0.189 84.429);
  --chart-5: oklch(76.9% 0.188 70.08);
  --sidebar: oklch(98.4% 0.003 247.858);
  --sidebar-foreground: oklch(12.9% 0.042 264.695);
  --sidebar-primary: oklch(20.8% 0.042 265.755);
  --sidebar-primary-foreground: oklch(98.4% 0.003 247.858);
  --sidebar-accent: oklch(96.8% 0.007 247.896);
  --sidebar-accent-foreground: oklch(20.8% 0.042 265.755);
  --sidebar-border: oklch(92.9% 0.013 255.508);
  --sidebar-ring: oklch(70.4% 0.04 256.788);
}
.deck-shell {
  background: var(--background);
  width: 100vw;
  height: 100dvh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.deck-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-wrapper {
  width: 1920px;
  height: 1080px;
  transform: scale(var(--slide-scale));
  transform-origin: 50%;
  margin-top: -540px;
  margin-left: -960px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.slide-content {
  background: var(--slide-paper);
  width: 1920px;
  height: 1080px;
  color: var(--foreground);
  --slide-title: 82px;
  --slide-subtitle: 31px;
  --slide-chrome: 20px;
  position: relative;
  overflow: hidden;
}
.slide-brand {
  z-index: 2;
  align-items: center;
  height: 54px;
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 100px;
}
.slide-brand__logo {
  width: auto;
  height: 56px;
  display: block;
}
.slide-solution__header {
  text-align: center;
  position: absolute;
  top: 90px;
  left: 170px;
  right: 170px;
}
.slide-solution__header .slide-title {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 58px;
}
.slide-solution__points {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  display: flex;
  position: absolute;
  inset: 340px 0 200px;
}
.slide-solution__point {
  text-align: left;
  align-items: center;
  gap: 28px;
  max-width: 1080px;
  display: flex;
}
.slide-solution__point p {
  color: var(--slide-ink);
  margin: 0;
  font-size: 36px;
  line-height: 1.45;
}
.slide-solution__point strong {
  color: var(--slide-blue);
  font-weight: 800;
}
.slide-solution .slide-footer {
  justify-content: space-between;
}
.slide-demo__center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 195px 170px 185px;
}
.slide-demo__center .slide-title {
  font-size: 82px;
}
.slide-demo--title-only {
  background: var(--slide-paper);
  padding: 0;
}
.slide-demo__center {
  z-index: 3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0 0 60px;
}
.slide-demo__center-title {
  text-align: center;
  margin: 0;
}
.slide-demo__center-title span {
  color: var(--slide-blue);
}
.slide-title {
  max-width: 1580px;
  font-size: var(--slide-title);
  letter-spacing: 0;
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
}
.slide-title span {
  color: var(--slide-blue);
}
.slide-cover {
  background: var(--slide-paper);
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.slide-cover {
  --claude-orange: oklch(67% 0.13 40);
  --cover-green: oklch(58% 0.14 150);
  --cover-card-border: oklch(92% 0.012 258);
  --cover-card-shadow: 0 30px 70px -30px oklch(40% 0.08 265 / 0.35);
}
.slide-cover__intro {
  z-index: 2;
  width: 1060px;
  position: absolute;
  top: 250px;
  left: 150px;
}
.cover-claude-logo {
  color: var(--slide-navy);
  letter-spacing: -0.01em;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 1;
  display: flex;
}
.cover-claude-logo__mark {
  color: var(--claude-orange);
  flex: none;
  width: 0.9em;
  height: 0.9em;
}
.cover-claude-logo--small {
  gap: 8px;
  font-size: 40px;
}
.slide-cover__title {
  color: var(--slide-navy);
  letter-spacing: -0.01em;
  margin: 64px 0 0;
  font-size: 86px;
  font-weight: 900;
  line-height: 1.04;
}
.slide-cover__title span {
  color: var(--slide-blue);
}
.cover-chat {
  z-index: 2;
  background: var(--slide-paper);
  border: 1px solid var(--cover-card-border);
  width: 560px;
  box-shadow: var(--cover-card-shadow);
  border-radius: 28px;
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 190px;
  right: 120px;
  overflow: hidden;
}
.cover-chat__header {
  border-bottom: 1px solid var(--cover-card-border);
  padding: 22px 28px;
}
.cover-chat__body {
  flex-direction: column;
  gap: 22px;
  padding: 24px 28px 8px;
  display: flex;
}
.cover-chat__user {
  background: var(--slide-blue-soft);
  color: var(--slide-navy);
  border-radius: 16px;
  align-self: flex-end;
  margin: 0;
  padding: 12px 18px;
  font-size: 19px;
}
.cover-chat__tool,
.cover-connector {
  background: var(--slide-paper);
  border: 1px solid var(--cover-card-border);
  border-radius: 16px;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  display: flex;
}
.cover-connector__icon {
  color: var(--slide-navy);
  flex: none;
  width: 40px;
  height: 40px;
}
.cover-connector__icon svg,
.cover-chat__chevron,
.cover-chat__actions svg,
.cover-chat__send svg,
.cover-connector__link {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cover-connector__icon svg {
  width: 100%;
  height: 100%;
}
.cover-connector__text {
  flex-direction: column;
  gap: 2px;
  font-size: 19px;
  line-height: 1.25;
  display: flex;
}
.cover-connector__text strong {
  color: var(--slide-navy);
  font-weight: 500;
}
.cover-status {
  color: var(--cover-green);
  align-items: center;
  gap: 7px;
  font-size: 17px;
  display: flex;
}
.cover-status:before {
  content: "";
  background: var(--cover-green);
  border-radius: 50%;
  width: 11px;
  height: 11px;
}
.cover-chat__chevron {
  color: var(--slide-ink-muted);
  width: 22px;
  height: 22px;
  margin-left: auto;
}
.cover-chat__reply {
  color: var(--slide-navy);
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}
.cover-chat__actions {
  color: var(--slide-ink-muted);
  gap: 18px;
  display: flex;
}
.cover-chat__actions svg {
  width: 21px;
  height: 21px;
}
.cover-chat__input {
  border: 1px solid var(--cover-card-border);
  color: var(--slide-ink-muted);
  border-radius: 18px;
  align-items: center;
  gap: 14px;
  margin: 26px 18px 18px;
  padding: 14px 14px 14px 18px;
  font-size: 19px;
  display: flex;
}
.cover-chat__sparkle {
  fill: oklch(62% 0.17 262);
  width: 22px;
  height: 22px;
}
.cover-chat__send {
  color: var(--slide-paper);
  background: oklch(78% 0.03 258);
  border-radius: 50%;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  display: grid;
}
.cover-chat__send svg {
  stroke-width: 2.2;
  width: 20px;
  height: 20px;
}
.cover-connector {
  z-index: 3;
  box-shadow: var(--cover-card-shadow);
  border-radius: 22px;
  padding: 16px 30px 16px 16px;
  position: absolute;
  top: 190px;
  right: 730px;
}
.cover-connector .cover-connector__icon {
  background: var(--slide-blue-soft);
  border-radius: 14px;
  width: 64px;
  height: 64px;
  padding: 12px;
}
.cover-connector .cover-connector__text {
  font-size: 22px;
}
.cover-connector__link {
  color: oklch(62% 0.17 262);
  width: 44px;
  height: 44px;
  position: absolute;
  top: 58px;
  right: -40px;
}
.cover-connector__link circle {
  fill: currentColor;
  stroke: none;
}
.slide-cover__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-cover__ambient:before,
.slide-cover__ambient:after {
  content: "";
  filter: blur(80px);
  opacity: 0.35;
  border-radius: 50%;
  position: absolute;
}
.slide-cover__ambient:before {
  background: oklch(72% 0.12 265);
  width: 720px;
  height: 720px;
  top: -220px;
  right: -180px;
}
.slide-cover__ambient:after {
  background: oklch(72% 0.12 265);
  width: 620px;
  height: 620px;
  bottom: -240px;
  left: -180px;
}
.slide-cover__keenethics-logo {
  width: auto;
  height: 42px;
  display: block;
}
.slide-cover .slide-footer {
  justify-content: space-between;
  padding-left: 80px;
}
.slide-enter--five {
  animation-delay: 0.72s;
}
.slide-content h1,
.slide-content h2,
.slide-title {
  font-weight: 900;
}
.slide-footer {
  border-top: 1px solid var(--slide-rule);
  height: 105px;
  font-size: var(--slide-chrome);
  color: var(--slide-ink-muted);
  justify-content: flex-end;
  align-items: center;
  padding-left: 200px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 100px;
}
.slide-page {
  font-variant-numeric: tabular-nums;
}
.slide-source {
  font-size: calc(var(--slide-chrome) * 1.35);
  color: var(--slide-navy);
  font-weight: 500;
}
.slide-source--link {
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  transition: opacity 0.15s;
}
.slide-source--link:hover {
  opacity: 0.75;
}
.slide-differentiators__header {
  text-align: center;
  position: absolute;
  top: 112px;
  left: 150px;
  right: 150px;
}
.slide-differentiators__header .slide-title {
  max-width: none;
  font-size: 74px;
}
.slide-differentiators__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 36px;
  display: grid;
  position: absolute;
  inset: 285px 150px 165px;
}
.slide-differentiators__item {
  text-align: center;
  background: var(--slide-blue-soft);
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  padding: 58px 54px 48px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  display: flex;
}
.slide-differentiators__item:hover {
  box-shadow: 0 20px 40px var(--slide-blue);
  transform: translateY(-6px);
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-differentiators__item:hover {
    box-shadow: 0 20px 40px
      color-mix(in oklab, var(--slide-blue) 12%, transparent);
  }
}
.slide-differentiators__item h3 {
  min-height: 100px;
  color: var(--foreground);
  letter-spacing: 0;
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.18;
}
.slide-differentiators__rule {
  background: var(--slide-blue);
  transform-origin: 0;
  width: 100%;
  height: 2px;
  margin: 25px 0 30px;
  animation: 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) 0.68s both
    differentiator-rule-reveal;
}
.slide-differentiators__description {
  color: var(--slide-ink-muted);
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.48;
}
@keyframes differentiator-rule-reveal {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .slide-differentiators__rule {
    animation: none;
  }
}
.slide-transition {
  animation: 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards slide-in-right;
}
.slide-transition--backward {
  animation-name: slide-in-left;
}
.deck-controls {
  right: 28px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 10;
  border: 1px solid var(--slide-navy);
  align-items: center;
  gap: 0;
  padding: 6px;
  display: flex;
  position: absolute;
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-controls {
    border: 1px solid color-mix(in oklab, var(--slide-navy) 12%, transparent);
  }
}
.deck-controls {
  background: var(--slide-paper);
  border-radius: 999px;
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-controls {
    background: color-mix(in oklab, var(--slide-paper) 94%, transparent);
  }
}
.deck-controls {
  box-shadow: 0 18px 48px -16px var(--slide-navy);
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-controls {
    box-shadow: 0 18px 48px -16px
      color-mix(in oklab, var(--slide-navy) 28%, transparent);
  }
}
.deck-controls {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s;
}
.deck-controls:after {
  background: var(--slide-navy);
  border-radius: 999px;
  height: 3px;
  position: absolute;
  bottom: -7px;
  left: 24px;
  right: 24px;
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-controls:after {
    background: color-mix(in oklab, var(--slide-navy) 10%, transparent);
  }
}
.deck-controls:after {
  content: "";
}
.deck-controls__count {
  text-align: center;
  min-width: 68px;
  color: var(--slide-navy);
  font-variant-numeric: tabular-nums;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
}
.deck-controls__divider {
  background: var(--border);
  width: 1px;
  height: 26px;
  margin: 0 8px;
}
.slide-enter {
  opacity: 0;
  animation: 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards slide-content-in;
}
.slide-enter--one {
  animation-delay: 0.12s;
}
.slide-enter--two {
  animation-delay: 0.26s;
}
.slide-enter--three {
  animation-delay: 0.43s;
}
.slide-enter--four {
  animation-delay: 0.58s;
}
.slide-enter--six {
  animation-delay: 0.9s;
}
@keyframes slide-content-in {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-roadmap__header {
  text-align: center;
  position: absolute;
  top: 70px;
  left: 140px;
  right: 140px;
}
.slide-roadmap__header .slide-title {
  max-width: 1520px;
  margin: 0 auto;
  font-size: 74px;
}
.slide-roadmap__gantt {
  height: 760px;
  color: var(--foreground);
  --gantt-engineering: oklch(61.08% 0.1514 46.95);
  --gantt-security: oklch(71.71% 0.1378 77.44);
  --gantt-marketing: oklch(65.76% 0.1125 151.52);
  --gantt-danger: oklch(60.55% 0.1862 25.6);
  --gantt-warning: oklch(71.71% 0.1378 77.44);
  --gantt-launch: oklch(25.1% 0.048 262);
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 185px;
  left: 140px;
  right: 140px;
}
.slide-roadmap__gantt-header {
  border-bottom: 1px solid var(--slide-rule);
  color: var(--slide-ink-muted);
  text-align: center;
  grid-template-columns: 260px repeat(8, 1fr);
  align-items: center;
  padding: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  display: grid;
}
.slide-roadmap__gantt-header span:nth-child(2) {
  grid-column: 2/6;
}
.slide-roadmap__gantt-header span:nth-child(3) {
  grid-column: 6/10;
}
.slide-roadmap__gantt-body {
  flex: 1;
  grid-template-columns: 260px repeat(8, 1fr);
  row-gap: 10px;
  padding-top: 10px;
  display: grid;
  position: relative;
}
.slide-roadmap__gantt-row {
  opacity: 0;
  min-height: 28px;
  animation: 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards roadmap-row-in;
  animation-delay: var(--roadmap-delay);
  grid-column: 1/-1;
  grid-template-columns: 260px repeat(8, 1fr);
  align-items: center;
  display: grid;
}
.slide-roadmap__gantt-row--header {
  min-height: 24px;
  margin-top: 6px;
}
.slide-roadmap__gantt-track-name {
  color: var(--foreground);
  grid-column: 1;
  font-size: 22px;
  font-weight: 700;
}
.slide-roadmap__gantt-task-label {
  color: var(--slide-ink-muted);
  grid-column: 1;
  font-size: 18px;
}
.slide-roadmap__gantt-bar {
  background: var(--gantt-engineering);
  transform-origin: 0;
  height: 28px;
  animation: 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards roadmap-bar-grow;
  animation-delay: var(--roadmap-bar-delay);
  border-radius: 8px;
  grid-row: 1;
  transform: scaleX(0);
}
.slide-roadmap__gantt-bar--engineering {
  background: var(--gantt-engineering);
}
.slide-roadmap__gantt-bar--security {
  background: var(--gantt-warning);
}
.slide-roadmap__gantt-bar--marketing {
  background: var(--gantt-marketing);
}
.slide-roadmap__gantt-bar--danger {
  background: var(--gantt-danger);
}
.slide-roadmap__gantt-bar--warning {
  background: var(--gantt-warning);
}
.slide-roadmap__gantt-bar--launch {
  background: var(--gantt-launch);
}
.slide-roadmap__gantt-bar--chip {
  border: 2px dashed var(--gantt-danger);
  width: calc(100% + 48px);
  height: 42px;
  color: var(--gantt-danger);
  white-space: nowrap;
  background: 0 0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: -7px;
  margin-left: -24px;
  padding: 0 18px;
  animation-name: roadmap-chip-in;
  display: flex;
  transform: scaleX(1);
}
.slide-roadmap__gantt-bar-chip-text {
  font-size: 24px;
  font-weight: 700;
}
@keyframes roadmap-chip-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-roadmap__gantt-bar--dimmed {
  opacity: 0.6;
}
.slide-roadmap__gantt-legend {
  color: var(--slide-ink-muted);
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  font-size: 18px;
  display: flex;
}
.slide-roadmap__gantt-legend > span {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
.slide-roadmap__footnote {
  color: var(--slide-ink-muted);
  margin-top: 8px;
  font-size: 15px;
}
.slide-roadmap__legend-dot {
  border-radius: 3px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.slide-roadmap__legend-dot--engineering {
  background: var(--gantt-engineering);
}
.slide-roadmap__legend-dot--security {
  background: var(--gantt-warning);
}
.slide-roadmap__legend-dot--marketing {
  background: var(--gantt-marketing);
}
@keyframes roadmap-row-in {
  0% {
    opacity: 0;
    transform: translate(-18px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes roadmap-bar-grow {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .slide-roadmap__gantt-row,
  .slide-roadmap__gantt-bar {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
.slide-closing__header {
  text-align: center;
  position: absolute;
  top: 105px;
  left: 100px;
  right: 100px;
}
.slide-closing__header-inner {
  justify-content: center;
  align-items: center;
  gap: 44px;
  display: flex;
}
.slide-closing__header .slide-title {
  text-align: center;
  margin: 0;
  font-size: 68px;
  line-height: 1.15;
}
.slide-closing__header .slide-title span {
  color: var(--slide-blue);
}
.slide-closing__analytics {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 470px 140px 185px;
}
.slide-closing__benefits {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 36px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.slide-closing__benefit {
  background: var(--slide-blue-soft);
  color: var(--foreground);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 66px 50px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  display: flex;
}
.slide-closing__benefit:hover {
  box-shadow: 0 20px 40px var(--slide-blue);
  transform: translateY(-6px);
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-closing__benefit:hover {
    box-shadow: 0 20px 40px
      color-mix(in oklab, var(--slide-blue) 12%, transparent);
  }
}
.slide-closing__benefit-label {
  color: var(--slide-blue);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}
.slide-closing__benefit-text {
  color: var(--slide-ink-muted);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.45;
}
.slide-next__center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 150px 140px 165px;
}
.slide-next__center .slide-title {
  max-width: 1200px;
  font-size: 96px;
}
.slide-next__center .slide-title span {
  color: var(--slide-blue);
}
.slide-next__subtitle {
  max-width: 900px;
  color: var(--slide-ink-muted);
  margin: 40px 0 0;
  font-size: 34px;
  line-height: 1.35;
}
.slide-next__contact {
  color: var(--slide-ink-muted);
  margin-top: 80px;
  font-size: 26px;
  line-height: 1.5;
}
.slide-next__name {
  color: var(--foreground);
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}
.slide-next__role {
  margin: 6px 0 0;
}
.slide-next__phone {
  font-variant-numeric: tabular-nums;
  margin: 18px 0 0;
}
@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(8%) scale(var(--slide-scale));
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(var(--slide-scale));
  }
}
@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-8%) scale(var(--slide-scale));
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(var(--slide-scale));
  }
}
.deck-controls__meta {
  background: 0 0;
  border-radius: 999px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  display: flex;
}
.deck-dots {
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.deck-dot {
  background: var(--foreground);
  border: none;
  border-radius: 999px;
  width: 6px;
  height: 6px;
  padding: 0;
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-dot {
    background: color-mix(in oklab, var(--foreground) 22%, transparent);
  }
}
.deck-dot {
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.18s,
    width 0.18s;
}
.deck-dot:hover {
  background: var(--slide-blue);
  transform: scale(1.25);
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-dot:hover {
    background: color-mix(in oklab, var(--slide-blue) 55%, transparent);
  }
}
.deck-dot--active {
  background: var(--slide-blue);
  width: 18px;
}
.deck-arrow {
  background: var(--slide-blue-soft);
  width: 48px;
  height: 48px;
  color: var(--slide-ink-muted);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.26s,
    color 0.26s,
    opacity 0.26s;
  display: inline-flex;
}
.deck-arrow svg {
  stroke-width: 2.5px;
  width: 22px;
  height: 22px;
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.deck-arrow:hover:not(:disabled) {
  z-index: 1;
  background: var(--slide-paper);
  color: var(--slide-navy);
  box-shadow: 0 4px 14px var(--slide-navy);
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-arrow:hover:not(:disabled) {
    box-shadow: 0 4px 14px
      color-mix(in oklab, var(--slide-navy) 12%, transparent);
  }
}
.deck-arrow:hover:not(:disabled) {
  transform: translateY(-1px);
}
.deck-arrow:hover:not(:disabled) svg {
  transform: scale(1.08);
}
.deck-arrow:active:not(:disabled) {
  transform: translateY(0) scale(0.95);
}
.deck-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.deck-arrow--next {
  background: var(--slide-blue-soft);
  color: var(--slide-navy);
}
.deck-controls > .deck-present {
  width: 42px;
  height: 42px;
  color: var(--slide-paper);
  background: var(--slide-navy);
  box-shadow: 0 8px 18px var(--slide-navy);
  border-radius: 999px;
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-controls > .deck-present {
    box-shadow: 0 8px 18px
      color-mix(in oklab, var(--slide-navy) 18%, transparent);
  }
}
.deck-controls > .deck-present {
  transition:
    background 0.26s,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.deck-controls > .deck-present:hover {
  color: var(--slide-paper);
  background: var(--slide-navy);
}
@supports (color: color-mix(in lab, red, red)) {
  .deck-controls > .deck-present:hover {
    background: color-mix(in oklab, var(--slide-navy) 88%, var(--slide-paper));
  }
}
.deck-controls > .deck-present:hover {
  transform: translateY(-1px);
}
.deck-arrow--nudge {
  animation: 1.6s ease-in-out infinite deck-arrow-nudge;
}
@keyframes deck-arrow-nudge {
  0%,
  to {
    box-shadow: 0 0 0 0 color-mix(in oklab, var(--slide-blue) 40%, transparent);
    transform: translate(0);
  }
  50% {
    box-shadow: 0 0 0 12px
      color-mix(in oklab, var(--slide-blue) 0%, transparent);
    transform: translate(5px);
  }
}
.slide-demo--title-only .slide-demo__center {
  text-align: center;
  flex-direction: column;
  gap: 44px;
  padding: 92px 150px 64px;
}
.slide-demo--title-only .slide-demo__center-title {
  font-size: 68px;
}
.slide-solution__point,
.slide-closing__benefit,
.slide-differentiators__item {
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.slide-solution__point:hover,
.slide-closing__benefit:hover,
.slide-differentiators__item:hover {
  transform: translateY(-6px);
}
.slide-solution__point p {
  font-size: 40px;
}
.slide-solution__point strong {
  font-variant-numeric: tabular-nums;
  font-size: 1.28em;
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  .slide-enter,
  .slide-transition,
  .step-lightbox,
  .step-lightbox__figure {
    opacity: 1;
    animation: none;
  }
  .deck-arrow--nudge,
  .slide-steps__carousel-image img,
  .slide-steps__carousel-progress {
    animation: none;
  }
}
@media print {
  @page {
    size: 1920px 1080px landscape;
    margin: 0;
  }
  body {
    overflow: visible;
  }
  .deck-shell,
  .deck-stage {
    width: 1920px;
    height: 1080px;
    position: relative;
  }
  .slide-wrapper {
    animation: none;
    transform: none;
  }
  .deck-controls {
    display: none;
  }
  .slide-enter {
    opacity: 1;
    animation: none;
  }
}
.slide-solution__points {
  gap: 76px;
  top: 300px;
  bottom: 180px;
}
.slide-solution__point {
  background: var(--slide-blue-soft);
  border-radius: 28px;
  width: 1180px;
  max-width: 1180px;
  padding: 44px 52px;
}
.slide-steps {
  padding: 118px 142px 126px;
}
.slide-steps__layout {
  grid-template-columns: 500px minmax(0, 1fr);
  align-items: center;
  gap: 78px;
  height: 100%;
  display: grid;
}
.slide-steps__header .slide-title {
  max-width: 480px;
  color: var(--slide-navy);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
}
.slide-steps--preview .slide-steps__header .slide-title span {
  color: var(--slide-blue);
}
.slide-steps--preview .slide-steps__list {
  gap: 28px;
}
.slide-steps--preview .slide-steps__list li {
  font-size: 24px;
}
.slide-steps--preview .slide-steps__carousel-image img {
  object-fit: contain;
}
.slide-steps__list {
  gap: 22px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.slide-steps__list li {
  color: var(--slide-ink-muted);
  font-family: var(--font-sans);
  opacity: 0.52;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  transition:
    opacity 0.22s,
    transform 0.22s;
}
.slide-steps__list li.is-active {
  opacity: 1;
  transform: translate(8px);
}
.slide-steps__step {
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  width: 100%;
  padding: 0;
  display: grid;
}
.slide-steps__step:focus-visible {
  outline: 2px solid var(--slide-blue);
  outline-offset: 4px;
}
@media (hover: hover) {
  .slide-steps__list li:not(.is-active):hover {
    opacity: 0.8;
  }
}
.slide-steps__list strong {
  color: var(--slide-navy);
  font-weight: 900;
}
.slide-steps__panel {
  background: linear-gradient(145deg, var(--slide-navy), var(--slide-navy));
  border-radius: 48px;
  min-width: 0;
  padding: 52px 62px;
  position: relative;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__panel {
    background: linear-gradient(
      145deg,
      var(--slide-navy),
      color-mix(in oklab, var(--slide-navy) 72%, var(--slide-blue-soft))
    );
  }
}
.slide-steps__panel {
  box-shadow: 0 26px 54px var(--slide-navy);
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__panel {
    box-shadow: 0 26px 54px
      color-mix(in oklab, var(--slide-navy) 18%, transparent);
  }
}
.slide-steps__layer {
  border-radius: 28px 28px 0 0;
  height: 54px;
  position: absolute;
  left: 8%;
  right: 8%;
}
.slide-steps__layer--one {
  background: var(--slide-blue-soft);
  top: -98px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__layer--one {
    background: color-mix(
      in oklab,
      var(--slide-blue-soft) 88%,
      var(--slide-navy)
    );
  }
}
.slide-steps__layer--two {
  background: var(--slide-blue-soft);
  top: -66px;
  left: 4%;
  right: 4%;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__layer--two {
    background: color-mix(
      in oklab,
      var(--slide-blue-soft) 65%,
      var(--slide-navy)
    );
  }
}
.slide-steps__layer--three {
  background: var(--slide-blue-soft);
  top: -34px;
  left: 1.5%;
  right: 1.5%;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__layer--three {
    background: color-mix(
      in oklab,
      var(--slide-blue-soft) 35%,
      var(--slide-navy)
    );
  }
}
.slide-steps__carousel {
  z-index: 1;
  border: 1px solid var(--slide-paper);
  position: relative;
  overflow: hidden;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__carousel {
    border: 1px solid color-mix(in oklab, var(--slide-paper) 55%, transparent);
  }
}
.slide-steps__carousel {
  background: var(--slide-paper);
  box-shadow: 0 18px 38px var(--slide-navy);
  border-radius: 12px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__carousel {
    box-shadow: 0 18px 38px
      color-mix(in oklab, var(--slide-navy) 22%, transparent);
  }
}
.slide-steps__carousel-image {
  background: var(--slide-blue-soft);
  width: 100%;
  height: 500px;
  box-shadow: none;
  white-space: normal;
  cursor: zoom-in;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.slide-steps__carousel-image:hover {
  background: var(--slide-blue-soft);
}
.slide-steps__carousel-image:focus-visible {
  outline: 4px solid var(--slide-blue);
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__carousel-image:focus-visible {
    outline: 4px solid color-mix(in oklab, var(--slide-blue) 45%, transparent);
  }
}
.slide-steps__carousel-image:focus-visible {
  outline-offset: -4px;
}
.slide-steps__carousel-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  animation: 0.32s ease-out both step-carousel-image;
  display: block;
}
@keyframes step-carousel-image {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.slide-step-card__expand {
  z-index: 2;
  border: 1px solid var(--slide-paper);
  grid-auto-flow: column;
  place-items: center;
  gap: 6px;
  width: auto;
  height: 34px;
  padding: 0 12px;
  display: grid;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-step-card__expand {
    border: 1px solid color-mix(in oklab, var(--slide-paper) 45%, transparent);
  }
}
.slide-step-card__expand {
  background: var(--slide-navy);
  border-radius: 999px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-step-card__expand {
    background: color-mix(in oklab, var(--slide-navy) 88%, transparent);
  }
}
.slide-step-card__expand {
  color: var(--slide-paper);
  text-transform: uppercase;
  box-shadow: 0 5px 14px var(--slide-navy);
  font-size: 12px;
  font-weight: 800;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-step-card__expand {
    box-shadow: 0 5px 14px
      color-mix(in oklab, var(--slide-navy) 30%, transparent);
  }
}
.slide-step-card__expand {
  transition:
    transform 0.18s,
    background 0.18s;
}
.slide-step-card__expand svg {
  width: 15px;
  height: 15px;
}
.slide-steps--interactive .slide-step-card__expand {
  height: 50px;
  box-shadow: 0 12px 26px var(--slide-navy);
  border-width: 2px;
  gap: 9px;
  padding: 0 20px;
  font-size: 14px;
  bottom: 18px;
  right: 18px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps--interactive .slide-step-card__expand {
    box-shadow: 0 12px 26px
      color-mix(in oklab, var(--slide-navy) 46%, transparent);
  }
}
.slide-steps--interactive .slide-step-card__expand svg {
  width: 19px;
  height: 19px;
}
.slide-steps--interactive .slide-step-card__pointer {
  width: 25px;
  height: 25px;
  margin-right: 2px;
  animation: 1.2s ease-in-out infinite full-screen-pointer;
}
.slide-steps--interactive {
  padding: 84px 108px 92px;
}
.slide-steps--interactive .slide-steps__layout {
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 54px;
}
.slide-steps--interactive .slide-steps__panel {
  padding: 42px 50px;
}
.slide-steps--interactive .slide-steps__carousel-image {
  height: 604px;
}
.slide-steps--interactive .slide-steps__carousel-meta {
  min-height: 88px;
}
@keyframes full-screen-pointer {
  0%,
  to {
    transform: translate(-4px);
  }
  50% {
    transform: translate(3px);
  }
}
.slide-steps__carousel-image:hover .slide-step-card__expand,
.slide-steps__carousel-image:focus-visible .slide-step-card__expand {
  background: var(--slide-blue);
  transform: scale(1.12);
}
.slide-step-card__badge {
  z-index: 1;
  border: 3px solid var(--slide-paper);
  background: var(--slide-blue-soft);
  border-radius: 50%;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
  position: absolute;
  top: -16px;
  left: -16px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-step-card__badge {
    background: color-mix(
      in oklab,
      var(--slide-blue-soft) 25%,
      var(--slide-navy)
    );
  }
}
.slide-step-card__badge {
  color: var(--slide-paper);
  box-shadow: 0 5px 12px var(--slide-navy);
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-step-card__badge {
    box-shadow: 0 5px 12px
      color-mix(in oklab, var(--slide-navy) 25%, transparent);
  }
}
.slide-step-card__badge {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.slide-steps__carousel-meta {
  min-height: 96px;
  color: var(--slide-navy);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  display: flex;
}
.slide-steps__carousel-meta > div:first-child {
  gap: 4px;
  display: grid;
}
.slide-steps__carousel-meta span {
  color: var(--slide-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}
.slide-steps__carousel-meta strong {
  font-size: 21px;
  line-height: 1.2;
}
.slide-steps__carousel-controls {
  gap: 8px;
  display: flex;
}
.slide-steps__carousel-controls button {
  border: 1px solid var(--slide-navy);
  width: 46px;
  height: 46px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__carousel-controls button {
    border: 1px solid color-mix(in oklab, var(--slide-navy) 15%, transparent);
  }
}
.slide-steps__carousel-controls button {
  color: var(--slide-navy);
  border-radius: 50%;
}
.slide-steps__carousel-dots {
  justify-content: center;
  gap: 8px;
  padding: 0 20px 18px;
  display: flex;
}
.slide-steps__carousel-dots button {
  border-radius: 50%;
  width: 22px;
  min-width: 22px;
  height: 22px;
  padding: 0;
}
.slide-steps__carousel-dots button:after {
  background: var(--slide-navy);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-steps__carousel-dots button:after {
    background: color-mix(in oklab, var(--slide-navy) 28%, transparent);
  }
}
.slide-steps__carousel-dots button:after {
  content: "";
}
.slide-steps__carousel-dots button.is-active:after {
  background: var(--slide-blue);
  transform: scale(1.45);
}
.slide-steps__carousel-progress {
  background: var(--slide-blue);
  transform-origin: 0;
  height: 4px;
  animation: 4s linear both step-carousel-progress;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@keyframes step-carousel-progress {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.step-lightbox {
  z-index: 100;
  background: var(--slide-navy);
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 24px;
  padding: 32px;
  display: grid;
  position: fixed;
  inset: 0;
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox {
    background: color-mix(in oklab, var(--slide-navy) 96%, transparent);
  }
}
.step-lightbox {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: 0.18s ease-out both step-lightbox-fade;
}
.step-lightbox__figure {
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 1600px;
  height: calc(100dvh - 64px);
  margin: auto;
  animation: 0.22s ease-out both step-lightbox-scale;
  display: flex;
}
.step-lightbox__frame {
  flex: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  display: flex;
}
.step-lightbox__figure img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  box-shadow: 0 28px 70px var(--slide-navy);
  border-radius: 8px;
  display: block;
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox__figure img {
    box-shadow: 0 28px 70px
      color-mix(in oklab, var(--slide-navy) 60%, transparent);
  }
}
.step-lightbox__figure figcaption {
  color: var(--slide-paper);
  text-align: center;
  flex: none;
  margin-top: 18px;
}
.step-lightbox__count {
  color: var(--slide-paper);
  margin-bottom: 8px;
  display: inline-block;
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox__count {
    color: color-mix(in oklab, var(--slide-paper) 70%, transparent);
  }
}
.step-lightbox__count {
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 700;
}
.step-lightbox__figure h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}
.step-lightbox__figure p {
  color: var(--slide-paper);
  margin: 7px 0 0;
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox__figure p {
    color: color-mix(in oklab, var(--slide-paper) 76%, transparent);
  }
}
.step-lightbox__figure p {
  font-size: 16px;
  line-height: 1.4;
}
.step-lightbox__close,
.step-lightbox__arrow {
  border: 1px solid var(--slide-paper);
  width: 54px;
  height: 54px;
  padding: 0;
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox__close,
  .step-lightbox__arrow {
    border: 1px solid color-mix(in oklab, var(--slide-paper) 24%, transparent);
  }
}
.step-lightbox__close,
.step-lightbox__arrow {
  background: var(--slide-paper);
  border-radius: 50%;
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox__close,
  .step-lightbox__arrow {
    background: color-mix(in oklab, var(--slide-paper) 12%, transparent);
  }
}
.step-lightbox__close,
.step-lightbox__arrow {
  color: var(--slide-paper);
  box-shadow: none;
}
.step-lightbox__close:hover,
.step-lightbox__arrow:hover {
  background: var(--slide-paper);
}
@supports (color: color-mix(in lab, red, red)) {
  .step-lightbox__close:hover,
  .step-lightbox__arrow:hover {
    background: color-mix(in oklab, var(--slide-paper) 22%, transparent);
  }
}
.step-lightbox__close:hover,
.step-lightbox__arrow:hover {
  color: var(--slide-paper);
}
.step-lightbox__close svg,
.step-lightbox__arrow svg {
  width: 26px;
  height: 26px;
}
.step-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
}
.step-lightbox__arrow--previous {
  grid-column: 1;
}
.step-lightbox__figure {
  grid-column: 2;
}
.step-lightbox__arrow--next {
  grid-column: 3;
}
@keyframes step-lightbox-fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes step-lightbox-scale {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.slide-demo--video {
  background: var(--slide-paper);
  justify-content: center;
  align-items: center;
  padding: 96px 150px;
  display: flex;
}
.slide-demo__video-frame {
  aspect-ratio: 816/632;
  background: var(--slide-paper);
  width: min(100%, 1145px);
  max-height: calc(100% - 24px);
  box-shadow: 0 22px 58px var(--slide-navy);
  border-radius: 24px;
  overflow: hidden;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-demo__video-frame {
    box-shadow: 0 22px 58px
      color-mix(in oklab, var(--slide-navy) 16%, transparent);
  }
}
.slide-demo__video-frame video {
  object-fit: cover;
  object-position: center;
  background: var(--slide-paper);
  width: 100%;
  height: 100%;
  display: block;
}
/* --- Autodoc cover: headline left, assistant reply with the Autodoc app right --- */
.slide-cover__intro {
  width: 1000px;
  top: 300px;
}
.slide-cover__title {
  margin: 0;
  font-size: 78px;
  line-height: 1.1;
}
.slide-cover .cover-chat {
  width: 600px;
  top: 300px;
  right: 130px;
}
.slide-cover .cover-chat__body {
  gap: 20px;
  padding: 26px 26px 24px;
}
.slide-cover .cover-chat__user {
  align-self: stretch;
  line-height: 1.4;
}
.cover-app {
  gap: 14px;
  padding: 14px 14px 14px 16px;
}
.cover-app__icon {
  background: var(--slide-navy);
  border-radius: 12px;
  flex: none;
  width: 52px;
  height: 52px;
  padding: 9px;
}
.cover-app__icon svg {
  width: 100%;
  height: 100%;
}
.autodoc-mark {
  background: oklch(24% 0.035 250);
}
.autodoc-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.autodoc-mark__white {
  fill: #fff;
}
.autodoc-mark__orange {
  fill: oklch(66% 0.21 40);
}
.cover-app__name {
  letter-spacing: 0.02em;
  font-weight: 700 !important;
}
.cover-app__hint {
  color: var(--slide-ink-muted);
  white-space: nowrap;
  font-size: 14px;
}
.cover-app__buttons {
  flex: none;
  gap: 8px;
  margin-left: auto;
  display: flex;
}
.cover-app__btn {
  border: 1px solid var(--cover-card-border);
  color: var(--slide-navy);
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
}
.cover-app__btn--primary {
  background: var(--slide-navy);
  border-color: var(--slide-navy);
  color: var(--slide-paper);
}

/* --- Title + screenshot (slides 2 and 5) --- */
.slide-demo--media .slide-demo__center {
  justify-content: flex-start;
  gap: 56px;
  padding: 96px 150px 150px;
}
.slide-demo--media .slide-demo__center-title {
  max-width: 1500px;
  font-size: 64px;
}
.slide-pitch__image {
  object-fit: contain;
  border-radius: 28px;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: 560px;
  box-shadow: 0 30px 70px -30px var(--slide-navy);
  display: block;
}
@supports (color: color-mix(in lab, red, red)) {
  .slide-pitch__image {
    box-shadow: 0 30px 70px -30px color-mix(in oklab, var(--slide-navy) 30%, transparent);
  }
}
.slide-demo--timeline .slide-demo__center {
  gap: 28px;
  padding-top: 70px;
}
/* Slide 5: AI platforms roadmap (from media/ai-platforms-roadmap - Copy.html, without its card and export button) */
.ai-roadmap {
  --navy: #12233d;
  --navy-2: #414f64;
  --muted: #6f7a88;
  --primary: #2969cc;
  --border: #dae4f2;
  --guide: #cce0ff;
  --claude: #d97757;
  --chatgpt: #10a37f;
  --gemini: #4f7df3;
  color: var(--navy);
  width: 1400px;
  max-width: 100%;
  font-family: var(--font-sans);
  font-variant-numeric: lining-nums;
}
.ai-roadmap__hint {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 13px;
  display: none;
}
.ai-roadmap__scroll svg {
  width: 100%;
  height: auto;
  display: block;
}
.ai-roadmap svg text {
  font-variant-numeric: lining-nums;
}
.ai-roadmap .t-badge { font: 700 16px var(--font-sans); fill: var(--primary); }
.ai-roadmap .t-stop { font: 700 22px var(--font-sans); fill: var(--navy); }
.ai-roadmap .t-stop-sub { font: 500 15px var(--font-sans); fill: var(--muted); }
.ai-roadmap .t-stop-note { font: 700 15px var(--font-sans); fill: var(--primary); }
.ai-roadmap .t-pill { font: 800 22px var(--font-sans); fill: #fff; }
.ai-roadmap .t-date { font: 800 13px var(--font-sans); letter-spacing: 0.1em; }
.ai-roadmap .t-desc { font: 500 15px var(--font-sans); fill: var(--navy-2); }
.ai-roadmap .t-desc-b { font: 700 15px var(--font-sans); fill: var(--navy); }
.ai-roadmap .t-term { font: 800 26px var(--font-sans); fill: var(--navy); }
.ai-roadmap .t-term-sub { font: 500 15px var(--font-sans); fill: var(--muted); }
.ai-roadmap .t-list { font: 500 16px var(--font-sans); fill: var(--navy-2); }
.ai-roadmap .t-list .b { font-weight: 800; fill: var(--navy); }
.ai-roadmap .t-chip { font: 800 11px var(--font-sans); letter-spacing: 0.12em; fill: var(--gemini); }
.ai-roadmap .pulse {
  transform-origin: 800px 600px;
  animation: 2.4s ease-out infinite ai-roadmap-pulse;
}
@keyframes ai-roadmap-pulse {
  0% { opacity: 0.55; transform: scale(0.7); }
  to { opacity: 0; transform: scale(1.6); }
}
@media (prefers-reduced-motion: reduce) {
  .ai-roadmap .pulse {
    opacity: 0.25;
    animation: none;
  }
}
.ai-roadmap__legend {
  border-top: 1px solid var(--border);
  color: var(--navy-2);
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  margin-top: 16px;
  padding-top: 18px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}
.ai-roadmap__legend > span {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.ai-roadmap__legend svg {
  flex: none;
}

/* --- Slide 2: the assistant screenshot rebuilt from components (sizes ≈ 0.9 × the original PNG) --- */
.chat-shot {
  --chat-font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --chat-ink: #1a1a1a;
  --chat-muted: #8a8a8a;
  --chat-line: #e3e3e3;
  background: #fafafa;
  width: 1520px;
  max-width: 100%;
  font-family: var(--chat-font);
  color: var(--chat-ink);
  text-align: left;
  border-radius: 28px;
  flex: none;
  box-shadow: 0 30px 70px -30px var(--slide-navy);
}
@supports (color: color-mix(in lab, red, red)) {
  .chat-shot {
    box-shadow: 0 30px 70px -30px color-mix(in oklab, var(--slide-navy) 30%, transparent);
  }
}
.chat-shot__inner {
  flex-direction: column;
  width: 1078px;
  margin: 0 auto 0 210px;
  padding: 36px 0 44px;
  display: flex;
}
.chat-shot p {
  margin: 0;
}
.chat-shot__user {
  color: #1f2a22;
  background: #dff3e5;
  border-radius: 31px;
  align-self: flex-end;
  padding: 14px 23px;
  font-size: 22px;
  line-height: 1.5;
}
.chat-shot__meta {
  color: var(--chat-muted);
  align-items: center;
  gap: 6px;
  margin-top: 58px !important;
  font-size: 22px;
  line-height: 1.4;
  display: flex;
}
.chat-shot__meta--tool {
  color: #4a4a4a;
  margin-top: 30px !important;
}
.chat-shot__tool-icon {
  letter-spacing: -0.12em;
  margin-right: 4px;
  font-size: 18px;
  font-weight: 600;
}
.chat-shot__chevron,
.chat-shot__actions svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-shot__chevron {
  width: 20px;
  height: 20px;
}
.chat-shot__actions circle {
  fill: currentColor;
  stroke: none;
}
.chat-shot__app {
  border: 1px solid var(--chat-line);
  background: #fff;
  border-radius: 31px;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding: 21px 22px;
  display: flex;
}
.chat-shot__app .autodoc-mark {
  border-radius: 14px;
  flex: none;
  width: 66px;
  height: 66px;
  padding: 11px;
}
.chat-shot__app-text {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  font-size: 19px;
  display: flex;
}
.chat-shot__app-text strong {
  font-size: 22px;
  font-weight: 600;
}
.chat-shot__app-text span {
  color: var(--chat-muted);
}
.chat-shot__btn {
  white-space: nowrap;
  border: 1px solid var(--chat-line);
  background: #fff;
  border-radius: 999px;
  flex: none;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.chat-shot__btn--primary {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.chat-shot__reply {
  margin-top: 26px !important;
  font-size: 22px;
  line-height: 1.5;
}
.chat-shot__actions {
  color: #4a4a4a;
  gap: 21px;
  margin-top: 24px;
  display: flex;
}
.chat-shot__actions svg {
  width: 24px;
  height: 24px;
}

/* --- Two videos side by side (slide 3) --- */
.slide-videos {
  background: var(--slide-paper);
}
.slide-videos__title {
  text-align: center;
  max-width: none;
  font-size: 64px;
  position: absolute;
  top: 96px;
  left: 200px;
  right: 200px;
}
.slide-videos__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 40px;
  display: grid;
  position: absolute;
  inset: 290px 150px 150px;
}
.slide-videos .slide-demo__video-frame {
  width: 100%;
  max-height: none;
}
.video-card {
  font: inherit;
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  position: relative;
}
.video-card video {
  filter: blur(14px) saturate(0.9);
  transition: filter 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.08);
}
.video-card:after {
  content: "";
  background: oklch(100% 0 0 / 0.35);
  transition: opacity 0.45s;
  position: absolute;
  inset: 0;
}
.video-card__label {
  z-index: 1;
  background: var(--slide-navy);
  color: var(--slide-paper);
  border-radius: 999px;
  align-items: center;
  gap: 14px;
  padding: 16px 30px 16px 20px;
  font-size: 30px;
  font-weight: 800;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px -18px var(--slide-navy);
}
.video-card__play {
  background: var(--slide-blue);
  border-radius: 50%;
  flex: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.video-card__play:after {
  content: "";
  border-top: 9px solid #0000;
  border-bottom: 9px solid #0000;
  border-left: 14px solid var(--slide-paper);
  position: absolute;
  top: 11px;
  left: 15px;
}
.video-card.is-active video {
  filter: none;
  transform: none;
}
.video-card.is-active:after,
.video-card.is-active .video-card__label {
  opacity: 0;
}
.video-card.is-active .video-card__label {
  transform: translate(-50%, -50%) scale(0.92);
}
@media (hover: hover) {
  .video-card:not(.is-active):hover .video-card__label {
    transform: translate(-50%, -50%) scale(1.06);
  }
}
.video-card:focus-visible {
  outline: 3px solid var(--slide-blue);
  outline-offset: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .video-card video,
  .video-card:after,
  .video-card__label {
    transition: none;
  }
}

@media (width<=768px) and (orientation: portrait) {
  /* Autodoc cover */
  .slide-cover__title {
    margin: 0;
    font-size: 36px;
  }
  .slide-cover .cover-chat__body {
    gap: 12px;
    padding: 14px;
  }
  .cover-app {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }
  .cover-app__icon {
    border-radius: 9px;
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .cover-app .cover-connector__text {
    flex: 1;
    min-width: 0;
  }
  .cover-app__hint {
    white-space: normal;
    font-size: 11px;
  }
  .cover-app__buttons {
    justify-content: flex-end;
    width: 100%;
  }
  .cover-app__btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Title + screenshot, two videos */
  .slide-demo--media .slide-demo__center {
    justify-content: center;
    gap: 24px;
    padding: 0;
  }
  .slide-demo--media .slide-demo__center-title,
  .slide-videos__title {
    font-size: 28px;
  }
  .slide-pitch__image {
    border-radius: 14px;
    max-height: none;
  }
  /* The roadmap keeps a readable size and scrolls sideways (the deck ignores swipes on it). */
  .ai-roadmap__hint {
    display: block;
  }
  .ai-roadmap__scroll {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 0 -18px;
    padding: 0 18px;
    overflow-x: auto;
  }
  .ai-roadmap__scroll svg {
    min-width: 760px;
  }
  .ai-roadmap__legend {
    gap: 10px 18px;
    font-size: 12px;
  }
  .ai-roadmap__legend svg {
    width: auto;
    height: 16px;
  }
  .chat-shot {
    border-radius: 16px;
    width: 100%;
  }
  .chat-shot__inner {
    width: auto;
    margin: 0;
    padding: 16px 16px 18px;
  }
  .chat-shot__user,
  .chat-shot__meta,
  .chat-shot__reply {
    font-size: 13px;
  }
  .chat-shot__user {
    border-radius: 16px;
    padding: 8px 12px;
  }
  .chat-shot__meta {
    margin-top: 16px !important;
  }
  .chat-shot__meta--tool {
    margin-top: 8px !important;
  }
  .chat-shot__tool-icon {
    font-size: 11px;
  }
  .chat-shot__chevron {
    width: 14px;
    height: 14px;
  }
  .chat-shot__app {
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    padding: 10px;
  }
  .chat-shot__app .autodoc-mark {
    border-radius: 9px;
    width: 38px;
    height: 38px;
    padding: 6px;
  }
  .chat-shot__app-text {
    flex-basis: calc(100% - 48px);
    gap: 1px;
    font-size: 11px;
  }
  .chat-shot__app-text strong {
    font-size: 14px;
  }
  .chat-shot__btn {
    padding: 7px 13px;
    font-size: 12px;
  }
  .chat-shot__btn:not(.chat-shot__btn--primary) {
    margin-left: auto;
  }
  .chat-shot__reply {
    margin-top: 12px !important;
  }
  .chat-shot__actions {
    gap: 14px;
    margin-top: 12px;
  }
  .chat-shot__actions svg {
    width: 16px;
    height: 16px;
  }
  .slide-videos {
    justify-content: center;
  }
  .slide-videos__title,
  .slide-videos__grid {
    position: static;
    inset: auto;
  }
  .slide-videos__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .slide-videos .slide-demo__video-frame {
    border-radius: 14px;
  }
  .video-card__label {
    gap: 8px;
    padding: 8px 16px 8px 10px;
    font-size: 16px;
  }
  .video-card__play {
    width: 24px;
    height: 24px;
  }
  .video-card__play:after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
    top: 6px;
    left: 9px;
  }

  /* Fade the content out under the floating slide controls. */
  .deck-stage:after {
    content: "";
    z-index: 5;
    background: linear-gradient(transparent, var(--slide-paper) 70%);
    height: calc(96px + env(safe-area-inset-bottom));
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .slide-wrapper {
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    inset: 0;
    overflow: hidden auto;
    transform: none;
  }
  .slide-content {
    --slide-title: 30px;
    --slide-subtitle: 17px;
    --slide-chrome: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    height: auto;
    min-height: 100%;
    padding: 70px 20px 124px;
    display: flex;
    overflow: visible;
  }
  .slide-brand {
    height: auto;
    position: absolute;
    top: 18px;
    bottom: auto;
    left: 20px;
  }
  .slide-brand__logo {
    height: 26px;
  }

  .slide-cover__intro,
  .cover-chat,
  .slide-solution__header,
  .slide-solution__points,
  .slide-demo__center,
  .slide-differentiators__header,
  .slide-differentiators__grid,
  .slide-roadmap__header,
  .slide-roadmap__gantt,
  .slide-closing__header,
  .slide-closing__analytics,
  .slide-next__center {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: static;
    inset: auto;
  }
  .slide-cover {
    justify-content: center;
    gap: 28px;
    padding-top: 48px;
  }
  .cover-claude-logo {
    font-size: 30px;
  }
  .cover-claude-logo--small {
    font-size: 20px;
  }
  .slide-cover__title {
    margin-top: 18px;
    font-size: 40px;
  }
  .cover-connector,
  .slide-cover__title br {
    display: none;
  }
  .cover-chat {
    border-radius: 20px;
  }
  .cover-chat__header {
    padding: 12px 16px;
  }
  .cover-chat__body {
    gap: 12px;
    padding: 14px 16px 4px;
  }
  .cover-chat__user,
  .cover-connector__text,
  .cover-chat__input {
    font-size: 13px;
  }
  .cover-chat__user {
    border-radius: 12px;
    padding: 8px 12px;
  }
  .cover-chat__tool {
    border-radius: 12px;
    gap: 10px;
    padding: 8px 12px;
  }
  .cover-chat__tool .cover-connector__icon {
    width: 26px;
    height: 26px;
  }
  .cover-status {
    gap: 5px;
    font-size: 12px;
  }
  .cover-status:before {
    width: 8px;
    height: 8px;
  }
  .cover-chat__chevron {
    width: 16px;
    height: 16px;
  }
  .cover-chat__reply {
    font-size: 14px;
    line-height: 1.5;
  }
  .cover-chat__actions {
    gap: 12px;
  }
  .cover-chat__actions svg {
    width: 15px;
    height: 15px;
  }
  .cover-chat__input {
    border-radius: 12px;
    gap: 10px;
    margin: 14px 10px 10px;
    padding: 8px 8px 8px 12px;
  }
  .cover-chat__sparkle {
    width: 16px;
    height: 16px;
  }
  .cover-chat__send {
    width: 28px;
    height: 28px;
  }
  .cover-chat__send svg {
    width: 15px;
    height: 15px;
  }
  .slide-cover__ambient {
    display: none;
  }
  .slide-title,
  .slide-solution__header .slide-title,
  .slide-demo__center .slide-title,
  .slide-differentiators__header .slide-title,
  .slide-roadmap__header .slide-title,
  .slide-closing__header .slide-title,
  .slide-next__center .slide-title {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.2;
  }
  .slide-next__center .slide-title {
    font-size: 38px;
  }
  .slide-demo--title-only .slide-demo__center,
  .slide-demo__center {
    text-align: center;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0;
    display: flex;
  }
  .slide-demo--title-only .slide-demo__center-title {
    font-size: 34px;
  }
  .slide-demo--video {
    min-height: 100%;
    padding: 72px 16px 88px;
  }
  .slide-demo__video-frame {
    width: 100%;
    box-shadow: 0 12px 30px var(--slide-navy);
    border-radius: 12px;
  }
  @supports (color: color-mix(in lab, red, red)) {
    .slide-demo__video-frame {
      box-shadow: 0 12px 30px
        color-mix(in oklab, var(--slide-navy) 14%, transparent);
    }
  }
  .slide-steps {
    align-items: center;
    min-height: 100%;
    padding: 64px 18px 120px;
    display: flex;
  }
  .slide-steps__layout {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: auto 0;
    display: flex;
  }
  .slide-steps__details {
    order: 2;
  }
  .slide-steps__header {
    text-align: left;
  }
  .slide-steps__header .slide-title {
    font-size: 30px;
  }
  .slide-steps__list,
  .slide-steps--preview .slide-steps__list {
    display: none;
  }
  .slide-steps--preview .slide-steps__header,
  .slide-steps--preview .slide-steps__details {
    order: 0;
  }
  .slide-step-card__expand {
    gap: 5px;
    height: 30px;
    padding: 0 11px;
    font-size: 10px;
    bottom: 10px;
    right: 10px;
  }
  .slide-steps__panel {
    width: 100%;
    box-shadow: none;
    background: 0 0;
    border-radius: 18px;
    padding: 0;
  }
  .slide-steps__layer {
    display: none;
  }
  .slide-steps__carousel {
    border-radius: 16px;
    margin-top: 0;
  }
  .slide-steps__carousel-image,
  .slide-steps--interactive .slide-steps__carousel-image {
    aspect-ratio: 4/3;
    background: var(--slide-paper);
    height: auto;
  }
  .slide-steps__carousel-image img,
  .slide-steps--preview .slide-steps__carousel-image img {
    object-fit: contain;
    object-position: center;
  }
  .slide-steps .slide-footer {
    display: none;
  }
  .slide-steps--interactive {
    padding: 70px 18px 124px;
  }
  .slide-steps--interactive .slide-steps__layout {
    flex-direction: column;
    grid-template-columns: none;
    gap: 26px;
    display: flex;
  }
  .slide-steps--interactive .slide-steps__panel {
    padding: 18px;
  }
  .slide-steps--interactive .slide-steps__carousel-meta {
    min-height: 0;
  }
  .slide-steps--interactive .slide-step-card__expand {
    border-width: 1px;
    gap: 5px;
    height: 30px;
    padding: 0 11px;
    font-size: 10px;
    bottom: 10px;
    right: 10px;
  }
  .slide-steps--interactive .slide-step-card__expand svg {
    width: 14px;
    height: 14px;
  }
  .slide-steps--interactive .slide-step-card__pointer {
    display: none;
  }
  .slide-steps__carousel-meta {
    min-height: 82px;
    padding: 14px;
  }
  .slide-steps__carousel-meta strong {
    font-size: 16px;
  }
  .slide-steps__carousel-controls button {
    width: 42px;
    height: 42px;
  }
  .slide-steps__carousel-dots {
    gap: 3px;
    padding: 0 10px 12px;
  }
  .slide-step-card__badge {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .step-lightbox {
    grid-template-columns: 1fr;
    place-items: center;
    padding: 64px 16px 24px;
  }
  .step-lightbox__figure,
  .step-lightbox__arrow--previous,
  .step-lightbox__arrow--next {
    grid-column: 1;
  }
  .step-lightbox__figure {
    grid-row: 1;
    width: 100%;
    height: calc(100dvh - 150px);
  }
  .step-lightbox__figure h3 {
    font-size: 20px;
  }
  .step-lightbox__figure p {
    font-size: 14px;
  }
  .step-lightbox__arrow {
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    position: absolute;
  }
  .step-lightbox__arrow--previous {
    left: calc(50% - 62px);
  }
  .step-lightbox__arrow--next {
    right: calc(50% - 62px);
  }
  .step-lightbox__close {
    width: 48px;
    height: 48px;
    top: 12px;
    right: 12px;
  }
  .slide-solution__points {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 14px;
    display: flex;
  }
  .slide-solution__header {
    text-align: center;
  }
  .slide-solution__point {
    text-align: center;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
  }
  .slide-solution__point p,
  .slide-solution__point p:where(*) {
    font-size: 17px;
    line-height: 1.45;
  }
  .slide-differentiators__grid {
    flex-direction: column;
    gap: 12px;
    display: flex;
  }
  .slide-differentiators__item {
    border-radius: 18px;
    padding: 18px 20px;
  }
  .slide-differentiators__item h3 {
    min-height: 0;
    font-size: 19px;
  }
  .slide-differentiators__rule {
    margin: 12px 0;
  }
  .slide-differentiators__description {
    font-size: 15px;
  }
  .slide-closing__header-inner {
    gap: 0;
  }
  .slide-closing__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .slide-closing__benefit {
    border-radius: 18px;
    gap: 8px;
    padding: 18px 20px;
  }
  .slide-closing__benefit-label {
    font-size: 17px;
  }
  .slide-closing__benefit-text {
    font-size: 15px;
  }
  .slide-roadmap__gantt {
    gap: 0;
    display: flex;
  }
  .slide-roadmap__gantt-header,
  .slide-roadmap__gantt-body,
  .slide-roadmap__gantt-row {
    grid-template-columns: 104px repeat(8, 1fr);
  }
  .slide-roadmap__gantt-header {
    font-size: 12px;
  }
  .slide-roadmap__gantt-track-name {
    font-size: 13px;
  }
  .slide-roadmap__gantt-task-label {
    padding-right: 8px;
    font-size: 11px;
    line-height: 1.2;
  }
  .slide-roadmap__gantt-bar {
    border-radius: 5px;
    height: 16px;
  }
  .slide-roadmap__gantt-bar--chip {
    border-width: 1.5px;
    width: calc(100% + 14px);
    height: 24px;
    margin-top: -4px;
    margin-left: -7px;
    padding: 0 6px;
  }
  .slide-roadmap__gantt-bar-chip-text {
    font-size: 10px;
  }
  .slide-roadmap__gantt-legend {
    gap: 10px;
    margin-top: 12px;
    font-size: 11px;
  }
  .slide-roadmap__footnote {
    font-size: 11px;
  }
  .slide-next__center {
    flex: 1;
    justify-content: center;
  }
  .slide-next__subtitle {
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
  }
  .slide-next__contact {
    margin-top: 28px;
    font-size: 15px;
  }
  .slide-next__name {
    font-size: 20px;
  }
  .slide-footer,
  .slide-cover .slide-footer,
  .slide-solution .slide-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    height: auto;
    margin-top: auto;
    padding: 12px 0 0;
    font-size: 11px;
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
  }
  /* The slide controls show the page count, so footers only keep a source or logo. */
  .slide-page,
  .slide-footer:not(:has(.slide-source, img)) {
    display: none;
  }
  .slide-source {
    flex: 60%;
    font-size: 11px;
    font-weight: 600;
  }
  .slide-cover__keenethics-logo {
    height: 24px;
  }
  .deck-controls {
    right: 50%;
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 6px;
    transform: translate(50%);
  }
  .deck-controls__meta {
    padding: 0 10px;
  }
  .deck-dots {
    display: none;
  }
  .deck-controls__count {
    white-space: nowrap;
    min-width: 62px;
    font-size: 13px;
  }
  .deck-controls__divider,
  .deck-controls > .deck-present {
    display: none;
  }
  .deck-arrow {
    width: 52px;
    height: 52px;
  }
  .deck-arrow svg {
    width: 26px;
    height: 26px;
  }
}
/* Phone in landscape: keep the scaled 16:9 slide, but reserve a strip at the bottom
   for compact controls so they never cover the slide. */
@media (orientation: landscape) and (height<=500px) {
  .deck-shell {
    min-height: 0;
  }
  .deck-stage {
    bottom: calc(46px + env(safe-area-inset-bottom));
  }
  .deck-controls {
    right: 50%;
    bottom: max(4px, env(safe-area-inset-bottom));
    box-shadow: none;
    padding: 3px;
    transform: translate(50%);
  }
  .deck-controls:after {
    display: none;
  }
  .deck-controls__meta {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    display: flex;
  }
  .deck-controls__count {
    min-width: 0;
    padding: 0;
    font-size: 12px;
  }
  .deck-arrow,
  .deck-controls > .deck-present {
    width: 34px;
    height: 34px;
  }
  .deck-arrow svg,
  .deck-controls > .deck-present svg {
    width: 18px;
    height: 18px;
  }
  .deck-controls__divider {
    height: 20px;
    margin: 0 4px;
  }
  .step-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 12px;
  }
  .step-lightbox__figure {
    height: calc(100dvh - 24px);
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-ordinal {
  syntax: "*";
  inherits: false;
}
@property --tw-slashed-zero {
  syntax: "*";
  inherits: false;
}
@property --tw-numeric-figure {
  syntax: "*";
  inherits: false;
}
@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false;
}
@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@property --tw-content {
  syntax: "*";
  inherits: false;
  initial-value: "";
}
