/* Site footer — nt-* */

.nt-footer {
    position: relative;
    margin-top: clamp(48px, 8vw, 88px);
    padding: 0 0 28px;
    background: transparent;
}

.nt-footer-glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 50% 100%, color-mix(in oklab, var(--nt-accent) 9%, transparent), transparent 62%),
        radial-gradient(ellipse 30% 50% at 12% 80%, color-mix(in oklab, var(--nt-vip) 5%, transparent), transparent 55%);
}

.nt-footer > .nt-container {
    position: relative;
    z-index: 1;
}

.nt-footer-panel {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
    border-radius: var(--nt-radius-lg);
    background: linear-gradient(
        165deg,
        color-mix(in oklab, var(--nt-panel) 92%, #000),
        color-mix(in oklab, var(--nt-elevated) 88%, #000)
    );
    border: 1px solid color-mix(in oklab, var(--nt-accent) 14%, var(--nt-border));
    box-shadow: var(--nt-softshadow);
}

.nt-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.nt-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nt-footer-brand-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px 4px 4px;
    margin: -4px 0 0 -4px;
}

.nt-footer-brand-row .nt-glitter-stream {
    z-index: 0;
}

.nt-footer-brand-row img,
.nt-footer-brand-name {
    position: relative;
    z-index: 1;
}

.nt-footer-panel .nt-glitter-ambient {
    z-index: 0;
    border-radius: inherit;
}

.nt-footer-panel > *:not(.nt-glitter-ambient) {
    position: relative;
    z-index: 1;
}

.nt-footer-brand-row img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.nt-footer-brand-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nt-text);
}

.nt-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.nt-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--nt-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nt-border);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nt-footer-social a:hover,
.nt-footer-social a:focus-visible {
    color: var(--nt-text);
    border-color: color-mix(in oklab, var(--nt-accent) 35%, var(--nt-border));
    background: var(--nt-accent-soft);
    transform: translateY(-1px);
}

.nt-footer-social svg,
.nt-footer-social i {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.nt-footer-nav-label {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nt-muted);
}

.nt-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nt-footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 550;
    line-height: 1.2;
    text-decoration: none;
    color: var(--nt-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nt-border);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nt-footer-links a:hover,
.nt-footer-links a:focus-visible {
    color: #fff;
    border-color: color-mix(in oklab, var(--nt-accent) 40%, var(--nt-border));
    background: var(--nt-accent-soft);
}

.nt-footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    margin-top: clamp(20px, 3vw, 28px);
    padding-top: 20px;
}

.nt-footer-copy {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--nt-muted);
}

.nt-footer-payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nt-footer-payments img {
    display: block;
    height: 40px;
    width: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    opacity: 0.88;
    filter: brightness(0.95);
}

@media (max-width: 768px) {
    .nt-footer-grid {
        grid-template-columns: 1fr;
    }

    .nt-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nt-footer-payments {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .nt-footer-panel {
        padding: 22px 16px;
    }

    .nt-footer-links {
        gap: 8px;
    }

    .nt-footer-links a {
        font-size: 12px;
        padding: 7px 12px;
    }
}
