/* Softprom About Builder · core styles
   Brand: Softprom Blue #0069C8, Deep Navy #07264A, White, slide bg #F5F8FE.
   Type: Montserrat 400/500/600/700/800/900. */

:root {
  --sp-blue: #0069C8;
  --sp-navy: #07264A;
  --sp-white: #ffffff;
  --slide-bg: #F5F8FE;

  --blue-50:  #F0F7FF;
  --blue-100: #E0EEFE;
  --blue-200: #B9DDFE;
  --blue-300: #7CC2FD;
  --blue-400: #36A4FA;
  --blue-500: #0C88EB;
  --blue-600: #0069C8;
  --blue-700: #0153A3;
  --blue-800: #064886;
  --blue-900: #0B3D6F;
  --blue-950: #07264A;

  /* direction accents — use only as dot/line/chip */
  --acc-cyber:   #4CAF50;
  --acc-cloud:   #03A9F4;
  --acc-itinfra: #FF5722;
  --acc-cad:     #CDDC39;
  --acc-sec:     #FFC107;

  --topbar-h: 56px;
  --sidebar-w: 380px;

  --slide-w: 1920px;
  --slide-h: 1080px;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --dur: 200ms;

  --font: 'Montserrat', 'Noto Sans Armenian', 'Noto Sans Georgian', 'Calibri', 'Arial', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--sp-navy);
  background: #EDF1F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ APP SHELL ============ */
.app {
  display: grid;
  grid-template-rows: var(--topbar-h) 1fr;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ============ TOP BAR ============ */
.topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  background: var(--sp-navy);
  color: var(--sp-white);
  z-index: 10;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.topbar__logo {
  height: 22px;
  width: auto;
  display: block;
}
.topbar__divider {
  width: 1px; height: 22px; background: rgba(255,255,255,0.14);
}
.topbar__title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
}
.topbar__spacer { flex: 1; }
.topbar__cta {
  background: var(--sp-blue);
  color: var(--sp-white);
  border: none;
  border-radius: 999px;
  padding: 9px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.topbar__cta:hover { background: var(--blue-700); }
.topbar__cta:active { background: var(--blue-800); transform: translateY(1px); }
.topbar__cta--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  margin-right: 10px;
}
.topbar__cta--ghost:hover { background: rgba(255,255,255,0.16); }
.topbar__cta:disabled, .sidebar__cta:disabled { opacity: 0.55; cursor: default; }

/* ============ BODY GRID ============ */
.body {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  height: 100%;
  overflow: hidden;
}

/* ============ SIDEBAR ============ */
.sidebar {
  background: #ffffff;
  border-right: 1px solid #DDE3EB;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidebar__inner {
  flex: 1;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sidebar__cta-wrap {
  padding: 14px 20px;
  border-top: 1px solid #DDE3EB;
  background: #ffffff;
  position: sticky;
  bottom: 0;
}
.sidebar__cta {
  width: 100%;
  background: var(--sp-blue);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.sidebar__cta:hover { background: var(--blue-700); }
.sidebar__cta:active { background: var(--blue-800); transform: translateY(1px); }
.sidebar__cta--alt {
  margin-top: 10px;
  background: #fff;
  color: var(--sp-blue);
  border: 1.5px solid #C6D6EC;
}
.sidebar__cta--alt:hover { background: #EAF2FC; }
.sidebar__cta--alt:active { background: #DCEAFB; }
.sidebar__cta-link {
  margin-top: 8px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 13px;
  color: var(--sp-blue); text-decoration: underline; text-underline-offset: 3px;
  align-self: center; padding: 4px;
}
.sidebar__cta-link:hover { color: var(--blue-700); }
.sidebar__cta-link:disabled { opacity: 0.5; cursor: default; }

/* PPTX editable export: hide live text so the captured PNG is graphics-only;
   native, editable text boxes are overlaid on top in the .pptx. */
.pptx-hide-text, .pptx-hide-text * { color: transparent !important; text-shadow: none !important; }
.sidebar__tip {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: #5A6677;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section__label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--sp-blue);
}
.section__hint {
  font-size: 11px;
  color: #5A6677;
  margin-top: -4px;
}

/* country picker */
.country {
  position: relative;
}
.country__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border: 1px solid #DDE3EB;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-navy);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.country__btn:hover { border-color: var(--blue-300); }
.country__btn--open { border-color: var(--sp-blue); }
.country__btn .meta {
  font-weight: 500;
  color: #5A6677;
  font-size: 12px;
}
.country__btn .chev { color: #8693A6; font-size: 10px; }

.country__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #DDE3EB;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(7,38,74,0.12);
  z-index: 20;
  max-height: 380px;
  overflow-y: auto;
  padding: 8px 0;
}
.country__search {
  margin: 4px 10px 8px;
  display: block;
  width: calc(100% - 20px);
  border: 1px solid #DDE3EB;
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.country__search:focus { border-color: var(--sp-blue); }
.country__region-label {
  padding: 6px 14px 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8693A6;
}
.country__option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
  border: none;
  text-align: left;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  color: var(--sp-navy);
  cursor: pointer;
}
.country__option:hover { background: var(--blue-50); }
.country__option--active { background: var(--blue-100); font-weight: 700; }
.country__option .meta {
  font-size: 11px;
  color: #5A6677;
  font-weight: 500;
}
.country__option--noffice .meta { color: #8693A6; font-style: italic; }

/* language picker */
.lang {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.lang__btn {
  background: #fff;
  border: 1px solid #DDE3EB;
  border-radius: 8px;
  padding: 9px 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sp-navy);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.lang__btn:hover { border-color: var(--blue-300); }
.lang__btn--active {
  background: var(--sp-blue);
  border-color: var(--sp-blue);
  color: #fff;
}

/* contact form */
.form { display: flex; flex-direction: column; gap: 8px; }
.form__row { display: flex; flex-direction: column; gap: 4px; }
.form__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A6677;
}
.form__input {
  background: #fff;
  border: 1px solid #DDE3EB;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--sp-navy);
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.form__input:focus { border-color: var(--sp-blue); }
.form__input--err { border-color: #D32F2F; }
.form__photo-preview { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.form__photo-preview img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px #DDE3EB; flex: 0 0 auto; }
.form__photo-preview span { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8693A6; }

/* Contact-photo source tabs + file picker */
.phototabs { display: inline-flex; gap: 2px; padding: 2px; background: var(--blue-50); border: 1px solid #DDE3EB; border-radius: 8px; margin-bottom: 8px; }
.phototabs__tab {
  border: none; background: transparent; cursor: pointer;
  padding: 6px 12px; border-radius: 6px;
  font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; color: #5A6677;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.phototabs__tab:hover { color: var(--sp-blue); }
.phototabs__tab--active { background: #fff; color: var(--sp-blue); box-shadow: 0 1px 3px rgba(7,38,74,0.12); }
.photofile__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--sp-blue);
  border: 1px dashed var(--blue-300); border-radius: 8px;
  padding: 10px 16px; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 700;
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}
.photofile__btn:hover { background: var(--blue-100); border-color: var(--sp-blue); }
.photofile__err { font-size: 11px; font-weight: 600; line-height: 1.4; color: #D32F2F; margin-top: 6px; }
.photofile__remove {
  border: none; background: transparent; cursor: pointer; padding: 4px 0;
  font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  color: #5A6677; text-decoration: underline; text-underline-offset: 2px;
}
.photofile__remove:hover { color: #D32F2F; }

/* slide toggles */
.toggles { display: flex; flex-direction: column; gap: 14px; }
.toggles__group { display: flex; flex-direction: column; gap: 4px; }
.toggles__group-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 4px;
}
.toggles__group-name {
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sp-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.toggles__group-icon { flex: 0 0 auto; }

/* Top-N segmented control (vendor-diversification slide) */
.topn { display: inline-flex; gap: 2px; padding: 2px; background: var(--blue-50); border: 1px solid #DDE3EB; border-radius: 8px; }
.topn__btn {
  flex: 1 1 0; border: none; background: transparent; cursor: pointer;
  padding: 7px 10px; border-radius: 6px;
  font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: #5A6677;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.topn__btn:hover { color: var(--sp-blue); }
.topn__btn--active { background: #fff; color: var(--sp-blue); box-shadow: 0 1px 3px rgba(7,38,74,0.12); }
.toggles__group-actions {
  font-size: 11px;
  color: #5A6677;
  display: flex; gap: 6px;
}
.toggles__group-action {
  background: none; border: none; padding: 0;
  color: var(--sp-blue); font-family: inherit; font-size: 11px;
  font-weight: 600; cursor: pointer; text-decoration: underline;
}
.toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
}
.toggle:hover { background: var(--blue-50); }
.toggle__check {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid #B7C2D4;
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.toggle__check svg { width: 11px; height: 11px; opacity: 0; }
.toggle--on .toggle__check {
  background: var(--sp-blue);
  border-color: var(--sp-blue);
}
.toggle--on .toggle__check svg { opacity: 1; }
.toggle--locked { cursor: default; opacity: 0.85; }
.toggle--locked:hover { background: transparent; }
.toggle__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-navy);
  flex: 1;
}
.toggle__lock {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8693A6;
  font-weight: 700;
}

/* ============ FLAGSHIP PICKER ============ */
.flagships {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flagships__dir {
  border: 1px solid #DDE3EB;
  border-radius: 10px;
  overflow: hidden;
}
.flagships__head {
  width: 100%;
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: none;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-navy);
  cursor: pointer;
  text-align: left;
  transition: background 200ms var(--ease);
}
.flagships__head:hover { background: var(--blue-50); }
.flagships__head--open { background: var(--blue-50); }
.flagships__head-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.flagships__head-name { flex: 1; }
.flagships__head-count {
  font-size: 11px; font-weight: 700; color: var(--sp-blue);
  background: var(--blue-100);
  padding: 2px 8px;
  border-radius: 999px;
}
.flagships__head-chev { color: #8693A6; font-size: 10px; }
.flagships__body {
  background: #F7FAFD;
  border-top: 1px solid #DDE3EB;
  padding: 8px 4px;
  max-height: 280px;
  overflow-y: auto;
}
.flagships__body-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 10px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5A6677;
}
.flagships__reset {
  background: none; border: none; padding: 0;
  font-family: inherit;
  font-size: 11px; font-weight: 700;
  color: var(--sp-blue);
  cursor: pointer;
  text-decoration: underline;
}
.flagships__list {
  display: flex; flex-direction: column;
}
.flagships__item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--sp-navy);
  user-select: none;
}
.flagships__item:hover { background: rgba(0,105,200,0.06); }
.flagships__item--on .flagships__item-name { color: var(--sp-navy); }
.flagships__item-name { flex: 1; }
.flagships__empty { font-size: 12px; color: #8693A6; font-style: italic; padding: 8px 10px; }

/* ============ PREVIEW PANE ============ */
.preview {
  overflow-y: auto;
  padding: 32px 0 64px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,105,200,0.05), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(7,38,74,0.04), transparent 50%),
    #EDF1F7;
}
.preview__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.preview__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 4px 4px;
}
.preview__head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--sp-navy);
}
.preview__head .sub {
  font-size: 12px;
  font-weight: 600;
  color: #5A6677;
  letter-spacing: 0.04em;
}
.preview__country-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sp-navy); color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.preview__country-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sp-blue);
}
.preview__head-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.preview__sync {
  font-size: 11px;
  font-weight: 600;
  color: #5A6677;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.preview__refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--sp-navy);
  border: 1px solid #D9E2EF;
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.preview__refresh:hover { background: #F2F6FC; border-color: var(--sp-blue); }
.preview__refresh:active { transform: translateY(1px); }
.preview__refresh:disabled { cursor: default; }
.preview__refresh-ic {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
.preview__refresh--spin .preview__refresh-ic { animation: sp-refresh-spin 0.9s linear infinite; }
@keyframes sp-refresh-spin { to { transform: rotate(360deg); } }

/* slide card frame */
.slide-card {
  position: relative;
}
.slide-card__badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 5;
  background: var(--sp-navy);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

/* Scaled wrapper: holds a 1920×1080 slide and scales it down to preview width */
.slide-scale {
  width: 100%;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(7,38,74,0.12), 0 2px 4px rgba(7,38,74,0.06);
  background: var(--slide-bg);
}
.slide-scale__inner {
  width: 1920px;
  height: 1080px;
  transform-origin: top left;
  position: relative;
}

/* ============ SLIDES (1920×1080) ============ */
.slide {
  width: 1920px;
  height: 1080px;
  position: relative;
  font-family: var(--font);
  background: var(--slide-bg);
  color: var(--sp-navy);
  overflow: hidden;
}

/* common atoms */
.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sp-blue);
  font-size: 22px;
}
.kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sp-navy);
  font-size: 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sp-blue); }

/* ============ BRAND LOGO ON EVERY SLIDE ============
   Absolute-positioned in the top-left corner. Aligned vertically with the
   first content row (eyebrow). The first child of .sl-body gets a left-indent
   so its text starts to the right of the logo. */
.slide__logo {
  position: absolute;
  top: 84px;
  left: 110px;
  height: 34px;
  width: auto;
  z-index: 2;
}
.slide__logo--lg { height: 34px; top: 84px; }
.slide__page-no {
  position: absolute;
  bottom: 56px;
  right: 110px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sp-navy);
  opacity: 0.5;
  z-index: 2;
}
.slide__page-no .sep { color: var(--sp-blue); opacity: 0.7; margin: 0 4px; }

