/* --- VARIABLES & RESET --- */
:root { --bg: #050505; --glass: rgba(255, 255, 255, 0.03); --border: rgba(255, 255, 255, 0.08); --primary: #6366f1; --secondary: #a855f7; --accent: #ec4899; --text: #ffffff; --text-dim: #94a3b8; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; overflow-x: hidden; }

#floating-icons { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.floating-icon { position: absolute; color: rgba(255, 255, 255, 0.03); font-size: 4rem; animation: floatUp linear infinite; }
@keyframes floatUp { 0% { transform: translateY(110vh) rotate(0deg); opacity: 0; } 100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; } }

/* NAV */
.glass-nav { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 5, 5, 0.6); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border); z-index: 100; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; margin-left: 30px; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--text); }
.cta-btn { padding: 10px 20px; border: 1px solid var(--border); border-radius: 50px; color: var(--text) !important; }
.cta-btn:hover { background: var(--glass); border-color: var(--primary); }
.menu-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 50px; background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%); }
.hero h1 { font-size: 5rem; line-height: 1.1; font-weight: 800; margin: 20px 0; }
.gradient-text { background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text { font-size: 1.25rem; color: var(--text-dim); max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
.badge { padding: 8px 16px; border-radius: 50px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); color: var(--primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* BUTTONS */
.btn { padding: 15px 35px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.primary { background: var(--text); color: #000; border: none; }
.primary:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(255,255,255,0.4); }
.secondary { background: transparent; color: var(--text); border: 1px solid var(--border); margin-left: 10px; }
.secondary:hover { border-color: var(--text); }

section { padding: 120px 10%; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3rem; margin-bottom: 10px; }
.section-header p { color: var(--text-dim); }

/* CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.glass { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 16px; padding: 40px; transition: 0.4s; }
.glass:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-10px); }
.icon { font-size: 2.5rem; margin-bottom: 20px; background: linear-gradient(to bottom right, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* WORK */
.work-container { display: flex; flex-direction: column; gap: 120px; }
.work-row { display: flex; align-items: center; gap: 80px; }
.work-row.reversed { flex-direction: row-reverse; }
.work-visual { flex: 1.2; height: 400px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transition: 0.5s; }
.work-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.work-row:hover .work-visual { transform: scale(1.02); border-color: var(--primary); }
.work-row:hover .work-visual img { transform: scale(1.1); }
.work-details { flex: 1; }
.work-details h3 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
.work-details p { color: var(--text-dim); line-height: 1.7; margin-bottom: 30px; font-size: 1.1rem; }
.work-tags { margin-bottom: 20px; }
.work-tags span { display: inline-block; font-size: 0.75rem; padding: 6px 14px; border-radius: 50px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--primary); margin-right: 10px; text-transform: uppercase; font-weight: 600; }
.text-link { color: #fff; text-decoration: none; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--primary); padding-bottom: 5px; transition: 0.3s; }
.text-link:hover { color: var(--primary); border-bottom-color: transparent; }
.text-link i { margin-left: 10px; transition: 0.3s; }
.text-link:hover i { transform: translateX(5px); }

/* WAITLIST */
.coming-soon-container { max-width: 800px; margin: 0 auto; text-align: center; padding: 60px 40px; border: 1px solid rgba(255,255,255,0.1); background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,0,0,0.5)); }
.lock-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(99, 102, 241, 0.1); border: 1px solid var(--primary); display: flex; justify-content: center; align-items: center; margin: 0 auto 30px; box-shadow: 0 0 30px rgba(99, 102, 241, 0.2); }
.lock-icon i { font-size: 2rem; color: var(--primary); }
.cs-content h3 { font-size: 2rem; margin-bottom: 15px; }
.cs-content p { color: var(--text-dim); margin-bottom: 40px; font-size: 1.1rem; }
.waitlist-form { display: flex; gap: 10px; max-width: 600px; margin: 0 auto 30px; }
.waitlist-form input { background: rgba(0,0,0,0.3); border: 1px solid var(--border); padding: 15px; border-radius: 8px; color: #fff; outline: none; transition: 0.3s; }
.waitlist-form input:focus { border-color: var(--primary); }
.waitlist-form button { width: auto; white-space: nowrap; }
.launch-status { font-size: 0.9rem; color: var(--text-dim); display: flex; justify-content: center; align-items: center; gap: 10px; }
.pulse-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; box-shadow: 0 0 10px #25D366; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(0.95); opacity: 0.7; } }

/* CONTACT & FOOTER */
.contact-box { display: flex; flex-wrap: wrap; gap: 60px; max-width: 1100px; margin: 0 auto; }
.contact-left { flex: 1; min-width: 300px; }
.contact-right { flex: 1; min-width: 300px; }
.founders-section { border-top: 1px solid var(--border); padding-top: 30px; margin-top: 30px; }
.founder-card { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; background: rgba(255,255,255,0.02); padding: 15px; border-radius: 12px; border: 1px solid transparent; transition: 0.3s; }
.founder-card:hover { background: rgba(255,255,255,0.05); border-color: var(--border); transform: translateX(10px); }
.founder-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 700; color: white; font-size: 1.1rem; box-shadow: 0 0 15px rgba(99, 102, 241, 0.3); }
.founder-info h5 { font-size: 1rem; color: #fff; margin-bottom: 2px; }
.founder-info span { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.form-row { display: flex; gap: 10px; margin-bottom: 15px; }
.full-width { width: 100%; margin-top: 20px; }
.checkbox-container { font-size: 0.8rem; color: var(--text-dim); display: flex; align-items: center; gap: 10px; }
.checkbox-container input { width: auto; }

.centered-footer { text-align: center; padding: 60px 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); border-top: 1px solid var(--border); position: relative; z-index: 10; }
.centered-footer h3 { font-size: 1.5rem; margin-bottom: 30px; color: var(--text); letter-spacing: 0.5px; }
.contact-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-dim); text-decoration: none; font-size: 1.1rem; padding: 10px 20px; border-radius: 50px; background: rgba(255, 255, 255, 0.03); border: 1px solid transparent; transition: all 0.3s ease; }
.contact-item:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); color: #fff; border-color: rgba(255, 255, 255, 0.2); }
.contact-item i { font-size: 1.3rem; }
.fa-envelope { color: #ea4335; } .fa-whatsapp { color: #25D366; } .fa-instagram { color: #E1306C; }
.copyright { color: var(--text-dim); font-size: 0.85rem; opacity: 0.6; }
.hidden { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) { section { padding: 80px 5%; } .hero h1 { font-size: 4rem; } .form-row { flex-direction: column; gap: 15px; } .work-row { gap: 40px; } }
@media (max-width: 768px) {
    .hero { padding-top: 150px; } .hero h1 { font-size: 3rem; }
    .menu-toggle { display: block; z-index: 101; }
    .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; transition: 0.4s ease; border-left: 1px solid var(--border); }
    .nav-links.active { right: 0; } .nav-links a { margin: 20px 0; font-size: 1.2rem; }
    .work-container { gap: 80px; } .work-row { flex-direction: column !important; gap: 30px; } .work-visual { height: 250px; width: 100%; } .work-details h3 { font-size: 2rem; }
    .contact-box { gap: 40px; } .contact-links { flex-direction: column; gap: 15px; align-items: center; } .contact-item { width: 100%; max-width: 300px; justify-content: center; }
    .waitlist-form { flex-direction: column; } .waitlist-form button { width: 100%; }
}
@media (max-width: 480px) { .hero h1 { font-size: 2.5rem; } section { padding: 60px 5%; } }

