.tpAssetsHeader {
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 72px;
    overflow: hidden;
    /*background: linear-gradient(110deg,#8fc6ff 0%,#4195c0 52%,#2e7da9 100%);*/
    box-sizing: border-box;
    background-color: #4784c2;
}

.tpAssetsHeaderInner {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1040px;
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.tpAssetsHeaderWave {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.tpAssetsHeaderWave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.tpAssetsHeaderWaveMain {
    width: 1180px;
    height: 190px;
    left: -230px;
    top: -70px;
}

.tpAssetsHeaderWaveSecondary {
    width: 1050px;
    height: 170px;
    left: 100px;
    top: -93px;
}

.tpAssetsHeaderWaveRight {
    width: 800px;
    height: 150px;
    right: -250px;
    bottom: -100px;
}

.tpAssetsHeaderBrand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 72px;
    flex-shrink: 0;
    white-space: nowrap;
}

.tpAssetsHeaderLogo {
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 14px;
    object-fit: contain;
}

.tpAssetsHeaderTitle {
    color: #fff;
    font-family: 'Inter',Arial,sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.025em;
}

.tpAssetsHeaderSection {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,.5);
    color: rgba(255,255,255,.88);
    font-family: 'Inter',Arial,sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.tpAssetsHeaderNav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 38px;
    color: #ffffff45;
}

.tpAssetsHeaderLink {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 72px;
    color: rgba(255,255,255,.88);
    font-family: 'Inter',Arial,sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease;
}

.tpAssetsHeaderLink::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,.85);
    transform: translateX(-50%);
    transition: width .15s ease;
}

.tpAssetsHeaderLink:hover {
    color: #fff;
    text-decoration: none;
}

.tpAssetsHeaderLink:hover::after {
    width: 18px;
}

.tpAssetsMobileButton {
    position: relative;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
}

.tpAssetsMobileButton:hover {
    background: rgba(255,255,255,.20);
}

.tpAssetsMobileButton svg {
    width: 24px;
    height: 24px;
}

.tpAssetsMobileMenu {
    position: fixed;
    top: 72px;
    right: 14px;
    z-index: 10001;
    display: none;
    width: 220px;
    padding: 8px;
    border: 1px solid #e1e7ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(10,25,50,.22);
}

.tpAssetsMobileMenu.visible {
    display: block;
}

.tpAssetsMobileLink {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #33445e;
    font-family: 'Inter',Arial,sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
}

.tpAssetsMobileLink:hover {
    background: #f3f6f9;
    color: #102043;
    text-decoration: none;
}

.tpAssetsMobileDivider {
    height: 1px;
    margin: 6px 8px;
    background: #edf1f5;
}

@media (max-width:900px) {
    .tpAssetsHeaderInner {
        width: calc(100% - 28px);
    }

    .tpAssetsHeaderNav {
        gap: 22px;
    }
}

@media (max-width:720px) {
    .tpAssetsHeaderInner {
        width: calc(100% - 28px);
    }

    .tpAssetsHeaderNav {
        display: none;
    }

    .tpAssetsMobileButton {
        display: flex;
    }

    .tpAssetsHeaderSection {
        display: none;
    }

    .tpAssetsHeaderTitle {
        font-size: 19px;
    }

    .tpAssetsHeaderLogo {
        margin-right: 10px;
    }

    .tpAssetsHeaderWaveMain {
        width: 120%;
        height: 100%;
        left: -15%;
        top: 0;
    }

    .tpAssetsHeaderWaveSecondary {
        width: 110%;
        height: 100%;
        left: 5%;
        top: 0;
    }

    .tpAssetsHeaderWaveRight {
        width: 75%;
        height: 100%;
        right: -15%;
        bottom: 0;
    }
}