.site-header {
    width: 100%;
    height: 6.625rem;
    background: rgba(255, 255, 255, 0.97);
    position: relative;
    z-index: 100;
    border-bottom: 0.0625rem solid rgba(80, 30, 80, 0.05);
}

.site-header-inner {
    width: calc(100% - 7.5rem);
    max-width: 103.75rem;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5625rem;
}

.site-brand {
    display: inline;
    align-items: center;
    gap: 0.875rem;
    color: #351337;
    text-decoration: none;
}

.site-brand img {
    width: 8rem;
    object-fit: contain;
}

.site-brand-text {
    display: inline;
    align-items: center;
    flex-direction: column;
    line-height: 1;
}

.site-brand-name {
    font-size: 2.0625rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
    color: #351337;
}

.site-brand-tagline {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #665a67;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8125rem;
    color: #1b1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.support-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fbe7e0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #f85912;
}

.support-icon svg {
    width: 1.5625rem;
    height: 1.5625rem;
}

.launch-badge {
    min-width: 14.0625rem;
    height: 3.625rem;
    padding: 0 1.5rem;

    border-radius: 0.875rem;
    background: #e65613;
    color: #fff;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6875rem;

    font-size: 1rem;
    font-weight: 500;

    box-shadow: 0 0.5rem 1.375rem rgba(53, 19, 55, .13);
}



@media (max-width: 991px) {

    .site-header {
        height: 5.5rem;
    }

    .site-header-inner {
        width: calc(100% - 3rem) !important;
        min-height: 5.5rem;
    }

    .site-brand-name {
        font-size: 1.6875rem;
    }

    .site-header-actions {
        gap: 0.9375rem;
    }

    .support-link {
        font-size: 0.8125rem;
    }

     .launch-badge {
        /* min-width: auto; */
        /* height: 2.875rem; */
        padding: 0 1rem;
        font-size: 01rem;
        font-weight: 500;
    }
}

@media (max-width: 767px) {

    .site-brand {
        gap: 0.5rem;
    }

    .site-brand img {
        width: 6rem;
        height: auto;
    }

    .site-brand-name {
        font-size: 1.375rem;
    }

    .site-brand-tagline {
        font-size: 0.4375rem;
        margin-top: 0;
    }

    .site-header-actions {
        gap: 0.5rem;
    }

    .support-link {
        font-size: 0;
        gap: 0;
    }

    .support-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .support-icon svg {
        width: 1.3125rem;
        height: 1.3125rem;
    }

    .launch-badge {
        height: 2.5rem;
        min-width: auto;
        padding: 0 0.625rem;
        border-radius: 0.625rem;
        font-size: 0.625rem;
    }
}

@media (max-width: 430px) {

    /* .site-brand-tagline {
        display: none;
    } */

    .site-brand-name {
        font-size: 1.25rem;
    }
}



