/* ===================================
   ClipPilot Landing Page CSS
   Part 1 - Base / Hero / Dashboard
=================================== */

*{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    font-family:'Inter',sans-serif;
    color:#111827;
    background:#fff;
    line-height:1.6;
    overflow-x:hidden
}

a{text-decoration:none;color:inherit}

:root{
    --mint:#dcfff0;
    --mint-dark:#bff5df;
    --green:#22c55e;
    --green-dark:#16a34a;
    --text:#111827;
    --gray:#6b7280;
    --light:#f8fafc;
    --shadow:0 20px 50px rgba(0,0,0,.08);
    --radius:22px;
}

section{padding:110px 0}

.center{
    text-align:center;
    margin-top:50px
}

/* NAVIGATION */

header{
    min-height:100vh;
    background:linear-gradient(180deg,#f7fffc,#edfff7)
}

.navbar{
    width:min(1200px,92%);
    margin:auto;
    padding:28px 0;
    display:flex;
    align-items:center;
    justify-content:space-between
}

.logo{
    font-size:28px;
    font-weight:800;
    letter-spacing:-1px
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px
}

.nav-links a{
    font-weight:500;
    transition:.25s
}

.nav-links a:hover{color:var(--green)}

.nav-button{
    background:var(--green);
    color:white!important;
    padding:13px 25px;
    border-radius:999px;
    font-weight:700
}

.nav-button:hover{
    background:var(--green-dark)
}

/* HERO */

.hero{
    width:min(1200px,92%);
    margin:auto;
    min-height:80vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center
}

.hero-tag{
    display:inline-block;
    background:white;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow:var(--shadow)
}

.hero h1{
    font-size:64px;
    line-height:1.05;
    letter-spacing:-2px;
    margin:20px 0
}

.hero h1 span{color:var(--green)}

.hero p{
    font-size:20px;
    color:var(--gray);
    max-width:620px;
    margin-bottom:40px
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap
}

.primary-button,
.secondary-button{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:17px 35px;
    border-radius:999px;
    font-weight:700;
    transition:.3s
}

.primary-button{
    background:var(--green);
    color:white;
    box-shadow:0 15px 35px rgba(34,197,94,.25)
}

.primary-button:hover{
    background:var(--green-dark);
    transform:translateY(-3px)
}

.secondary-button{
    border:2px solid #ddd;
    background:white
}

.secondary-button:hover{
    transform:translateY(-3px)
}

/* DASHBOARD MOCKUP */

.dashboard{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    animation:float 5s ease-in-out infinite
}

.dash-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px
}

.dash-title{
    font-size:22px;
    font-weight:800
}

.status{
    color:var(--green);
    font-weight:700
}

.dash-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:30px
}

.stat-card{
    background:var(--light);
    padding:20px;
    border-radius:16px
}

.stat-card h4{
    color:var(--gray);
    font-size:14px
}

.stat-card h2{
    font-size:32px
}

.clip-list h3{margin-bottom:20px}

.clip-row{
    display:grid;
    grid-template-columns:120px 1fr 40px;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    font-size:14px
}

.bar{
    height:10px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden
}

.fill{
    height:100%;
    background:var(--green);
    border-radius:20px
}

.ninety-eight{width:98%}
.ninety-four{width:94%}
.ninety-one{width:91%}

/* SECTION HEADERS */

.section-heading{
    width:min(900px,90%);
    margin:0 auto 70px;
    text-align:center
}

.section-heading h2{
    font-size:52px;
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:18px
}

.section-heading p{
    color:var(--gray);
    font-size:20px
}

/* FEATURE CARDS */

.features{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px
}

.feature-card{
    background:white;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.3s
}

.feature-card:hover{
    transform:translateY(-8px)
}

.icon{
    width:60px;
    height:60px;
    background:#edfff7;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px
}

.feature-card h3{
    font-size:22px;
    margin-bottom:12px
}

.feature-card p{
    color:var(--gray)
}

/* ===================================
   Part 2 - Sections / FAQ / Footer / Responsive
=================================== */

/* CREATOR SECTION */

