/* Landing Page Specific Styles */

/* Hero Section */
.hero-section {
    padding: 10rem 0 8rem;
    /* Increased padding for grander look */
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.1), transparent 70%);
}

.hero-title {
    font-size: 4rem;
    /* Larger title */
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    font-weight: 800;
}

/* Animated Gradient Text (Matches Header Logo) */
.gradient-text {
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: shine 5s linear infinite;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 0 auto 6rem;
    flex-wrap: wrap;
    max-width: 1000px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 2rem 0 8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* Feature Card (Glassmorphism + Glow) */
.feature-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    /* Purple Glow */
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.1);
    background: rgba(30, 41, 59, 0.7);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #60a5fa;
    font-size: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Animations */
@keyframes shine {
    to {
        background-position: 300% center;
    }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}