/* =========================================
   GLOBAL
========================================= */

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

body{

    background:#070707;

    color:white;

    font-family:'Inter',sans-serif;

    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* =========================================
   BACKGROUND
========================================= */

.background-glow{

    position:fixed;

    top:-220px;
    right:-200px;

    width:700px;
    height:700px;

    background:radial-gradient(
        circle,
        rgba(255,0,120,0.16),
        transparent 70%
    );

    z-index:-1;

    pointer-events:none;
}

/* =========================================
   NAVBAR
========================================= */

.pricing-nav{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:28px 24px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.logo{

    font-size:1.8rem;

    font-weight:800;

    background:linear-gradient(
        90deg,
        #ff0080,
        #7b61ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.back-btn{

    color:#c4c4c4;

    font-size:0.95rem;
}

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

.pricing-hero{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px 24px 30px;
}

.pricing-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    font-size:0.82rem;

    margin-bottom:24px;

    color:#d5d5d5;
}

.pricing-hero h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:22px;

    letter-spacing:-2px;
}

.pricing-hero h1 span{

    background:linear-gradient(
        90deg,
        #ff0080,
        #7b61ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.pricing-hero p{

    color:#aaaaaa;

    font-size:1.05rem;

    line-height:1.9;

    max-width:700px;

    margin:auto;
}

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section{

    max-width:1200px;

    margin:auto;

    padding:60px 24px;

    display:grid;

    grid-template-columns:repeat(
        auto-fit,
        minmax(320px,1fr)
    );

    gap:28px;
}

/* =========================================
   PRICING CARD
========================================= */

.pricing-card{

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    padding:34px;

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    backdrop-filter:blur(12px);
}

.featured-plan{

    border-color:rgba(255,0,120,0.3);

    transform:scale(1.02);
}

.popular-badge{

    position:absolute;

    top:18px;
    right:18px;

    background:linear-gradient(
        90deg,
        #ff0080,
        #7b61ff
    );

    padding:8px 14px;

    border-radius:999px;

    font-size:0.75rem;

    font-weight:700;
}

.plan-label{

    color:#a7a7a7;

    font-size:0.82rem;

    letter-spacing:1px;

    margin-bottom:14px;
}

.pricing-card h2{

    font-size:2.2rem;

    margin-bottom:18px;
}

.price{

    font-size:3rem;

    font-weight:700;

    margin-bottom:18px;
}

.price span{

    font-size:1rem;

    color:#aaaaaa;
}

.plan-description{

    color:#b4b4b4;

    line-height:1.8;

    margin-bottom:28px;
}

/* =========================================
   FEATURES
========================================= */

.features-list{

    list-style:none;

    margin-bottom:34px;
}

.features-list li{

    margin-bottom:16px;

    color:#d0d0d0;

    line-height:1.7;
}

/* =========================================
   BUTTONS
========================================= */

.primary-btn,
.secondary-btn{

    width:100%;

    border:none;

    border-radius:16px;

    padding:15px 20px;

    font-size:0.96rem;

    font-weight:600;

    cursor:pointer;

    transition:0.25s ease;
}

.primary-btn{

    background:linear-gradient(
        90deg,
        #ff0080,
        #7b61ff
    );

    color:white;
}

.secondary-btn{

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    color:#c8c8c8;
}

.primary-btn:hover,
.secondary-btn:hover{

    transform:translateY(-2px);
}

/* =========================================
   COMPARISON
========================================= */

.comparison-section{

    max-width:1100px;

    margin:auto;

    padding:40px 24px 100px;
}

.comparison-section h2{

    font-size:2.2rem;

    margin-bottom:32px;

    text-align:center;
}

.comparison-table{

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    overflow:hidden;
}

.comparison-row{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    padding:22px 28px;

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.comparison-header{

    background:rgba(255,255,255,0.04);

    font-weight:700;
}

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

@media(max-width:768px){

    .pricing-hero h1{

        font-size:2.8rem;
    }

    .comparison-row{

        grid-template-columns:1.5fr 1fr 1fr;

        font-size:0.92rem;

        padding:18px;
    }

    .featured-plan{

        transform:none;
    }
}

/* =========================================
   HERO TRUST POINTS
========================================= */

.hero-trust-points{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:28px;

}

.hero-trust-points span{

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    padding:10px 16px;

    border-radius:999px;

    font-size:0.92rem;

    color:#d8d8d8;

    backdrop-filter:blur(12px);

}

/* =========================================
   LAUNCH NOTE
========================================= */

.launch-note{

    margin-top:24px;

    color:#bdbdbd;

    font-size:0.95rem;

    font-weight:500;

}

/* =========================================
   CREATOR+ CARD
========================================= */

.coming-soon-plan{

    position:relative;

    opacity:0.9;

}

.coming-soon-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    padding:6px 12px;

    border-radius:999px;

    font-size:0.75rem;

    font-weight:700;

    letter-spacing:0.08em;

}

/* =========================================
   COMPARISON SUBTITLE
========================================= */

.comparison-subtitle{

    text-align:center;

    color:#b8b8b8;

    margin-bottom:32px;

    line-height:1.7;

}

/* =========================================
   DISABLED BUTTON
========================================= */

button:disabled{

    opacity:0.65;

    cursor:not-allowed;

}