/* Palette: Void Black, Cyber Purple, Electric Blue */
:root {
    --bg: #0A0A0E;
    --card-bg: #14141A;
    --primary: #6C63FF;
    --accent: #00F0FF;
    --text: #FFFFFF;
    --text-dim: #A0A0B0;
    
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Noise overlay */
.noise-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMGEwYTBlIi8+PGZpbHRlciBpZD0ibm9pc2UiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.header { padding: 20px 0; position: sticky; top: 0; z-index: 1000; background: rgba(10, 10, 14, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; }
.gradient-text { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; color: transparent; }

.nav a { margin-left: 30px; font-family: var(--font-mono); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: var(--text-dim); }
.nav a:hover, .nav a.active { color: var(--text); text-shadow: 0 0 10px var(--primary); }

.mobile-toggle { display: none; background: none; border: 1px solid var(--text); color: var(--text); padding: 5px 10px; cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--bg); z-index: 2000; padding: 50px; transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: 1px solid var(--text); color: var(--text); padding: 10px 20px; font-family: var(--font-mono); cursor: pointer; margin-bottom: 40px; }
.mobile-menu a { display: block; font-family: var(--font-mono); font-size: 2rem; margin-bottom: 20px; font-weight: 700; }

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero { padding: 120px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; }

.tag { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); border: 1px solid var(--accent); padding: 5px 15px; border-radius: 20px; display: inline-block; margin-bottom: 20px; box-shadow: 0 0 10px rgba(0, 240, 255, 0.2); }
.hero h1 { font-size: 4.5rem; line-height: 1; font-weight: 900; margin-bottom: 20px; }
.outline { -webkit-text-stroke: 1px var(--text); color: transparent; }
.hero p { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 40px; max-width: 500px; }

.hero-btns { display: flex; gap: 20px; }
.btn-primary { background: linear-gradient(45deg, var(--primary), #8F00FF); color: white; padding: 15px 35px; border-radius: 5px; font-weight: 700; font-family: var(--font-mono); border: none; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 20px var(--primary); }
.btn-ghost { border: 1px solid var(--text); padding: 13px 35px; border-radius: 5px; font-weight: 700; font-family: var(--font-mono); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }

/* Orbit Animation */
.hero-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.orbit { width: 300px; height: 300px; border: 1px dashed rgba(255,255,255,0.1); border-radius: 50%; position: relative; animation: rotate 20s linear infinite; }
.core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-weight: 900; font-size: 2rem; color: var(--primary); text-shadow: 0 0 20px var(--primary); }
.planet { width: 20px; height: 20px; border-radius: 50%; position: absolute; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.p1 { top: -10px; left: 50%; }
.p2 { bottom: 50px; right: -10px; background: var(--primary); }
.p3 { bottom: 0; left: 20px; background: #FF00FF; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Stats Strip */
.stats-strip { border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 30px 0; margin-top: 50px; background: rgba(255,255,255,0.02); }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat strong { display: block; font-size: 2.5rem; font-weight: 900; color: var(--text); }
.stat span { font-family: var(--font-mono); color: var(--text-dim); font-size: 0.9rem; }

/* Focus Area */
.section-title h2 { font-size: 2.5rem; font-weight: 900; }
.neon-line { width: 100px; height: 4px; background: var(--accent); margin-bottom: 40px; box-shadow: 0 0 10px var(--accent); }
.left { margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: var(--card-bg); padding: 40px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1); }
.card h3 { font-family: var(--font-mono); font-size: 1.5rem; margin-bottom: 15px; color: var(--text); }
.card p { color: var(--text-dim); }

/* Startups Page */
.startup-hero { text-align: center; padding: 50px 0; }
.startup-hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 10px; }
.timeline { max-width: 800px; margin: 50px auto; border-left: 2px solid var(--primary); padding-left: 40px; }
.t-item { margin-bottom: 60px; position: relative; }
.t-item::before { content: ''; position: absolute; left: -49px; top: 0; width: 16px; height: 16px; background: var(--bg); border: 2px solid var(--accent); border-radius: 50%; }
.month { font-family: var(--font-mono); color: var(--accent); font-size: 0.9rem; display: block; margin-bottom: 5px; }
.t-item h3 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-box { text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent); padding: 60px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }

/* Investors Page */
.investor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
.benefits { list-style: none; margin-top: 30px; font-family: var(--font-mono); color: var(--text-dim); }
.benefits li { margin-bottom: 15px; }
.chart-mockup { display: flex; align-items: flex-end; gap: 15px; height: 300px; border-left: 1px solid #333; border-bottom: 1px solid #333; padding: 20px; }
.bar { width: 40px; background: var(--primary); }
.b1 { height: 30%; } .b2 { height: 50%; } .b3 { height: 70%; } .b4 { height: 90%; background: var(--accent); box-shadow: 0 0 20px var(--accent); }
.chart-caption { text-align: center; font-family: var(--font-mono); margin-top: 10px; color: var(--text-dim); }

/* Form */
.form-wrapper { max-width: 600px; margin: 0 auto; background: var(--card-bg); padding: 50px; border: 1px solid rgba(255,255,255,0.1); }
.form-head { text-align: center; margin-bottom: 40px; }
.form-head h2 { font-size: 2rem; font-family: var(--font-mono); }

.dark-form .form-group { margin-bottom: 25px; }
.dark-form label { display: block; font-family: var(--font-mono); font-size: 0.8rem; margin-bottom: 8px; color: var(--text-dim); }
.dark-form input, .dark-form select, .dark-form textarea { width: 100%; background: var(--bg); border: 1px solid #333; padding: 12px; color: var(--text); font-family: var(--font-main); }
.dark-form input:focus, .dark-form select:focus, .dark-form textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 10px rgba(108, 99, 255, 0.2); }
.full { width: 100%; margin-top: 20px; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 20px; margin-top: 100px; background: #050507; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-mono); font-weight: 700; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--text-dim); font-size: 0.9rem; }
.copyright { text-align: center; color: #555; font-size: 0.8rem; font-family: var(--font-mono); }

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .hero-grid, .grid-3, .investor-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-flex { flex-direction: column; gap: 30px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}