.border-themed {
  border-color: var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-num {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-unit {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 18ch;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.wup-img-wrap { overflow: hidden; }
.wup-img-inner {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.wup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.wup-img-wrap:hover .wup-img { transform: scale(1.0); }
.back-link {
  color: var(--muted);
  transition: color 0.3s ease;
  text-decoration: none;
}
.back-link:hover { color: var(--fg); }
.back-arrow {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.back-link:hover .back-arrow { transform: translateX(-6px); }
.team-image-wrap {
  overflow: hidden;
  width: 100%;
}
.team-image-inner {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--border);
}
@media (max-width: 768px) {
  .team-image-inner { aspect-ratio: 4 / 3; }
}
.team-parallax-inner {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  will-change: transform;
}
.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.team-image-wrap:hover .team-image { transform: scale(1.03); }
.preamble-label {
  display: block;
  padding-top: 0.35em;
}
.preamble-p {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 2em;
}
.preamble-p:last-child { margin-bottom: 0; }
.preamble-p--lead {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 1.6em;
}
.back-link {
  color: var(--muted);
  transition: color 0.3s ease;
  text-decoration: none;
}
.back-link:hover {
  color: var(--fg);
}
.back-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.back-link:hover .back-arrow {
  transform: translateX(-5px);
}
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--fg);
  z-index: 600;
  transform: scaleY(0);
  transform-origin: bottom center;
  pointer-events: none;
}
