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

body{
    background:
        radial-gradient(circle at top, rgba(0,255,120,.18), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(0,255,120,.10), transparent 25%),
        #0f1117;
    color:white;
    font-family:-apple-system,BlinkMacSystemFont,sans-serif;
    overflow-x:hidden;
}

/* HERO */

.hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:40px 20px 70px;
}

.logo{
    width:500px;
    max-width:90%;
    margin-bottom:35px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
        0 0 60px rgba(0,255,120,.12),
        0 25px 60px rgba(0,0,0,.45);
}

.hero h1{
    font-size:64px;
    max-width:900px;
    margin-bottom:20px;
    line-height:1.1;
}

.subtitle{
    font-size:28px;
    font-weight:600;
    margin-bottom:15px;
    color:white;
}

.description{
    font-size:22px;
    max-width:700px;
    color:#b3b3b3;
    margin-bottom:35px;
    line-height:1.6;
}

.hero-image{
    width:1100px;
    max-width:95%;
    display:block;
    margin:35px auto 0;
    border-radius:22px;
    box-shadow:
        0 0 80px rgba(0,255,120,.18),
        0 30px 80px rgba(0,0,0,.45);
    transform:scale(1);
    will-change:transform;
}

.button{
    display:inline-block;
    margin-top:45px;
    background:#00ff88;
    color:black;
    padding:18px 44px;
    border-radius:14px;
    text-decoration:none;
    font-weight:800;
    font-size:20px;
    transition:.25s;
    box-shadow:0 0 30px rgba(0,255,120,.35);
}

.button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 45px rgba(0,255,120,.5);
}

.trust{
    margin-top:18px;
    color:#8e8e8e;
    font-size:15px;
}

/* FEATURES */

.features{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:50px 20px 90px;
    flex-wrap:wrap;
}

.feature{
    width:300px;
    background:linear-gradient(180deg,#191d27,#131720);
    padding:32px;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    transition:.25s;
}

.feature:hover{
    transform:translateY(-6px);
    border-color:rgba(0,255,120,.35);
}

.feature h3{
    margin-bottom:14px;
    font-size:22px;
}

.feature p{
    color:#b3b3b3;
    line-height:1.5;
}

/* SECTIONS */

.story,
.languages,
.faq,
.pricing{
    max-width:1000px;
    margin:0 auto;
    padding:80px 20px;
    text-align:center;
}

.story h2,
.languages h2,
.faq h2,
.pricing h2{
    font-size:46px;
    margin-bottom:25px;
    line-height:1.1;
}

.story p,
.languages p{
    color:#b3b3b3;
    font-size:21px;
    line-height:1.7;
    max-width:850px;
    margin:0 auto 22px;
}

/* PRICING */

.pricing-card{
    max-width:520px;
    margin:0 auto;
    padding:42px 34px;
    border-radius:26px;
    background:
        radial-gradient(circle at top, rgba(0,255,120,.12), transparent 45%),
        linear-gradient(180deg,#191d27,#131720);
    border:1px solid rgba(0,255,120,.25);
    box-shadow:
        0 0 80px rgba(0,255,120,.10),
        0 30px 80px rgba(0,0,0,.45);
}

.pricing-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(0,255,120,.12);
    color:#00ff88;
    font-size:14px;
    font-weight:800;
}

.price{
    font-size:58px;
    font-weight:900;
    color:#00ff88;
    margin-bottom:18px;
}

.pricing-text{
    color:#b3b3b3;
    font-size:18px;
    line-height:1.6;
    margin-bottom:26px;
}

.pricing-card ul{
    list-style:none;
    text-align:left;
    max-width:320px;
    margin:0 auto 8px;
}

.pricing-card li{
    color:#e7e7e7;
    font-size:17px;
    margin-bottom:12px;
}

.pricing-button{
    margin-top:30px;
}

/* LANGUAGES */

.language-badge{
    margin-top:30px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
    color:white;
    font-size:18px;
    background:linear-gradient(180deg,#191d27,#131720);
    padding:22px 30px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.language-badge span{
    background:rgba(255,255,255,.06);
    padding:9px 13px;
    border-radius:999px;
}

/* FAQ */

.faq{
    padding-bottom:90px;
}

.faq-item{
    background:linear-gradient(180deg,#191d27,#131720);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:28px;
    margin:18px auto;
    max-width:800px;
    text-align:left;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.faq-item h3{
    font-size:22px;
    margin-bottom:10px;
}

.faq-item p{
    color:#b3b3b3;
    font-size:18px;
    line-height:1.5;
}

/* FOOTER */

footer{
    text-align:center;
    padding:45px 20px 55px;
    color:#777;
    border-top:1px solid rgba(255,255,255,.06);
}

footer p{
    margin-bottom:16px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#9a9a9a;
    text-decoration:none;
    font-size:14px;
}

.footer-links a:hover{
    color:#00ff88;
}

/* MOBILE */

@media (max-width:768px){

    .hero{
        padding:30px 18px 50px;
    }

    .logo{
        width:340px;
        border-radius:22px;
    }

    .hero h1{
        font-size:42px;
    }

    .subtitle{
        font-size:22px;
    }

    .description{
        font-size:18px;
    }

    .hero-image{
        width:100%;
        margin-top:30px;
    }

    .button{
        width:100%;
        max-width:320px;
    }

    .feature{
        width:100%;
        max-width:350px;
    }

    .story h2,
    .languages h2,
    .faq h2,
    .pricing h2{
        font-size:34px;
    }

    .story p,
    .languages p{
        font-size:18px;
    }

    .price{
        font-size:46px;
    }
}

.legal-page{
    max-width:850px;
    margin:0 auto;
    padding:80px 20px 120px;
}

.legal-page h1{
    font-size:52px;
    margin-bottom:35px;
}

.legal-page h2{
    font-size:24px;
    margin-top:35px;
    margin-bottom:12px;
}

.legal-page p{
    color:#b3b3b3;
    font-size:18px;
    line-height:1.7;
    margin-bottom:18px;
}

.back-link{
    display:inline-block;
    margin-bottom:40px;
    color:#00ff88;
    text-decoration:none;
    font-weight:700;
}

.legal-note{
    margin-top:40px;
    font-size:14px !important;
    color:#777 !important;
}

/* =========================
   BUY PAGE
========================= */

.pricing {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.pricing-card {
    width: 100%;
    max-width: 550px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(12px);
}

.pricing-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.price {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.price-note {
    opacity: 0.7;
    margin-bottom: 35px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 17px;
}

.license-note {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 14px;
}

.story {
    max-width: 850px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.story h2 {
    margin-bottom: 25px;
}

.story p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.faq {
    max-width: 850px;
    margin: 100px auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 18px;
}

.faq-item h3 {
    margin-bottom: 12px;
}

.faq-item p {
    opacity: 0.85;
    line-height: 1.6;
}