/* Inherits base styles from about.css */


/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 8%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px); /* Glass effect over the grid */
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px;  }
.logo span { color: var(--mint); }
.navbar .logo img{
    width: 130px;
}

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--gray); font-weight: 600; font-size: 0.9rem; }

.btn-black { 
    background: var(--dark); color: white; border: none; 
    padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer;
}

/* Existing Navbar Base Styles */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 8%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-links { display: flex; align-items: center; gap: 40px; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: #00d285; }

/* Hamburger Icon */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 10px;
    transition: 0.3s;
}

/* Mobile Breakpoint (Under 1024px) */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0; /* Slides in */
    }

    .nav-links a {
        font-size: 1.5rem; /* Larger links for touch */
        font-weight: 800;
        letter-spacing: -1px;
    }

    /* Animate Hamburger to "X" when active */
    .menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.open .bar:nth-child(2) { transform: translateY(0px) rotate(-45deg); }
}

.privacy-hero {
    padding: 100px 0 60px;
}

.privacy-intro {
    max-width: 600px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
    margin-top: 40px;
}

/* PROTOCOL GRID */
.protocol-grid {
    padding: 80px 0;
}

.protocol-grid .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.protocol-item {
    padding: 60px;
    background: #fbfbfb;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    transition: 0.4s ease;
}

.protocol-item:hover {
    background: #ffffff;
    border-color: var(--mint);
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    transform: translateY(-10px);
}

.item-id {
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    color: #bbb;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.protocol-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.protocol-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* SECURITY CONTACT */
.security-contact {
    padding: 120px 0;
}

.contact-box {
    background: #000;
    color: #fff;
    padding: 100px;
    border-radius: 40px;
    text-align: center;
}

.contact-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin: 30px 0 50px;
}

.contact-detail {
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-decoration: none;
}

.contact-detail a {
    text-decoration: none;
    color: #000;
}

@media (max-width: 900px) {
    .protocol-grid .container { grid-template-columns: 1fr; }
    .contact-box { padding: 60px 30px; }
    .contact-box h2 { font-size: 2.2rem; }
}