:root {
    --font-global: "Segoe UI", "Helvetica Neue", "Open Sans";
}
* {
    box-sizing: border-box;
}
body {
    font-family: var(--font-global);
    background: linear-gradient(135deg, #764ba2, #667eea);
}
.navbar {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .01);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .2);
    transition: all .4s cubic-bezier(0.25, .46, .45, .94);
    overflow: hidden;
}
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: left .8s ease;
}
.navbar:hover::before {
    left: 100%;
}
.navbar:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 36px;
    background: linear-gradient(135deg, #eeede4, #f0f0f0);
    -webkit-mask: url("../../assets/images/neoverse_icon.webp") center/contain;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    cursor: pointer;
}
.logo-icon img {
    height: 36px;
    opacity: 0;
}
.logo-icon::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    animation: logo-pulse 2s ease-in-out infinite;
}
@keyframes logo-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: .8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.brand-text {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    position: relative;
}
@media (min-width: 993px) {
    .navbar-nav {
        display: flex;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
        flex-direction: row;
    }
}
.nav-item {
    position: relative;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 6px;
    padding: 4px 16px 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    font-size: .9rem;
    border-radius: 25px;
    transition: all .3s cubic-bezier(0.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}
.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    border-radius: 25px;
    opacity: 0;
    transition: opacity .3s ease;
}
.nav-link:hover::before {
    opacity: 1;
}
.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}
.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .1));
    color: white;
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}
.nav-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform .3s ease;
}
.nav-link:hover .nav-icon {
    transform: scale(1.1);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: 50%;
    transition: all .3s ease;
    position: relative;
    flex-shrink: 0;
}
.mobile-toggle:hover {
    background: rgba(255, 255, 255, .1);
    transform: scale(1.1);
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    justify-content: center;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all .3s ease;
    display: block;
}
.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s ease;
    white-space: nowrap;
    margin-left: 5px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
    cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}
.cta-button:active {
    color: linear-gradient(135deg, #eeede4, #f0f0f0);
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}
@media (max-width: 992px) {
    .navbar {
        padding: 12px 20px;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-nav {
        display: none;
    }
    .brand-text {
        font-size: 1.2rem;
    }
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1b2838, #764ba2);
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(0.25, .46, .45, .94);
    overflow-y: auto;
}
.mobile-menu.active {
    transform: translateY(0);
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}
.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    padding: 8px;
    border-radius: 50%;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}
.mobile-menu-close:hover {
    background: rgba(255, 255, 255, .1);
    transform: scale(1.1);
}
.mobile-menu-nav {
    padding: 40px 30px 0;
    list-style: none;
}
.mobile-menu-item {
    margin-bottom: 8px;
}
.mobile-menu-link {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 9px;
    transition: all .3s ease;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 255, 255, .15);
    color: white;
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, .2);
}
.mobile-menu-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.mobile-cta {
    margin: 30px 30px 40px;
}
.mobile-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
    transition: all .3s ease;
}
.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}
.mobile-cta-button:active {
    color: linear-gradient(135deg, #eeede4, #f0f0f0);
    box-shadow: rgba(9, 30, 66, .25) 0px 1px 1px, rgba(9, 30, 66, .13) 0px 0px 1px 1px;
}
@media (max-width: 768px) {
}
@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    .navbar-brand {
        gap: 8px;
    }
    .brand-text {
        font-size: 1.1rem;
    }
}
.mobile-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    transition: all .3s ease;
    border: 1px solid rgba(255, 255, 255, .2);
    fill: currentColor;
}
.mobile-icon:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}
.mobile-icon:active {
    box-shadow: rgba(9, 30, 66, .25) 0px 1px 1px, rgba(9, 30, 66, .13) 0px 0px 1px 1px;
}