﻿:root {
    --pu: #7B2FF7;
    --pk: #F107A3;
    --cy: #00D4FF;
    --b: #0D0D1A;
    --b2: #13132A;
    --b3: #1A1A35;
    --w: #FFFFFF;
    --gr: linear-gradient(135deg, var(--pu), var(--pk));
    --gr2: linear-gradient(135deg, var(--pk), var(--cy));
    --gr3: linear-gradient(135deg, var(--pu), var(--cy));
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--b);
    color: var(--w);
    overflow-x: hidden;
    cursor: none
}

/* CURSOR */
#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--pk);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: width .15s, height .15s
}

#cur2 {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(241, 7, 163, .5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .1s ease
}

body.hov #cur {
    width: 22px;
    height: 22px
}

/* CANVAS */
#cvs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 20px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s
}

    nav.s {
        background: rgba(13, 13, 26, .93);
        backdrop-filter: blur(20px);
        padding: 13px 6%;
        border-bottom: 1px solid rgba(123, 47, 247, .2)
    }

.nlogo {
    display: flex;
    align-items: center;
    gap: 12px
}

.nlogo-icon {
    width: 36px;
    height: 36px;
    background: var(--gr);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(123, 47, 247, .4)
}

.nlogo-txt {
    font-family: 'Bebas Neue';
    font-size: 20px;
    letter-spacing: 3px
}

    .nlogo-txt em {
        background: var(--gr);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-style: normal
    }

.nlinks {
    display: flex;
    gap: 28px;
    list-style: none
}

    .nlinks a {
        font-size: 12.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, .55);
        text-decoration: none;
        letter-spacing: .05em;
        transition: color .2s;
        position: relative
    }

        .nlinks a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gr);
            transition: width .3s
        }

        .nlinks a:hover {
            color: var(--w)
        }

            .nlinks a:hover::after {
                width: 100%
            }

.ncta {
    display: flex;
    gap: 10px
}

.nb {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
    letter-spacing: .02em
}

    .nb.o {
        border: 1.5px solid rgba(123, 47, 247, .5);
        color: rgba(255, 255, 255, .8);
        background: none
    }

        .nb.o:hover {
            border-color: var(--pu);
            color: var(--w);
            background: rgba(123, 47, 247, .15)
        }

    .nb.p {
        background: var(--gr);
        color: var(--w);
        box-shadow: 0 6px 24px rgba(123, 47, 247, .4)
    }

        .nb.p:hover {
            box-shadow: 0 10px 36px rgba(241, 7, 163, .4);
            transform: translateY(-2px)
        }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 6% 80px
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 247, .12) 0%, rgba(241, 7, 163, .06) 40%, transparent 70%);
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    pointer-events: none;
    animation: breathe 7s ease-in-out infinite
}

.hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, .07) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    pointer-events: none;
    animation: breathe 9s ease-in-out infinite reverse
}

@keyframes breathe {
    0%, 100% {
        transform: translateY(-50%) scale(1)
    }

    50% {
        transform: translateY(-50%) scale(1.18)
    }
}

/* diagonal stripe accent */
.hero-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 47, 247, .04) 0%, rgba(241, 7, 163, .04) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none
}

.hero-left {
    position: relative;
    z-index: 2;
    max-width: 600px
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 47, 247, .15);
    border: 1px solid rgba(123, 47, 247, .35);
    padding: 6px 15px;
    border-radius: 100px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fup .8s .2s ease both
}

