/* ------------------------------
   Global
------------------------------ */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111111;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

.grid-bg{
    position:fixed;
    inset:0;
    z-index:-1;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(circle at center, black 45%, transparent 100%);
}

/* ------------------------------
   Navbar
------------------------------ */

.navbar{
    position:sticky;
    top:0;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(16px);
    border-bottom:1px solid #ececec;
}

.logo{
    font-size:1.3rem;
    font-weight:700;
}

.logo span{
    color:#9d9d9d;
}

.nav-links{
    display:flex;
    gap:2rem;
}

.nav-links a{
    color:#555;
    transition:.25s;
}

.nav-links a:hover{
    color:#000;
}

.nav-btn{
    background:#111;
    color:white;
    padding:.6rem 1.2rem;
    border-radius:8px;
    transition:.25s;
    font-size: 14px;
}

.nav-btn:hover{
    background:#000;
    transform:translateY(-2px);
}


.primary-btn{
    background:#111;
    color:white;
    padding:.9rem 1.5rem;
    border-radius:8px;
    transition:.25s;
}

.primary-btn:hover{
    background:#000;
    transform:translateY(-2px);
}

.secondary-btn{
    border:1px solid #d9d9d9;
    color:#111;
    background:white;
    padding:.9rem 1.5rem;
    border-radius:8px;
    transition:.25s;
}

.secondary-btn:hover{
    background:#f5f5f5;
}



/* ------------------------------
   Hero
------------------------------ */

.hero{
    min-height:75vh;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:4rem;
    align-items:center;
    padding:0 8%;
    
}

.eyebrow{
    color:#8d8d8d;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:1rem;
    font-size:.8rem;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:1.5rem;
    font-weight: lighter;
}

.hero-text{
    color:#666;
    max-width:600px;
    margin-bottom:2rem;

}

.hero-buttons{
    display:flex;
    gap:1rem;
}

.hero-card{
    background:#f5f5f5;
    border:1px solid #e6e6e6;
    border-radius:12px;
    padding:2rem;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.card-header{
    display:flex;
    align-items:center;
    gap:.6rem;
    margin-bottom:2rem;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#28c840;
    animation:pulse 1.5s infinite;
}

.status-row{
    display:flex;
    justify-content:space-between;
    padding:1rem 0;
    border-bottom:1px solid #e5e5e5;
    color:#666;
}

.status-row strong{
    color:#111;
}

/* ------------------------------
   Sections
------------------------------ */

.section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:4rem;
}

.section-title p{
    color:#8c8c8c;
    letter-spacing:2px;
    margin-bottom:.5rem;
}

.section-title h2{
    font-size:2.4rem;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:1.5rem;
}

.feature-card{
    background:#f7f7f7;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:2rem;
    transition:.25s;
}

.feature-card:hover{
    background:white;
    border-color:#cfcfcf;
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.feature-card h3{
    margin-bottom:1rem;
}

.feature-card p{
    color:#ababab;
}

/* ------------------------------
   About
------------------------------ */

.dark{
    background:#fafafa;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.section-label{
    color:#8c8c8c;
    margin-bottom:1rem;
}

.about-content h2{
    font-size:2.3rem;
}

.about-content p{
    color:#b3b3b3;
}

/* ------------------------------
   FAQ
------------------------------ */

.faq-container{
    max-width:800px;
    margin:auto;
}

.faq-item{
    border-bottom:1px solid #e7e7e7;
}

.faq-question{
    width:100%;
    background:none;
    color:#111;
    border:none;
    cursor:pointer;
    text-align:left;
    padding:1.4rem 0;
    font-size:1rem;
    font-weight:600;
}

.faq-answer{
    display:none;
    padding-bottom:1.2rem;
}

.faq-answer p{
    color:#666;
}

/* ------------------------------
   Contact
------------------------------ */

.contact-section{
    padding:100px 8%;
}

.contact-card{
    background:#f7f7f7;
    border:1px solid #e6e6e6;
    border-radius:12px;
    text-align:center;
    padding:4rem 2rem;
}

.contact-card p{
    color:#9f9f9f;
}

.contact-card h2{
    margin:1rem 0 2rem;
    font-size:2.2rem;
}

/* ------------------------------
   Footer
------------------------------ */

footer{
    margin-top:5rem;
    padding:10px 8%;
    color:#888;
    font-size:.9rem;
}

.copyright{
    margin-top:.5rem;
    font-size:.8rem;
    color:#aaa;
}
.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:2rem;
}

.footer-content h3{
    font-size:1rem;
    font-weight:600;
    margin-bottom:.25rem;
}

.footer-content p{
    font-size:.9rem;
    color:#8a8a8a;
}

.footer-links{
    display:flex;
    gap:1.5rem;
}

.footer-links a{
    font-size:.9rem;
    color:#8a8a8a;
    transition:color .2s ease;
}

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


/* ------------------------------
   Animation
------------------------------ */

@keyframes pulse{
    0%{opacity:1;}
    50%{opacity:.4;}
    100%{opacity:1;}
}

/* ------------------------------
   Responsive
------------------------------ */

@media(max-width:900px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:4rem;
    }

    .hero-text{
        margin:auto auto 2rem;
    }

    .hero-buttons{
        justify-content:center;
    }

    .about-content{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:2.8rem;
    }

     footer {
        text-align: center;
     }
    .footer-content{
        flex-direction:column;
    }

    .footer-links{
        flex-wrap:wrap;
    }

}
