:root {
  --ink: #172033;
  --muted: #596579;
  --dim: #788499;
  --paper: #f8fbfb;
  --paper-alt: #eef6f5;
  --card: #ffffff;
  --line: #d9e5e4;
  --teal: #00a896;
  --teal-dark: #067b70;
  --teal-soft: #e4f6f3;
  --mint: #62d6c9;
  --coral: #ef6b5b;
  --amber: #c88719;
  --navy: #101827;
  --navy-2: #17263a;
  --green: #15805f;
  --shadow: 0 16px 44px rgba(20, 48, 62, .1);
  --radius: 18px;
  --radius-sm: 11px;
  --font-display: "Segoe UI", Inter, Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; }
body {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; }

.deck { width: 100vw; height: 100vh; overflow: hidden; position: relative; }
.track {
  display: flex;
  height: 100vh;
  transition: transform .5s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
}
.slide {
  width: 100vw;
  height: 100vh;
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 72px 92px;
  position: relative;
  background: var(--paper);
}
.slide::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  top: -210px;
  border-radius: 50%;
  border: 72px solid rgba(0, 168, 150, .07);
  pointer-events: none;
}
.slide--alt { background: var(--paper-alt); }
.slide--dark { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.slide--teal { background: linear-gradient(135deg, #008f82, #00a896 58%, #086d69); color: #fff; }
.slide--dark::after, .slide--teal::after { border-color: rgba(255,255,255,.08); }
.inner { width: 100%; max-width: 1140px; position: relative; z-index: 2; }

.brand {
  position: fixed;
  z-index: 100;
  top: 21px;
  left: 27px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand__mark { color: var(--teal); font-size: 19px; }
.brand__ai { background: var(--teal); color: #fff; border-radius: 5px; padding: 2px 6px; font-size: 10px; letter-spacing: .08em; }
.deck-is-dark .brand__mark { color: #fff; }
.deck-is-dark .brand__ai { background: rgba(255,255,255,.2); }
.language-switcher {
  position: fixed;
  z-index: 101;
  top: 18px;
  right: 96px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(23,32,51,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
}
.language-switcher__link {
  min-width: 31px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
}
.language-switcher__link[aria-current="page"] { background: var(--teal); color: #fff; }
.deck-is-dark .language-switcher { border-color: rgba(255,255,255,.2); background: rgba(16,24,39,.66); }
.deck-is-dark .language-switcher__link { color: rgba(255,255,255,.76); }
.deck-is-dark .language-switcher__link[aria-current="page"] { color: #fff; }
.counter { position: fixed; z-index: 100; top: 25px; right: 27px; color: var(--dim); font-size: 13px; letter-spacing: .08em; }
.counter strong { color: var(--ink); }
.deck-is-dark .counter strong { color: #fff; }
.nav {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
}
.nav__button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(23,32,51,.13);
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: .2s ease;
}
.nav__button:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.nav__button:disabled { opacity: .2; cursor: default; }
.dots {
  position: fixed;
  z-index: 100;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot { width: 8px; height: 8px; border: 0; border-radius: 50%; background: rgba(23,32,51,.2); cursor: pointer; transition: .2s ease; }
.dot[aria-current="true"] { background: var(--teal); transform: scale(1.45); }

.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.slide--dark .eyebrow, .slide--teal .eyebrow { color: #80eee2; }
.title { font-family: var(--font-display); font-size: clamp(37px, 4.4vw, 59px); line-height: 1.06; letter-spacing: -.035em; font-weight: 850; max-width: 1000px; }
.title--hero { font-size: clamp(58px, 8.5vw, 112px); color: var(--teal); }
.title .accent { color: var(--teal); }
.slide--dark .title, .slide--teal .title { color: #fff; }
.subtitle { color: var(--muted); font-size: 17px; line-height: 1.62; max-width: 760px; margin-top: 16px; }
.slide--dark .subtitle, .slide--teal .subtitle { color: rgba(255,255,255,.85); }
.lead { font-size: 19px; line-height: 1.55; color: var(--muted); }
.slide--dark .lead, .slide--teal .lead { color: rgba(255,255,255,.88); }
.small { font-size: 12px; color: var(--dim); line-height: 1.5; }
.slide--dark .small, .slide--teal .small { color: rgba(255,255,255,.68); }
.source { margin-top: 12px; font-size: 10px; color: var(--dim); line-height: 1.45; }
.source a { text-decoration-thickness: 1px; text-underline-offset: 2px; }
.slide--dark .source, .slide--teal .source { color: rgba(255,255,255,.62); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 17px; }
.chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; background: rgba(255,255,255,.75); color: var(--muted); font-size: 11px; font-weight: 750; }
.chip--teal { color: var(--teal-dark); border-color: rgba(0,168,150,.28); background: var(--teal-soft); }
.chip--amber { color: #85570f; border-color: rgba(200,135,25,.28); background: #fff5dc; }
.chip--dark { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--60 { grid-template-columns: 1.35fr .85fr; align-items: center; }
.grid--40 { grid-template-columns: .82fr 1.18fr; align-items: center; }
.mt-18 { margin-top: 18px; }
.mt-24 { margin-top: 24px; }
.mt-30 { margin-top: 30px; }

.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 20px; box-shadow: 0 5px 18px rgba(20,48,62,.035); }
.card--teal { background: var(--teal-soft); border-color: rgba(0,168,150,.28); }
.card--dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; box-shadow: none; }
.card--warning { background: #fff8e8; border-color: #edd8a5; }
.card--danger { background: #fff0ed; border-color: #f1c1ba; }
.card__kicker { color: var(--teal-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; font-weight: 850; margin-bottom: 8px; }
.card__title { font-size: 17px; line-height: 1.25; font-weight: 800; margin-bottom: 8px; }
.card__text { color: var(--muted); font-size: 13px; line-height: 1.55; }
.slide--dark .card__text, .slide--teal .card__text, .card--dark .card__text { color: rgba(255,255,255,.8); }

.stats { display: flex; align-items: stretch; gap: 12px; margin-top: 27px; }
.stat { flex: 1; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.75); }
.stat__value { font-family: var(--font-display); font-size: clamp(27px, 3vw, 43px); color: var(--teal); font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.stat__label { margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.4; font-weight: 650; }
.slide--dark .stat, .slide--teal .stat { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.09); }
.slide--dark .stat__value, .slide--teal .stat__value { color: #83f2e5; }
.slide--dark .stat__label, .slide--teal .stat__label { color: rgba(255,255,255,.76); }

.list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.list li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); position: absolute; left: 0; top: .55em; }
.slide--dark .list li, .slide--teal .list li { color: rgba(255,255,255,.83); }
.list--checks li::before { content: "✓"; width: auto; height: auto; top: 0; background: none; color: var(--teal-dark); font-weight: 900; }

.callout { border-left: 4px solid var(--teal); padding: 13px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--teal-soft); color: var(--teal-dark); font-size: 13px; line-height: 1.55; font-weight: 650; }
.callout--warning { border-color: var(--amber); background: #fff5dc; color: #76500f; }
.callout--danger { border-color: var(--coral); background: #fff0ed; color: #8c3e34; }
.slide--dark .callout { background: rgba(0,168,150,.15); color: #c9fff8; }

.flow { display: flex; align-items: stretch; gap: 8px; margin-top: 24px; }
.flow__node { flex: 1; min-width: 0; padding: 15px 10px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); text-align: center; }
.flow__node strong { display: block; font-size: 13px; margin-bottom: 4px; }
.flow__node span { display: block; color: var(--muted); font-size: 10px; line-height: 1.35; }
.flow__arrow { align-self: center; color: var(--teal); font-weight: 900; }

.mockup { border: 1px solid #cddedd; border-radius: 20px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.mockup__bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--navy); color: #fff; font-size: 11px; }
.mockup__body { padding: 17px; }
.mockup__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
.mockup__metric { padding: 10px; border-radius: 9px; background: var(--paper-alt); }
.mockup__metric strong { display: block; color: var(--teal-dark); font-size: 17px; }
.mockup__metric span { color: var(--dim); font-size: 9px; }
.mockup__alert { display: flex; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 9px; background: #fff5dc; color: #75500f; font-size: 10px; line-height: 1.35; }
.mockup__chart { width: 100%; height: 150px; display: block; margin: 3px 0 10px; }

.metric-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.metric-table th { color: var(--dim); font-size: 9px; text-align: right; text-transform: uppercase; letter-spacing: .08em; padding: 8px 9px; border-bottom: 1px solid var(--line); }
.metric-table th:first-child, .metric-table td:first-child { text-align: left; }
.metric-table td { padding: 8px 9px; text-align: right; border-bottom: 1px solid #edf2f2; }
.metric-table tr:last-child td { border-bottom: 0; }
.metric-table .highlight td { background: var(--teal-soft); color: var(--teal-dark); font-weight: 800; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 24px; }
.step { position: relative; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 19px; }
.step::before { content: attr(data-step); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 11px; font-weight: 900; margin-bottom: 12px; }
.step--current { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,168,150,.1); }
.step__title { font-size: 15px; font-weight: 850; margin-bottom: 8px; }
.step__text { color: var(--muted); font-size: 11px; line-height: 1.5; }

.person { display: grid; grid-template-columns: 116px 1fr; gap: 22px; align-items: center; }
.person__photo { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid #fff; box-shadow: 0 0 0 3px var(--teal), var(--shadow); }
.person__name { font-size: 25px; font-weight: 900; letter-spacing: -.025em; }
.person__role { color: var(--teal-dark); font-weight: 750; font-size: 13px; margin-top: 4px; }

.journey { display: flex; align-items: stretch; gap: 9px; margin-top: 20px; }
.journey__item { flex: 1; padding: 13px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.journey__item strong { display: block; color: var(--teal-dark); font-size: 11px; margin-bottom: 5px; }
.journey__item span { color: var(--muted); font-size: 10px; line-height: 1.4; }

.recognition { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 25px; }
.recognition__card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.recognition__status { color: var(--teal-dark); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.recognition__name { font-size: 16px; line-height: 1.25; font-weight: 850; margin: 12px 0; }
.recognition__year { color: var(--dim); font-size: 10px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 20px; text-decoration: none; font-size: 12px; font-weight: 800; border: 1px solid transparent; }
.button--primary { background: var(--coral); color: #fff; }
.button--secondary { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); color: #fff; }
.button--light { border-color: var(--line); background: #fff; color: var(--teal-dark); }

@media (prefers-reduced-motion: reduce) {
  .track, .dot, .nav__button { transition: none !important; }
}

@media (max-width: 720px) {
  .slide { align-items: flex-start; padding: 72px 18px 94px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; }
  .grid--2, .grid--3, .grid--4, .grid--60, .grid--40, .steps, .recognition { grid-template-columns: 1fr; }
  .stats, .flow, .journey { flex-direction: column; }
  .flow__arrow { transform: rotate(90deg); }
  .person { grid-template-columns: 84px 1fr; }
  .person__photo { width: 84px; height: 84px; }
  .title { font-size: 36px; }
  .title--hero { font-size: 64px; }
  .nav { top: auto; bottom: 13px; transform: none; }
  .nav__button { width: 40px; height: 40px; }
  .dots { bottom: 29px; gap: 6px; }
  .dot { width: 7px; height: 7px; }
  .mockup__metrics { grid-template-columns: 1fr; }
}

@media print {
  @page { size: 13.333in 7.5in; margin: 0; }
  html, body, .deck { width: auto !important; height: auto !important; overflow: visible !important; background: #fff; }
  body { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .track { display: block !important; width: auto !important; height: auto !important; transform: none !important; }
  .slide { width: 13.333in !important; height: 7.5in !important; min-height: 0 !important; padding: .72in .75in .82in !important; overflow: hidden !important; page-break-after: always; break-after: page; }
  .slide:last-child { page-break-after: auto; }
  .brand, .language-switcher, .counter, .nav, .dots { display: none !important; }
}