/* Headers keep their original indent (clear of where the logo used to sit);
   the logo now sits ABOVE them, left-aligned with the body/table at x110. */
.sl-body > :first-child,
.s-cover__head,
.slide__head-strip {
  padding-left: 220px;
}

/* Dark variant — quote, statement */
.slide--dark { background: var(--sp-navy); color: #fff; }
.slide--dark .eyebrow { color: var(--blue-300); }
.slide--dark .kicker { color: rgba(255,255,255,0.85); }
.slide--dark .slide__page-no { color: #fff; opacity: 0.5; }
.slide--dark .slide__page-no .sep { color: var(--blue-300); }

/* Reusable atomic blocks */
.sl-title {
  font-weight: 900;
  font-size: 110px;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--sp-navy);
}
.sl-title .blue { color: var(--sp-blue); }
.slide--dark .sl-title { color: #fff; }

.sl-head {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 60px;
}

.sl-body {
  padding: 128px 110px 110px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 36px;
  height: 100%;
}

/* ============ COVER SLIDE (00) ============ */
.s-cover {
  /* head is pinned to the logo line (absolute, extends to ~y185);
     padding-top must clear it so the title doesn't ride up under the kicker */
  padding: 220px 110px 80px;
  display: grid;
  grid-template-rows: 1fr auto;
  row-gap: 24px;
}
/* Eyebrow + kicker raised onto the logo's vertical line, forming one header row */
.s-cover__head {
  position: absolute;
  top: 124px;
  left: 330px;
  right: 110px;
  padding-left: 0;
  min-height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.s-cover__eyebrows {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 0;
}
.s-cover__title {
  font-weight: 900;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--sp-navy);
  margin: 0;
  align-self: center;
}
.s-cover__title .blue { color: var(--sp-blue); }
.s-cover__mid {
  margin-top: 20px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--sp-navy);
  max-width: 1500px;
}
.s-cover__mid .arrow {
  color: var(--sp-blue);
  margin: 0 14px;
  font-weight: 800;
}
.s-cover__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.s-cover__kickers {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 900px;
}
.s-cover__country-tag {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sp-blue);
}
.s-cover__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 22px;
  color: var(--sp-navy);
  line-height: 1.3;
}
.s-cover__photo {
  width: 76px; height: 76px; border-radius: 50%; overflow: hidden; flex: 0 0 auto;
  border: 2px solid #fff; box-shadow: 0 0 0 2px var(--blue-200);
  background: var(--blue-100);
}
.s-cover__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.s-cover__contact-email {
  font-weight: 500;
  font-size: 16px;
  color: #5A6677;
  margin-top: 2px;
}
.s-cover__contact-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: #8693A6;
  font-style: italic;
}
.s-cover__year-block { text-align: right; }
.s-cover__year {
  font-weight: 900;
  font-size: 160px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--sp-blue);
}
.s-cover__yearfoot {
  margin-top: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--sp-navy);
  text-align: right;
}

/* ============ NUMBERS SLIDE (02) ============ */
.s-numbers {
  /* header sits BESIDE the logo (same system as the other slides) */
  padding: 128px 110px 92px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 32px;
}
.s-numbers__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
  min-height: 60px;
  padding-left: 220px;
}
.s-numbers__head-left { display: flex; flex-direction: column; gap: 14px; }
.s-numbers__title {
  font-weight: 900;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--sp-navy);
}
.s-numbers__title .blue { color: var(--sp-blue); }
.s-numbers__page {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sp-navy);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.5;
  opacity: 0.85;
}
.s-numbers__page .num {
  font-size: 72px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--sp-blue);
  display: block;
  line-height: 0.9;
  opacity: 1;
}

.s-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
  min-height: 0;
}
.fact {
  border-radius: 18px;
  padding: 32px 36px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.fact__label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-right: 48px;
}
.fact__icon { position: absolute; top: 30px; right: 32px; }
.fact--blue .fact__icon, .fact--navy .fact__icon { color: rgba(255,255,255,0.82); }
.fact--white .fact__icon { color: var(--sp-blue); }
.fact__value {
  font-weight: 900;
  font-size: 130px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  flex: 1;
  display: flex;
  align-items: center;
}
.fact__caption {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 8px;
  max-width: 95%;
}
.fact__caption strong { font-weight: 800; }

