.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.18s ease, opacity 0.18s ease;
}
.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-app-menu {
    display: none;
}

@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .mobile-app-menu.is-open {
        display: block;
        padding: 0 14px 14px;
    }

    .mobile-app-menu__panel {
        background: rgba(8, 19, 36, 0.94);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255,255,255,0.09);
        border-radius: 18px;
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .mobile-app-menu__link {
        display: block;
        padding: 14px 16px;
        color: var(--text);
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .mobile-app-menu__link:last-child {
        border-bottom: 0;
    }

    .mobile-app-menu__link--active {
        background: rgba(124,92,255,0.16);
    }
}
