/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--color-background), var(--color-surface), var(--color-background));
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--color-secondary);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1rem 2rem;
    text-align: center;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--color-text-light);
}

.scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }
    .hero-subheadline {
        font-size: 1.25rem;
    }
    .hero-buttons {
        flex-direction: row;
    }
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
}

/* Hero Content Fade In */
.hero-content > * {
    animation: fadeIn 0.6s ease forwards;
}

.hero-content .badge { animation-delay: 0.1s; }
.hero-content .hero-headline { animation-delay: 0.2s; }
.hero-content .hero-subheadline { animation-delay: 0.3s; }
.hero-content .hero-buttons { animation-delay: 0.4s; }
.hero-content .hero-stats { animation-delay: 0.5s; }