.fact--blue { background: var(--sp-blue); color: #fff; }
.fact--blue .fact__label { color: rgba(255,255,255,0.7); }
.fact--navy { background: var(--sp-navy); color: #fff; }
.fact--navy .fact__label { color: rgba(255,255,255,0.65); }
.fact--white {
  background: #fff;
  color: var(--sp-navy);
  border: 1px solid #DDE3EB;
}
.fact--white .fact__label { color: var(--sp-blue); }
.fact--white .fact__value { color: var(--sp-navy); }

.fact--dynamic {
  position: relative;
}
.fact--dynamic::after {
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sp-blue);
  box-shadow: 0 0 0 4px rgba(0,105,200,0.18);
  animation: pulse 1.8s var(--ease) infinite;
}
.fact--dynamic.fact--blue::after { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
.fact--dynamic.fact--navy::after { background: var(--sp-blue); box-shadow: 0 0 0 4px rgba(0,105,200,0.4); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* fade-in for value flip */
.fact__value-flip {
  display: inline-block;
  animation: flip 350ms var(--ease);
}
@keyframes flip {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   ADDITIONAL SLIDES — all use .sl-body chrome (logo + page no + 128/110 padding)
   ============================================================ */

/* ---------- 01 Who We Are ---------- */
.s-who__head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
/* min-width:0 stops a long unbreakable title word from widening its grid track
   and shoving the "1999" block off the right edge. */
.s-who__head > * { min-width: 0; }
.s-who__title { font-weight: 900; font-size: 138px; line-height: 0.92; letter-spacing: -0.03em; margin: 8px 0 0; color: var(--sp-navy); overflow-wrap: break-word; }
.s-who__title .blue { color: var(--sp-blue); }
.s-who__since {
  background: var(--sp-blue);
  color: #fff;
  border-radius: 20px;
  padding: 36px 40px 40px;
  display: flex; flex-direction: column; gap: 14px;
  align-self: stretch;
  justify-content: space-between;
}
.s-who__since-eyebrow { font-weight: 800; font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; }
.s-who__since-value { font-weight: 900; font-size: 200px; line-height: 0.85; letter-spacing: -0.04em; }
.s-who__body { font-size: 24px; font-weight: 500; line-height: 1.5; max-width: 950px; color: var(--sp-navy); margin-top: 16px; }
.s-who__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-self: end; }
/* keep stat cards inside their tracks even with long localized labels */
.s-who__stats > * { min-width: 0; }
.s-who__stat-label { overflow-wrap: break-word; }
.s-who__stat {
  border-radius: 16px;
  padding: 28px 32px 30px;
  background: #fff;
  border: 1px solid #DDE3EB;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 0;
}
.s-who__stat-value { font-weight: 900; font-size: 88px; line-height: 0.9; letter-spacing: -0.03em; color: var(--sp-navy); }
.s-who__stat-label { font-weight: 800; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-blue); margin-top: 8px; }
.s-who__stat--dynamic { border-color: var(--sp-blue); position: relative; }
.s-who__stat--dynamic::after {
  content: ""; position: absolute; top: 18px; right: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sp-blue);
  box-shadow: 0 0 0 4px rgba(0,105,200,0.18);
  animation: pulse 1.8s var(--ease) infinite;
}

/* ---------- 03 Quote (dark) ---------- */
.s-quote { padding: 124px 110px 92px; display: grid; grid-template-rows: 1fr auto; gap: 24px; }
.s-quote__bodywrap { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 0; gap: 18px; }
.s-quote__glyph {
  position: absolute; top: 20px; left: -30px; z-index: 0; pointer-events: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 720px; line-height: 0.7;
  color: rgba(62,138,216,0.18);
  font-weight: 700;
  height: auto;
}
.s-quote__eyebrow { padding-left: 0; color: var(--blue-300); position: relative; z-index: 1; }
.s-quote__body {
  position: relative; z-index: 1;
  font-weight: 300;
  font-size: 124px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 1640px;
  text-wrap: balance;
}
.s-quote__attribution { display: flex; flex-direction: column; gap: 4px; max-width: 70%; }
.s-quote__attr-name { font-weight: 800; font-size: 22px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }
.s-quote__attr-role { font-weight: 500; font-size: 20px; color: rgba(255,255,255,0.75); }
.s-quote__attr-since { font-weight: 500; font-size: 16px; color: var(--blue-300); margin-top: 2px; letter-spacing: 0.08em; text-transform: uppercase; }
.s-quote__foot { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.s-quote__proof { text-align: right; }
.s-quote__proof-value { font-weight: 900; font-size: 132px; line-height: 0.85; letter-spacing: -0.04em; color: var(--sp-blue); }
.s-quote__proof-label { font-weight: 800; font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 8px; }

/* ---------- 04 Geography (data-driven map) ---------- */
.s-geomap { padding: 0; background: #fff; position: relative; overflow: hidden; }
.s-gm { position: absolute; inset: 0; padding: 128px 50px 26px; display: flex; flex-direction: column; }
.s-gm__head { display: flex; align-items: flex-start; justify-content: space-between; min-height: 54px; padding-left: 220px; }
.s-gm__eyebrow { font-weight: 800; font-size: 16px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sp-blue); }
.s-gm__chips { display: flex; gap: 14px; }
.s-gm__chip {
  display: flex; align-items: baseline; gap: 10px;
  background: var(--blue-50); border: 1px solid #D6E3F4; border-radius: 12px;
  padding: 10px 20px;
}
.s-gm__chip-value { font-weight: 900; font-size: 30px; line-height: 1; letter-spacing: -0.02em; color: var(--sp-blue); }
.s-gm__chip-label { font-weight: 800; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #5A6677; }
.s-gm__chip--lead { background: var(--sp-blue); border-color: var(--sp-blue); }
.s-gm__chip--lead .s-gm__chip-value, .s-gm__chip--lead .s-gm__chip-label { color: #fff; }
.s-gm__chip--dark { background: var(--sp-navy); border-color: var(--sp-navy); }
.s-gm__chip--dark .s-gm__chip-value { color: #fff; }
.s-gm__chip--dark .s-gm__chip-label { color: rgba(255,255,255,0.7); }

.s-gm__stage { position: relative; margin: 12px auto 0; flex: 0 0 auto; }
.s-gm__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }

.s-gm__card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  width: max-content; min-width: 148px; max-width: 280px;
  background: #fff; border: 1px solid #E2E8F1; border-radius: 13px;
  padding: 9px 15px 9px 13px;
  box-shadow: 0 8px 22px rgba(11,63,126,0.12);
}
.s-gm__card--active { border-color: var(--sp-blue); box-shadow: 0 10px 26px rgba(0,105,200,0.30); }
.s-gm__card--hq { border-color: #07264A; box-shadow: 0 12px 28px rgba(7,38,74,0.26); }
.s-gm__hq {
  display: inline-block; margin-left: 7px; vertical-align: middle;
  background: #07264A; color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; padding: 2px 6px; border-radius: 5px;
}
.s-gm__flag-hq {
  position: absolute; right: -5px; top: -5px;
  width: 19px; height: 19px; border-radius: 50%;
  background: #E0A12B; color: #07264A; border: 1.5px solid #fff;
  font-size: 11px; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.s-gm__flag {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  border: 2px solid #fff; box-shadow: 0 0 0 1px #D6E3F4, 0 3px 8px rgba(11,63,126,0.18);
  background: var(--blue-100); position: relative;
}
.s-gm__flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.s-gm__flag--fallback::after {
  content: attr(data-code); position: absolute; inset: 0;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: var(--sp-blue); letter-spacing: 0.04em;
}
.s-gm__card-body { min-width: 0; line-height: 1.18; }
.s-gm__card-name { font-weight: 800; font-size: 16px; color: var(--sp-navy); white-space: nowrap; }
.s-gm__card-line { font-weight: 500; font-size: 12.5px; color: #5A6677; }
.s-gm__card-total { font-weight: 800; font-size: 13px; color: var(--sp-blue); margin-top: 1px; }

.s-gm--fallback { position: absolute; inset: 0; padding: 0; display: grid; place-items: center; }
.s-gm--fallback img { width: 100%; height: 100%; object-fit: contain; display: block; }
.s-gm--loading { position: absolute; inset: 0; display: grid; place-items: center; }
.s-gm__spinner { width: 54px; height: 54px; border-radius: 50%; border: 5px solid var(--blue-100); border-top-color: var(--sp-blue); animation: sp-spin 0.8s linear infinite; }

.s-geo__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 80px; min-height: 60px; }
.s-geo__markets { text-align: right; border-radius: 16px; padding: 16px 24px; background: var(--sp-blue); color: #fff; }
.s-geo__markets-value { font-weight: 900; font-size: 64px; line-height: 0.9; letter-spacing: -0.03em; }
.s-geo__markets-label { font-weight: 800; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }
.s-geo__main { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; min-height: 0; }
.s-geo__map {
  position: relative; min-height: 0; height: 100%;
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
  border: 1px solid #DDE3EB; border-radius: 20px; padding: 36px;
}
.s-geo__region {
  position: absolute;
  border-radius: 60% 50% 55% 45% / 55% 50% 60% 45%;
  background: rgba(0,105,200,0.12);
  border: 1.5px dashed rgba(0,105,200,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sp-navy);
}
.s-geo__country-dot {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sp-blue);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  cursor: default;
}
.s-geo__country-dot--active {
  width: 26px; height: 26px;
  box-shadow: 0 0 0 6px rgba(0,105,200,0.18), 0 0 0 2px #fff;
  background: var(--sp-blue);
}
.s-geo__country-label {
  position: absolute;
  transform: translate(-50%, -135%);
  font-size: 13px;
  font-weight: 700;
  color: var(--sp-navy);
  white-space: nowrap;
  background: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #DDE3EB;
}
.s-geo__list { display: flex; flex-direction: column; min-height: 0; }
.s-geo__list-head { font-weight: 800; font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-blue); margin-bottom: 4px; }
.s-geo__list-hint { font-size: 16px; color: #5A6677; margin-bottom: 16px; }
.s-geo__list-rows { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.s-geo__row {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center;
  padding: 8px 14px; border-radius: 10px; transition: background 200ms var(--ease);
}
.s-geo__row--active { background: var(--blue-100); }
.s-geo__row-code {
  font-weight: 800; font-size: 12px;
  background: var(--sp-navy); color: #fff;
  padding: 3px 6px; border-radius: 5px;
  text-align: center;
  letter-spacing: 0.06em;
}
.s-geo__row--active .s-geo__row-code { background: var(--sp-blue); }
.s-geo__row-name { font-weight: 600; font-size: 19px; color: var(--sp-navy); }
.s-geo__row-total { font-weight: 800; font-size: 22px; color: var(--sp-navy); }
.s-geo__row--regional .s-geo__row-name { color: #8693A6; }
.s-geo__row--regional .s-geo__row-total { color: #8693A6; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- 05 Team Breakdown (full table) ---------- */
.s-team__head { display: flex; flex-direction: column; gap: 12px; min-height: 60px; }
.s-team__sub { font-size: 22px; font-weight: 500; line-height: 1.35; color: #5A6677; max-width: 1280px; }

.s-tt__scroll { min-height: 0; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.s-tt { width: 100%; border-collapse: collapse; table-layout: fixed; }
.s-tt th, .s-tt td { text-align: center; }
.s-tt thead th { padding: 0 4px 16px; border-bottom: 2.5px solid var(--sp-blue); vertical-align: bottom; }
.s-tt__chq { display: block; width: fit-content; margin: 0 auto 7px; background: var(--sp-navy); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; padding: 3px 9px; border-radius: 5px; }
.s-tt__cstar { display: none; }
.s-tt__rowh, .s-tt__rowlabel { width: 196px; }
.s-tt__totalh, .s-tt td.s-tt__total { width: 108px; }
.s-tt__rowh { text-align: left; font-weight: 800; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sp-blue); vertical-align: bottom; }
.s-tt__cflag { display: block; position: relative; width: 40px; height: 28px; margin: 0 auto 8px; border-radius: 5px; overflow: hidden; box-shadow: 0 0 0 1px #E2E8F1; background: #EEF2F7; }
.s-tt__cflag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.s-tt__cstar { position: absolute; top: -7px; right: -7px; width: 18px; height: 18px; border-radius: 50%; background: #E0A12B; color: #07264A; font-size: 10px; display: grid; place-items: center; border: 1.5px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.s-tt__ccode { font-weight: 800; font-size: 16px; color: var(--sp-navy); letter-spacing: 0.04em; }
.s-tt__totalh { color: var(--sp-navy); font-weight: 900; font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; }
.s-tt tbody td { font-size: 26px; font-weight: 700; color: var(--sp-navy); font-variant-numeric: tabular-nums; height: 92px; border-bottom: 1px solid #E8EDF4; }
.s-tt td.s-tt__rowlabel { text-align: left; font-size: 20px; font-weight: 800; color: var(--sp-navy); white-space: normal; line-height: 1.12; }
.s-tt__rowic { display: inline-flex; vertical-align: middle; color: var(--sp-blue); margin-right: 11px; flex: 0 0 auto; }
.s-tt td.s-tt__total { color: var(--sp-blue); font-weight: 900; }
.s-tt__col-hq { background: #EAF1FB; }
.s-tt thead th.s-tt__col-hq { border-bottom-color: var(--sp-navy); }
.s-tt th.s-tt__col-hq .s-tt__ccode { color: var(--sp-navy); }
.s-tt__col-sel { background: var(--blue-100); }
.s-tt tfoot td { font-size: 28px; font-weight: 900; color: var(--sp-navy); font-variant-numeric: tabular-nums; height: 88px; border-top: 2.5px solid var(--sp-blue); }
.s-tt tfoot td.s-tt__rowlabel { text-align: left; font-size: 20px; letter-spacing: 0.04em; }
.s-tt tfoot td.s-tt__total { color: var(--sp-blue); }


/* ---------- 06 Portfolio Overview ---------- */
.s-port__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.s-port__total { text-align: right; }
.s-port__total-value { font-weight: 900; font-size: 120px; line-height: 0.85; letter-spacing: -0.04em; color: var(--sp-blue); }
.s-port__total-label { font-weight: 800; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-navy); margin-top: 6px; }
.s-port__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; min-height: 0; }
.s-port__card {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  background: #fff; border: 1px solid #DDE3EB; border-top: 5px solid var(--sp-blue);
  border-radius: 18px; padding: 40px 32px 36px;
  box-shadow: 0 10px 30px rgba(11,63,126,0.07);
}
.s-port__card-icon { margin-bottom: auto; }
.s-port__card-count { font-weight: 900; font-size: 88px; line-height: 0.9; letter-spacing: -0.04em; color: var(--sp-navy); font-variant-numeric: tabular-nums; margin-top: 40px; }
.s-port__card-name { font-weight: 800; font-size: 24px; line-height: 1.1; color: var(--sp-navy); letter-spacing: -0.01em; margin-top: 10px; text-wrap: balance; }

/* ---------- 07–11 Direction slides ---------- */
.s-dir__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; min-height: 60px; }
.s-dir__head-left { display: flex; flex-direction: column; gap: 14px; }
.s-dir__eyebrow { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-navy); }
.s-dir__eyebrow-dot { width: 14px; height: 14px; border-radius: 50%; }
.s-dir__titlerow { display: flex; align-items: stretch; gap: 26px; margin-top: 16px; }
.s-dir__icon { flex: 0 0 auto; display: grid; place-items: center; width: 108px; min-height: 96px; border-radius: 22px; border: 2px solid currentColor; }
.s-dir__title { font-weight: 900; font-size: 88px; line-height: 0.95; letter-spacing: -0.025em; color: var(--sp-navy); margin: 0; }
.s-dir__title .accent { color: var(--sp-blue); }
.s-dir__head-right { display: flex; flex-direction: column; align-items: end; gap: 4px; text-align: right; }
.s-dir__count { font-weight: 900; font-size: 130px; line-height: 0.85; letter-spacing: -0.04em; color: var(--sp-navy); font-variant-numeric: tabular-nums; }
.s-dir__count-label { font-weight: 800; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-navy); opacity: 0.6; }

.s-dir__grid {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 12px;
  align-content: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.s-vendor {
  position: relative;
  background: #fff;
  border: 1px solid #DDE3EB;
  border-radius: 12px;
  padding: 8px 18px 8px 24px;
  display: flex; align-items: center;
  font-weight: 600;
  color: var(--sp-navy);
  line-height: 1.15;
  letter-spacing: -0.005em;
  min-width: 0;
  overflow: hidden;
}
/* Vendor-name size scales with how many vendors fill the slide. */
.s-dir[data-density="xl"] .s-vendor { font-size: 30px; font-weight: 700; border-radius: 16px; padding-left: 30px; }
.s-dir[data-density="lg"] .s-vendor { font-size: 24px; font-weight: 700; padding-left: 28px; }
.s-dir[data-density="md"] .s-vendor { font-size: 19px; padding-left: 24px; }
.s-dir[data-density="sm"] .s-vendor { font-size: 16px; padding-left: 22px; }
.s-dir[data-density="xs"] .s-vendor { font-size: 13.5px; padding: 6px 14px 6px 18px; }
.s-vendor__name {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s-vendor--flagship { border-width: 2px; font-weight: 800; }
.s-vendor__mark {
  position: absolute; top: 8px; right: 8px;
  width: 9px; height: 9px; border-radius: 50%;
}
.s-dir__foot { font-weight: 800; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sp-navy); opacity: 0.65; align-self: end; }
.s-dir__empty {
  background: #fff;
  border: 1px dashed var(--blue-300);
  border-radius: 16px;
  padding: 60px 50px;
  font-size: 24px;
  color: #5A6677;
  font-weight: 500;
  max-width: 1100px;
  align-self: center;
  justify-self: center;
}

/* ---------- 12 All Vendors ---------- */
.s-all__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; min-height: 60px; }
.s-all__total { text-align: right; }
.s-all__total-value { font-weight: 900; font-size: 110px; line-height: 0.85; letter-spacing: -0.04em; color: var(--sp-blue); }
.s-all__total-label { font-weight: 800; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-navy); opacity: 0.6; }
.s-all__legend { display: flex; gap: 28px; flex-wrap: wrap; }
.s-all__legend-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--sp-navy); letter-spacing: 0.04em; }
.s-all__legend-dot { width: 12px; height: 12px; border-radius: 50%; }
.s-all__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 24px;
  row-gap: 0;
  align-content: start;
  min-height: 0;
}
.s-all__cell {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-navy);
  line-height: 1.2;
  border-bottom: 1px solid #E7ECF3;
}
.s-all__cell-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ---------- 13 Coverage Matrix ---------- */
.s-cov__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  min-height: 60px;
}
.s-cov__legend {
  display: flex; align-items: center; gap: 22px;
  text-align: right;
}
.s-cov__legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--sp-navy);
}
.s-cov__legend-stat {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8693A6;
  border-left: 1px solid #DDE3EB; padding-left: 22px; margin-left: 4px;
}
.s-cov__legend-stat span { color: var(--sp-navy); font-size: 18px; }