.site-footer {
    flex-shrink: 0;
    margin-top: auto;
    padding: 1.375rem 5%;

    background:
        radial-gradient(
            circle at 6% 95%,
            rgba(255, 121, 0, .16),
            transparent 28%
        ),
        linear-gradient(100deg, #282828, #282828);

    color: #fff;
    width: 100%;
    margin-top: 0;
}

.footer-inner {
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1.5625rem;
}

.footer-launch {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.footer-rocket {
    width: 3.5rem;
    height: 3rem;

    border: 0.125rem solid #ffb300;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffb300;
    font-size: 1.3125rem;
    flex: none;
}

.footer-copy strong {
    display: block;
    font-size: 1.0625rem;
    margin-bottom: 0.1875rem;
}

.footer-copy span {
    display: block;
    color: #eee7f2;
    font-size: 0.75rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.6875rem;

    padding: 0 1.5625rem;

    border-right: 0.0625rem solid rgba(255, 255, 255, .16);
}

.footer-contact .header-icon {
    background: rgba(255, 255, 255, .10);
    color: #fff;

    width: 2rem;
    height: 2rem;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact span {
    font-size: 0.8125rem;
    font-weight: 500;
}

.footer-btn {
    min-width: 11.5625rem;
    height: 2.875rem;

    border: 0.0625rem solid rgba(255, 255, 255, .65);
    border-radius: 0.5rem;

    color: #fff;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.5625rem;

    font-size: 0.875rem;
    font-weight: 600;
}



.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



@media (max-width: 991px) {

    .site-footer {
        padding: 1.25rem 1.5625rem;
    }

    .footer-inner {
        gap: 0.9375rem;
        flex-wrap: wrap;
        justify-content: between;
    }

    .footer-copy strong {
        font-size: 0.9375rem;
    }

    .footer-copy span {
        font-size: 0.6875rem;
    }

    .footer-contact {
        padding: 0 0.9375rem;
    }

    .footer-contact span {
        font-size: 0.75rem;
    }

    .footer-btn {
        min-width: 9.375rem;
        height: 2.75rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767px) {

    /* MOBILE FOOTER */

    .site-footer {
        padding: 1.25rem 0.9375rem;
        width: 100%;
    }

    .footer-inner {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        align-items: center;
        justify-content: center;

        gap: 1.125rem;

        text-align: left;
    }

    .footer-launch {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 0.75rem;

        text-align: left;
    }

    .footer-rocket {
        width: 2.625rem;
        height: 2.625rem;

        font-size: 1.125rem;
    }

    .footer-copy {
        flex: 1;
    }

    .footer-copy strong {
        font-size: 0.875rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }

    .footer-copy span {
        font-size: 0.625rem;
        line-height: 1.4;
    }

    .footer-contact {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0.625rem 0;

        border-right: none;
        border-top: 0;
        border-bottom: 0;
    }

    .footer-contact span {
        font-size: 0.75rem;
    }

    .footer-btn {
        width: 100%;
        max-width: 16.25rem;

        min-width: 0;
        height: 2.625rem;

        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {

    .footer-right {
        flex-wrap: wrap;
    }
}

@media (max-width: 430px) {

    .site-footer {
        padding: 1.4rem;
    }

    .footer-inner {
        gap: 0.9375rem;
    }

    .footer-launch {
        gap: 0.625rem;
    }

    .footer-rocket {
        width: 2.375rem;
        height: 2.375rem;
        font-size: 1rem;
    }

    .footer-copy strong {
        font-size: 0.75rem;
    }

    .footer-copy span {
        font-size: 0.5625rem;
    }

    .footer-contact span {
        font-size: 0.85rem;
    }

    .footer-btn {
        max-width: 100%;
        height: 2.5rem;
        font-size: 0.6875rem;
    }

    .site-brand-name {
        font-size: 1.25rem;
    }

    .launch-badge {
        font-size: 0.5625rem;
        padding: 0 0.5rem;
    }
}
.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    position: relative;
    z-index: 100;
    border-bottom: 0.0625rem solid rgba(80, 30, 80, 0.05);
}

.site-header-inner {
    width: calc(100% - 7.5rem);
    max-width: 103.75rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5625rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    color: #351337;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand img {
    width: 9rem;
    object-fit: contain;
}


/* ================= CENTER TAGLINE ================= */


.site-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 0.0625rem solid rgb(230 214 202);
    border-radius: 2rem;
    background: #fff6f0;
    color: #f06a2a;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}


.site-tagline span {
    font-size: 0.875rem;
}


/* ================= RIGHT ACTIONS ================= */

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8125rem;
    color: #1b1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.support-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fbe7e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f85912;
}

.support-icon svg {
    width: 1.5625rem;
    height: 1.5625rem;
}

.launch-badge {
    min-width: 14.0625rem;
    height: 3.625rem;
    padding: 0 1.5rem;
    border-radius: 0.875rem;
    background: #e65613;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6875rem;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 0.5rem 1.375rem rgba(53,19,55,.13);
}


/* ================= RESPONSIVE ================= */
 @media screen and (min-width: 992px) {

            body,
            html {
                font-size: 1vw;
            }
        }
@media (max-width: 991px) {

    .site-header-inner {
        width: calc(100% - 3rem);
    }

    .site-header-actions {
        gap: 0.9375rem;
    }

    .support-link {
        font-size: 0.8125rem;
    }

    .launch-badge {
        min-width: auto;
        height: 2.875rem;
        padding: 0 1rem;
        font-size: 0.8125rem;
    }

    .site-tagline {
        display: none;
    }
}

@media (max-width: 767px) {

    .site-header-inner {
        width: calc(100% - 1.25rem);
        gap: 0.625rem;
    }

    .site-brand img {
        width: 7.5rem;
    }

    .site-tagline {
        font-size: 0.5625rem;
        padding: 0.5rem 0.625rem;
        gap: 0.25rem;
    }

    .site-tagline span {
        font-size: 0.5rem;
    }

    .site-header-actions {
        gap: 0.5rem;
    }

    .support-link {
        font-size: 0;
        gap: 0;
    }

    .support-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .support-icon svg {
        width: 1.3125rem;
        height: 1.3125rem;
    }

}
@media (max-width: 575.98px) {
.footer-contact {
        justify-content: start;
    
}
}

@media (max-width: 480px) {
    .site-header-inner{
        width: calc(100% - 2rem) !important;
    }
        .site-brand img {
        width: 6.5rem !important;
    }

    .site-tagline {
        font-size: 0.5rem;
        padding: 0.4375rem 0.5rem;
    }

    .site-tagline span {
        font-size: 0.4375rem;
    }

    .launch-badge {
        font-size: 0.9rem;
        padding: 0 1rem;
        min-width: auto !important;
        height: 3rem;
    }
    .support-link {
        display: none;
    }
    .support-icon{
        display: none;
    }
}
