

#stripWrap { scroll-margin-top: 0; }
.strip {
  position: sticky;
  top: 0;
  height: var(--view, 100lvh);
  min-height: 24rem;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.strip:focus-visible { outline: 3px solid rgb(var(--accent-rgb)); outline-offset: -6px; }

.strip-bg { position: absolute; inset: 0; }
.strip-shot {
  position: absolute;
  inset: 0;
  background-position: 50% 50%;
  background-size: cover;
  filter: saturate(1.04) contrast(1.05) brightness(.84);
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,1,.36,1);
}
.strip-shot.on { opacity: 1; }

.strip-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to left, rgb(0 0 0 / .34), rgb(0 0 0 / .06) 26%, transparent 42%),
    linear-gradient(to right, rgb(0 0 0 / .46), rgb(0 0 0 / .12) 50%, transparent 76%),
    linear-gradient(to bottom,
      rgb(0 0 0 / .5) 0%,
      rgb(0 0 0 / .44) 30%,
      rgb(0 0 0 / .34) 48%,
      rgb(0 0 0 / .18) 62%,
      rgb(0 0 0 / .34) 100%);
}

.strip-head {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 3;
  height: calc(var(--view, 100lvh) / 2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-inline: var(--pad);
  padding-bottom: var(--head-gap, 26px);
  pointer-events: none;
}
.strip-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: .5rem clamp(2rem, 7vw, 7rem);
  width: 100%;
}
.strip-name { min-width: 0; }
.strip-title {
  font-family: 'Oswald', 'Manrope', ui-sans-serif, system-ui, sans-serif;
  font-size: var(--title);
  min-height: calc(var(--title) * 1.88);
  font-weight: 600;
  line-height: .94;
  letter-spacing: .004em;
  text-transform: uppercase;
  margin: 0;
}
.strip-sub {
  margin: .5rem 0 0;
  min-height: 1.15em;
  font-size: clamp(.95rem, calc(var(--title) * .34), 1.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .005em;
  max-width: 24ch;
  opacity: 0;
  transform: translateY(14px);
}
.strip-sub.in {
  opacity: .82;
  transform: none;
  transition: opacity .55s .1s cubic-bezier(.22,1,.36,1), transform .55s .1s cubic-bezier(.22,1,.36,1);
}
.strip-title span {
  display: block;
  overflow: hidden;
  padding-bottom: .16em;
  margin-bottom: -.16em;
}
.strip-title i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
}
.strip-title.in i { transform: translateY(0); transition: transform .62s cubic-bezier(.22,1,.36,1); }
.strip-title.in i:nth-child(2) { transition-delay: .07s; }

.strip-credit {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: var(--label);
  opacity: .95;
  margin: 0;
}
@media (min-width: 768px) { .strip-credit { margin-inline-start: auto; } }

.strip-facts {
  margin-top: var(--head-gap, 26px);
  opacity: 0;
  transform: translateY(14px);
}
.strip-facts.in {
  opacity: 1;
  transform: none;
  transition: opacity .5s .14s cubic-bezier(.22,1,.36,1), transform .5s .14s cubic-bezier(.22,1,.36,1);
}

.strip-go {
  pointer-events: auto;
  display: inline-flex;
  flex-direction: column;
  gap: .4rem;
  max-width: min(100%, 24rem);
  padding: .8rem 1.15rem .9rem;
  border: 1px solid rgb(255 255 255 / .3);
  background: rgb(10 10 12 / .46);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-decoration: none;
  transition: border-color .25s, background-color .25s;
}
.strip-go:hover { border-color: #ffffff; background: rgb(10 10 12 / .68); }
.strip-go:focus-visible { outline: 3px solid rgb(var(--accent-rgb)); outline-offset: 3px; }
.strip-go-cap {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: var(--label);
  opacity: .72;
}
.strip-go-dom {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: clamp(.95rem, calc(var(--title) * .3), 1.4rem);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.strip-go-arrow {
  flex: 0 0 auto;
  width: .78em;
  height: .78em;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.strip-go:hover .strip-go-arrow { transform: translate(2px, -2px); }

.strip-lane {
  position: absolute;
  inset-inline: 0;
  top: calc(var(--view, 100lvh) / 2);
  z-index: 2;
  height: var(--card-h);
}
.strip-track {
  display: flex;
  align-items: flex-start;
  gap: var(--gap);
  will-change: transform;
}

.strip-card {
  position: relative;
  flex: 0 0 auto;
  width: var(--card-w);
  height: var(--card-h);
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgb(255 255 255 / .05);
  cursor: pointer;
  transform: scaleY(.5);
  transform-origin: 50% 0;
}

.strip-face {
  display: block;
  width: 100%;
  height: 100%;
  background-position: 50% 8%;
  background-size: cover;
  transform: scaleY(2);
  transform-origin: 50% 0;
}

.strip-veil {
  display: block;
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: .12;
  pointer-events: none;
}

.strip-rail {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: calc(var(--view, 100lvh) - var(--view-min, 100svh) + 20px);
  width: 20%;
  min-width: 140px;
}
.strip-count {
  display: flex;
  justify-content: space-between;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  font-size: var(--label);
  opacity: .8;
}
.strip-bar { position: relative; margin-top: .5rem; height: 1px; background: rgb(255 255 255 / .25); }
.strip-bar i {
  position: absolute;
  inset-block: 0;
  display: block;
  background: #ffffff;
  transition: left .62s cubic-bezier(.22,1,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  .strip-shot,
  .strip-bar i,
  .strip-facts.in,
  .strip-sub.in,
  .strip-go-arrow,
  .strip-title.in i { transition-duration: 1ms; }
}