.s-cov__sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 0;
  overflow: hidden;
}
.s-cov__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  table-layout: fixed;
}
.s-cov__col-name { width: 42%; }
.s-cov__col--active { background: rgba(0,105,200,0.07); }
.s-cov__table th {
  text-align: center;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #5A6677;
  padding: 4px 1px 6px;
  border-bottom: 1.5px solid var(--blue-200);
}
.s-cov__th--active { color: var(--sp-blue); }
.s-cov__table th abbr { text-decoration: none; cursor: default; }
.s-cov__table td {
  padding: 2px 1px;
  border-bottom: 1px solid #EDF1F7;
  vertical-align: middle;
  text-align: center;
  line-height: 1.1;
}
.s-cov__td-name {
  text-align: left !important;
  padding-left: 3px !important;
  padding-right: 3px !important;
  font-weight: 600;
  color: var(--sp-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 9.5px;
  display: flex; align-items: center; gap: 5px;
}
.s-cov__dir-dot {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0;
}
.s-cov__td--active { background: rgba(0,105,200,0.07); }
.s-cov__cell {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E8EDF4;
  vertical-align: middle;
}
.s-cov__cell--on {
  background: var(--sp-blue);
  box-shadow: 0 0 0 0.5px rgba(0,105,200,0.4);
}
.s-cov__table tr:last-child td { border-bottom: none; }
.s-app__main { display: grid; grid-template-rows: auto 1fr; gap: 36px; min-height: 0; }
.s-app__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.s-app__step {
  background: #fff;
  border: 1px solid #DDE3EB;
  border-radius: 18px;
  padding: 30px 26px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.s-app__step-top { display: flex; align-items: center; justify-content: space-between; }
.s-app__step-icon { color: var(--sp-blue); opacity: 0.9; }
.s-app__step-num { font-weight: 900; font-size: 62px; line-height: 0.9; letter-spacing: -0.03em; color: var(--sp-blue); }
.s-app__step-label { font-weight: 800; font-size: 21px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sp-navy); line-height: 1.25; }
.s-app__step-body { font-size: 20px; font-weight: 500; line-height: 1.45; color: #5A6677; }

/* ============================================================
   Q&A · ON-DEMAND SLIDES (vendor onboarding · partner programme)
   ============================================================ */

/* ---------- Q&A · Vendor onboarding (horizontal 6-stage timeline) ---------- */
.s-qaon .sl-body { grid-template-rows: auto 1fr; gap: 46px; }
.s-qaon__flow { display: grid; grid-template-rows: auto 1fr; gap: 26px; min-height: 0; }

.s-qaon__track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); }
/* connector line through the circle centres, inset half a column on each end */
.s-qaon__track::before {
  content: ""; position: absolute; top: 36px; height: 3px;
  left: calc(100% / 12); right: calc(100% / 12);
  background: var(--blue-200); z-index: 0;
}
.s-qaon__node-cell { display: flex; justify-content: center; }
.s-qaon__node {
  position: relative; z-index: 1;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sp-blue); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,105,200,0.28);
}
.s-qaon__node-num { font-weight: 900; font-size: 34px; line-height: 1; }