.chip-dot {
    width: 6px;
    height: 6px;
    background: var(--pk);
    border-radius: 50%;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px var(--pk)
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.hero-chip span {
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    letter-spacing: .1em
}

.hero-h1 {
    font-family: 'Syne';
    font-size: clamp(43px, 7vw, 85px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.03em;
    margin-bottom: 24px
}

.l1 {
    display: block;
    opacity: 0;
    animation: fup .8s .35s ease both
}

.l2 {
    display: block;
    background: var(--gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fup .8s .5s ease both
}

.l3 {
    display: block;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, .2);
    color: transparent;
    opacity: 0;
    animation: fup .8s .65s ease both
}

.hero-p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.82;
    max-width: 480px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fup .8s .8s ease both
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fup .8s .95s ease both
}

.hbtn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

    .hbtn.a {
        background: var(--gr);
        color: var(--w);
        box-shadow: 0 8px 30px rgba(123, 47, 247, .4)
    }

        .hbtn.a:hover {
            box-shadow: 0 16px 48px rgba(241, 7, 163, .5);
            transform: translateY(-3px)
        }

    .hbtn.b {
        border: 1.5px solid rgba(255, 255, 255, .15);
        color: var(--w)
    }

        .hbtn.b:hover {
            border-color: rgba(123, 47, 247, .5);
            background: rgba(123, 47, 247, .1)
        }

.hero-nums {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    opacity: 0;
    animation: fup .8s 1.1s ease both
}

.hn-val {
    font-family: 'Bebas Neue';
    font-size: 40px;
    background: var(--gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.hn-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .08em;
    margin-top: 3px
}

/* HERO CARD */
.hero-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 390px;
    perspective: 1000px;
    opacity: 0;
    animation: fup .9s .7s ease both
}

.card3d {
    background: linear-gradient(145deg, rgba(30, 20, 60, .95), rgba(20, 15, 45, .95));
    border: 1px solid rgba(123, 47, 247, .25);
    border-radius: 22px;
    padding: 24px;
    transform: rotateY(-14deg) rotateX(6deg);
    transform-style: preserve-3d;
    transition: transform .5s ease;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .7), 0 0 0 1px rgba(123, 47, 247, .1), 20px 10px 60px rgba(241, 7, 163, .06)
}

.c3-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.c3-dots {
    display: flex;
    gap: 5px
}

.c3-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.c3-tag {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .07em
}

.c3-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px
}

.c3-s {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 10px
}

.c3-sv {
    font-family: 'Bebas Neue';
    font-size: 22px;
    line-height: 1
}

.c3-sl {
    font-size: 9px;
    color: rgba(255, 255, 255, .3);
    margin-top: 2px
}

.c3-chart {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 13px;
    margin-bottom: 10px
}

.c3-cl {
    font-size: 9px;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 10px;
    letter-spacing: .05em
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 52px
}

.bar {
    flex: 1;
    border-radius: 3px 3px 0 0
}

.c3-list {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.c3-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, .05);
    font-size: 11px
}

    .c3-row span:first-child {
        color: rgba(255, 255, 255, .45)
    }

