/* Home mascot placements + hero polish (light + gold) */

.fi-hero--mascot .fi-hero-grid {
    align-items: center;
}

.fi-hero-mascot-stage {
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.fi-mascot-spotlight {
    position: relative;
    width: min(100%, 420px);
    display: grid;
    place-items: center;
    padding: 0.5rem 0 0;
}

.fi-mascot-glow {
    position: absolute;
    inset: 18% 12% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.28) 0%, rgba(249, 168, 37, 0.08) 42%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.fi-mascot {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(26, 26, 26, 0.14));
}

.fi-mascot--stride {
    width: min(100%, 380px);
    max-height: 460px;
}

.fi-mascot--point,
.fi-mascot--victory {
    width: 120px;
    max-height: 170px;
    flex-shrink: 0;
}

.fi-hero-banner-under {
    width: 100%;
}

.fi-section-head--mascot {
    align-items: flex-end;
    gap: 1rem;
}

.fi-section-head--mascot > div {
    flex: 1;
    min-width: 0;
}

.fi-path-card {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fi-path-card:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 168, 37, 0.55);
    box-shadow: 0 16px 36px rgba(26, 26, 26, 0.08);
}

.fi-path-card .fi-path-arrow {
    color: var(--fi-gold, #f9a825);
    font-weight: 800;
}

@media (max-width: 960px) {
    .fi-mascot--stride {
        width: min(70vw, 280px);
        max-height: 340px;
    }

    .fi-section-head--mascot {
        flex-wrap: wrap;
    }

    .fi-mascot--point,
    .fi-mascot--victory {
        width: 96px;
        max-height: 130px;
    }
}
