/* =======================================================
   ZYNDHUX SHOP - HOME
======================================================= */

:root{

    --primary:#11dff7;
    --primary-hover:#0dc8de;

    --bg:#050812;
    --bg-secondary:#0c1220;

    --card:#111827;

    --text:#ffffff;
    --text-secondary:#9ca3af;

    --border:rgba(17,223,247,.12);

    --radius:18px;

    --shadow:
        0 10px 40px rgba(0,0,0,.35);

}

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

.hero{

    min-height:80vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:100px 30px;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:radial-gradient(
        circle,
        rgba(17,223,247,.12),
        transparent 70%
    );

    top:-250px;
    right:-200px;

}

.hero-content{

    max-width:900px;

    text-align:center;

    position:relative;
    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border:1px solid var(--border);

    border-radius:50px;

    background:rgba(17,223,247,.05);

    color:var(--primary);

    font-size:.8rem;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.hero h1{

    font-size:clamp(2.5rem,6vw,5rem);

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    color:var(--text-secondary);

    font-size:1.1rem;

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.8;

}

.hero-actions{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.btn-primary{

    background:var(--primary);

    color:#000;

    padding:16px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);

}

.btn-secondary{

    background:transparent;

    color:white;

    border:1px solid var(--border);

    border-radius:12px;

    padding:16px 28px;

    cursor:pointer;

}

/* =======================================================
   STATUS
======================================================= */

.platform-status{

    padding:50px 25px;

}

.status-card{

    max-width:1200px;

    margin:auto;

    background:var(--bg-secondary);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:40px;

}

.status-card h3{

    margin-bottom:15px;

}

.status-card p{

    color:var(--text-secondary);

    margin-bottom:25px;

}

.status-card ul{

    list-style:none;

    display:grid;

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

    gap:15px;

}

.status-card li{

    color:#d1d5db;

}

/* =======================================================
   SECTION TITLES
======================================================= */

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title span{

    color:var(--primary);

    font-size:.85rem;

    letter-spacing:2px;

    font-weight:700;

}

.section-title h2{

    margin-top:12px;

    font-size:2.2rem;

}

/* =======================================================
   CATEGORIES
======================================================= */

.categories{

    padding:90px 25px;

}

.category-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

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

    gap:25px;

}

.category-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:30px;

    text-decoration:none;

    color:white;

    transition:.3s;

}

.category-card:hover{

    transform:translateY(-5px);

    border-color:var(--primary);

}

.category-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.category-card p{

    color:var(--text-secondary);

    line-height:1.7;

}

/* =======================================================
   PRODUCTS
======================================================= */

.featured-products{

    padding:90px 25px;

}

.product-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

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

    gap:25px;

}

.product-card{

    background:var(--card);

    border-radius:var(--radius);

    overflow:hidden;

    border:1px solid var(--border);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-5px);

}

.product-image{

    height:220px;

    background:#0b1220;

    display:flex;

    justify-content:center;
    align-items:center;

    color:#4b5563;

}

.product-content{

    padding:20px;

}

.product-platform{

    color:var(--primary);

    font-size:.8rem;

    font-weight:700;

}

.product-content h3{

    margin:12px 0;

}

.product-content p{

    color:var(--text-secondary);

    margin-bottom:20px;

}

.product-button{

    width:100%;

    height:48px;

    border:none;

    border-radius:10px;

    background:#1f2937;

    color:white;

    cursor:pointer;

}

/* =======================================================
   WHY US
======================================================= */

.why-us{

    padding:90px 25px;

}

.why-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

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

    gap:25px;

}

.why-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:30px;

}

.why-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.why-card p{

    color:var(--text-secondary);

    line-height:1.7;

}

/* =======================================================
   ROADMAP
======================================================= */

.roadmap{

    padding:90px 25px;

}

.roadmap-list{

    max-width:1100px;

    margin:auto;

    display:grid;

    gap:18px;

}

.roadmap-item{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:14px;

    padding:20px;

}

.roadmap-item span{

    display:block;

    color:var(--primary);

    margin-bottom:6px;

    font-weight:700;

}

/* =======================================================
   NEWSLETTER
======================================================= */

.newsletter{

    padding:100px 25px;

}

.newsletter-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:var(--bg-secondary);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:50px;

}

.newsletter h2{

    margin-bottom:20px;

}

.newsletter p{

    color:var(--text-secondary);

    margin-bottom:30px;

}

.newsletter form{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    justify-content:center;

}

.newsletter input{

    width:100%;
    max-width:450px;

    height:55px;

    border:none;

    border-radius:12px;

    padding:0 20px;

    background:#111827;

    color:white;

}

.newsletter button{

    height:55px;

    padding:0 30px;

    border:none;

    border-radius:12px;

    background:var(--primary);

    color:black;

    font-weight:700;

    cursor:pointer;

}

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

@media(max-width:768px){

    .hero{

        min-height:auto;

        padding:80px 20px;

    }

    .hero-actions{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

    .newsletter form{

        flex-direction:column;

    }

    .newsletter input,
    .newsletter button{

        max-width:none;
        width:100%;

    }

}