:root {
    color-scheme: dark;

    --home-bg: #07070b;
    --home-panel: #0f0d14;
    --home-panel-2: #15111d;

    --home-text: #ffffff;
    --home-muted: #a79eae;

    --home-purple: #b54cff;
    --home-purple-2: #7d32ff;
    --home-pink: #e253d4;

    --home-border:
        rgba(255,255,255,.08);

    --home-radius:
        18px;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 80% 6%,
            rgba(129,42,255,.13),
            transparent 36rem
        ),
        radial-gradient(
            circle at 6% 34%,
            rgba(183,61,255,.08),
            transparent 32rem
        ),
        var(--home-bg) !important;

    color:
        var(--home-text);

    overflow-x:
        hidden;
}

.background-glow {
    display:
        none !important;
}

/* ==================================================
   TOPBAR
   ================================================== */

.home-topbar {
    min-height:
        76px;

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    align-items:
        center;

    gap:
        28px;

    padding:
        0 max(
            24px,
            calc((100vw - 1320px) / 2)
        );

    position:
        sticky;

    top:
        0;

    z-index:
        5000;

    border-bottom:
        1px solid
        var(--home-border);

    background:
        rgba(7,7,11,.88);

    backdrop-filter:
        blur(18px);
}

.home-logo {
    color:
        white;

    text-decoration:
        none;

    font-size:
        24px;

    font-weight:
        950;

    letter-spacing:
        .04em;
}

.home-logo span {
    color:
        var(--home-purple);
}

.home-nav {
    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    gap:
        25px;
}

.home-nav a {
    color:
        #b8afbf;

    text-decoration:
        none;

    font-size:
        13px;

    font-weight:
        800;

    transition:
        color .15s ease;
}

.home-nav a:hover {
    color:
        white;
}

/* ==================================================
   MAIN
   ================================================== */

.home-main {
    width:
        min(
            1320px,
            calc(100% - 44px)
        );

    margin:
        0 auto;
}

/* ==================================================
   HERO
   ================================================== */

.home-hero {
    min-height:
        620px;

    display:
        flex;

    align-items:
        center;

    position:
        relative;

    overflow:
        hidden;

    margin-top:
        22px;

    padding:
        70px 58px;

    border:
        1px solid
        var(--home-border);

    border-radius:
        24px;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(174,65,255,.23),
            transparent 27rem
        ),
        radial-gradient(
            circle at 67% 87%,
            rgba(116,42,255,.16),
            transparent 30rem
        ),
        linear-gradient(
            135deg,
            #0b0810,
            #130b1b 55%,
            #0c0910
        );
}

.home-hero-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        810px;
}

.home-pill {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        32px;

    padding:
        0 13px;

    margin-bottom:
        22px;

    border:
        1px solid
        rgba(181,76,255,.28);

    border-radius:
        999px;

    background:
        rgba(181,76,255,.07);

    color:
        #d7a6ff;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        .13em;
}

.home-hero h1 {
    margin:
        0;

    max-width:
        800px;

    font-size:
        clamp(
            4rem,
            7vw,
            7rem
        );

    line-height:
        .9;

    letter-spacing:
        -.06em;
}

.home-hero h1 span {
    display:
        block;

    background:
        linear-gradient(
            90deg,
            #ff71dc,
            #b969ff,
            #8248ff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.home-hero-copy {
    max-width:
        610px;

    margin:
        25px 0 0;

    color:
        var(--home-muted);

    font-size:
        18px;

    line-height:
        1.6;
}

.home-hero-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        28px;
}

.home-button {
    min-height:
        46px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0 20px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius:
        11px;

    background:
        rgba(255,255,255,.045);

    color:
        white;

    text-decoration:
        none;

    font-size:
        12px;

    font-weight:
        900;

    cursor:
        pointer;

    transition:
        transform .15s ease,
        background .15s ease;
}

.home-button:hover {
    transform:
        translateY(-2px);

    background:
        rgba(255,255,255,.075);
}

.home-button-primary {
    border-color:
        rgba(181,76,255,.4);

    background:
        linear-gradient(
            135deg,
            #a743ff,
            #732dff
        );
}

.home-hero-tags {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        38px;
}

.home-hero-tags span {
    padding:
        7px 10px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius:
        999px;

    background:
        rgba(255,255,255,.025);

    color:
        #8f8796;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .08em;
}

.home-hero-glow {
    width:
        470px;

    height:
        470px;

    position:
        absolute;

    right:
        -40px;

    top:
        60px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(174,66,255,.23),
            transparent 67%
        );

    filter:
        blur(14px);
}

/* ==================================================
   SECTIONS
   ================================================== */

.home-section {
    padding:
        90px 0 0;
}