/* header band inside card */
.c3-band {
    background: var(--gr);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.c3-band-l {
    font-size: 10px;
    color: rgba(255, 255, 255, .7)
}

.c3-band-v {
    font-family: 'Bebas Neue';
    font-size: 22px
}

/* FLOATERS */
.floater {
    position: absolute;
    background: rgba(20, 15, 50, .95);
    border: 1px solid rgba(123, 47, 247, .3);
    border-radius: 14px;
    padding: 11px 15px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
    white-space: nowrap;
    backdrop-filter: blur(12px)
}

.fl1 {
    top: -14px;
    right: -20px;
    animation-delay: 0s
}

.fl2 {
    bottom: 30px;
    left: -50px;
    animation-delay: 2.2s
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.f-ico {
    font-size: 18px
}

/* MARQUEE */
.mq {
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, var(--pu), var(--pk), var(--cy), var(--pk), var(--pu));
    background-size: 300% 100%;
    animation: gradshift 5s ease infinite
}

@keyframes gradshift {
    0%, 100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.mq-track {
    display: flex;
    animation: mqanim 22s linear infinite;
    width: max-content
}

    .mq-track:hover {
        animation-play-state: paused
    }

.mq-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    font-family: 'Bebas Neue';
    font-size: 18px;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .08em;
    white-space: nowrap
}

.mq-sep {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%
}

@keyframes mqanim {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* BENTO */
.bento {
    padding: 120px 6%
}

.sec-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: var(--gr2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sec-h {
    font-family: 'Syne';
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 12px
}

    .sec-h span {
        background: var(--gr);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.sec-sub {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.75
}

.bgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 56px
}

.bc {
    background: var(--b3);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    position: relative;
    transition: all .4s
}

    .bc::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gr);
        opacity: 0;
        transition: opacity .4s;
        border-radius: 20px
    }

    .bc:hover {
        transform: translateY(-5px);
        border-color: rgba(123, 47, 247, .3)
    }

        .bc:hover::before {
            opacity: .04
        }

    .bc.s2 {
        grid-column: span 2
    }

    .bc.s3 {
        grid-column: span 3
    }

.bi {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(123, 47, 247, .15);
    border: 1px solid rgba(123, 47, 247, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: all .35s;
    position: relative;
    z-index: 1
}

.bc:hover .bi {
    background: var(--gr);
    transform: scale(1.1) rotate(-6deg);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(123, 47, 247, .4)
}

.bt {
    font-family: 'Syne';
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1
}

.bd {
    font-size: 13px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.72;
    position: relative;
    z-index: 1
}

.btag {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    background: rgba(123, 47, 247, .15);
    color: rgba(180, 140, 255, .9);
    padding: 4px 10px;
    border-radius: 5px;
    position: relative;
    z-index: 1
}

.mini-bar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    margin-top: 14px;
    position: relative;
    z-index: 1
}

.mb {
    flex: 1;
    border-radius: 2px 2px 0 0;
    opacity: .7;
    transition: opacity .3s
}

.bc:hover .mb {
    opacity: 1
}

/* TESTIMONIALS */
.tslider {
    padding: 120px 6%;
    background: var(--b2);
    overflow: hidden
}

.strack {
    display: flex;
    gap: 18px;
    transition: transform .65s cubic-bezier(.25, .46, .45, .94)
}

.slide {
    min-width: 370px;
    background: var(--b3);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 30px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all .4s
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gr);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .5s
    }

    .slide:hover::before {
        transform: scaleX(1)
    }

    .slide:hover {
        border-color: rgba(123, 47, 247, .3);
        transform: translateY(-6px)
    }

.s-qt {
    font-size: 42px;
    background: var(--gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
    opacity: .5
}

.s-txt {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.85;
    margin-bottom: 22px;
    font-style: italic
}

.s-pers {
    display: flex;
    align-items: center;
    gap: 12px
}

.s-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    background: var(--gr)
}

.s-nm {
    font-size: 13.5px;
    font-weight: 600
}

.s-rl {
    font-size: 12px;
    color: rgba(255, 255, 255, .35)
}

.s-stars {
    font-size: 13px;
    color: var(--pk);
    letter-spacing: 2px;
    margin-bottom: 14px
}

.s-nav {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    justify-content: center;
    align-items: center
}

.snb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .12);
    background: none;
    color: var(--w);
    font-size: 15px;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center
}

    .snb:hover {
        border-color: var(--pu);
        color: var(--pu);
        transform: scale(1.1)
    }

.sdots {
    display: flex;
    gap: 7px;
    align-items: center
}

.sdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    cursor: pointer;
    transition: all .3s
}

    .sdot.a {
        background: var(--pk);
        width: 22px;
        border-radius: 4px
    }

/* MODULES */
.mods {
    padding: 120px 6%
}

.mtabs {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    margin: 44px 0 38px
}

.mtab {
    padding: 11px 26px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
    color: rgba(255, 255, 255, .4);
    border: none;
    background: none
}

    .mtab.a {
        background: var(--gr);
        color: var(--w);
        font-weight: 700
    }

    .mtab:not(.a):hover {
        color: rgba(255, 255, 255, .8);
        background: rgba(123, 47, 247, .1)
    }

.mcon {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

    .mcon.a {
        display: grid
    }

.mh {
    font-family: 'Syne';
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px
}

.mp {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.88;
    margin-bottom: 22px
}

.mfl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none
}

    .mfl li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13.5px;
        color: rgba(255, 255, 255, .62)
    }

