 /* REBOOTING THE SQUAD AESTHETIC */
:root { 
    --bg: #05070a; --bg-secondary: #0b0f1a;
    --purple: #7c3aed; --orange: #f97316; 
    --card: rgba(22, 28, 45, 0.6); --border: rgba(45, 55, 72, 0.5); 
    --text-dim: #94a3b8; --white: #ffffff;
}

/* 1. THE LAYOUT FIX (This stops the "bullet point" mess) */
* { margin: 0; padding: 0; box-sizing: border-box; list-style: none; text-decoration: none; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--white); padding-top: 100px; }

/* 2. THE ORIGINAL HEADER (Fixed at top) */
header { 
    background: rgba(5, 7, 10, 0.95); border-bottom: 1px solid var(--border); 
    height: 100px; position: fixed; width: 100%; top: 0; left: 0; z-index: 9999;
    display: flex; align-items: center; backdrop-filter: blur(12px);
}
nav { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }

/* 3. THE ORIGINAL LOGO */
.logo { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -1px; }
.logo span { color: var(--orange); }

/* 4. THE NAVIGATION LINKS */
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links > li > a { color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; transition: 0.3s; }
.nav-links > li > a:hover { color: var(--orange); }

/* 5. THE ORIGINAL MEGA MENU (The fix for your screenshot) */
.mega-dropdown { position: relative; padding: 35px 0; }
.mega-menu {
    position: absolute; top: 90px; left: 50%; transform: translateX(-50%);
    width: 700px; background: var(--bg-secondary); border: 1px solid var(--border);
    border-top: 3px solid var(--orange); border-radius: 0 0 12px 12px;
    padding: 30px; display: none; /* Hidden until hover */
    grid-template-columns: repeat(3, 1fr); gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.mega-dropdown:hover .mega-menu { display: grid; }
.mega-menu a { color: var(--text-dim); font-size: 0.85rem; font-weight: 500; transition: 0.2s; }
.mega-menu a:hover { color: #fff; padding-left: 5px; }

/* 6. THE PREMIUM BUTTONS */
.btn { 
    background: linear-gradient(135deg, var(--purple), var(--orange)); color: #fff !important; 
    padding: 14px 30px; border-radius: 50px; font-weight: 900; font-size: 0.85rem; 
    text-transform: uppercase; transition: 0.4s; border: none; display: inline-block;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4); }

/* 7. THE ORIGINAL HERO LAYOUT */
.hero { padding: 120px 0; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; margin-bottom: 25px; }
.hero p { font-size: 1.25rem; color: var(--text-dim); margin-bottom: 40px; }
