/* Shared navigation status and official network footer. */
.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.8rem;
    border: 1px solid rgba(0, 184, 148, 0.32);
    border-radius: 999px;
    background: rgba(0, 184, 148, 0.1);
    color: #7ee7cf !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.15s;
}

.nav-status:hover {
    background: rgba(0, 184, 148, 0.17);
    border-color: rgba(0, 184, 148, 0.55);
    color: #a8f3e2 !important;
    transform: translateY(-1px);
}

.dot-live {
    width: 0.55rem;
    height: 0.55rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #00b894;
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

nav ul .nav-actions {
    gap: 0.65rem;
}

.site-footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem clamp(1.5rem, 6vw, 6rem);
    text-align: left;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr repeat(4, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.site-footer .footer-brand .logo {
    display: inline-flex;
    margin-bottom: 0.75rem;
}

.site-footer .footer-brand .logo img {
    display: block;
    width: auto;
    height: 34px;
}

.site-footer .footer-brand p {
    max-width: 260px;
    margin: 0;
    color: #888899;
    font-size: 0.85rem;
    line-height: 1.7;
}

.site-footer .footer-col h4 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-col a,
.site-footer .footer-bottom a {
    color: #888899;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-col a:hover,
.site-footer .footer-bottom a:hover {
    color: #e8e8f0;
}

.site-footer .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #888899;
    font-size: 0.8rem;
}

@media (max-width: 980px) {
    .site-footer .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    body > nav {
        padding-inline: 1rem;
    }

    body > nav .back {
        display: none;
    }

    body > nav .logo img {
        height: 29px;
    }

    body > nav > ul {
        display: flex;
        gap: 0;
    }

    body > nav > ul > li:not(.nav-actions) {
        display: none;
    }

    .nav-status {
        width: 2rem;
        height: 2rem;
        justify-content: center;
        padding: 0;
    }

    .nav-status-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

@media (max-width: 520px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-brand {
        grid-column: auto;
    }
}
