/* =========================================
   STATEMENTFLOW
   VERSION 0.1.0
   ========================================= */
   
@import url("./system.css");

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

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

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* =========================
   NAVBAR
========================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
}

.logo{
    font-size:18px;
    font-weight:700;
    letter-spacing:-0.5px;
    color:#fff;
}

.nav-btn{
    padding:12px 22px;
    border-radius:12px;
    background:#fff;
    color:#000;
    font-size:14px;
    font-weight:600;
    transition:0.25s ease;
}

.nav-btn:hover{
    opacity:0.85;
}

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

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:80px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.03);
    color:#b3b3b3;
    font-size:13px;
    margin-bottom:30px;
}

h1{
    font-size:clamp(3.5rem,8vw,6.5rem);
    line-height:0.92;
    letter-spacing:-4px;
    margin-bottom:30px;
    font-weight:800;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#8a8a8a;
    max-width:580px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.btn-primary{
    padding:16px 28px;
    background:#fff;
    color:#000;
    border-radius:14px;
    font-weight:600;
    transition:0.25s ease;
}

.btn-primary:hover{
    transform:translateY(-2px);
    opacity:0.9;
}

.btn-secondary{
    padding:16px 28px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.03);
    color:#fff;
    transition:0.25s ease;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.06);
}

/* =========================
   CARD
========================= */

.preview-card{
    background:#050505;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:32px;
}

.preview-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:26px;
}

.preview-header h3{
    font-size:20px;
    font-weight:600;
}

.status-live{
    color:#fff;
    font-size:13px;
    opacity:0.6;
}

.bank-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.bank-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    border-radius:18px;
    background:#0a0a0a;
    border:1px solid rgba(255,255,255,0.05);
}

.bank-name{
    color:#f5f5f5;
    font-weight:500;
}

.bank-status{
    color:#777;
    font-size:13px;
    font-weight:600;
}

.bank-status.live{
    color:#00FF00;
}

/* =========================
   FEATURES
========================= */

.section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.section-title p{
    color:#8a8a8a;
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.feature-card{
    padding:34px;
    border-radius:24px;
    background:#050505;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.25s ease;
}

.feature-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,0.15);
}

.feature-card h3{
    font-size:20px;
    margin-bottom:16px;
}

.feature-icon{
    font-size:24px;
    display:block;
    margin-bottom:12px;
}

.feature-card p{
    color:#8a8a8a;
    line-height:1.7;
}

/* =========================
   CTA
========================= */

.cta{
    padding:120px 0;
}

.cta-box{
    padding:80px 60px;
    border-radius:36px;
    text-align:center;
    background:#050505;
    border:1px solid rgba(255,255,255,0.08);
}

.cta-box h2{
    font-size:52px;
    letter-spacing:-2px;
    margin-bottom:20px;
}

.cta-box p{
    color:#8a8a8a;
    font-size:18px;
    margin-bottom:40px;
}

/* =========================
   FOOTER
========================= */

footer{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-left{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.footer-version{
    color:#666;
    font-size:13px;
}

.footer-date{
    color:#666;
    font-size:13px;
}

.footer-right{
    color:#666;
    font-size:13px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hero{
        padding-top:120px;
        padding-bottom:80px;
    }

    h1{
        letter-spacing:-2px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .section-title h2,
    .cta-box h2{
        font-size:36px;
    }

    .cta-box{
        padding:50px 28px;
    }

    .footer-inner{
        flex-direction:column;
        align-items:flex-start;
    }

}