/* =========================================
   GLOBAL
========================================= */

:root {
    --awallet-red: #e60000;
    --awallet-dark: #090909;
    --awallet-white: #ffffff;
    --awallet-border: rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    font-family: "Mark Pro", Arial, sans-serif;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.78);
    border-bottom: 1px solid var(--awallet-border);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    display: block;
    width: 155px;
    height: auto;
}


/* NAVIGATION */

.main-navigation {
    margin-left: auto;
    margin-right: auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a {
    position: relative;

    display: inline-block;
    padding: 26px 0;

    color: var(--awallet-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;

    text-decoration: none;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.main-navigation a:hover {
    color: var(--awallet-red);
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}


/* DOWNLOAD BUTTON */

.btn-header-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 20px;

    background: var(--awallet-red);
    color: #fff;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.btn-header-download:hover {
    background: #c90000;
    transform: translateY(-1px);
}


/* MOBILE TOGGLE */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #fff;

    transition: 0.25s ease;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 68px;
    }

    .header-logo img {
        width: 140px;
    }

    .main-navigation {
        display: none;
    }

    .btn-header-download {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        background: rgba(0, 0, 0, 0.88);
    }

    .header-inner {
        min-height: 64px;
    }

    .header-logo img {
        width: 128px;
    }
}


/* FOOTER */
/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #ffffff;
    padding: 42px 0 28px;
    border-top: 1px solid #f2f2f2;
}

.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* TOP */

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding-bottom: 28px;
    border-bottom: 1px solid #eeeeee;
}


/* BRAND */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand a {
    display: inline-flex;
}

.footer-brand img {
    display: block;
    width: 138px;
    height: auto;
}

.footer-brand p {
    margin: 9px 0 0;

    color: #b5b7be;

    font-family: "Mark Pro", Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}


/* NAV */

.footer-navigation ul {
    display: flex;
    align-items: center;
    gap: 34px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-navigation a {
    color: #9a9da6;

    font-family: "Mark Pro", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;

    text-decoration: none;

    transition: color .2s ease;
}

.footer-navigation a:hover {
    color: #e00000;
}


/* COPYRIGHT */

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #d0d1d5;

    font-family: "Mark Pro", Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .site-footer {
        padding: 38px 0 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;

        gap: 25px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .footer-inner {
        width: calc(100% - 30px);
    }

    .footer-brand img {
        width: 125px;
    }

    .footer-navigation ul {
        gap: 16px 20px;
    }

    .footer-navigation a {
        font-size: 11px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}