.home-section-head {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    margin-bottom:
        22px;
}

.home-eyebrow {
    margin:
        0 0 6px;

    color:
        var(--home-purple);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        .15em;
}

.home-section h2 {
    margin:
        0;

    font-size:
        clamp(
            2.2rem,
            4vw,
            4rem
        );

    line-height:
        1;
}

/* ==================================================
   LIVE
   ================================================== */

.home-live-card {
    min-height:
        280px;

    position:
        relative;

    overflow:
        hidden;

    padding:
        34px;

    border:
        1px solid
        var(--home-border);

    border-radius:
        var(--home-radius);

    background:
        radial-gradient(
            circle at 88% 40%,
            rgba(181,76,255,.14),
            transparent 28rem
        ),
        var(--home-panel);
}

.home-live-card h3 {
    margin:
        26px 0 7px;

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.8rem
        );
}

.home-live-card > p {
    margin:
        0 0 26px;

    color:
        var(--home-muted);
}

/* ==================================================
   HUB CARDS
   ================================================== */

.home-hub-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap:
        14px;
}

.home-hub-card {
    min-height:
        260px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        24px;

    border:
        1px solid
        var(--home-border);

    border-radius:
        var(--home-radius);

    background:
        linear-gradient(
            145deg,
            rgba(181,76,255,.07),
            rgba(255,255,255,.012)
        );

    color:
        white;

    text-decoration:
        none;

    transition:
        transform .16s ease,
        border-color .16s ease,
        background .16s ease;
}

.home-hub-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(181,76,255,.4);

    background:
        linear-gradient(
            145deg,
            rgba(181,76,255,.12),
            rgba(255,255,255,.018)
        );
}

.home-card-label {
    color:
        var(--home-purple);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .13em;
}

.home-hub-card h3 {
    margin:
        18px 0 8px;

    font-size:
        25px;
}

.home-hub-card p {
    margin:
        0;

    color:
        var(--home-muted);

    line-height:
        1.55;
}

.home-hub-card strong {
    margin-top:
        auto;

    padding-top:
        30px;

    color:
        #e5c6ff;

    font-size:
        12px;
}

/* ==================================================
   SOCIALS
   ================================================== */

.home-social-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0,1fr)
        );

    gap:
        12px;
}

.home-social-card {
    min-height:
        140px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        19px;

    border:
        1px solid
        var(--home-border);

    border-radius:
        15px;

    background:
        var(--home-panel);

    color:
        white;

    text-decoration:
        none;

    transition:
        transform .15s ease,
        border-color .15s ease;
}

.home-social-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(181,76,255,.35);
}

.home-social-card strong {
    font-size:
        18px;
}

.home-social-card span {
    color:
        var(--home-muted);

    font-size:
        12px;
}

/* ==================================================
   SHOP
   ================================================== */

.home-shop-card {
    min-height:
        230px;

    padding:
        28px;

    border:
        1px solid
        var(--home-border);

    border-radius:
        var(--home-radius);

    background:
        radial-gradient(
            circle at 90% 40%,
            rgba(255,210,70,.07),
            transparent 22rem
        ),
        var(--home-panel);
}

.home-coming-soon {
    display:
        inline-flex;

    padding:
        6px 9px;

    border:
        1px solid
        rgba(255,216,61,.18);

    border-radius:
        999px;

    color:
        #e6ca56;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .1em;
}

.home-shop-card h3 {
    margin:
        25px 0 8px;

    font-size:
        26px;
}

.home-shop-card p {
    color:
        var(--home-muted);
}

/* ==================================================
   FOOTER
   ================================================== */

footer {
    margin-top:
        90px !important;

    border-top:
        1px solid
        var(--home-border);
}

/* ==================================================
   RESPONSIVE
   ================================================== */

@media (max-width: 1050px) {

    .home-topbar {
        grid-template-columns:
            auto auto;

        justify-content:
            space-between;
    }

    .home-nav {
        display:
            none;
    }

    .home-hub-grid {
        grid-template-columns:
            1fr;
    }

    .home-social-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }
}

@media (max-width: 650px) {

    .home-main {
        width:
            calc(100% - 24px);
    }

    .home-topbar {
        padding:
            0 14px;
    }

    .home-hero {
        min-height:
            570px;

        margin-top:
            12px;

        padding:
            42px 24px;
    }

    .home-hero h1 {
        font-size:
            clamp(
                3.4rem,
                16vw,
                5.4rem
            );
    }

    .home-hero-copy {
        font-size:
            16px;
    }

    .home-section {
        padding-top:
            65px;
    }

    .home-social-grid {
        grid-template-columns:
            1fr;
    }

    .home-live-card {
        padding:
            24px;
    }
}