/* Hamburger */

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

/* Menu mobile */

.nav-links {
    position: fixed;
    top: 64px;
    left: 0;

    width: 100%;
    height: calc(100vh - 64px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 120px;
    align-items: center;

    gap: 24px;

    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);

    transform: translateX(100%);
    transition: transform .3s ease;

    text-align: center;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links li {
    list-style: none;
    width: 100%;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;

    color: #1d1d1f;
    text-decoration: none;

    display: block;
    width: 100%;

    padding: 12px 0;
}

.subtitle {
    display: none;
}

.mobile-frame {
    position: relative;
    max-width: 210px;
    flex: 1;
    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.15, 0, 0.15, 1);
}

.mobile-trio .mobile-frame:nth-child(2) {
    transform: scale(1.1);
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.mobile-trio .mobile-frame:nth-child(1) {
    transform: rotate(-3deg) translateY(10px);
}

.mobile-trio .mobile-frame:nth-child(3) {
    transform: rotate(3deg) translateY(10px);
}

.mobile-trio:hover .mobile-frame {
    transform: rotate(0) translateY(0) scale(1);
}

#download-link-hero {
    display: none;
}

.stats-banner {
    padding: 20px 16px;
    max-width: 100%;
    margin: -30px auto 30px auto;
    border-radius: 18px;
}

.stat-title {
    font-size: 1.5rem;
}

.stat-unit {
    font-size: 0.9rem;
}

.stat-desc {
    font-size: 0.5rem;
}

/* Features Mobile */

.features-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-card,
.feature-card.large {
    grid-column: unset;

    padding: 20px;
    border-radius: 18px;

    min-height: auto;
}

.feature-card h3 {
    font-size: 1rem;
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0 14px;
}

.tech-tags {
    gap: 6px;
    margin-top: 0;
}

.tech-tag {
    font-size: 0.68rem;
    padding: 4px 8px;
}

.badge-mp4 {
    font-size: 0.65rem;
}

.features-bento-grid .feature-card:hover {
    transform: none;
}

/* ==========================================
   HOW IT WORKS - MOBILE
   ========================================== */

.steps-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;

    max-width: 100%;
    padding-left: 20px;

    position: relative;
}

.steps-container::before {
    content: '';

    position: absolute;

    top: 0;
    left: 44px;

    width: 2px;
    height: 100%;

    background: linear-gradient(to bottom,
            rgba(0, 113, 227, 0.15),
            #0071e3,
            rgba(0, 113, 227, 0.15));

    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: row;
    align-items: flex-start;

    gap: 20px;
    width: 100%;

    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;

    margin-bottom: 0;

    font-size: 1.2rem;

    box-shadow:
        0 0 0 6px #ffffff,
        0 8px 20px rgba(0, 113, 227, 0.15);
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.step-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item p {
    display: none;
}

#version-badge {
    display: none;
}

#download-link-action {
    display: none;
}

.discord-link {
    display: none;
}

/* ==========================================
   FOOTER MOBILE
   ========================================== */

.footer {
    padding: 60px 0 30px;
}

.footer .container {
    padding-left: 20px;
    padding-right: 20px;
}

.footer .footer-brand {
    font-size: 3rem;
    margin-bottom: 24px;
}

.footer-nav {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-col {
    gap: 10px;
}

.footer-col a {
    font-size: 0.95rem;
}

.footer-bottom {
    flex-direction: column;
    gap: 16px;

    text-align: center;

    padding-top: 20px;
}

.footer-legal {
    flex-wrap: wrap;
    justify-content: center;

    gap: 12px;
}

.footer-legal a {
    font-size: 0.75rem;
}

.copyright {
    font-size: 0.75rem;
    line-height: 1.5;
}