.scroll-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.scroll-track {
  display: flex;
  height: 100vh;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  touch-action: pan-y;
}

.panel {
  min-width: 100vw;
  height: 100vh;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.blur-panel {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255,255,255,0.08);
}

/* ARROWS */
.nav-arrows {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.nav-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.nav-arrows button:hover {
  background: rgba(255,255,255,0.2);
}

/* 📱 MOBILE TUNING */
@media (max-width: 768px) {
  .panel {
    padding: 3rem 2rem;
  }

  .nav-arrows {
    bottom: 1.2rem;
    right: 1.2rem;
  }
}
