/* 12 — FOOTER */

.footer {
    background: #0d0b1a;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
}

/* grid dot overlay */

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ── CTA Strip ── */

.footer-cta {
    position: relative;
    z-index: 1;
    padding: 96px 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(
        ellipse at center,

        rgba(120, 60, 240, 0.35) 0%,

        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
}

.footer-cta-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.footer-cta-text h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}

.footer-cta-text h2 em {
    font-style: italic;
    color: #a07cf8;
}

.footer-cta-actions {
    flex-shrink: 0;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    background: #fff;
    color: #0d0b1a;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 200ms ease,
        transform 200ms ease;
    white-space: nowrap;
}

.btn-light:hover {
    background: #e8e0ff;
    transform: translateY(-2px);
}

.footer-email {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition:
        border-color 200ms ease,
        color 200ms ease;
    white-space: nowrap;
}

.footer-email:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ── Main footer body ── */

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 72px 0 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
    margin: 0 0 22px;
}

.footer-meta span {
    font-size: 13px;
    color: #fff;
}

.footer-meta a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-meta a:hover {
    color: #a07cf8;
}

.footer-col h5 {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 14.5px;
    transition: color 180ms ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-social-list {
    gap: 10px !important;
}

.footer-social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 180ms ease;
}

.footer-social-link:hover .footer-social-icon {
    opacity: 1;
}

/* ── Wordmark ── */

.footer-wordmark {
    padding: 48px 0 0;
    font-size: 160px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-align: center;
    background: linear-gradient(
        180deg,
        #c8c8d0 0%,

        #a0a0b0 18%,

        #e8e8f0 35%,

        #8a8a9a 52%,

        #b4b4c4 68%,

        #6a6a7a 85%,

        #505060 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
}

/* ── Bottom bar ── */

.footer-bottom {
    padding: 24px 0 36px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ── */

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 48px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .footer .container {
        padding: 0 24px;
    }

    .footer-cta {
        padding: 64px 0 56px;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
        padding: 48px 0 48px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-wordmark {
        font-size: clamp(56px, 18vw, 120px);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
