* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 50% 10%, #0e1020, #05060a 60%);
    color: #f5f5ff;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(#ffffff08 1px, transparent 1px),
        linear-gradient(90deg, #ffffff08 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 40s linear infinite;
    z-index: -2;
}

@keyframes gridShift {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
}

header {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(120deg, #ff4bff, #6b8bff, #00f5ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    animation: flow 6s ease infinite;
}

@keyframes flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mocherrrrr {
    position: relative;
    text-align: center;
    padding: 140px 20px 110px;
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.mocherrrrr-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(120, 80, 255, 0.7), transparent 70%);
    filter: blur(120px);
    animation: floatGlow 7s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes floatGlow {
    from { transform: translate(-50%, -48%) scale(1); }
    to { transform: translate(-50%, -52%) scale(1.08); }
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(20, 20, 40, 0.7);
    border: 1px solid rgba(140, 120, 255, 0.7);
    backdrop-filter: blur(12px);
    font-size: 13px;
    letter-spacing: 1px;
    color: #dcdcff;
}

.mocherrrrr h1 {
    margin-top: 24px;
    font-size: 95px;
    line-height: 1;
    background: linear-gradient(120deg, #ff4bff, #6b8bff, #00f5ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: flow 8s ease infinite;
}

.tagline {
    margin-top: 18px;
    font-size: 20px;
    color: #c4c4ff;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.btn.disc {
    position: relative;
    display: inline-block;
    margin-top: 36px;
    padding: 14px 36px;
    border-radius: 999px;
    background: linear-gradient(120deg, #5865f2, #8b9bff);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 17px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6);
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn.disc::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-20deg);
}

.btn.disc:hover::before {
    animation: shine .8s forwards;
}

@keyframes shine {
    to { left: 140%; }
}

.btn.disc:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 0 45px rgba(88, 101, 242, 0.9);
}

.compare {
    margin-top: 18px;
    color: #a0a0d8;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 60px;
}

.stat {
    min-width: 160px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(20, 18, 40, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(140, 120, 255, 0.6);
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(120, 80, 255, 0.7);
}

.stat h2 {
    font-size: 32px;
    background: linear-gradient(120deg, #ff4bff, #6b8bff, #00f5ff);
    -webkit-background-clip: text;
    color: transparent;
}

.stat p {
    margin-top: 6px;
    font-size: 13px;
    color: #c0c0ff;
}

.video-section {
    text-align: center;
    padding: 90px 20px 60px;
}

.video-section h2 {
    font-size: 34px;
    background: linear-gradient(120deg, #ff4bff, #6b8bff);
    -webkit-background-clip: text;
    color: transparent;
}

.video-section p {
    margin-top: 8px;
    color: #b8b8e8;
}

.video-wrapper {
    margin: 40px auto 0;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .4s ease;
}

.video-wrapper:hover {
    transform: scale(1.03);
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
}
.feature-strip{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:28px;
    padding:100px 20px 60px;
}

.feature-strip::before{
    content:"";
    position:absolute;
    width:900px;
    height:900px;
    background:radial-gradient(circle,rgba(108,99,255,.25),transparent 70%);
    filter:blur(120px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
}

.feature-pill{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 30px;
    border-radius:999px;
    background:linear-gradient(145deg,rgba(20,20,45,.9),rgba(10,10,30,.9));
    backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.08);
    transition:.45s cubic-bezier(.2,.8,.2,1);
    max-width:380px;
    overflow:hidden;
}

.feature-pill::before{
    content:"";
    position:absolute;
    inset:0;
    padding:1px;
    border-radius:999px;
    background:linear-gradient(120deg,#6c63ff,#ff4ecd,#00f5ff);
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:.6;
    transition:.4s;
}

.feature-pill::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);
    transform:skewX(-25deg);
    transition:.8s;
}

.feature-pill:hover::after{
    left:130%;
}

.feature-pill:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 20px 60px rgba(108,99,255,.45);
    border-color:rgba(108,99,255,.6);
}

.feature-pill:hover::before{
    opacity:1;
    filter:brightness(1.2);
}

.feature-pill .icon{
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,#6c63ff,#ff4ecd);
    box-shadow:0 0 25px rgba(255,78,205,.6);
    transition:.4s ease;
}

.feature-pill:hover .icon{
    transform:rotate(8deg) scale(1.1);
    box-shadow:0 0 35px rgba(108,99,255,.9);
}

.feature-pill h3{
    font-size:17px;
    letter-spacing:.5px;
    margin-bottom:4px;
    background:linear-gradient(120deg,#ff4ecd,#6c63ff,#00f5ff);
    background-size:200% 200%;
    -webkit-background-clip:text;
    color:transparent;
    animation:featureGradient 6s linear infinite;
}

@keyframes featureGradient{
    0%{background-position:0%}
    100%{background-position:200%}
}

.feature-pill p{
    font-size:13px;
    color:#cfcfff;
    opacity:.85;
}

@media(max-width:768px){
    .feature-pill{
        max-width:100%;
        padding:20px 24px;
    }
}

.why {
    text-align: center;
    padding: 80px 20px 60px;
}

.why h2 {
    font-size: 34px;
    background: linear-gradient(120deg, #ff4bff, #6b8bff);
    -webkit-background-clip: text;
    color: transparent;
}

.why p {
    margin-top: 12px;
    color: #b8b8e8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    padding: 60px 20px 120px;
    max-width: 1150px;
    margin: 0 auto;
}

.feature-list > h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    background: linear-gradient(120deg, #ff4bff, #6b8bff);
    -webkit-background-clip: text;
    color: transparent;
}

.feature-block {
    margin-bottom: 34px;
    padding: 26px;
    border-radius: 20px;
    background: rgba(15, 15, 30, 0.85);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(120, 120, 200, 0.5);
    transition: all .35s ease;
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(120, 80, 255, 0.7);
}

.feature-block h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #e0e0ff;
    letter-spacing: .5px;
}

.feature-block ul {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.feature-block li {
    font-size: 14px;
    color: #c8c8ff;
    margin-bottom: 6px;
    transition: transform .2s ease, color .2s ease;
}

.feature-block li:hover {
    transform: translateX(6px);
    color: #ffffff;
}


.pricing{
    padding:120px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}


.pricing::before{
    content:"";
    position:absolute;
    width:800px;
    height:800px;
    background:radial-gradient(circle, rgba(108,99,255,0.25), transparent 70%);
    filter:blur(120px);
    z-index:0;
}



.pricing-box{
    position:relative;
    z-index:1;
    width:100%;
    max-width:750px;
    padding:60px;
    border-radius:28px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
    transition:0.4s ease;
}

.pricing-box:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 80px rgba(108,99,255,0.35);
}



.pricing-title{
    text-align:center;
    font-size:36px;
    margin-bottom:50px;
    background:linear-gradient(90deg,#6c63ff,#ff4ecd,#00f5ff);
    -webkit-background-clip:text;
    color:transparent;
    font-weight:700;
}



.price-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}


.price-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 25px;
    border-radius:18px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    text-decoration:none;
    color:white;
    font-size:16px;
    transition:0.35s cubic-bezier(.2,.8,.2,1);
    position:relative;
    overflow:hidden;
}


.price-item::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.2),transparent);
    transition:0.6s;
}

