/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Chikoo Fruit Color Palette */
    --chikoo-orange: #FF8C42;
    --chikoo-brown: #8B4513;
    --chikoo-cream: #FFF8DC;
    --chikoo-green: #228B22;
    --chikoo-dark: #2C1810;
    --chikoo-light: #F5F5DC;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--chikoo-orange), var(--chikoo-brown));
    --gradient-secondary: linear-gradient(135deg, var(--chikoo-green), var(--chikoo-orange));
    --gradient-bg: linear-gradient(135deg, var(--chikoo-cream), var(--chikoo-light));
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--chikoo-dark);
    background: var(--gradient-bg);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--chikoo-orange);
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--chikoo-green);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34, 139, 34, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stealth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--chikoo-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--chikoo-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
}

.coming-soon i {
    font-size: 1rem;
}

@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
    }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-orb {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-core {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 40px rgba(255, 140, 66, 0.5);
}

.orb-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px solid var(--chikoo-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 15s linear infinite reverse;
}

.orb-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--chikoo-green);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-15px); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .ai-orb {
        width: 200px;
        height: 200px;
    }
    
    .orb-core {
        width: 80px;
        height: 80px;
    }
    
    .orb-ring {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .coming-soon {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .ai-orb {
        width: 180px;
        height: 180px;
    }
    
    .orb-core {
        width: 70px;
        height: 70px;
    }
    
    .orb-ring {
        width: 110px;
        height: 110px;
    }
}
