*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

:root{
    --bg:#060b1f;
    --card:#0d1430;
    --card2:#101a3d;
    --primary:#4f7cff;
    --secondary:#9d5cff;
    --text:#ffffff;
    --muted:#b8c2e0;
    --border:rgba(255,255,255,0.08);
}

body{
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

.page{
    min-height:100vh;
}

/* =====================================
   NAVBAR
===================================== */

.navbar{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    position:relative;
    z-index:100;
    background:transparent;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    position:relative;
}

.logo img{
    width:52px;
    height:52px;
    border-radius:16px;
    transition:.4s ease;
    filter:
    drop-shadow(0 0 10px rgba(37,99,235,.6))
    drop-shadow(0 0 20px rgba(168,85,247,.4));
}

.logo img:hover{
    transform:scale(1.08) rotate(-4deg);
    filter:
    drop-shadow(0 0 18px rgba(37,99,235,.9))
    drop-shadow(0 0 35px rgba(168,85,247,.8));
}

.logo h2{
    font-size:34px;
    font-weight:800;
    text-shadow:0 0 15px rgba(59,130,246,.25);
}

.logo span{
    background:linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-shadow:0 0 20px rgba(168,85,247,.4);
}

.nav-links{
    position:relative;
    display:flex;
    gap:34px;
    list-style:none;
}

.nav-indicator{
    display:none;
}

.nav-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

.nav-links a:hover{
    color:white;
}

.nav-links a.active{
    color:white;
    text-shadow:
    0 0 10px rgba(59,130,246,.8),
    0 0 20px rgba(139,92,246,.8);
}

.nav-links a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:2px;
    background:linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius:10px;
}

.back-btn{

    text-decoration:none;

    color:white;

    font-weight:700;

    padding:14px 24px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #8b5cf6
    );

    transition:.35s ease;
}

.back-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 0 25px rgba(59,130,246,.35);
}

/* HERO */

.hero{
    position:relative;
    padding:120px 8% 80px;
    text-align:center;
}

.hero-glow{
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(
    circle,
    rgba(79,124,255,.25),
    transparent 70%);
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    margin-bottom:20px;
    font-size:.9rem;
}

.hero h1{
    font-size:4rem;
    font-weight:900;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    margin:auto;
    color:var(--muted);
    font-size:1.15rem;
    line-height:1.8;
}

/* POLICY SECTION */

.policy-section{
    padding:40px 8% 100px;
}

.policy-card{
    background:linear-gradient(
    180deg,
    rgba(16,26,61,.95),
    rgba(13,20,48,.95)
    );

    border:1px solid var(--border);

    border-radius:30px;

    padding:50px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 0 50px rgba(79,124,255,.15);
}

.policy-intro h2{
    font-size:2.2rem;
    margin-bottom:15px;
}

.policy-intro p{
    color:var(--muted);
    line-height:1.9;
}

.policy-block{
    margin-top:45px;
}

.policy-block h3{
    font-size:1.4rem;
    margin-bottom:15px;
    color:#ffffff;
}

.policy-block p{
    color:var(--muted);
    line-height:1.9;
}

.policy-block ul{
    margin-top:15px;
    padding-left:25px;
}

.policy-block li{
    margin-bottom:10px;
    color:var(--muted);
    line-height:1.7;
}

/* CONTACT CARD */

.contact-card{
    margin-top:60px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    padding:35px;

    border-radius:24px;
}

.contact-card h3{
    margin-bottom:15px;
    font-size:1.5rem;
}

.contact-card p{
    color:var(--muted);
    margin-bottom:20px;
}

.email-box{
    background:linear-gradient(
    135deg,
    rgba(79,124,255,.15),
    rgba(157,92,255,.15)
    );

    border:1px solid rgba(255,255,255,.08);

    padding:18px;

    border-radius:14px;

    font-weight:600;

    word-break:break-word;
}

/* LAST UPDATED */

.last-updated{
    margin-top:40px;
    text-align:center;
    color:#8ea1d5;
    font-size:.95rem;
}

/* FOOTER */

footer{
    padding:40px;
    text-align:center;
    border-top:1px solid var(--border);
    color:#9fb0dc;
}

/* =====================================
   CUSTOM SCROLLBAR
===================================== */

::-webkit-scrollbar{
    width:6px;
}

::-webkit-scrollbar-track{
    background:#020617;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg, #2563eb, #8b5cf6);
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 0 12px rgba(37,130,235,.5), 0 0 20px rgba(139,92,246,.4);
}

::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg, #3b82f6, #a855f7);
}

::-webkit-scrollbar-corner{
    background:#020617;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        padding:20px;
        flex-direction:column;
        gap:15px;
    }

    .hero{
        padding:90px 20px 60px;
    }

    .hero h1{
        font-size:2.6rem;
    }

    .hero p{
        font-size:1rem;
    }

    .policy-section{
        padding:20px;
    }

    .policy-card{
        padding:30px 22px;
    }

    .policy-intro h2{
        font-size:1.8rem;
    }

    .policy-block h3{
        font-size:1.2rem;
    }

    .back-btn{

    padding:10px 14px;

    font-size:13px;

    border-radius:12px;
}

}