.s-qaon__cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: stretch; min-height: 0; }
.s-qaon__stage {
  background: #fff; border: 1px solid #DDE3EB; border-radius: 16px;
  padding: 22px 20px; height: 100%;
  display: flex; flex-direction: column; gap: 12px;
}
.s-qaon__stage-icon { color: var(--sp-blue); }
.s-qaon__stage-title { font-weight: 800; font-size: 22px; line-height: 1.2; color: var(--sp-navy); }
.s-qaon__stage-body { font-size: 18px; font-weight: 500; line-height: 1.4; color: #5A6677; }
.s-qaon__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px; }
.s-qaon__chip {
  font-size: 14px; font-weight: 700; line-height: 1.25;
  color: var(--sp-blue); background: var(--blue-50);
  border: 1px solid var(--blue-200); border-radius: 999px;
  padding: 5px 11px; max-width: 100%;
}

/* ---------- Q&A · Partner programme (how to join | what you get) ---------- */
.s-qap .sl-body { grid-template-rows: auto 1fr; gap: 46px; }
.s-qap__main { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; min-height: 0; align-items: stretch; }
.s-qap__col { display: flex; flex-direction: column; gap: 28px; min-height: 0; }
.s-qap__col-head { font-weight: 800; font-size: 26px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sp-blue); }

/* left — steps with vertical connector */
.s-qap__steps { display: flex; flex-direction: column; }
.s-qap__step { display: grid; grid-template-columns: 64px 1fr; gap: 26px; padding-bottom: 36px; position: relative; }
.s-qap__step:last-child { padding-bottom: 0; }
.s-qap__step-node {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--sp-blue); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 30px; z-index: 1; position: relative;
}
.s-qap__step:not(:last-child)::before {
  content: ""; position: absolute; left: 31px; top: 64px; bottom: 8px;
  width: 3px; background: var(--blue-200); z-index: 0;
}
.s-qap__step-text { font-size: 23px; font-weight: 500; line-height: 1.4; color: var(--sp-navy); align-self: center; }

.s-qap__badge {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue-50); border: 1px solid var(--blue-200); border-radius: 999px;
  padding: 15px 26px; font-weight: 800; font-size: 21px; color: var(--sp-navy);
}
.s-qap__badge-ic { color: var(--sp-blue); display: inline-flex; }

/* right — benefits grid */
.s-qap__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; min-height: 0; align-content: start; }
.s-qap__benefit {
  background: #fff; border: 1px solid #DDE3EB; border-radius: 16px;
  padding: 24px; display: flex; align-items: flex-start; gap: 16px;
}
.s-qap__benefit-ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-50); color: var(--sp-blue);
  display: grid; place-items: center;
}
.s-qap__benefit-text { font-size: 21px; font-weight: 600; line-height: 1.35; color: var(--sp-navy); align-self: center; }

/* ---------- Q&A · Revenue dynamics (indexed bar chart) ---------- */
.s-qag .sl-body { grid-template-rows: auto 1fr; gap: 40px; }
.s-qag__head { display: flex; flex-direction: column; gap: 10px; }
/* CAGR badge rides the title's row — vertically centred on it, pushed to the
   right edge of the content zone. */
