.header {
    width: 100%;
    padding: 0 20px;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: var(--header-height);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #fff1;
    background: #0008;
}

.header-container {
    width: 100%;
    margin: auto;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: Montserrat, sans-serif;
    font-size: 1.7rem;
    text-decoration: none;
    font-weight: 800;
    color: var(--text-light);
}
.logo span {
    font-weight: 900;
    background: var(--ui-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-navbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-navbar a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all linear 0.2s;
    padding: 12px 8px;
    border-radius: 0;
    position: relative;
    display: flex; justify-content: center;
    opacity: 0.6;
    display: flex; align-items: center; gap: 4px;
}

.header-navbar a.cta{
    outline: 1px solid #fff1;
    border-radius: 50px;
    padding: 10px 18px;
    background: #0002;
}

.header-navbar a.active{
    opacity: 1;
    transform: translateY(-2px);
}
.header-navbar a.active::after{
    position: absolute;
    bottom: 0; width: 20%;
    border-radius: 8px;
    height: 3px; background: var(--ui-gradient);
    content: "";
}

.header-navbar a:hover{opacity: 1;}

.header-navbar a.cta:hover{background: #fff1;}


.header-btn{
    display: flex; padding: 4px;
    background: transparent;
    cursor: pointer;
    border: none; opacity: 0.6;
}

.header-btn svg{
    width: 22px; height: 22px;
    stroke: var(--text-light);
    stroke-width: 2;
}

.header-btn:hover{opacity: 1;}