/* Main Stylesheet for Spotify Artist Lead Gen */

:root {
    --spotify-green: #1DB954;
    --spotify-dark: #191414;
    --spotify-gray: #282828;
    --spotify-light-gray: #b3b3b3;
    --white: #ffffff;
    --error-red: #e74c3c;
    --success-green: #2ecc71;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--spotify-dark);
}

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

/* Landing Page Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--spotify-dark) 0%, var(--spotify-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%231DB954" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--spotify-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 1.8rem;
    color: var(--spotify-light-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 185, 84, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--spotify-green);
    display: block;
}

.stat-label {
    color: var(--spotify-light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 185, 84, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--spotify-green);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--spotify-light-gray);
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--spotify-green);
    color: var(--white);
    width: 100%;
    padding: 1.2rem;
}

.btn-primary:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.benefits {
    background: var(--spotify-gray);
    padding: 5rem 0;
}

.benefits h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--spotify-green);
}

.benefit-card p {
    color: var(--spotify-light-gray);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.alert-success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid var(--success-green);
    color: var(--success-green);
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid var(--error-red);
    color: var(--error-red);
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .lead-form {
        padding: 2rem;
    }
}
