/* --- VARIABLES --- */
:root {
    --bg-dark: #0B0C15;       /* Void Blue */
    --bg-card: #151725;       /* Lighter Blue/Grey */
    --primary: #7C3AED;       /* Cyber Violet */
    --primary-glow: #8B5CF6;  
    --accent: #22D3EE;        /* Security Cyan */
    --text-main: #F3F4F6;     /* Platinum White */
    --text-muted: #9CA3AF;    /* Grey text */
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-heading); }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 20px; }
p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 20px; }

.text-glow {
    color: var(--primary-glow);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    margin-left: 10px;
}

.btn-outline:hover {
    background: rgba(34, 211, 238, 0.1);
}

/* --- NAVBAR --- */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(11, 12, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}
.logo i { color: var(--accent); font-size: 1.5rem; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary-glow); }

.nav-actions { display: flex; align-items: center; gap: 15px; }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO --- */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- LOCKED SECTION (UPDATED) --- */
.members-section {
    padding: 80px 0;
    position: relative; /* CRITICAL: Keeps elements inside */
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* 1. Stronger Blur Logic (Uses ID + !important) */
#secret-content.blurred {
    filter: blur(15px) !important;
    opacity: 0.1 !important;
    pointer-events: none;
    user-select: none;
}

#secret-content {
    transition: filter 0.5s ease, opacity 0.5s ease;
}

/* 2. The Lock Overlay (Centered & High Z-Index) */
.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect Center */
    z-index: 50; /* Sits on top */
    
    background: rgba(11, 12, 21, 0.95);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #22D3EE;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.lock-overlay i { font-size: 3rem; color: #22D3EE; margin-bottom: 15px; }
.lock-overlay h3 { margin-bottom: 10px; color: white; }

/* 3. Hide Utility */
.lock-overlay.hidden {
    display: none !important;
}

/* --- CARDS --- */
.features { margin-bottom: 100px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); border-color: var(--primary); }
.card.highlight { border-color: var(--primary); box-shadow: 0 0 30px rgba(124, 58, 237, 0.1); }

.icon-box {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.icon-box.red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.icon-box.violet { background: rgba(124, 58, 237, 0.1); color: var(--primary); }
.icon-box.cyan { background: rgba(34, 211, 238, 0.1); color: var(--accent); }

/* --- FOUNDER --- */
.founder { padding: 50px 0 100px 0; }
.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-img-wrapper { position: relative; }
.founder-img-wrapper img { border-radius: 20px; border: 2px solid var(--bg-card); }

.founder-tag {
    position: absolute; bottom: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark); border: 1px solid var(--accent); color: var(--accent);
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.85rem; font-weight: 700; white-space: nowrap;
}

.stats-row {
    display: flex; gap: 40px; margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px;
}
.stat .number { display: block; font-size: 2rem; font-weight: 700; color: var(--text-main); }
.stat .label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- FOOTER --- */
footer { padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    h1 { font-size: 2.5rem; }
    .hero-grid, .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .badge { margin: 0 auto 20px auto; }
    .founder-img-wrapper { max-width: 300px; margin: 0 auto; }
    .stats-row { justify-content: center; }
    .nav-actions { display: none; } /* Hide buttons on mobile for simplicity in this demo */
}