.footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    color: #1a1a1a;
    padding: 64px 0 24px;
    font-family: ui-monospace, "SF Mono", "Menlo", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
    border-top: 1px solid #ececec;
    font-feature-settings: "liga" 0, "calt" 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid #ececec;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.footer-tagline {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer-meta {
    font-size: 14px;
    color: #707070;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}

.footer-section h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 22px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-section h3 a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s ease;
}

.footer-section h3 a:hover {
    color: #764ba2;
}

.footer-section h3 .arrow {
    font-size: 14px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.footer-section h3 a:hover .arrow {
    transform: translate(2px, -2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: color 0.15s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #ececec;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.copyright .brand-name {
    color: #1a1a1a;
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.footer-bottom-links a:hover {
    color: #000000;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-brand-row {
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-section h3 {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-tagline {
        font-size: 14px;
    }
}
