/* --- Variables --- */
:root {
    --color-dark: #121212;      /* Deep Dark Background */
    --color-panel: #1e1e1e;     /* Slightly lighter for cards */
    --color-purple: #8A2BE2;    /* Electric Purple */
    --color-purple-dark: #6a1bb3;
    --color-lime: #CCFF00;      /* Neon Lime */
    --color-white: #ffffff;
    --color-text: #e0e0e0;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glow: 0 0 20px rgba(138, 43, 226, 0.3);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Tech Bar --- */
.tech-bar { background-color: #000; color: var(--color-lime); padding: 5px 0; font-size: 0.8rem; border-bottom: 1px solid #333; font-family: 'Space Grotesk', sans-serif; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.login-link { font-weight: bold; border: 1px solid var(--color-lime); padding: 2px 10px; border-radius: 4px; }
.login-link:hover { background: var(--color-lime); color: #000; }

/* --- Header --- */
.startup-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(10px);
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-white); letter-spacing: -1px; }
.lime-text { color: var(--color-lime); }
.dot { color: var(--color-purple); }

.modern-nav ul { display: flex; gap: 30px; align-items: center; }
.modern-nav a { font-weight: 500; color: var(--color-text); font-size: 0.95rem; }
.modern-nav a:hover, .modern-nav a.active { color: var(--color-purple); text-shadow: 0 0 5px var(--color-purple); }

.btn-purple { background-color: var(--color-purple); color: var(--color-white) !important; padding: 10px 25px; border-radius: 6px; font-weight: bold; box-shadow: var(--glow); border: none; font-family: var(--font-heading); }
.btn-purple:hover { background-color: var(--color-purple-dark); transform: translateY(-2px); }

.mobile-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-burger span { width: 25px; height: 3px; background-color: var(--color-lime); border-radius: 2px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background-color: var(--color-dark); z-index: 2000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: 0.4s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: var(--color-white); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; color: var(--color-white); margin: 15px 0; font-weight: bold; }
.mobile-menu a:hover { color: var(--color-lime); }

/* --- Hero --- */
.hero { position: relative; height: 650px; display: flex; align-items: center; justify-content: flex-start; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
    filter: grayscale(100%) contrast(1.2) brightness(0.6);
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.4) 100%); z-index: -1; }

