.landing-void {
  --landing-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --landing-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --landing-orb-size: clamp(14rem, 22vw, 19rem);
  --landing-orb-scale: 1.08;
  position: fixed;
  inset: 0;
  background: #000;
  color: #fff;
  z-index: 9999;
  overflow: hidden;
  font-family: "PP Neue Montreal", sans-serif;
  display: flex;
  flex-direction: column;
}

.landing-header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  z-index: 10;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.landing-header .brand-mark {
  font-family: "PP Formula", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.small-pixel-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 700;
}

.landing-header__right {
  justify-self: end;
}

.landing-main {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.landing-carousel {
  flex: 1 1 auto;
  min-height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 50vw;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.landing-carousel__track {
  width: max-content;
  min-width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: clamp(2rem, 5vh, 4rem) clamp(3rem, 14vw, 14rem);
  margin: auto;
  box-sizing: border-box;
}

.landing-carousel__item {
  position: relative;
  width: var(--landing-orb-size);
  height: var(--landing-orb-size);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: z-index 0.3s ease;
  opacity: 1;
  z-index: 1;
  scroll-snap-align: center;
}

.landing-orb-hitarea {
  display: block;
  width: 100%;
  height: 100%;
  transform: none;
}

.landing-carousel__item.is-active {
  z-index: 2;
}

.landing-orb,
.landing-orb canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.landing-orb {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
}

.landing-orb canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: none;
  transition:
    filter 0.4s var(--landing-ease-out);
}

.landing-orb__poster {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  inset: auto;
  overflow: hidden;
}

.landing-carousel__item.is-active .landing-orb canvas {
  filter: none;
}

.landing-footer {
  position: absolute;
  inset: auto 0 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem 4rem;
}

.pill--white {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  transition: transform 0.3s var(--landing-ease-out);
}

.pill--white:hover {
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
  .landing-void {
    --landing-orb-size: min(13rem, 48vw);
    --landing-orb-scale: 1.02;
  }

  .landing-header .brand-mark {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .landing-carousel__track {
    gap: clamp(1rem, 4vw, 2rem);
    padding-inline: clamp(1.25rem, 8vw, 5rem);
  }

  .landing-footer {
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 520px) {
  .landing-header {
    padding: 1.2rem 1rem;
  }

  .small-pixel-label {
    font-size: 0.58rem;
  }
}

body:has(.landing-void) .site-header,
body:has(.landing-void) .page-shell::before,
body:has(.landing-void) .page-shell::after,
body:has(.landing-void) .page-glow {
  display: none !important;
}

.landing-carousel::-webkit-scrollbar {
  display: none;
}
