.fl-home {
    margin: 0;
    min-width: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--fl-text);
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 118, 59, 0.16), transparent 42%),
        radial-gradient(circle at 86% 0%, rgba(20, 211, 255, 0.2), transparent 40%),
        var(--fl-bg);
    overflow-x: hidden;
}

.fl-home * {
    box-sizing: border-box;
}

.fl-home .bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
}

.fl-home .bg-orb-a {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    background: rgba(255, 100, 46, 0.35);
}

.fl-home .bg-orb-b {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -120px;
    background: rgba(0, 190, 255, 0.28);
}

.fl-home .hero,
.fl-home .section,
.fl-home .site-footer {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 3rem));
    margin: 0 auto;
}

.fl-home .hero {
    padding: 6rem 0 4rem;
    animation: rise-up 0.8s ease-out both;
}

.fl-home .hero-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.24);
    letter-spacing: 0.04em;
    font-size: 0.8rem;
}

.fl-home h1,
.fl-home h2 {
    margin: 0;
    line-height: 1.2;
    font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
}

.fl-home h1 {
    margin-top: 1rem;
    font-size: clamp(2.2rem, 6vw, 4.3rem);
    letter-spacing: 0.01em;
}

.fl-home h1 span {
    color: var(--fl-accent);
}

.fl-home .hero-copy {
    margin-top: 1.25rem;
    max-width: 38rem;
    line-height: 1.9;
    color: var(--fl-subtext);
}

.fl-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.fl-home .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fl-home .btn:hover {
    transform: translateY(-2px);
}

.fl-home .btn-primary {
    color: #0b1f2a;
    background: linear-gradient(130deg, #ffc357 0%, #ff7a4d 100%);
    box-shadow: 0 10px 22px rgba(255, 128, 74, 0.35);
}

.fl-home .btn-secondary {
    color: var(--fl-text);
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
}

.fl-home .section {
    margin-bottom: 4.2rem;
}

.fl-home .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fl-home .concept-card {
    padding: 1.35rem;
    border-radius: 16px;
    background: rgba(10, 23, 40, 0.72);
    border: 1px solid rgba(174, 232, 255, 0.22);
    backdrop-filter: blur(6px);
    animation: rise-up 0.8s ease-out both;
}

.fl-home .concept-card:nth-child(2) {
    animation-delay: 0.08s;
}

.fl-home .concept-card:nth-child(3) {
    animation-delay: 0.16s;
}

.fl-home .concept-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
}

.fl-home .concept-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--fl-subtext);
}

.fl-home .roadmap h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 0.9rem;
}

.fl-home .roadmap ol {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 2;
    color: var(--fl-subtext);
}

.fl-home .site-footer {
    padding: 0 0 2rem;
    color: rgba(222, 242, 255, 0.68);
    font-size: 0.9rem;
}

@keyframes rise-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .fl-home .card-grid {
        grid-template-columns: 1fr;
    }

    .fl-home .hero {
        padding-top: 4.8rem;
    }
}
