/* === HOME / LANDING PAGE === */

/* ── Hero ── */
.fp-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding-bottom: 3rem;
}

.fp-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.fp-hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.fp-hero-cta {
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(229, 62, 62, 0.3);
    transition: box-shadow 0.2s, transform 0.15s;
}

.fp-hero-cta:hover {
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    transform: translateY(-1px);
}

.fp-hero-demo {
    border-color: #cbd5e0;
    color: #4a5568;
    border-radius: 8px;
    font-weight: 600;
}

.fp-hero-demo:hover {
    border-color: #a0aec0;
    color: #1a202c;
}

.fp-hero-visual {
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

/* ── Section titles ── */
.fp-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.3px;
}

/* ── How it works ── */
.fp-how {
    background: #fff;
    padding: 4rem 1.5rem;
}

.fp-step-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #edf2f7;
}

.fp-step-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.fp-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #e53e3e;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(229,62,62,0.3);
}

.fp-step-icon {
    font-size: 1.75rem;
    color: #e53e3e;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.fp-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.fp-step-text {
    font-size: 0.92rem;
    color: #718096;
    line-height: 1.6;
}

/* ── Sports badges ── */
.fp-sports {
    background: #f5f7fa;
    padding: 3.5rem 1.5rem;
}

.fp-sport-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.6em 1.4em;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fp-sport-badge i {
    color: #e53e3e;
}

.fp-sport-badge:hover {
    border-color: #e53e3e;
    box-shadow: 0 2px 8px rgba(229,62,62,0.1);
}

.tag:not(body) {
    border: 1px solid #aaa;
}

.fp-feat-sport-tag {
    background: #edf2f7;
    color: #2d3748;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    padding: .55em 1.1em;
}

/* ── CTA section ── */
.fp-cta-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 4rem 1.5rem;
}

.fp-cta-text {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 2rem;
}

.fp-cta-btn {
    font-weight: 700;
    border-radius: 8px;
    color: #1a202c;
    font-size: 1rem;
    padding: 0.75em 2em;
    transition: transform 0.15s, box-shadow 0.2s;
}

.fp-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* ── Responsive ── */
@media screen and (max-width: 768px) {
    .fp-hero-title {
        font-size: 2rem;
    }
    .fp-hero-subtitle {
        font-size: 1rem;
    }
    .fp-hero-visual {
        margin-top: 2rem;
    }
    .fp-section-title {
        font-size: 1.4rem;
    }
    .fp-step-card {
        margin-bottom: 1.5rem;
    }
}
