* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     user-select: none;
}

html,
body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
    background: #060818
}

#wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

canvas#bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

#langbar {
    position: absolute;
    top: 14px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 30
}

.lb {
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(79, 142, 247, 0.3);
    color: #6b7eb8;
    transition: all .2s
}

.lb.on {
    background: linear-gradient(135deg, #4f8ef7, #6c3fd6);
    color: #fff;
    border-color: transparent
}

#toplogo {
    position: absolute;
    top: 14px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 30
}

.tl-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4f8ef7, #6c3fd6);
    display: flex;
    align-items: center;
    justify-content: center
}

.tl-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.tl-sub {
    font-size: 9px;
    color: #6b7eb8;
    letter-spacing: 2px
}

#prog {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f8ef7, #6c3fd6);
    width: 0;
    z-index: 20
}

#dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 20
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: all .3s
}

.dot.on {
    background: #4f8ef7;
    width: 16px;
    border-radius: 3px
}

.scene {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px 40px
}

.scene.active {
    display: flex
}

.el {
    opacity: 0
}

@keyframes fU {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

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

@keyframes fD {
    from {
        opacity: 0;
        transform: translateY(-22px)
    }

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

@keyframes sL {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

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

@keyframes sR {
    from {
        opacity: 0;
        transform: translateX(32px)
    }

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

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.3)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes zoom {
    from {
        opacity: 0;
        transform: scale(1.25)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes big {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px)
    }

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

.stag {
    font-size: 9px;
    color: #253060;
    letter-spacing: 3px;
    margin-bottom: 12px
}

.s1-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.s1-lb {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f8ef7, #6c3fd6);
    display: flex;
    align-items: center;
    justify-content: center
}

.s1-nm {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.s1-sb {
    font-size: 11px;
    color: #6b7eb8;
    letter-spacing: 4px;
    margin-top: 4px
}

.s1-line {
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4f8ef7, #6c3fd6, transparent);
    margin: 12px 0
}

.s1-desc {
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.8
}

.s1-desc b {
    color: #7eb8ff;
    font-weight: 600
}

.s1-site {
    font-size: 12px;
    color: #4f8ef7;
    margin-top: 12px
}

.s2-per {
    font-size: 10px;
    color: #6b7eb8;
    letter-spacing: 3px;
    margin-bottom: 8px
}

.s2-price {
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    background: linear-gradient(90deg, #7eb8ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.s2-som {
    font-size: 18px;
    color: #7eb8ff;
    text-align: center;
    margin-top: 6px
}

.s2-note {
    font-size: 11px;
    color: #6b7eb8;
    text-align: center;
    margin-top: 4px
}

.s2-pills {
    display: flex;
    gap: 14px;
    margin-top: 14px
}

.s2-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 0.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 10px 18px;
    text-align: center
}

.s2-pv {
    font-size: 20px;
    font-weight: 700
}

.s2-pm {
    font-size: 9px;
    color: #6b7eb8;
    margin-top: 2px
}

.s2-pt {
    font-size: 9px;
    color: #4a5580;
    margin-top: 2px
}

.s3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 720px
}

.s3-card {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(79, 142, 247, 0.25);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center
}

.s3-ic {
    font-size: 28px;
    margin-bottom: 8px
}

.s3-tt {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0
}

.s3-dd {
    font-size: 11px;
    color: #6b7eb8;
    margin-top: 4px;
    line-height: 1.5
}

.s4-cols {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 720px
}

.s4-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(108, 63, 214, 0.28);
    border-radius: 14px;
    padding: 18px 16px
}

.s4-ct {
    font-size: 10px;
    color: #7eb8ff;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.s4-st {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px
}

.s4-sn {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #4f8ef7, #6c3fd6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px
}

.s4-tx {
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.5
}

.s4-tip {
    background: rgba(79, 142, 247, 0.08);
    border-left: 2px solid #4f8ef7;
    padding: 6px 10px;
    border-radius: 0 6px 6px 0;
    font-size: 10px;
    color: #7eb8ff;
    margin-top: 8px
}

.s5-top {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 720px;
    margin-bottom: 12px
}

.s5-fc {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(79, 142, 247, 0.22);
    border-radius: 10px;
    padding: 12px 14px
}

.s5-ft {
    font-size: 9px;
    color: #7eb8ff;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.s5-fmts {
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

.s5-b {
    background: rgba(79, 142, 247, 0.1);
    border: 0.5px solid rgba(79, 142, 247, 0.28);
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 10px;
    color: #7eb8ff
}

.s5-row {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 720px
}

.s5-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(108, 63, 214, 0.22);
    border-radius: 8px;
    padding: 9px 10px
}

.s5-n {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #4f8ef7, #6c3fd6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.s5-st {
    font-size: 10px;
    font-weight: 600;
    color: #e2e8f0
}

.s5-sd {
    font-size: 9px;
    color: #6b7eb8;
    margin-top: 2px
}

.s5-nt {
    font-size: 10px;
    color: #4a5580;
    margin-top: 8px;
    text-align: center
}

.s6-box {
    background: linear-gradient(135deg, #4f8ef7, #6c3fd6);
    border-radius: 22px;
    padding: 36px 52px;
    text-align: center;
    max-width: 520px;
    width: 100%
}

.s6-ti {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.s6-su {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px
}

.s6-tg {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.s6-tn {
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.s6-ph {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 12px
}

.s6-si {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 5px
}

.s6-no {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 14px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 7px 14px
}