/* --- FORM INPUTS --- */
.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px; 
    border-radius: 12px; 
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.input-field:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6366f1; /* Primary Purple */
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

/* --- ROCKET LAUNCH & FULL SCREEN OVERLAY --- */
.rocket-mode {
    width: 60px !important;
    border-radius: 50% !important;
    color: transparent !important;
    background: #fff !important;
    border: none !important;
    position: relative;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; justify-content: center; align-items: center;
    margin: 20px auto 0; 
}
.rocket-mode::after {
    content: '\f135'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #6366f1; 
    font-size: 1.8rem;
    position: absolute;
    transform: rotate(-45deg);
}
.fly-away {
    transform: translateY(-120vh) scale(0.5);
    opacity: 0;
    transition: transform 1s ease-in, opacity 1s ease-in;
}

/* ✅ FIXED FULL SCREEN OVERLAY CSS */
.full-screen-overlay {
    position: fixed !important;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(10px);
    z-index: 100000; /* Highest z-index */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeInOverlay 0.5s ease-out forwards;
}

.success-content {
    background: rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-width: 500px;
    width: 90%;
}

.success-icon-box {
    width: 100px; height: 100px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 30px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.success-logo { width: 50px; height: auto; }

.success-content h2 { font-size: 2.5rem; margin-bottom: 15px; color: #fff; }
.success-content p { color: var(--text-dim); font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; }

@keyframes fadeInOverlay {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}