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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070b14;
    color: #fff;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 88px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(6, 10, 18, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(4, 7, 13, 0.98);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
}

.brand-logo {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.brand:hover .brand-logo img {
    transform: scale(1.06);

    filter:
        drop-shadow(0 0 8px rgba(139,55,255,0.35))
        drop-shadow(0 0 18px rgba(139,55,255,0.20));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;

    transition: color 0.25s ease;
}

.brand:hover .brand-text strong {
    color: #c88cff;
}

.brand-text small {
    margin-top: 4px;
    color: #8d42ff;
    font-size: 12px;
    font-weight: 800;

    transition: color 0.25s ease;
}

.brand:hover .brand-text small {
    color: #c88cff;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}


.nav-link,
.nav-login {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    padding: 14px 0;
    transition: 0.22s ease;
}

.nav-link:hover,
.nav-login:hover {
    color: #c88cff;
    transform: translateY(-2px);
}


.nav-link.active {
    color: #b56cff;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;

    width: 10px;
    height: 10px;

    transform: translateX(-50%);

    border-radius: 50%;
    background: #9b45ff;

    animation: navPulse 1.8s infinite ease-in-out;
}

.nav-login {
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #8b37ff, #5b1de0);
    box-shadow: 0 0 24px rgba(139,55,255,0.25);
}

.nav-toggle {
    display: none;
}

/* ====================================
   BUTTONS
===================================== */

.btn {
    padding: 16px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
}

.btn.primary {
    background: linear-gradient(135deg, #8b37ff, #5b1de0);
    color: white;
}

.btn.secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}

/* ====================================
   SHARED TEXT
===================================== */

.section-kicker {
    color: #9b45ff;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 12px;
}

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

.site-footer {
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050913;
    border-top: 1px solid rgba(168,92,255,0.16);
    color: #9ca3b8;
}

.site-footer a {
    color: #9ca3b8;
    text-decoration: none;
    margin-left: 22px;
    font-weight: 700;
    transition: color 0.22s ease;
}

.site-footer a:hover {
    color: #c88cff;
}

@keyframes navPulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow:
            0 0 0 0 rgba(155,69,255,0.8);
    }

    70% {
        transform: translateX(-50%) scale(1.3);
        box-shadow:
            0 0 0 10px rgba(155,69,255,0);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow:
            0 0 0 0 rgba(155,69,255,0);
    }
}