/* InFuze - Where Innovation Meets Impact */

:root {
    /* Green/Cyan Palette */
    --primary-green: #64ee85;
    --primary-cyan: #00ddeb;
    --dark-bg: #0a192f;
    --darker-bg: #020d18;
    --card-bg: #0f2942;
    
    /* Text */
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Accents */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #64ee85 0%, #00ddeb 100%);
    --gradient-dark: linear-gradient(135deg, #0a192f 0%, #0f2942 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Dots Background */
.dots-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(100, 238, 133, 0.5);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-15px, 20px); }
    75% { transform: translate(25px, 15px); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    filter: drop-shadow(0 0 8px rgba(100, 238, 133, 0.5));
}

.nav-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 100px 40px;
    background: radial-gradient(ellipse at center, rgba(15, 41, 66, 0.5) 0%, var(--dark-bg) 70%);
    overflow: hidden;
}

.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-dots .dot {
    filter: blur(1px);
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(100, 238, 133, 0.1);
    border: 1px solid rgba(100, 238, 133, 0.3);
    padding: 8px 20px;
    border-radius: 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-logo {
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(100, 238, 133, 0.3));
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    width: 24px;
    height: 24px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* Section Styling */
section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Vision Section */
.vision-section {
    background: var(--gradient-dark);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 238, 133, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 238, 133, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-card.featured {
    border-color: rgba(100, 238, 133, 0.5);
    background: rgba(100, 238, 133, 0.05);
}

.vision-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(100, 238, 133, 0.3);
}

.vision-icon i {
    width: 32px;
    height: 32px;
    color: var(--dark-bg);
}

.vision-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.vision-card strong {
    color: var(--text-primary);
}

/* Ventures / Ecosystem Section */
.ventures-section {
    background: var(--gradient-dark);
}

.ventures-intro {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.venture-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 238, 133, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.venture-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 238, 133, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.venture-card.foundation-card {
    border-color: rgba(139, 92, 246, 0.4);
}

.venture-card.foundation-card:hover {
    border-color: rgba(139, 92, 246, 0.7);
}

.venture-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(100, 238, 133, 0.3);
    padding: 12px;
}

.venture-icon-wrapper.foundation {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.venture-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.foundation-icon {
    font-size: 2.5rem;
}

.venture-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.venture-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.venture-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.venture-details {
    margin-bottom: 24px;
}

.detail-item {
    padding: 12px;
    background: rgba(100, 238, 133, 0.05);
    border-left: 3px solid var(--primary-green);
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.detail-item strong {
    color: var(--primary-green);
}

.detail-item.specialty {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: var(--accent-blue);
}

.detail-item.specialty strong {
    color: var(--accent-blue);
}

.detail-item.foundation {
    background: rgba(139, 92, 246, 0.05);
    border-left-color: var(--accent-purple);
}

.detail-item.foundation strong {
    color: var(--accent-purple);
}

.venture-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.venture-link i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.venture-link:hover {
    gap: 12px;
}

.venture-link:hover i {
    transform: translateX(4px);
}

.ecosystem-principles {
    max-width: 900px;
    margin: 0 auto;
}

.ecosystem-principles h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.principle {
    display: flex;
    gap: 20px;
}

.principle i {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 4px;
}

.principle h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.principle p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(100, 238, 133, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value:hover {
    border-color: rgba(100, 238, 133, 0.5);
    transform: translateY(-5px);
}

.value h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.value p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-dark);
}

.contact-intro {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(100, 238, 133, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(100, 238, 133, 0.5);
    transform: translateY(-5px);
}

.contact-method i {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.contact-method h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-method p,
.contact-method a {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 80px 40px 40px 40px;
    border-top: 1px solid rgba(100, 238, 133, 0.2);
    position: relative;
}

.footer-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    filter: drop-shadow(0 0 8px rgba(100, 238, 133, 0.5));
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
}

.footer-links h4,
.footer-connect h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-connect a {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-connect a:hover {
    color: var(--primary-green);
}

.footer-connect p {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(100, 238, 133, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .hero {
        padding: 100px 20px 80px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .vision-grid,
    .ventures-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .hero-logo {
        width: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
