@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

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

html{
    scroll-behavior: smooth;
}

body,button{
    font-family: Inter, sans-serif;
}

::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-thumb{
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
    padding-inline: 15px;
}

header h1{
    font-size: 1.2rem;
    font-weight: 400;
}

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    transition: all .5s ease;
}

.log{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.navbar,.close{
    display: none;
    cursor: pointer;
    transition: all .5s ease;
}

.navbar:hover,.close:hover{
    color: violet;
}

h1{
    font-family: Space Grotesk, sans-serif;
    font-weight: 300;
}

a{
    text-decoration: none;
    color: black;
    transition: all .5s ease;
}

a:hover{
    color: violet;
}

img{
    object-fit: cover;
    width: 100%;
    height: auto;
}

main{
    padding-block-end: 45px;
}

section{
    padding-block-start: 40px;
    padding-inline: 250px;
}

.hero{
    margin-block-start: 50px;
}

.hero h1{
    font-weight: 300;
    text-align: center;
    font-size: 3rem;
}

.hero p{
    text-align: center;
    padding-block: 10px;
}

.cta{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-block: 20px;
}

.cta button a:hover,header h1 a:hover{
    color: black;
}

.cta button,.create{
    padding-block: 8px;
    padding-inline: 5px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid violet;
}

.cta button:nth-child(1){
    border: 1px solid transparent;
    transition: all .5s ease;
}

.cta button:nth-child(1):hover,.create:hover{
    background-color: violet;
    border: 1px solid violet;
}

.cta button:nth-child(2),.create{
    background-color: transparent;
    transition: all .5s ease;
}

.cta button:nth-child(2):hover,.create:hover{
    background-color: violet;
    border: 1px solid violet;
}

.hero img{
    margin-block-start: 20px;
    border-radius: 10px;
}

.problem div,.solution div,.platform div,.partner div{
    padding-block: 15px;
}

li{
    margin-inline-start: 10px;
    padding-block: 5px;
    list-style: none;
}

.stats,.feature{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 50px;
}

.stats div,.feature div{
    padding: 10px;
    border: 1px solid violet;
    border-radius: 5px;
    width: 30%;
    transition: all .5s ease;
}

.stats div:hover,.feature div:hover{
    background-color: violet;
}

.stats h1,.feature h1{
    margin-block-end: 10px;
    font-size: 1.5rem;
}

.hook-solution{
    background-color: violet;
    padding-block: 50px;
    margin-block-start: 50px;
}

.hook-solution h1{
    text-align: center;
    font-size: 7rem;
}

.solution-hook{
    padding-block: 80px;
    margin-inline: 50px;
    font-size: 4rem;
}

.demo{
    width: 100%;
    height: 500px;
    background-color: violet;
    border-radius: 5px;
}

.partner img{
    height: 140px;
    width: 140px;
    object-fit: cover;
}

.partner marquee{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
}

/* Traction cards */

.traction p{
    margin-block-end: 12px;
}
.traction-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-block: 18px 8px;
}
.card{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid violet;
    padding: 10px;
    border-radius: 5px;
}
.card .num{
    font-size: 1.6rem;
    font-weight: 700;
    color: violet;
    margin-block-end: 6px;
}
.card h1{
    margin-block-end: 6px;
    font-size: 1.05rem;
}
.traction-note{
    margin-block-start: 12px;
}

.team-member{
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    justify-content: flex-start;
    row-gap: 10px;
    margin-block-start: 30px;
}

.team-member img{
    width: 400px;
    height: 500px;
    border-radius: 5px;
}

.team-member h1{
    color: violet;
}

@media (max-width: 800px){
    section{
        padding-inline: 20px;
    }
}

/* Contact form styles */
.contact {
    padding-block-start: 20px;
}
.contact-form{
    max-width: 720px;
    margin: 18px auto 40px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    background: #fff;
}
.contact-form .form-row{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form label{
    font-size: 0.95rem;
    color: #222;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}
.contact-form .form-actions{
    display: flex;
    justify-content: flex-end;
}
.contact-form button{
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    background-color: violet;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}
.contact-form button:hover{
    transform: translateY(-1px);
}
.form-feedback{
    margin-top: 6px;
    font-weight: 600;
}

@media (max-width: 600px){
    .hero h1{
        font-size: 2.1rem;
    }
    .contact-form{ padding: 12px; }
    .contact-form .form-actions{ justify-content: stretch; }
    .contact-form button{ width: 100%; }
}

/* Footer styles */
.site-footer{
    background: black;
    color: #fff;
    padding: 32px 20px;
}
.footer-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto 18px auto;
    align-items: start;
}
.footer-brand h1{ color: violet; margin-bottom: 8px; }
.footer-links ul{ list-style: none; padding: 0; }
.footer-links a{ color: #ddd; text-decoration: none; }
.footer-links a:hover{ color: #fff; }
.footer-contact a{ color: #ddd; text-decoration: none; }
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 1100px;
    margin: 18px auto 0 auto;
    padding-top: 12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}
.footer-socials a{ color: #ddd; margin-left: 10px; font-size: 1.1rem; }
.footer-socials a:hover{ color: violet; }

@media (max-width: 900px){
    .navbar,.close{
        display: block;
    }
    .nav-appear{
        left: 0;
    }
    .stats,.feature{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 50px;
}
    .stats div,.feature div{
    width: 100%;
}
    .solution-hook h1,.hook-solution h1{
        font-size: 4rem;
    }
    nav{
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: first baseline;
        top: 0;
        left: -100%;
        height: 100%;
        width: 100%;
        padding-inline-start: 20px;
        padding-block-start: 20px;
        background-color: transparent;
        backdrop-filter: blur(10px);
    }
    nav a{
        font-size: 1.8rem;
    }
    nav a:hover{
        color: black;
    }
    .footer-container{ grid-template-columns: 1fr; text-align: left; }
    .footer-bottom{ flex-direction: column; gap:8px; text-align: center; }
}

@media (max-width: 1500px){
    section{
        padding-inline: 80px;
    }
}

@media (max-width: 1100px){
    section{
        padding-inline: 20px;
    }
}