.mck {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(123, 47, 247, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(180, 140, 255, .9);
    flex-shrink: 0;
    margin-top: 2px
}

.mvis {
    background: var(--b3);
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(123, 47, 247, .15)
}

.mvt {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .22);
    margin-bottom: 14px;
    letter-spacing: .06em
}

table.mt {
    width: 100%;
    border-collapse: collapse
}

    table.mt th {
        color: rgba(255, 255, 255, .28);
        font-weight: 500;
        padding: 7px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        text-align: left;
        font-size: 11px
    }

    table.mt td {
        padding: 9px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        color: rgba(255, 255, 255, .65);
        font-size: 12px
    }

    table.mt tr:last-child td {
        border: none
    }

.bg {
    background: rgba(82, 196, 26, .15);
    color: #52C41A;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 600
}

.by {
    background: rgba(250, 173, 20, .15);
    color: #FAAD14;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 600
}

.br {
    background: rgba(255, 77, 79, .15);
    color: #FF4D4F;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 600
}

.mebtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 11px 22px;
    background: rgba(123, 47, 247, .15);
    border: 1px solid rgba(123, 47, 247, .35);
    border-radius: 9px;
    color: rgba(200, 170, 255, .9);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none
}

    .mebtn:hover {
        background: var(--gr);
        color: var(--w);
        border-color: transparent;
        box-shadow: 0 8px 28px rgba(123, 47, 247, .4)
    }

/* PANELS */
.panels {
    padding: 120px 6%;
    background: var(--b2)
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 54px
}

.pc {
    border-radius: 22px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform .4s
}

    .pc:hover {
        transform: translateY(-8px)
    }

    .pc::after {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        opacity: .12;
        transition: all .5s
    }

    .pc:hover::after {
        transform: scale(1.6)
    }

    .pc.ad {
        background: linear-gradient(145deg, rgba(123, 47, 247, .12), rgba(241, 7, 163, .06));
        border: 1px solid rgba(123, 47, 247, .2)
    }

        .pc.ad::after {
            background: var(--pu)
        }

    .pc.tm {
        background: linear-gradient(145deg, rgba(241, 7, 163, .1), rgba(0, 212, 255, .06));
        border: 1px solid rgba(241, 7, 163, .2)
    }

        .pc.tm::after {
            background: var(--pk)
        }

    .pc.pt {
        background: linear-gradient(145deg, rgba(0, 212, 255, .1), rgba(123, 47, 247, .06));
        border: 1px solid rgba(0, 212, 255, .2)
    }

        .pc.pt::after {
            background: var(--cy)
        }

.pc-icon {
    font-size: 38px;
    margin-bottom: 18px
}

.pc-n {
    font-family: 'Syne';
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px
}

.pc-s {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 22px
}

.pc-feats {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pf {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: 8px
}

    .pf::before {
        content: '→';
        font-size: 11px;
        opacity: .6
    }

/* PRICING */
.pricing {
    padding: 120px 6%
}

.pgri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px
}

.prc {
    background: var(--b3);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 36px;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

    .prc::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gr);
        opacity: 0;
        transition: opacity .35s
    }

    .prc:not(.feat):hover {
        border-color: rgba(123, 47, 247, .3);
        transform: translateY(-4px)
    }

        .prc:not(.feat):hover::before {
            opacity: .04
        }

    .prc.feat {
        background: var(--gr);
        border-color: transparent;
        transform: scale(1.04)
    }

        .prc.feat:hover {
            transform: scale(1.04) translateY(-4px)
        }

.prc-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.prc.feat .prc-lbl {
    color: rgba(255, 255, 255, .7)
}

.prc-amt {
    font-family: 'Bebas Neue';
    font-size: 54px;
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
    z-index: 1
}

.prc-per {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 26px;
    position: relative;
    z-index: 1
}

.prc.feat .prc-per {
    color: rgba(255, 255, 255, .6)
}