.hero-text { z-index: 1; max-width: 700px; padding: 0 5%; }
.tag-new { background: var(--color-purple); color: #fff; padding: 5px 10px; font-size: 0.8rem; border-radius: 4px; font-weight: bold; font-family: var(--font-heading); margin-bottom: 20px; display: inline-block; }
.hero h1 { font-family: var(--font-heading); font-size: 4rem; line-height: 1; margin-bottom: 25px; color: var(--color-white); }
.gradient-text { background: linear-gradient(90deg, var(--color-lime), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; color: #ccc; max-width: 500px; }

.hero-buttons { display: flex; gap: 20px; }
.btn { padding: 15px 35px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.3s; border: none; font-family: var(--font-heading); }
.btn-lime { background-color: var(--color-lime); color: var(--color-dark); }
.btn-lime:hover { background-color: #fff; box-shadow: 0 0 20px var(--color-lime); }
.btn-dark { background: rgba(255,255,255,0.1); color: var(--color-white); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(5px); }
.btn-dark:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

/* --- Grid --- */
.section-padding { padding: 100px 0; }
.section-title, .page-head { text-align: center; margin-bottom: 80px; }
.section-title h2, .page-head h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-white); margin-bottom: 15px; }
.neon-line { width: 100px; height: 4px; background: var(--color-purple); margin: 0 auto; box-shadow: var(--glow); border-radius: 2px; }

.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-box { background: var(--color-panel); padding: 40px 30px; border-radius: var(--radius); border: 1px solid #333; transition: 0.3s; position: relative; overflow: hidden; }
.service-box:hover { transform: translateY(-10px); border-color: var(--color-lime); box-shadow: 0 0 15px rgba(204, 255, 0, 0.1); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.service-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; color: var(--color-white); }
.service-box p { color: #aaa; margin-bottom: 30px; font-size: 0.95rem; }
.arrow-link { color: var(--color-lime); font-weight: bold; font-family: var(--font-heading); text-transform: uppercase; font-size: 0.9rem; }

/* --- Banner --- */
.purple-banner { background: linear-gradient(135deg, var(--color-purple), #4b0082); padding: 80px 0; margin-top: 50px; border-radius: var(--radius); width: 95%; margin: 50px auto; }
.banner-flex { display: flex; justify-content: space-between; align-items: center; padding: 0 50px; }
.b-content h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-white); margin-bottom: 10px; }
.b-content p { color: #e0e0e0; font-size: 1.1rem; }
.btn-white { background: var(--color-white); color: var(--color-purple); }
.btn-white:hover { background: var(--color-lime); color: var(--color-dark); }

/* --- Timeline (About) --- */
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-container::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: #333; }
.timeline-item { display: flex; gap: 40px; margin-bottom: 50px; align-items: flex-start; }
.step-circle { width: 50px; height: 50px; background: var(--color-dark); border: 2px solid var(--color-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--color-lime); z-index: 1; flex-shrink: 0; font-family: var(--font-heading); }
.step-content h3 { font-family: var(--font-heading); color: var(--color-white); margin-bottom: 10px; font-size: 1.5rem; }
.step-content p { color: #bbb; }

/* --- Founders (Testimonials) --- */
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.founder-card { background: var(--color-panel); padding: 30px; border-radius: var(--radius); border-top: 4px solid var(--color-purple); }
.quote-icon { font-size: 3rem; color: #444; line-height: 0.5; margin-bottom: 20px; font-family: serif; }
.founder-card p { font-style: italic; color: #ccc; margin-bottom: 20px; }
.founder-info strong { display: block; color: var(--color-lime); font-family: var(--font-heading); }
.founder-info span { font-size: 0.8rem; color: #777; }

/* --- Contact & Forms --- */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.info-panel { background: var(--color-panel); padding: 40px; border-radius: var(--radius); border: 1px solid #333; }
.info-panel h3 { font-family: var(--font-heading); color: var(--color-white); margin-bottom: 20px; font-size: 1.8rem; }
.link-row { display: flex; gap: 15px; margin-bottom: 15px; font-size: 1.1rem; }
.link-row span { color: var(--color-lime); font-weight: bold; }
.tech-badge { background: rgba(204, 255, 0, 0.1); color: var(--color-lime); text-align: center; padding: 10px; margin-top: 30px; border: 1px solid var(--color-lime); border-radius: 4px; font-family: var(--font-heading); }

.dark-form { background: var(--color-panel); padding: 40px; border-radius: var(--radius); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--color-text); font-family: var(--font-heading); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; background: #121212; border: 1px solid #333; color: #fff; border-radius: 6px; font-family: var(--font-body); }
.form-group input:focus { border-color: var(--color-purple); outline: none; box-shadow: 0 0 10px rgba(138, 43, 226, 0.2); }
.full-width { width: 100%; }

/* --- Legal --- */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--color-panel); padding: 60px; border-radius: var(--radius); }
.legal-doc h1 { font-family: var(--font-heading); color: var(--color-white); text-align: center; }
.lime-line { width: 80px; height: 3px; background: var(--color-lime); margin: 30px auto; }
.legal-doc h3 { color: var(--color-purple); margin-top: 40px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.tech-footer { background-color: #000; padding: 60px 0; margin-top: auto; text-align: center; border-top: 1px solid #333; }
.f-brand h4 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; color: #fff; }
.f-links a { color: #888; margin: 0 15px; font-weight: bold; }
.f-links a:hover { color: var(--color-lime); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #555; }

@media (max-width: 992px) {
    .modern-nav { display: none; }
    .mobile-burger { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .banner-flex, .contact-grid { flex-direction: column; gap: 30px; text-align: center; }
    .timeline-container::before { left: 20px; }
}