/* Palette: Vibrant Purple, White, Soft Grey, Dark Text */
:root {
    --purple: #6C63FF;
    --purple-dark: #564FCD;
    --purple-light: #F3F0FF;
    --white: #FFFFFF;
    --text: #2D3436;
    --text-light: #636E72;
    --bg: #FAFBFC;
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'DM Sans', 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;
}

/* Background Elements */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}
.c1 { width: 600px; height: 600px; background: var(--purple-light); top: -200px; right: -200px; }
.c2 { width: 400px; height: 400px; background: #E0E7FF; bottom: 10%; left: -100px; }

.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: 20px; }

/* Header */
.hub-header { padding: 20px 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--text); }
.purple-text { color: var(--purple); }

.startup-nav a { margin-left: 30px; font-weight: 500; color: var(--text-light); }
.startup-nav a:hover, .startup-nav a.active { color: var(--purple); }

.btn-primary { background: var(--purple); color: var(--white); padding: 12px 25px; border-radius: 50px; font-weight: 700; transition: 0.3s; display: inline-block; text-align: center; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3); }

.mobile-menu-btn { display: none; background: transparent; border: none; font-size: 1rem; font-weight: 700; cursor: pointer; color: var(--purple); }

/* Mobile Nav */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-nav.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-nav a { font-family: var(--font-head); font-size: 1.5rem; margin: 15px 0; font-weight: 700; }

@media (max-width: 900px) {
    .startup-nav, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }
}

/* Hero */
.hero-venture { padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.badge-pill { background: var(--purple-light); color: var(--purple); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; display: inline-block; margin-bottom: 20px; }
.badge-pill.purple { background: var(--purple); color: var(--white); }

.hero-text h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; color: var(--text); }
.highlight { color: var(--purple); }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; max-width: 500px; }

.hero-buttons { display: flex; gap: 15px; }
.btn-secondary { background: var(--white); color: var(--purple); border: 2px solid var(--purple); padding: 12px 25px; border-radius: 50px; font-weight: 700; }
.btn-secondary:hover { background: var(--purple-light); }
.btn-primary.large, .btn-secondary.large { padding: 15px 35px; font-size: 1rem; }

.hero-img { position: relative; }
.float-card { position: absolute; background: var(--white); padding: 15px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.float-card.top { top: 30px; left: -30px; }
.float-card.bottom { bottom: 30px; right: -30px; }
.float-card strong { display: block; color: var(--purple); font-size: 1.5rem; font-family: var(--font-head); }
.float-card span { font-size: 0.8rem; color: var(--text-light); }

/* Focus Areas */
.focus-section { background: var(--white); }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.text-center { text-align: center; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.focus-card { background: var(--bg); padding: 30px; border-radius: 20px; text-align: center; transition: 0.3s; }
.focus-card:hover { transform: translateY(-10px); background: var(--purple-light); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.focus-card h3 { font-family: var(--font-head); margin-bottom: 10px; }

/* Partners Strip */
.partners-strip { padding: 40px 0; text-align: center; color: var(--text-light); font-weight: 700; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.logos { margin-top: 15px; font-size: 1.2rem; opacity: 0.6; }
.logos span { margin: 0 15px; }

/* Content Split (Startups Page) */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.txt-block h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.criteria-box { background: var(--white); padding: 30px; border-radius: 20px; margin-top: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 5px solid var(--purple); }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }

/* Process Steps */
.steps-row { display: flex; justify-content: space-between; margin-top: 50px; text-align: center; gap: 20px; }
.step-circle { width: 60px; height: 60px; background: var(--purple); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; }
.step h4 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.2rem; }

/* Investors Page */
.investor-intro { max-width: 700px; margin: 0 auto 60px; }
.investor-intro h1 { font-family: var(--font-head); font-size: 3rem; margin-top: 20px; margin-bottom: 20px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-card { background: var(--white); padding: 40px; border-radius: 20px; border: 1px solid #eee; }
.benefit-card h3 { color: var(--purple); font-family: var(--font-head); margin-bottom: 15px; }
.cta-box { background: var(--purple); color: var(--white); text-align: center; padding: 60px; border-radius: 20px; margin-top: 80px; }
.cta-box h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.btn-white { background: var(--white); color: var(--purple); padding: 15px 35px; border-radius: 50px; font-weight: 700; display: inline-block; margin-top: 20px; }
.btn-white:hover { background: var(--purple-light); }

/* Form */
.form-container { max-width: 600px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.form-header { text-align: center; margin-bottom: 40px; }
.venture-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-grp { margin-bottom: 20px; }
.input-grp label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.input-grp input, .input-grp select, .input-grp textarea { width: 100%; padding: 12px 15px; border: 2px solid #eee; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.input-grp input:focus, .input-grp select:focus, .input-grp textarea:focus { border-color: var(--purple); outline: none; }
.full-width { width: 100%; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; }

/* Footer */
.hub-footer { background: var(--white); padding: 60px 0 20px; margin-top: 100px; border-top: 1px solid #eee; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-col h4 { font-family: var(--font-head); font-size: 1.5rem; color: var(--purple); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--text-light); }
.f-links a:hover { color: var(--purple); }
.copyright { text-align: center; font-size: 0.8rem; color: #aaa; }

@media (max-width: 900px) {
    .hero-grid, .content-split, .grid-4, .benefits-grid, .venture-form .form-row { grid-template-columns: 1fr; }
    .hero-grid { text-align: center; }
    .hero-img { order: -1; margin-bottom: 30px; }
    .steps-row { flex-direction: column; align-items: center; }
    .hero-buttons { justify-content: center; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}