/* ============================================================
   KINETIK CLICK — Shared Snap Scroll
   ============================================================ */

#snap-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.snap-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

#sections-wrapper {
    min-height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.scroll-enhanced.is-dragging,
.scroll-enhanced.is-dragging * {
    cursor: grabbing;
    user-select: none;
}

.scroll-enhanced.is-dragging #sections-wrapper {
    transition: transform 40ms linear;
}

.scroll-enhanced.is-pulling #sections-wrapper {
    transition: transform 110ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-enhanced.is-releasing #sections-wrapper {
    transition: transform 760ms cubic-bezier(0.2, 1.35, 0.32, 1);
}

.scroll-enhanced .snap-section > :not(.scroll-indicator):not([class*="absolute"]) {
    opacity: 0.42;
    transform: translate3d(0, 2rem, 0) scale(0.985);
    transition:
        opacity 720ms ease,
        transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 720ms ease;
    filter: blur(1px);
}

.scroll-enhanced .snap-section.is-active > :not(.scroll-indicator):not([class*="absolute"]) {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.scroll-enhanced .snap-section.is-prev > :not(.scroll-indicator):not([class*="absolute"]) {
    transform: translate3d(0, -1.35rem, 0) scale(0.99);
}

.scroll-enhanced .snap-section.is-next > :not(.scroll-indicator):not([class*="absolute"]) {
    transform: translate3d(0, 1.35rem, 0) scale(0.99);
}

.scroll-rail {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(-50%);
}

@media (min-width: 769px) {
    .scroll-rail {
        right: clamp(0.25rem, 0.55vw, 0.75rem);
    }
}

.scroll-dot {
    width: 0.5rem;
    height: 0.5rem;
    border: 1px solid rgba(244, 189, 255, 0.42);
    border-radius: 9999px;
    background: rgba(255, 247, 255, 0.14);
    box-shadow: 0 0 0 rgba(244, 189, 255, 0);
    cursor: pointer;
    transition:
        height 260ms ease,
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 260ms ease;
}

.scroll-dot:hover {
    transform: scale(1.3);
    border-color: rgba(244, 189, 255, 0.9);
}

.scroll-dot.is-active {
    height: 1.75rem;
    border-color: rgba(244, 189, 255, 0.95);
    background: #f4bdff;
    box-shadow: 0 0 1.1rem rgba(244, 189, 255, 0.5);
}

.scroll-dot span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .scroll-rail {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #sections-wrapper,
    .scroll-enhanced .snap-section > :not(.scroll-indicator):not([class*="absolute"]) {
        transition-duration: 1ms;
    }
}
