/* ============================================================
   Company Research deck — slide-specific layout
   Hero screenshot, split-screen, QBR shot
   Inherits Lens tokens + ibp base + deck-shared
   ============================================================ */

/* S3 — Hero screenshot (front-end landing) */
.hero-screenshot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1180px;
}
.hero-screenshot img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(26,25,21,0.10);
  box-shadow: 0 12px 32px rgba(26,25,21,0.10), 0 2px 6px rgba(26,25,21,0.05);
  background: #fff;
}
.hero-cap {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ibp-ink-mut);
  max-width: 940px;
}
.hero-cap code {
  background: rgba(26,25,21,0.06);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 11px;
}

/* S4 — Split screen: screenshot + facts */
.split-screen {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: start;
}
.split-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(26,25,21,0.10);
  box-shadow: 0 8px 24px rgba(26,25,21,0.08);
  background: #fff;
}
.split-text {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(26,25,21,0.08);
  border-radius: 8px;
  padding: 22px 24px;
}
.split-eyebrow {
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ibp-forest);
  font-weight: 700;
  margin-bottom: 14px;
}
.dive-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.dive-stats li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ibp-ink);
  padding-left: 18px;
  position: relative;
}
.dive-stats li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ibp-forest);
  font-weight: 700;
}
.dive-stats li strong {
  color: var(--ibp-forest);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.dive-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,25,21,0.08);
  font-size: 12px;
  color: var(--ibp-ink-mut);
  line-height: 1.5;
  font-style: italic;
}

/* S5 — QBR shot under the roadmap */
.qbr-shot {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1180px;
}
.qbr-shot img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(26,25,21,0.10);
  box-shadow: 0 6px 18px rgba(26,25,21,0.08);
  background: #0F1A2C;
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
}
.qbr-cap {
  font-size: 11px;
  color: var(--ibp-ink-mut);
  font-style: italic;
}

/* Deck-nav + progress inherited from ibp.css */

@media (max-width: 980px) {
  .split-screen { grid-template-columns: 1fr; }
  .qbr-shot img { max-height: 240px; }
}