.mint-section{
    background:linear-gradient(180deg,var(--mint),#f8fffc);
}

.mockup{
    width:min(900px,90%);
    margin:80px auto 0;
}

.mockup-window{
    background:white;
    border-radius:24px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.window-header{
    background:#f8fafc;
    padding:18px 25px;
    display:flex;
    align-items:center;
    gap:12px;
    border-bottom:1px solid #eee;
}

.window-header span{
    margin-left:10px;
    font-weight:700;
}

.circle{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{background:#ff5f56}
.yellow{background:#ffbd2e}
.green{background:#27c93f}

.upload-list{
    padding:30px;
    display:grid;
    gap:15px;
}

.upload-item{
    background:#f8fafc;
    padding:18px 22px;
    border-radius:14px;
    font-weight:600;
}


/* PROFESSIONAL SECTION */

.white-section{
    background:#fff;
}

.feature-card.white{
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}


.email-dashboard{
    width:min(950px,90%);
    margin:80px auto 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.email-window{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:35px;
    box-shadow:var(--shadow);
}

.email-window h3{
    margin-bottom:25px;
    font-size:22px;
}

.email-window table{
    width:100%;
    border-collapse:collapse;
}

.email-window td{
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.green-text{
    color:var(--green);
    font-weight:700;
}


/* FAQ */

.faq{
    background:#f8fafc;
}

.faq h2{
    width:min(900px,90%);
    margin:0 auto 50px;
    text-align:center;
    font-size:50px;
}

.faq-item{
    width:min(800px,90%);
    margin:15px auto;
    background:white;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:0;
    background:none;
    padding:25px;
    text-align:left;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
    color:var(--gray);
}

.faq-item.active .faq-answer{
    display:block;
}


/* FOOTER */

footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:100px 20px 40px;
}

footer h2{
    font-size:48px;
    margin-bottom:20px;
}

footer p{
    color:#9ca3af;
    margin-bottom:35px;
}

.footer-bottom{
    margin-top:80px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
}


/* ANIMATIONS */

@keyframes float{
    0%,100%{
        transform:translateY(0)
    }
    50%{
        transform:translateY(-12px)
    }
}


/* SCROLL ANIMATION SUPPORT */

.fade-in{
    opacity:0;
    transform:translateY(30px);
    transition:.7s ease;
}

.fade-in.visible{
    opacity:1;
    transform:translateY(0);
}


/* RESPONSIVE DESIGN */

@media(max-width:1000px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .features{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:700px){

    section{
        padding:80px 0;
    }

    .navbar{
        flex-direction:column;
        gap:25px;
    }

    .nav-links{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:17px;
    }

    .dashboard{
        padding:20px;
    }

    .dash-grid{
        grid-template-columns:1fr;
    }

    .clip-row{
        grid-template-columns:90px 1fr 35px;
    }

    .section-heading h2,
    .faq h2{
        font-size:36px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .email-dashboard{
        grid-template-columns:1fr;
    }

    footer h2{
        font-size:34px;
    }

}


/* SMALL PHONE FIXES */

@media(max-width:450px){

    .hero h1{
        font-size:36px;
    }

    .primary-button,
    .secondary-button{
        width:100%;
    }

    .clip-row{
        grid-template-columns:1fr;
        gap:8px;
    }

}

/* PRICING */

.pricing{
    background:#f8fafc;
}


.pricing-grid{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


.price-card{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow);
    position:relative;
    transition:.3s;
}


.price-card:hover{
    transform:translateY(-8px);
}


.price-card.featured{
    border:3px solid var(--green);
}


.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:var(--green);
    color:white;
    padding:7px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
}


.price-title{
    font-size:28px;
    font-weight:800;
    margin-bottom:15px;
}


.price-description{
    color:var(--gray);
    min-height:80px;
}


.price{
    font-size:48px;
    font-weight:800;
    margin:25px 0;
}


.price span{
    font-size:18px;
    color:var(--gray);
}


.price-card ul{
    list-style:none;
    margin-bottom:35px;
}


.price-card li{
    margin-bottom:14px;
    color:#374151;
}


@media(max-width:1000px){

    .pricing-grid{
        grid-template-columns:1fr;
        max-width:500px;
    }

}
