@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("fonts/HelveticaNeueLTStd-Md.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("fonts/HelveticaNeueLTStd-Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lon-font: "Helvetica Neue LT Std", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --reel-ink: #C8C8C8;
}

html,
body {
  margin: 0;
  height: 100%;
  background: #fff;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.reel {
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reel::-webkit-scrollbar {
  display: none;
}

.reel-slide {
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.reel-slide[data-clone] {
  pointer-events: none;
}

.reel-slide img.logo {
  width: min(72vw, 420px);
  height: auto;
  display: block;
  pointer-events: none;
}

.reel-slide .item {
  font-family: var(--lon-font);
  font-weight: 700;
  font-size: clamp(1.35rem, 5.5vw, 2.75rem);
  letter-spacing: -0.055em;
  font-stretch: condensed;
  color: var(--reel-ink);
  text-decoration: none;
  text-align: center;
  line-height: 1.05;
  max-width: min(90vw, 36rem);
}

.reel-slide .item.is-link {
  cursor: pointer;
}

.reel-slide .item.is-link:focus-visible {
  outline: 2px solid var(--reel-ink);
  outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .reel {
    scroll-behavior: auto;
  }
}