.s-qag__titlerow { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.s-qag__subtitle { font-size: 24px; font-weight: 600; color: var(--sp-blue); letter-spacing: 0.01em; }
.s-qag__cagr {
  flex: 0 0 auto;
  display: inline-flex; align-items: baseline; gap: 14px;
  background: var(--blue-200); border-radius: 999px;
  padding: 16px 30px; color: var(--sp-navy);
}
.s-qag__cagr-label { font-weight: 800; font-size: 22px; letter-spacing: 0.14em; text-transform: uppercase; }
.s-qag__cagr-val { font-weight: 900; font-size: 40px; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

.s-qag__chart { position: relative; display: flex; align-items: flex-end; gap: 16px; min-height: 0; padding-top: 20px; }
.s-qag__col { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 16px; height: 100%; min-width: 0; }
.s-qag__bar-area { flex: 1; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; min-height: 0; }
.s-qag__val {
  font-weight: 800; font-size: 22px; color: var(--sp-navy);
  font-variant-numeric: tabular-nums; margin-bottom: 58px; line-height: 1;
  position: relative; z-index: 4;
  transition: opacity 200ms var(--ease);
}
.s-qag__val--hidden { opacity: 0; }
.s-qag__fill {
  width: 100%; border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #36A4FA 0%, var(--sp-blue) 100%);
  transform-origin: bottom;
  animation: qag-grow 0.85s cubic-bezier(.2,.7,.2,1) both;
}
/* Last year — emphasised (deepest navy), value always visible (handled in JSX). */
.s-qag__col--last .s-qag__fill { background: linear-gradient(180deg, #0a3f72 0%, var(--sp-navy) 100%); }
.s-qag__col--last .s-qag__year { color: var(--sp-navy); font-weight: 900; }
.s-qag__year { font-size: 22px; font-weight: 700; color: var(--sp-navy); font-variant-numeric: tabular-nums; }

@keyframes qag-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Trend curve + vertex dots overlay (drawn left→right after the bars rise). */
.s-qag__overlay { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 3; }
.s-qag__curve {
  fill: none; stroke: var(--blue-200); stroke-width: 2;
  stroke-linejoin: round; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: qag-draw 1.1s ease 0.95s both;
}
.s-qag__dot {
  fill: #fff; stroke: var(--sp-navy); stroke-width: 3;
  vector-effect: non-scaling-stroke;
  animation: qag-dot 0.32s ease both;
}
@keyframes qag-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes qag-dot { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .s-qag__fill { animation: none; }
  .s-qag__curve, .s-qag__dot { animation: none; }
}

/* ---------- Q&A · Sales-mix donuts (directions + vendor diversification) ---------- */
.s-mix .sl-body { grid-template-rows: auto 1fr; gap: 36px; }
.s-mix__head { display: flex; flex-direction: column; gap: 10px; }
.s-mix__titlerow { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
/* let a long localized title shrink/wrap so the chip never gets pushed off-canvas */
.s-mix__titlerow .sl-title { min-width: 0; overflow-wrap: break-word; }
.mix-chip {
  flex: 0 0 auto;
  background: var(--blue-200); color: var(--sp-navy);
  border-radius: 999px; padding: 14px 28px;
  font-weight: 800; font-size: 24px; letter-spacing: 0.02em; white-space: nowrap;
}

.s-mix__donutwrap { display: grid; place-items: center; min-height: 0; min-width: 0; }
.mix-donut { display: block; height: 100%; width: auto; max-height: 648px; }
.mix-donut__center { font-family: Montserrat, 'Noto Sans Armenian', 'Noto Sans Georgian', sans-serif; font-weight: 300; font-size: 66px; fill: #7CC2FD; letter-spacing: 0.01em; }
/* Direction icon badge sitting on / beside each accent arc */
.mix-badge {
  width: 100%; height: 100%; box-sizing: border-box;
  border-radius: 50%; background: #fff; border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(7,38,74,0.14);
}

/* Callout leader labels (vendor slide, segments ≥ 3%) */
.mix-call__txt { font-family: Montserrat, 'Noto Sans Armenian', 'Noto Sans Georgian', sans-serif; font-size: 23px; }
.mix-call__name { font-weight: 700; fill: var(--sp-navy); }
.mix-call__pct { font-weight: 900; fill: var(--sp-blue); }

/* --- Directions slide: donut left, legend right --- */
.s-mix__body--dir { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 0; }
.s-mix__legend--dir { display: flex; flex-direction: column; gap: 4px; }
.s-mix__legend--dir .s-mix__leg-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: 16px 6px; border-bottom: 1px solid #E3ECF7;
}
.s-mix__legend--dir .s-mix__leg-row:last-child { border-bottom: none; }
.s-mix__leg-dot { width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto; }
.s-mix__leg-ic { display: inline-flex; align-items: center; justify-content: center; }
.s-mix__legend--dir .s-mix__leg-name { font-size: 30px; font-weight: 600; color: var(--sp-navy); }
.s-mix__legend--dir .s-mix__leg-pct { font-size: 34px; font-weight: 900; color: var(--sp-navy); font-variant-numeric: tabular-nums; }

/* --- Vendor slide: facts | horizontal bars --- */
.s-mix__body--ven { display: grid; grid-template-columns: 0.66fr 1.34fr; gap: 64px; align-items: stretch; min-height: 0; }
.s-mix__facts { display: flex; flex-direction: column; gap: 34px; justify-content: center; }
.s-mix__fact { display: flex; flex-direction: column; gap: 14px; }
.s-mix__fact-rule { width: 64px; height: 5px; border-radius: 3px; background: var(--sp-blue); }
.s-mix__fact-txt { font-size: 36px; font-weight: 800; line-height: 1.15; color: var(--sp-navy); letter-spacing: -0.01em; }

.s-mix__bars { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; min-height: 0; height: 100%; }
.s-mix__brow { display: grid; grid-template-columns: 248px 1fr; gap: 22px; align-items: center; }
.s-mix__bname { text-align: right; font-size: 22px; line-height: 1; font-weight: 600; color: var(--sp-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-mix__brow--others .s-mix__bname { font-weight: 800; }
.s-mix__btrack { display: flex; align-items: center; gap: 14px; min-width: 0; }
.s-mix__bbar { height: 22px; border-radius: 11px; flex: 0 0 auto; min-width: 6px; }
.s-mix__bpct { font-size: 22px; line-height: 1; font-weight: 800; color: var(--sp-navy); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* --- Portfolio mosaic (squarified treemap) --- */
.s-tm .sl-body { grid-template-rows: auto 1fr; gap: 32px; }
.s-tm__body { display: grid; grid-template-columns: 0.42fr 1.58fr; gap: 56px; align-items: stretch; min-height: 0; }
.s-tm__facts { display: flex; flex-direction: column; gap: 36px; justify-content: center; }
.s-tm__fact { display: flex; flex-direction: column; gap: 14px; }
.s-tm__fact-txt { font-size: 34px; font-weight: 800; color: var(--sp-navy); line-height: 1.15; letter-spacing: -0.01em; }
.s-tm__wrap { position: relative; width: 100%; height: 100%; min-height: 0; min-width: 0; }
.s-tm__tile {
  position: absolute; border-radius: 12px; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 14px 16px; box-sizing: border-box;
  color: #fff;
  transform-origin: center center;
  animation: tm-pop 0.5s cubic-bezier(.2,.8,.25,1) both;
}
.s-tm__tile--ink { color: var(--sp-navy); }
.s-tm__tile--sm { align-items: center; justify-content: center; padding: 4px; }
.s-tm__lab { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.s-tm__name { font-weight: 800; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-tm__pct { font-weight: 900; font-variant-numeric: tabular-nums; line-height: 1; }
.s-tm__pct--solo { font-size: 22px; }
.s-tm__tile--lg .s-tm__name { font-size: 38px; }
.s-tm__tile--lg .s-tm__pct { font-size: 30px; }
.s-tm__tile--md .s-tm__name { font-size: 23px; }
.s-tm__tile--md .s-tm__pct { font-size: 21px; }
@keyframes tm-pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .s-tm__tile { animation: none; } }

/* ---------- 14 Inside ---------- */
.s-inside__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 18px; min-height: 0; }
.s-inside__card {
  background: #fff; border: 1px solid #DDE3EB; border-radius: 18px;
  padding: 30px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.s-inside__card-icon { color: var(--sp-blue); }
.s-inside__card-label { font-weight: 800; font-size: 22px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sp-blue); }
.s-inside__card-body { font-size: 21px; font-weight: 500; line-height: 1.45; color: var(--sp-navy); }

/* ---------- 15a · We run on AI ---------- */
.s-ai__sub { font-size: 25px; font-weight: 600; color: #5A6677; line-height: 1.35; margin-top: 6px; }

.s-air__body { display: flex; flex-direction: column; gap: 12px; min-height: 0; }
.s-air__head { display: flex; flex-direction: column; }

/* Top tier — Softprom AI Agents */
.s-air__agents {
  background: var(--blue-50); border: 1px solid var(--blue-200); border-radius: 18px;
  padding: 12px 24px; display: flex; flex-direction: column; gap: 8px; flex: 0 0 auto;
}
.s-air__agents-lead { font-weight: 800; font-size: 22px; color: var(--sp-navy); display: flex; align-items: center; gap: 14px; line-height: 1.25; }
.s-air__agents-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--sp-blue); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.s-air__agents-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.s-air__agent { background: #fff; border: 1px solid var(--blue-200); border-radius: 12px; padding: 9px 15px; display: flex; flex-direction: column; gap: 3px; }
.s-air__agent-who { font-weight: 800; font-size: 18px; color: var(--sp-blue); }
.s-air__agent-what { font-size: 16px; font-weight: 600; color: #5A6677; line-height: 1.3; }
.s-air__caps { font-weight: 700; font-size: 17px; letter-spacing: 0.01em; color: var(--blue-400); }

/* Bottom tier — own tools 2×2 (reuses .s-ai__tool*) */
.s-air__grid { flex: 1 1 auto; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; min-height: 0; }

/* Compliance foot bar (shared by both AI slides) — thin, in normal flow */
.s-air__foot { flex: 0 0 auto; display: flex; align-items: center; gap: 16px; background: var(--sp-navy); color: #fff; border-radius: 14px; padding: 11px 24px; }
.s-air__foot-ic { color: var(--blue-300); display: inline-flex; flex: 0 0 auto; }
.s-air__foot-txt { font-weight: 600; font-size: 17px; line-height: 1.3; }

/* ---------- 15b · Always scanning for what's next ---------- */
.s-ain__body { display: flex; flex-direction: column; gap: 26px; min-height: 0; }
.s-ain__steps { flex: 1 1 auto; display: flex; align-items: stretch; gap: 24px; min-height: 0; }
.s-ain__step {
  flex: 1 1 0; min-width: 0; min-height: 0; overflow: hidden;
  background: #fff; border: 1.5px solid var(--blue-200); border-radius: 22px;
  padding: 44px 40px; display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 8px 24px rgba(0,105,200,0.08);
}
.s-ain__step-ic { width: 88px; height: 88px; border-radius: 50%; background: var(--sp-blue); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.s-ain__step-name { font-weight: 800; font-size: 32px; color: var(--sp-navy); letter-spacing: -0.01em; }
.s-ain__step-body { font-size: 21px; font-weight: 500; line-height: 1.45; color: #5A6677; }
.s-ain__arrow { color: var(--blue-300); flex: 0 0 auto; display: inline-flex; align-self: center; }

.s-ain__recent { display: flex; align-items: center; gap: 28px; padding: 20px 4px; border-top: 1px solid var(--blue-200); border-bottom: 1px solid var(--blue-200); }
.s-ain__recent-label { font-weight: 800; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-400); flex: 0 0 auto; }
.s-ain__recent-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.s-ain__logo { height: 40px; display: inline-flex; align-items: center; font-weight: 700; font-size: 20px; color: var(--sp-navy); }
.s-ain__logo img { height: 40px; width: auto; max-width: 170px; object-fit: contain; display: block; }
.s-ai__tool {
  background: #fff; border: 1.5px solid var(--blue-200); border-radius: 18px;
  padding: 13px 24px; display: flex; flex-direction: column; gap: 7px;
  box-shadow: 0 6px 20px rgba(0,105,200,0.07);
}
.s-ai__tool-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.s-ai__tool-ic {
  width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto;
  background: var(--sp-blue); color: #fff; display: grid; place-items: center;
}
.s-ai__tool-aud {
  font-weight: 800; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sp-blue); background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: 999px; padding: 6px 14px; white-space: nowrap;
}
.s-ai__tool-name { font-weight: 800; font-size: 25px; line-height: 1.15; color: var(--sp-navy); display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.s-ai__tool-tag {
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sp-blue); background: var(--blue-100); border-radius: 999px; padding: 3px 10px;
}
.s-ai__tool-body { font-size: 19px; font-weight: 500; line-height: 1.4; color: #5A6677; }
.s-ai__tool-note { margin-top: auto; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue-400); }

/* ---------- 16 Why ---------- */
.s-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; min-height: 0; }
.s-why__card {
  background: #fff; border: 1px solid #DDE3EB; border-radius: 18px;
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.s-why__card-icon { color: var(--sp-blue); margin-bottom: 4px; }
.s-why__card-label { font-weight: 800; font-size: 19px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sp-blue); line-height: 1.25; }
.s-why__card-body { font-size: 21px; font-weight: 500; line-height: 1.42; color: var(--sp-navy); }

/* ---------- 17 Statement (dark) ---------- */
.s-stmt { padding: 128px 110px 110px; display: grid; grid-template-rows: auto 1fr auto; gap: 24px; }
.s-stmt__title { font-weight: 900; font-size: 220px; line-height: 0.88; letter-spacing: -0.04em; color: #fff; margin: 0; align-self: center; overflow-wrap: break-word; min-width: 0; }
.s-stmt__title .blue { color: var(--blue-300); }
.s-stmt__sub { font-weight: 600; font-size: 28px; color: rgba(255,255,255,0.75); align-self: end; }

/* ---------- 18 Contact ---------- */
.s-contact__head { min-height: 60px; }
.s-contact__main { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 0; }
.s-contact__title-block { min-width: 0; overflow: hidden; }
.s-contact__title { font-weight: 900; font-size: 200px; line-height: 0.84; letter-spacing: -0.045em; color: var(--sp-navy); margin: 0; overflow-wrap: normal; word-break: keep-all; hyphens: none; text-wrap: balance; }
.s-contact__card {
  display: flex; align-items: center; gap: 34px;
  background: #fff; border: 1px solid #DDE3EB; border-radius: 26px;
  padding: 38px 46px;
  box-shadow: 0 18px 44px rgba(11,63,126,0.12);
}
.s-contact__card-photo {
  width: 154px; height: 154px; border-radius: 50%; overflow: hidden; flex: 0 0 auto;
  background: var(--blue-100); display: grid; place-items: center;
  border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue-200);
}
.s-contact__card-photo img { width: 100%; height: 100%; object-fit: cover; }
.s-contact__card-photo-ph { color: var(--sp-blue); }
.s-contact__card-name { font-weight: 900; font-size: 44px; letter-spacing: -0.02em; color: var(--sp-navy); line-height: 1; }
.s-contact__card-pos { font-weight: 600; font-size: 22px; color: var(--sp-blue); margin-top: 7px; }
.s-contact__card-lines { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.s-contact__card-line { display: flex; align-items: center; gap: 13px; font-weight: 600; font-size: 20px; color: var(--sp-navy); word-break: break-word; }
.s-contact__card-ic { color: var(--sp-blue); display: inline-flex; flex: 0 0 auto; }
.s-contact__footer { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-top: 26px; border-top: 1px solid #DDE3EB; }
.s-contact__col-label { font-weight: 800; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sp-blue); margin-bottom: 8px; }
.s-contact__col-l1 { font-weight: 800; font-size: 28px; color: var(--sp-navy); line-height: 1.2; }
.s-contact__col-l2 { font-weight: 500; font-size: 18px; color: #5A6677; line-height: 1.4; margin-top: 4px; }
.s-contact__col-placeholder { font-weight: 500; font-size: 16px; color: #8693A6; font-style: italic; }

/* ============ I18N OVERFLOW GUARDS ============
   Cyrillic/Polish strings run longer than English. These scoped overrides keep
   the giant display type and the long body paragraph inside the 1920×1080 frame
   for UA / RU / PL without touching the English (or German) layout. */
.s-contact[data-lang="de"] .s-contact__title { font-size: 168px; line-height: 0.86; }
.s-contact[data-lang="ua"] .s-contact__title,
.s-contact[data-lang="ru"] .s-contact__title { font-size: 118px; line-height: 0.96; }
.s-contact[data-lang="pl"] .s-contact__title { font-size: 140px; line-height: 0.94; }
/* Never break the closing headline mid-word in any language (long single words
   like UA "ПОГОВОРИМО", UZ "GAPLASHAMIZ", GE "ვისაუბროთ"): keep-all forces the
   word to overflow horizontally, which the useFitText auto-fit then detects and
   shrinks to fit on one line. Wrapping between separate words is still allowed. */

.s-stmt[data-lang="ua"] .s-stmt__title,
.s-stmt[data-lang="pl"] .s-stmt__title { font-size: 150px; line-height: 0.9; }

.s-who[data-lang="ru"] .s-who__title { font-size: 116px; }
/* English title "Value-added IT distribution." — break after "Value-added";
   108px keeps "IT distribution." together on the second line (fits the 828px
   column), so the whole title is exactly two lines. */
.s-who[data-lang="en"] .s-who__title { font-size: 108px; }
.s-who[data-lang="ru"] .s-who__body { font-size: 17px; line-height: 1.36; }
.s-who[data-lang="ua"] .s-who__body,
.s-who[data-lang="pl"] .s-who__body { font-size: 21px; line-height: 1.42; }

/* ============ PPTX EXPORT OVERLAY ============ */
.export-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,38,74,0.55);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
}
.export-overlay__card {
  background: #fff; border-radius: 18px;
  padding: 36px 44px; text-align: center;
  box-shadow: 0 20px 60px rgba(7,38,74,0.35);
  max-width: 360px;
}
.export-overlay__spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 4px solid #DCE6F5; border-top-color: var(--sp-blue);
  margin: 0 auto 18px; animation: sp-spin 0.8s linear infinite;
}
@keyframes sp-spin { to { transform: rotate(360deg); } }
.export-overlay__title { font-weight: 800; font-size: 18px; color: var(--sp-navy); }
.export-overlay__hint { font-weight: 500; font-size: 13px; color: #5A6677; margin-top: 8px; line-height: 1.4; }

/* ============ PRINT — one full 1920×1080 slide per page ============ */
@page { size: 1920px 1080px; margin: 0; }
@media print {
  html, body { background: #fff !important; margin: 0 !important; padding: 0 !important; }

  /* Hide the builder chrome — only slides print. */
  .topbar, .sidebar, .preview__head, .slide-card__badge, .export-overlay, .cdlg__overlay { display: none !important; }

  /* Linearise the shell so each slide is a plain block in document flow. */
  .app, .body, .preview, .preview__inner {
    display: block !important;
    height: auto !important;
    max-width: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    background: #fff !important;
    overflow: visible !important;
  }

  .slide-card { margin: 0 !important; padding: 0 !important; break-inside: avoid; }

  /* Undo the on-screen scaling: render every slide at its true 1920×1080. */
  .slide-scale {
    width: 1920px !important;
    height: 1080px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .slide-scale__inner {
    transform: none !important;
    width: 1920px !important;
    height: 1080px !important;
  }
  .slide {
    width: 1920px !important;
    height: 1080px !important;
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: page;
    page-break-after: always;
  }
  /* No trailing blank page after the last slide. */
  .slide-card:last-child .slide { break-after: auto; page-break-after: auto; }

  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============ CUSTOM SLIDES — sidebar panel ============ */
.cslides { display: flex; flex-direction: column; gap: 8px; }
.cslides__add {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--blue-50);
  color: var(--sp-blue);
  border: 1px dashed var(--blue-300);
  border-radius: 9px;
  padding: 10px 12px;
  font-family: inherit; font-size: 12px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cslides__add:hover { background: var(--blue-100); border-color: var(--sp-blue); }
.cslides__add-plus { font-size: 15px; line-height: 1; }
.cslides__empty { font-size: 11px; color: #5A6677; line-height: 1.5; padding: 2px 2px 0; }

.cslide {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid #E6ECF4;
  border-radius: 9px;
  padding: 8px 10px;
}
.cslide--on { border-color: var(--blue-200); background: var(--blue-50); }
.cslide__toggle {
  flex: 0 0 auto;
  width: 18px; height: 18px; border-radius: 5px;
  border: 1px solid #C6D2E2; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.cslide__toggle svg { width: 12px; height: 12px; opacity: 0; }
.cslide__toggle--on { background: var(--sp-blue); border-color: var(--sp-blue); }
.cslide__toggle--on svg { opacity: 1; }
.cslide__meta { flex: 1 1 auto; min-width: 0; cursor: pointer; }
.cslide__name {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; color: var(--sp-navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cslide__dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.cslide__layout {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #7C93B0; margin-top: 2px;
}
.cslide__actions { flex: 0 0 auto; display: flex; gap: 2px; }
.cslide__act {
  width: 24px; height: 24px; border-radius: 6px;
  border: none; background: transparent; color: #5A6677;
  font-size: 13px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cslide__act:hover { background: var(--blue-100); color: var(--sp-blue); }
.cslide__act:disabled { opacity: 0.3; cursor: default; }
.cslide__act:disabled:hover { background: transparent; color: #5A6677; }
.cslide__act--del:hover { background: #FDE7E7; color: #D32F2F; }

/* ============ CUSTOM SLIDES — editor dialog ============ */
.cdlg__overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(7,38,74,0.55);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.cdlg {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(7,38,74,0.4);
  width: min(1160px, 100%);
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cdlg__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #EAF0F7;
}
.cdlg__title { font-size: 17px; font-weight: 800; color: var(--sp-navy); }
.cdlg__close {
  width: 32px; height: 32px; border-radius: 8px; border: none;
  background: var(--blue-50); color: var(--sp-navy);
  font-size: 14px; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.cdlg__close:hover { background: var(--blue-100); }
.cdlg__body {
  display: grid; grid-template-columns: 1fr 600px; gap: 28px;
  padding: 22px 24px;
  overflow-y: auto;
}
.cdlg__form { min-width: 0; }
.cdlg__field-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sp-blue); margin-bottom: 10px;
}

.cdlg__layouts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.cdlg__layout {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid #E0E7F0; border-radius: 10px;
  padding: 11px 13px; cursor: pointer;
  font-family: inherit; font-size: 12.5px; font-weight: 700; color: var(--sp-navy);
  text-align: left;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cdlg__layout:hover { border-color: var(--blue-300); }
.cdlg__layout--active { border-color: var(--sp-blue); background: var(--blue-50); }
.cdlg__layout-ic {
  flex: 0 0 auto; width: 30px; height: 22px; border-radius: 4px;
  background: var(--blue-100);
  display: flex; flex-direction: column; gap: 2px; padding: 4px;
}
.cdlg__layout-ic span { background: var(--sp-blue); border-radius: 1px; display: block; height: 3px; opacity: 0.85; }
.cdlg__layout-ic--title-bullets span:first-child { width: 80%; height: 5px; }
.cdlg__layout-ic--title-bullets span { width: 60%; }
.cdlg__layout-ic--two-column { flex-direction: row; }
.cdlg__layout-ic--two-column span { width: 50%; height: 100%; }
.cdlg__layout-ic--cards { flex-direction: row; flex-wrap: wrap; align-content: center; }
.cdlg__layout-ic--cards span { width: 45%; height: 6px; }
.cdlg__layout-ic--highlights { flex-direction: row; flex-wrap: wrap; align-content: flex-end; }
.cdlg__layout-ic--highlights span:first-child { width: 100%; height: 5px; opacity: 1; }
.cdlg__layout-ic--highlights span { width: 28%; height: 7px; }
.cdlg__layout-ic--quote span:first-child { width: 35%; height: 8px; opacity: 1; }
.cdlg__layout-ic--quote span { width: 90%; }
/* two screenshots: two equal image blocks side by side */
.cdlg__layout-ic--screenshot-duo { flex-direction: row; align-content: center; gap: 3px; }
.cdlg__layout-ic--screenshot-duo span { width: 47%; height: 100%; opacity: 1; border-radius: 2px; }
.cdlg__layout-ic--screenshot-duo span:nth-child(3) { display: none; }
/* screenshot-split: image block beside two text lines */
.cdlg__layout-ic--screenshot-split { flex-direction: row; flex-wrap: wrap; align-content: center; gap: 3px; }
.cdlg__layout-ic--screenshot-split span:first-child { width: 52%; height: 100%; opacity: 1; border-radius: 2px; }
.cdlg__layout-ic--screenshot-split span { width: 38%; height: 3px; }

.cdlg__form .form { gap: 14px; }
.cdlg__textarea { min-height: 78px; resize: vertical; line-height: 1.4; }
.cdlg__list-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.cdlg__list-row .form__input { flex: 1 1 auto; }
.cdlg__stat-val { flex: 0 0 110px !important; font-weight: 700; }
.cdlg__row-del {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid #E6ECF4; background: #fff; color: #8693A6;
  cursor: pointer; font-size: 12px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cdlg__row-del:hover { background: #FDE7E7; color: #D32F2F; border-color: #F3C9C9; }
.cdlg__row-del:disabled { opacity: 0.35; cursor: default; }
.cdlg__hl {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid #E6ECF4; background: #fff; color: #C6D2E2;
  cursor: pointer; font-size: 15px; line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cdlg__hl:hover { border-color: var(--blue-300); color: var(--blue-400); }
.cdlg__hl--on { background: var(--sp-blue); border-color: var(--sp-blue); color: #fff; }
.cdlg__inline-add {
  background: none; border: none; color: var(--sp-blue);
  font-family: inherit; font-size: 12px; font-weight: 700; cursor: pointer;
  padding: 2px 0; letter-spacing: 0.02em;
}
.cdlg__inline-add:hover { text-decoration: underline; }
.cdlg__group { border: 1px solid #EAF0F7; border-radius: 10px; padding: 12px 14px; display: flex; flex-direction: column; gap: 12px; }
.cdlg__group-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #7C93B0; }

.cdlg__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.cdlg__chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #E0E7F0; border-radius: 999px;
  padding: 6px 12px; cursor: pointer;
  font-family: inherit; font-size: 11.5px; font-weight: 700; color: var(--sp-navy);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cdlg__chip:hover { border-color: var(--blue-300); }
.cdlg__chip--active { border-color: var(--sp-blue); background: var(--blue-50); }
.cdlg__chip-dot { width: 10px; height: 10px; border-radius: 50%; }

.cdlg__preview-wrap { position: sticky; top: 0; }
.cdlg__preview {
  border: 1px solid #E6ECF4; border-radius: 12px; overflow: hidden;
  background: #EDF1F7; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}
.cdlg__preview .slide-card { box-shadow: none; }

.cdlg__foot {
  display: flex; justify-content: flex-end; gap: 12px;
  padding: 16px 24px; border-top: 1px solid #EAF0F7;
}
.cdlg__btn {
  background: var(--sp-blue); color: #fff; border: none; border-radius: 9px;
  padding: 11px 22px; font-family: inherit; font-size: 13px; font-weight: 800;
  letter-spacing: 0.03em; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.cdlg__btn:hover { background: var(--blue-700); }
.cdlg__btn:disabled { opacity: 0.5; cursor: default; }
.cdlg__btn--ghost { background: var(--blue-50); color: var(--sp-navy); }
.cdlg__btn--ghost:hover { background: var(--blue-100); }

@media (max-width: 1000px) {
  .cdlg__body { grid-template-columns: 1fr; }
  .cdlg__preview-wrap { position: static; }
}

/* ============================================================
   VENDOR-LOGO SLIDES (one per direction)
   Accent colour appears only as dot / line / chip — never a block.
   ============================================================ */
.s-slv { background: #F5F8FE; }
.s-slv__body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.s-slv__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex: 0 0 auto;
}
/* The Softprom wordmark now lives inline as the first item of the header row,
   so it sits on one line with the badge pill and the vendor count. This header
   replaces the absolute brand logo on these slides — cancel the indent that the
   shared chrome adds to clear the (now absent) corner logo. */
.s-slv__body > .s-slv__head { padding-left: 0; }
.s-slv__head-left { display: flex; align-items: center; gap: 24px; flex: 1 1 auto; min-width: 0; }
.s-slv__brand { width: 188px; height: 38px; object-fit: contain; object-position: left center; flex: 0 0 auto; display: block; }
/* Subtitle eyebrow — matches the "— ALL VENDORS · ALPHABETICAL" format used
   on the other slides. No pill; accent is carried by the direction icon. */
.s-slv__bar {
  display: inline-flex; align-items: center; gap: 16px;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 26px; line-height: 1; color: var(--sp-blue);
}
.s-slv__bar-dot { width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto; }
.s-slv__head-right {
  display: flex; align-items: center; gap: 20px; flex: 0 0 auto;
}
.s-slv__icon { display: grid; place-items: center; flex: 0 0 auto; }
.s-slv__countwrap { display: flex; flex-direction: column; align-items: flex-start; }
.s-slv__count {
  font-weight: 900; font-size: 70px; line-height: 0.86;
  letter-spacing: -0.03em; color: var(--sp-blue);
  font-variant-numeric: tabular-nums;
}
.s-slv__count-label {
  margin-top: 6px;
  font-weight: 800; font-size: 16px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sp-navy);
}

.s-slv__gridwrap {
  flex: 1 1 auto; min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.s-slv__grid {
  width: 100%; height: 100%;
  display: grid;
  gap: 22px;
  margin: 0 auto;
  align-content: stretch;
}
.s-slv__grid[data-density="xl"] { gap: 32px; }
.s-slv__grid[data-density="lg"] { gap: 26px; }
.s-slv__grid[data-density="md"] { gap: 22px; }
.s-slv__grid[data-density="sm"] { gap: 18px; }
.s-slv__grid[data-density="xs"] { gap: 16px; }

.slv-card {
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid #E3ECF7;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(7,38,74,0.07), 0 1px 2px rgba(7,38,74,0.05);
  padding: 22px;
  min-width: 0; min-height: 0;
  overflow: hidden;
}
/* Card padding scales with density. */
.s-slv__grid[data-density="xl"] .slv-card { padding: 40px; border-radius: 22px; }
.s-slv__grid[data-density="lg"] .slv-card { padding: 30px; border-radius: 18px; }
.s-slv__grid[data-density="md"] .slv-card { padding: 24px; }
.s-slv__grid[data-density="sm"] .slv-card { padding: 18px; border-radius: 14px; }
.s-slv__grid[data-density="xs"] .slv-card { padding: 14px; border-radius: 12px; }

/* Every logo is contained in an identical centred square box, so wide and tall
   artwork render at a comparable optical size and sit dead-centre in the card. */
.slv-card__img {
  width: 100%; height: 100%;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: auto;
}
.slv-card--fallback {
  border: 1.5px solid var(--blue-200);
  background: #fff;
}
.slv-card__name {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--sp-navy);
  text-wrap: balance;
  padding: 4px;
}
.s-slv__grid[data-density="xl"] .slv-card__name { font-size: 34px; }
.s-slv__grid[data-density="lg"] .slv-card__name { font-size: 26px; }
.s-slv__grid[data-density="md"] .slv-card__name { font-size: 21px; }
.s-slv__grid[data-density="sm"] .slv-card__name { font-size: 17px; }
.s-slv__grid[data-density="xs"] .slv-card__name { font-size: 15px; }

/* --- Per-slide logo-sizing overrides ---------------------------------------
   ALL-DIRECTIONS index (s-slv--all): 110+ logos of wildly varying aspect ratios
   sit in short, wide cells. Switching the card to flex makes the image's
   height:100% resolve against the (definite) cell height, so square marks no
   longer overflow their cell and get clipped (e.g. Acalvio). Each logo then
   fills its cell via object-fit:contain — compact/square marks grow to the cell
   height instead of being dwarfed by the wide wordmarks, so every logo reads at
   a comparable size. */
.s-slv--all .slv-card { display: flex; align-items: center; justify-content: center; }
.s-slv--all .slv-card__img {
  width: 100%; height: 100%;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}

/* Cloud & AI direction: more padding so each logo is a touch smaller and has
   more breathing room inside its card (keeps the default contain model). */
.s-slv--cloud .s-slv__grid .slv-card { padding: 50px; }

/* Sidebar · vendor-logo slide controls */
.logosld { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.logosld__row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 4px;
}
.logosld__row--off { opacity: 0.5; }
.logosld__dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.logosld__name { flex: 1; font-size: 13px; font-weight: 600; color: var(--sp-navy); }
.logosld__seg {
  display: inline-flex; flex: 0 0 auto;
  background: var(--blue-50);
  border: 1px solid #DDE3EB; border-radius: 8px;
  padding: 2px; gap: 2px;
}
.logosld__seg-btn {
  border: none; background: transparent;
  font-family: inherit; font-size: 11px; font-weight: 700;
  color: #5A6677; cursor: pointer;
  padding: 4px 10px; border-radius: 6px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.logosld__seg-btn:hover { color: var(--sp-blue); }
.logosld__seg-btn--active { background: var(--sp-blue); color: #fff; }

/* ============================================================
   TEAM PHOTO SLIDE — full-bleed kickoff photo + informal overlay
   ============================================================ */
.s-tphoto { overflow: hidden; }
.s-tphoto__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* 4:3 source in a 16:9 frame — bias downward so every person stays fully in
     frame (heads + feet uncut) with the mountains kept above them. */
  object-position: center 78%;
  display: block;
}
/* Bottom gradient so the caption reads on any crop. Navy ~85% at the bottom
   edge, fully transparent by ~45% of the slide height. */
.s-tphoto__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(7,38,74,0.85) 0%,
    rgba(7,38,74,0.62) 18%,
    rgba(7,38,74,0.22) 34%,
    rgba(7,38,74,0) 45%);
  pointer-events: none;
}
.s-tphoto__content {
  position: absolute;
  left: 96px; bottom: 96px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 26px;
  max-width: 1300px;
}
.s-tphoto__chip {
  display: inline-flex; align-items: center;
  background: #B9DDFE; color: #07264A;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 800; font-size: 22px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.s-tphoto__title {
  margin: 0;
  font-family: var(--font);
  font-weight: 900; font-size: 124px; line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(7,38,74,0.35);
}
.s-tphoto__loc {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 600; font-size: 30px; letter-spacing: 0.01em;
}
.s-tphoto__loc .Icon, .s-tphoto__loc svg { color: #B9DDFE; flex: 0 0 auto; }
/* White wordmark over the photo — soft navy shadow keeps it legible on the
   bright sky / snow in the corner. */
.s-tphoto .slide__logo { filter: drop-shadow(0 2px 10px rgba(7,38,74,0.5)); }
