/* ─── CAS CLIENTS — coverflow carousel ──────────────────────── */
#cases {
  position: relative;
  height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#cases-label {
  position: absolute;
  top: clamp(24px, 5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  z-index: 20;
  white-space: nowrap;
}

#cases-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.case-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(280px, 38vw);
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  will-change: transform, filter, opacity;
}

.case-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.case-bg--video {
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.case-bg--placeholder {
  background: #151515;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}

.case-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px;
}

.case-tag {
  display: block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.case-name {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.case-stat {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}

@media (max-width: 900px) {
  .case-card { width: min(220px, 55vw); }
}
@media (max-width: 600px) {
  .case-card { width: 60vw; }
}
