/* Ki — Science Stats. Scoped under .ki-scope .ki-sci-stats.
   Eyebrow + headline + body, then frosted stat tiles over an optional photo. */

.ki-scope .ki-sci-stats { background: var(--ki-cream); position: relative; overflow: hidden; }

.ki-scope .ki-sci-stats .ki-st-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-repeat: no-repeat;
}
.ki-scope .ki-sci-stats .ki-st-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--ki-ink); opacity: 0.35; pointer-events: none;
}
.ki-scope .ki-sci-stats .wrap { position: relative; z-index: 2; }

.ki-scope .ki-sci-stats .ki-st-head { max-width: 760px; margin-bottom: 56px; }

.ki-scope .ki-sci-stats .eyebrow-rule {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--ki-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ki-blue-deep); margin: 0 0 28px;
}
.ki-scope .ki-sci-stats .eyebrow-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--ki-rule);
}
.ki-scope .ki-sci-stats .ki-st-title {
  font-family: var(--ki-serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12;
  letter-spacing: -0.01em; color: var(--ki-ink); margin: 0 0 24px; max-width: 20ch;
}
.ki-scope .ki-sci-stats .ki-st-body p {
  font-family: var(--ki-sans); font-size: 17px; line-height: 1.7;
  color: var(--ki-ink-mute); margin: 0 0 12px;
}
.ki-scope .ki-sci-stats .ki-st-body p:last-child { margin-bottom: 0; }

/* tiles */
.ki-scope .ki-sci-stats .ki-st-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ki-scope .ki-sci-stats .ki-st-tile {
  padding: 44px 40px; border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.66);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 18px 48px -28px rgba(27, 116, 138, 0.32);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.ki-scope .ki-sci-stats .ki-st-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -28px rgba(27, 116, 138, 0.45);
}
.ki-scope .ki-sci-stats .ki-st-tile .v {
  font-family: var(--ki-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.05;
  color: var(--ki-blue); margin-bottom: 14px; letter-spacing: -0.01em;
}
.ki-scope .ki-sci-stats .ki-st-tile .l {
  font-family: var(--ki-sans); font-size: 14px; line-height: 1.5;
  color: var(--ki-ink-soft);
}

@media (max-width: 1100px) {
  .ki-scope .ki-sci-stats .ki-st-grid { grid-template-columns: 1fr; gap: 18px; }
}
