/* Welcome Section */
.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 1rem 3rem;
    text-align: center;
}

/* Hero Area */
.welcome-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.welcome-logo {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--accent), #1d4ed8);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    animation: pulse-glow 3s ease-in-out infinite;
}

    .welcome-logo .material-symbols-outlined {
        font-size: 2.75rem;
        color: #fff;
    }

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
        transform: scale(1.02);
    }
}

.welcome-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.welcome-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.5;
}

/* Feature Cards */
.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    width: 100%;
    max-width: 800px;
}

.feature-card {
    background: var(--surface);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.25s ease;
    cursor: default;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
        border-color: rgba(37, 99, 235, 0.3);
    }

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .feature-icon .material-symbols-outlined {
        font-size: 1.5rem;
        color: var(--accent);
    }

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Action Buttons */
.welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.welcome-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 180px;
}

    .welcome-btn .material-symbols-outlined {
        font-size: 1.25rem;
    }

    .welcome-btn.primary {
        background: linear-gradient(135deg, var(--accent), #1d4ed8);
        color: #fff;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    }

        .welcome-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
        }

    .welcome-btn.secondary {
        background: var(--surface);
        color: var(--accent);
        border: 2px solid rgba(37, 99, 235, 0.25);
    }

        .welcome-btn.secondary:hover {
            background: rgba(37, 99, 235, 0.05);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

/* Stats Bar */
.welcome-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
    width: 100%;
    max-width: 500px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 640px) {
    .welcome-section {
        gap: 2rem;
        padding: 1.5rem 1rem 2.5rem;
    }

    .welcome-logo {
        width: 4rem;
        height: 4rem;
    }

        .welcome-logo .material-symbols-outlined {
            font-size: 2.25rem;
        }

    .welcome-title {
        font-size: 1.75rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    .welcome-features {
        grid-template-columns: 1fr;
    }

    .welcome-actions {
        flex-direction: column;
        width: 100%;
    }

    .welcome-btn {
        width: 100%;
    }

    .welcome-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .stat-item {
        flex-direction: row;
        gap: 0.75rem;
    }
}