.prc-div {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 22px;
    position: relative;
    z-index: 1
}

.prc.feat .prc-div {
    background: rgba(255, 255, 255, .2)
}

.prc-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1
}

    .prc-feats li {
        font-size: 13px;
        color: rgba(255, 255, 255, .55);
        display: flex;
        align-items: center;
        gap: 10px
    }

.prc.feat .prc-feats li {
    color: rgba(255, 255, 255, .85)
}

.prc-feats li::before {
    content: '✓';
    background: var(--gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700
}

.prc.feat .prc-feats li::before {
    -webkit-text-fill-color: white;
    color: white
}

.prc-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    position: relative;
    z-index: 1;
    border: 1.5px solid rgba(123, 47, 247, .4);
    color: rgba(180, 140, 255, .9)
}

    .prc-btn:hover {
        background: var(--gr);
        color: var(--w);
        border-color: transparent;
        box-shadow: 0 8px 28px rgba(123, 47, 247, .4)
    }

.prc.feat .prc-btn {
    background: rgba(255, 255, 255, .15);
    color: var(--w);
    border-color: rgba(255, 255, 255, .3)
}

    .prc.feat .prc-btn:hover {
        background: rgba(255, 255, 255, .25)
    }

.prc-pop {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .2);
    color: var(--w);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 0 0 10px 10px;
    letter-spacing: .06em
}

/* CTA */
.cta {
    padding: 120px 6%;
    position: relative;
    overflow: hidden;
    text-align: center
}

.cta-orb {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(123, 47, 247, .1) 0%, rgba(241, 7, 163, .05) 40%, transparent 70%);
    pointer-events: none
}

.cta-rays {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 50%, rgba(123, 47, 247, .04) 0deg, transparent 60deg, rgba(241, 7, 163, .04) 120deg, transparent 180deg, rgba(0, 212, 255, .04) 240deg, transparent 300deg, rgba(123, 47, 247, .04) 360deg);
    animation: spin 35s linear infinite;
    pointer-events: none
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto
}

.cta-h {
    font-family: 'Syne';
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 18px
}

    .cta-h span {
        background: var(--gr);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.cta-p {
    font-size: 15px;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 38px;
    line-height: 1.8
}

.cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* FOOTER */
footer {
    background: #090912;
    border-top: 1px solid rgba(123, 47, 247, .1);
    padding: 64px 6% 30px
}

.fg {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.fb-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.85;
    margin-top: 14px;
    max-width: 260px
}

.fc h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-bottom: 18px
}

.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.fc a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s
}

    .fc a:hover {
        color: var(--pk)
    }

.fbot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    font-size: 12px;
    color: rgba(255, 255, 255, .22)
}

    .fbot a {
        color: var(--cy);
        text-decoration: none
    }

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(34px);
    transition: all .7s ease
}

    .rv.vi {
        opacity: 1;
        transform: translateY(0)
    }

    .rv.d1 {
        transition-delay: .1s
    }

    .rv.d2 {
        transition-delay: .2s
    }

    .rv.d3 {
        transition-delay: .3s
    }

@keyframes fup {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* RESPONSIVE */
@media(max - width:1020px) {
    .hero-right {
        display: none
    }

    .bgrid {
        grid-template-columns: 1fr 1fr
    }

    .bc.s2,
    .bc.s3 {
        grid-column: span 2
    }

    .pgrid,
    .pgri {
        grid-template-columns: 1fr
    }

    .mcon.a {
        grid-template-columns: 1fr
    }

    .fg {
        grid-template-columns: 1fr 1fr
    }

    .nlinks {
        display: none
    }

    .prc.feat {
        transform: scale(1)
    }
}

@media(max - width:600px) {
    .bgrid {
        grid-template-columns: 1fr
    }

    .bc.s2,
    .bc.s3 {
        grid-column: span 1
    }

    .hero-nums {
        flex-wrap: wrap;
        gap: 20px
    }

    .fg {
        grid-template-columns: 1fr
    }

    .slide {
        min-width: 270px
    }
}