.price-item:hover::before{
    left:100%;
}


.price-item:hover{
    transform:translateY(-5px) scale(1.02);
    border-color:#6c63ff;
    box-shadow:0 10px 30px rgba(108,99,255,0.4);
}


.price-item strong{
    font-size:20px;
    font-weight:700;
    background:linear-gradient(90deg,#6c63ff,#00f5ff);
    -webkit-background-clip:text;
    color:transparent;
}



.payment-methods{
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.payment-methods h3{
    font-size:24px;
    margin-bottom:25px;
    color:#cfcfff;
}


.payment-methods p{
    display:inline-block;
    margin:10px 12px;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s ease;
    font-size:14px;
}

.payment-methods p:hover{
    background:linear-gradient(90deg,#6c63ff,#ff4ecd);
    border-color:#6c63ff;
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(108,99,255,0.5);
}



@media(max-width:768px){
    .pricing-box{
        padding:40px 25px;
    }

    .pricing-title{
        font-size:28px;
    }

    .price-item{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }
}
@media (max-width: 900px) {
    .mocherrrrr h1 {
        font-size: 60px;
    }
    .video-wrapper iframe {
        height: 300px;
    }
    .feature-block ul {
        columns: 1;
    }
}

@media (max-width: 600px) {
    .stat {
        min-width: 45%;
    }
    .mocherrrrr {
        padding-top: 110px;
    }
}