﻿
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .5px
}

    .brand .logo {
        width: 36px;
        height: 36px;
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 0 18px rgba(214,179,95,.25), 0 0 10px rgba(214,179,95,.15);
    }

        .brand .logo:before {
            content: "🔥";
            filter: saturate(1.2) brightness(1.05);
        }

.hero {
    padding: 54px 20px 26px;
    text-align: center;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.6vw, 42px);
    color: #fff;
    letter-spacing: .2px;
}

.lead {
    color: var(--muted);
    max-width: 780px;
    margin: 0 auto 28px;
    font-size: clamp(15px, 1.9vw, 18px)
}

.grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat( auto-fit, minmax(270px, 1fr) );
    margin: 10px 0 36px;
}

.card {
    background: linear-gradient(180deg, var(--card), var(--soft));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,0,0,.45);
        border-color: rgba(214,179,95,.25)
    }

    .card h3 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 20px
    }

    .card p {
        margin: 0 0 14px;
        color: var(--muted)
    }

.row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #0a0f16;
    background: var(--gold);
    box-shadow: 0 8px 22px rgba(214,179,95,.25);
}

    .btn.secondary {
        background: transparent;
        color: var(--gold);
        border: 1px solid var(--gold)
    }

    .btn svg {
        width: 20px;
        height: 20px
    }

.muted {
    color: var(--muted);
    font-size: 14px
}

.cards-sm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.1);
    color: var(--muted);
    font-size: 12px;
}

footer {
    border-top: 1px solid rgba(255,255,255,.07);
    color: var(--muted);
    text-align: center;
    padding: 28px 16px 40px;
}
/* icons circle */
.icircle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}

.split {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

    .split .item {
        background: linear-gradient(180deg, var(--card), var(--soft));
        border: 1px solid rgba(255,255,255,.06);
        padding: 14px 18px;
        border-radius: 14px
    }

        .split .item strong {
            color: #fff
        }

.sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
    margin: 14px 0 6px
}
