/* Palette: Deep Space, Neon Purple, Hot Pink, White */
:root {
    --bg: #0F001E;
    --card-bg: #1A0033;
    --purple: #7B2CBF;
    --pink: #F72585;
    --white: #FFFFFF;
    --text: #E0E0E0;
    
    --font-head: 'Audiowide', cursive;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Stars Background Animation */
.stars-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    z-index: -1;
    animation: starMove 100s linear infinite;
}
@keyframes starMove { from { transform: translateY(0); } to { transform: translateY(-2000px); } }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }

/* Header */
.rocket-header { padding: 20px 0; position: sticky; top: 0; z-index: 1000; background: rgba(15, 0, 30, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(247, 37, 133, 0.3); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); text-transform: uppercase; }
.gradient-text { background: linear-gradient(90deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.cosmic-nav a { margin-left: 20px; font-weight: 700; color: var(--text); font-size: 0.9rem; }
.cosmic-nav a:hover, .cosmic-nav a.active { color: var(--pink); text-shadow: 0 0 10px var(--pink); }

.btn-launch { background: linear-gradient(45deg, var(--purple), var(--pink)); color: var(--white); padding: 10px 25px; border-radius: 30px; font-weight: 700; font-family: var(--font-head); border: none; box-shadow: 0 0 15px rgba(247, 37, 133, 0.5); margin-left: 20px; }
.btn-launch:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(247, 37, 133, 0.8); }

.mobile-toggle { display: none; background: transparent; border: none; font-size: 1.5rem; color: var(--white); cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--bg); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--pink); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--white); }

@media (max-width: 900px) {
    .cosmic-nav, .btn-launch { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-space { display: flex; align-items: center; padding: 80px 0; min-height: 80vh; }
.hero-content { flex: 1; padding-right: 50px; }
.status-badge { background: rgba(247, 37, 133, 0.2); color: var(--pink); padding: 5px 10px; border-radius: 5px; font-weight: 700; font-size: 0.8rem; margin-bottom: 20px; display: inline-block; border: 1px solid var(--pink); }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: #BBB; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat strong { display: block; font-size: 2rem; color: var(--white); font-family: var(--font-head); }
.stat span { font-size: 0.9rem; color: var(--pink); }

.rocket-visual { flex: 1; position: relative; }
.rocket-visual img { border-radius: 20px; box-shadow: 0 0 30px rgba(123, 44, 191, 0.5); transform: rotate(-5deg); border: 2px solid rgba(255,255,255,0.1); }

/* Boosters */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.neon-bar { width: 100px; height: 4px; background: var(--pink); margin: 0 auto; box-shadow: 0 0 10px var(--pink); }

.booster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.booster-card { background: var(--card-bg); padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.booster-card:hover { transform: translateY(-10px); border-color: var(--purple); box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.booster-card h3 { font-family: var(--font-head); margin-bottom: 10px; color: var(--white); }

/* Program Timeline */
.program-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.program-timeline::after { content: ''; position: absolute; width: 4px; background: var(--purple); top: 0; bottom: 0; left: 50%; margin-left: -2px; }
.center-text { text-align: center; margin-bottom: 50px; font-family: var(--font-head); }

.timeline-item { padding: 10px 40px; position: relative; width: 50%; box-sizing: border-box; }
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-item::after { content: ''; position: absolute; width: 20px; height: 20px; background: var(--pink); border-radius: 50%; top: 15px; z-index: 1; box-shadow: 0 0 10px var(--pink); }
.timeline-item.left::after { right: -10px; }
.timeline-item.right::after { left: -10px; }

.content { padding: 20px 30px; background: var(--card-bg); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.content h2 { font-family: var(--font-head); font-size: 1.2rem; color: var(--pink); margin-bottom: 10px; }

/* Portfolio */
.startup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.startup-card { background: var(--card-bg); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.startup-card.glow { border-color: var(--pink); box-shadow: 0 0 20px rgba(247, 37, 133, 0.2); }
.s-logo { background: rgba(255,255,255,0.1); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 700; font-family: var(--font-head); color: var(--white); border: 2px solid var(--purple); }
.startup-card h3 { font-family: var(--font-head); margin-bottom: 10px; }
.tags span { font-size: 0.8rem; background: var(--purple); padding: 3px 8px; border-radius: 5px; margin: 0 3px; font-weight: 600; }

/* Contact */
.apply-container { max-width: 700px; margin: 0 auto; background: var(--card-bg); padding: 60px; border-radius: 20px; border: 1px solid var(--purple); box-shadow: 0 0 50px rgba(123, 44, 191, 0.2); }
.apply-header { text-align: center; margin-bottom: 40px; }
.apply-header h2 { font-family: var(--font-head); color: var(--white); }

.cyber-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.cyber-form input, .cyber-form select, .cyber-form textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2); color: var(--white); border-radius: 8px; font-family: var(--font-body); margin-bottom: 20px; }
.cyber-form input:focus, .cyber-form select:focus, .cyber-form textarea:focus { border-color: var(--pink); outline: none; box-shadow: 0 0 10px rgba(247, 37, 133, 0.3); }
.full { width: 100%; margin-top: 10px; }

/* Partners */
.partners-strip { background: var(--card-bg); padding: 20px 0; text-align: center; margin-top: 50px; font-family: var(--font-head); color: #666; letter-spacing: 2px; }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--card-bg); padding: 60px; border-radius: 15px; }
.legal-box h1 { font-family: var(--font-head); color: var(--white); }
.neon-bar.left { margin: 20px 0 40px 0; }

/* Footer */
.rocket-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #888; }
.f-links a:hover { color: var(--pink); }
.copyright { text-align: center; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 900px) {
    .hero-space { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; margin-bottom: 40px; }
    .hero-stats { justify-content: center; }
    .booster-grid, .startup-grid, .cyber-form .form-row { grid-template-columns: 1fr; }
    .program-timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.right { left: 0; }
    .timeline-item.left::after, .timeline-item.right::after { left: 21px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}