.app {
    position: relative;
    min-height: 100vh;
    background: #050308;
    /*overflow: hidden;*/
}

.bg-decor {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
}

.blob-1 {
    top: -96px;
    left: -8%;
    width: 288px;
    height: 288px;
    background: rgba(192, 38, 211, 0.20);
}

.blob-2 {
    top: 160px;
    right: -8%;
    width: 320px;
    height: 320px;
    background: rgba(139, 92, 246, 0.20);
}

.blob-3 {
    bottom: 0;
    left: 33%;
    width: 288px;
    height: 288px;
    background: rgba(99, 102, 241, 0.15);
}

.overlay-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(168, 85, 247, 0.15), transparent 30%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 25%);
}

.overlay-grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: var(--grid) var(--grid);
}

/**/

.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(18px);
}

.container {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 1;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    border: 1px solid rgba(196, 181, 253, 0.28);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.20), rgba(217, 70, 239, 0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-icon img {


}

.brand-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #fff;
}

.brand-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 999px;
}

.nav-link {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-link.active {
    background: linear-gradient(90deg, var(--violet-2), var(--fuchsia));
    color: #fff;
}

.nav-cta,
.btn,
.btn-outline,
.btn-light,
.btn-dark {
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta {
    border-radius: 999px;
    border: 1px solid rgba(196, 181, 253, 0.24);
    background: rgba(139, 92, 246, 0.10);
    padding: 10px 16px;
    color: #ddd6fe;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

.mobile-menu {
    display: none;
    position: fixed;
    width: 100%;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(18px);
    z-index: 4;
}

.mobile-menu.open {
    display: block;
    animation: pageFade 0.25s ease;
}

.mobile-menu-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 14px 24px 18px;
    display: grid;
    gap: 10px;
}

.mobile-nav-link {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.28), rgba(217, 70, 239, 0.22));
    border-color: rgba(196, 181, 253, 0.24);
    color: #fff;
}

.nav-cta:hover {
    background: rgba(139, 92, 246, 0.18);
}

.page {
    display: none;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
    animation: pageFade 0.45s ease;
}

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.70);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-brand {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-brand strong {
    letter-spacing: 0.25em;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-pill {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }

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