* {
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #000;
}

/* ── MOBILE MENU ── */
/* ── MOBILE MENU ── */
#mobileDrawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}

#mobileDrawer.open {
    pointer-events: auto;
}

/* Overlay */
#drawerOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

#mobileDrawer.open #drawerOverlay {
    background: rgba(0, 0, 0, 0.65);
}

/* Drawer Panel */
#drawerPanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #000;
    border-bottom: 1px solid #252b3a;

    display: flex;
    flex-direction: column;

    transform: translateY(-120%);
    opacity: 0;

    /* 👇 SLOW exit (closing) */
    transition:
        transform 1s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.7s ease;

    will-change: transform, opacity;
}

#mobileDrawer.open #drawerPanel {
    transform: translateY(0);
    opacity: 1;

    /* 👇 OVERRIDE with slower, premium entry */
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease;
}

/* Hamburger → X animation */
.ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    transform-origin: center;
}

.ham-wrap.active .ham-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.ham-wrap.active .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham-wrap.active .ham-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* drawer nav link hover */
.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #8c8c8c;
    border-bottom: 1px solid #1c2030;
    text-decoration: none;
    transition: color 0.2s;
}

.drawer-link:hover {
    color: #f4a258;
}

.drawer-link .link-num {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: #3a4055;
    font-weight: 500;
    min-width: 24px;
}

/* ── REST OF ORIGINAL STYLES ── */
.hero-network {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background:
        radial-gradient(
            ellipse at 70% 40%,
            rgba(245, 166, 35, 0.07) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 90% 70%,
            rgba(245, 166, 35, 0.04) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.network-svg {
    opacity: 0.9;
}

.glow-dot {
    animation: glowPulse 3s ease-in-out infinite;
}

.glow-dot:nth-child(2) {
    animation-delay: 0.8s;
}

.glow-dot:nth-child(3) {
    animation-delay: 1.6s;
}

.glow-dot:nth-child(4) {
    animation-delay: 2.4s;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.5;
        r: 3;
    }

    50% {
        opacity: 1;
        r: 5;
    }
}

.pill-active {
    background: #f4a258;
    color: #000;
    border-color: #e9aa44;
}

.pill-inactive {
    background: transparent;
    color: #8a8f9e;
    border-color: #2e3447;
}

.card-dark {
    background: #161b26;
    border: 1px solid #252b3a;
}

.card-light {
    background: #f5f4f1;
    border: 1px solid #e8e8e8;
}

.feature-card {
    background: transparent;
    border: 1px solid rgba(140, 140, 140, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card {
    background: #f5f4f1;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
}

.stat-num {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #000;
}

.cta-panel {
    border-radius: 24px;
    background:
        radial-gradient(
            800px 400px at 0% 0%,
            rgba(255, 170, 60, 0.15),
            transparent 60%
        ),
        linear-gradient(135deg, #0c1220 0%, #060b18 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e3447;
    display: inline-block;
    transition: all 0.25s ease;
}

.slider-dot.active {
    background: #f4a258;
    width: 20px;
    border-radius: 4px;
}

.comparison-highlight {
    background: #000;
    border: 1px solid #2e3447;
    border-radius: 20px;
}

.section-light {
    background: #f5f4f1;
}

.section-dark {
    background: #000;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    margin: 0 -10px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-card {
    background: #1a2035;
    outline: 1px solid #252b3a;
    border-radius: 16px;
    padding: 40px;
    min-height: 100%;
}

@media (max-width: 640px) {
    .carousel-card {
        padding: 24px;
    }
}

.drawer-link.active {
    color: #fff !important;
}

.drawer-link.active .link-num {
    color: #fff !important;
}

.nav-active {
    color: #fff !important;
}

.font-display {
    font-family: Outfit, system-ui, sans-serif;
}

.border-new {
    border-color: rgba(140, 140, 140, 0.2);
}

/* ══════════════════════════════════════
   HANDLE / CAROUSEL SECTION — SHARP FIX
   ══════════════════════════════════════ */

.handle-section {
    background: #000;
}

/* ── TABS ── */
.handle-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.carousel-pill {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: inherit;
}

.pill-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.pill-inactive:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

/* ── SHELL ── */
.kajabi-carousel-shell {
    position: relative;
    width: 100%;
}

/* ── VIEWPORT ── */
.kajabi-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0 2.5rem;
}

/* ── TRACK ── */
.kajabi-carousel-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* ── SLIDES ── */
.kajabi-slide {
    flex: 0 0 62%;
    opacity: 0.72;
    transform: scale(0.97) translateZ(0);
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.85s ease;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.kajabi-slide.is-active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    cursor: default;
}

/* ── CARD ── */
.kajabi-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.125rem;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    isolation: isolate;
}

/* ── IMAGE ── */
.kajabi-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1.125rem;
    background: #1a1a1a;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

/* ── DOTS ── */
.slider-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.slider-dot.active {
    width: 1.75rem;
    background: #f4a258;
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

@media (max-width: 1400px) {
    .kajabi-slide {
        flex: 0 0 65%;
    }
}

@media (max-width: 1200px) {
    .kajabi-slide {
        flex: 0 0 70%;
    }
}

@media (max-width: 1024px) {
    .kajabi-slide {
        flex: 0 0 76%;
    }

    .kajabi-carousel-track {
        gap: 1.25rem;
    }

    .kajabi-card {
        aspect-ratio: 16 / 9;
    }
}

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

    .handle-section h2 {
        margin-bottom: 1.5rem !important;
    }

    .kajabi-slide {
        flex: 0 0 86%;
        opacity: 0.82;
        transform: scale(0.985) translateZ(0);
    }

    .kajabi-card {
        aspect-ratio: 3 / 4; /* BEST for modern UI */
    }
    .kajabi-image {
        object-fit: cover;
    }

    .kajabi-slide.is-active {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }

    .kajabi-carousel-track {
        gap: 0.75rem;
    }

    .kajabi-carousel-viewport {
        padding: 0.25rem 0 0.75rem;
    }

    #carouselDots {
        margin-top: 1rem !important;
    }
}

@media (max-width: 575px) {
    .kajabi-slide {
        flex: 0 0 88%;
        opacity: 0.88;
        transform: scale(0.99) translateZ(0);
    }

    .kajabi-slide.is-active {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }

    .kajabi-carousel-track {
        gap: 0.75rem;
    }
}

[x-cloak] {
    display: none !important;
}
