:root{
    --color-text-main: #ffffff;   
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



body{
    background:#020617; 
      overflow-x:hidden;
}



.navbar{
    max-width:1200px;
    margin:auto;
    height:68px;
    padding:0 48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:white;
}

.navbar,
.hero{
    position: relative;
    z-index: 1;
}

.nav-left{
    display:flex;
    align-items:center;
    
}

.logo-img{
    width:26px;
}

.logo-text{
    font-size:20px;
    font-weight:600;
    letter-spacing:-0.2px;
}



.nav-links{
    display:flex;
    gap:3px;
}

.nav-links a{
    font-size:14.5px;
    color:white;
    text-decoration:none;
    font-weight:500;
    cursor:pointer;
    transition:.2s;
    padding:6px 12px;  
}

.nav-links a:hover{
    background-color: rgba(255, 255, 255, 0.1);
    border-radius:999px;
}




.nav-actions{
    display:flex;
    gap:14px;
}

button{
    font-family:'Inter',sans-serif;
    font-size:14px;
    padding:9px 16px;
    border-radius:999px;
    border:none;
    cursor:pointer;
}



.ghost{
  
    color:#d6e2f0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius:999px;
}


 .top-bg{
    font-family:'Inter',sans-serif;
    background:
        url("https://www.mintlify.com/hero/bg-dark.svg");
    background-size: cover;
    background-position: center;
   min-height:100vh;
    background-color:#121212;
    background-repeat: no-repeat;
       position:relative;
}

.top-bg::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;  

     background: linear-gradient(
        to bottom,
        rgba(2,6,23,0) 0%,
        rgba(2,6,23,0.6) 40%,
        rgba(2,6,23,0.9) 70%,
        #000000 100%
    );

    pointer-events: none;
}



.primary{
    background:white;
    color:#021424;
    font-weight:600;
}

.primary:hover{
    background:#f0f0f0;
}


.hero {
    text-align: center;
    margin-top: 30px;
   
}

.impo{
    background-color: green;
    border-radius: 999px;
    color: white;
    padding: 5px;
    margin-right: 2px;
}

.badge{
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
   color: white;
    font-size: 48px;
    margin-bottom: 20px;
   
}

.hero-content p{
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 30px;

}
.cta{
    display: inline-block;
    color: white;
    font-weight: 600;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.input-email{
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 999px;
    color: white;
    font-size: 16px;
    width: 300px;
    background: none;
    border: none;
}

.input-email:focus{
    outline: none;
    border: none;
    box-shadow: none;
}

.cta-btn{
    background-color: white;
    border: none;
    color: black;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

.dashboard{
    margin-top: 160px;
 
}

.img-control{
    width: 55%;
    border-radius: 40px;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}



.logo-container{
    max-width:1200px;
    margin:auto;
    padding:0 48px;
   
}


.company-logo{
    background-color: #000000;
    padding:80px 0;
    color:#fff;
}

.logo-row{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap:50px;
    column-gap:60px;
    align-items:center;
    justify-items:center;
}

.logo-row svg{
    opacity:0.7;
    transition:opacity .3s ease;
    max-width:140px;
    height:auto;
    display:block;
}

.logo-row svg:hover{
    opacity:1;
}

.features{
    background: #000000;
    padding: 140px 20px;
}

.features-container{
    max-width:1200px;
    margin:auto;
}

.features-header{
    text-align:center;
    max-width:720px;
    margin:0 auto 80px auto;
}

.features-header h2{
    font-size:48px;
    font-weight:800;
    color:white;
    margin-bottom:16px;
}

.features-header p{
    color:#ddd5d5;
    font-size:18px;
    line-height:1.6;
}

.features-grid{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:32px;
}

.feature-card{
    background:#000000;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:40px;
    display:flex;
    flex-direction:column;
    min-height:520px;  
    transition:.25s;
}


.feature-tag{
    color:rgb(44, 212, 44);
    font-size:13px;
    letter-spacing:1px;
    font-weight:600;
}

.feature-card h3{
    font-size:26px;
    margin:14px 0;
    color:#E6EDF3;
}

.feature-card p{
    color:#E6EDF3;
    line-height:1.7;
    max-width:460px;
}



.feature-visual img{
    width:100%;
    display:block;
   
}

.assistant-section{
   
    width: 90%;
    margin: 15px auto 140px auto;
    max-width:1200px;
    border-radius:28px;
    padding:60px 40px 80px 40px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);

    text-align:center;
}

.assistant-tag{
    color:#18e6a5;
    font-weight:600;
    letter-spacing:2px;
    font-size:13px;
}

.assistant-section h2{
    font-size:38px;
    margin-top:16px;
    color:#E6EDF3;
}

.assistant-section p{
    max-width:620px;
    margin:18px auto 60px;
    color:#9BA6B2;
    line-height:1.7;
}

.assistant-visual img{
    width:100%;
    max-width:950px;
    display:block;
    margin:auto;
}


.enterprise{
    padding:140px 20px;
    background:#121212;
}
.enterprise-container{
    max-width:1200px;
    margin:auto;
}

.enterprise-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-bottom:90px;
}

.enterprise-left{
    max-width:620px;
}

.enterprise-right{
    width:100%;
    max-width:480px;
    margin-top: 120px;
  
}

.enterprise-tag{
    color:#18e6a5;
    font-size:10px;
    letter-spacing:2px;
    font-weight:500;
}

.enterprise-left h2{
    font-size:44px;
    line-height:1.15;
    margin:14px 0;
    color:#E6EDF3;
}

.enterprise-left p{
    color:#9BA6B2;
    font-size:17px;
    line-height:1.7;
}

.enterprise-btn{
    padding:12px 22px;
    border-radius:999px;
    border:none;
    background:#E6EDF3;
    color:#020617;
    font-weight:600;
    font-size:15px;
    cursor:pointer;

    transition:.25s;
}
.enterprise-btn:hover{
    background:rgb(240, 236, 236);
}

.enterprise-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
}

.enterprise-item{
    max-width:520px;
}


.enterprise-icon{
    width:32px;
    height:32px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.enterprise-icon img{
    width:20px;
}

.enterprise-item h3{
    color:#E6EDF3;
    font-size:20px;
    margin-bottom:10px;
}

.enterprise-item p{
    color:#9BA6B2;
    font-size:18px;
    line-height:1.4;
}

.customer-story{
    position:relative;
    margin-top:120px;
    border-radius:28px;
    overflow:hidden;

    min-height:520px;
    padding:60px;

    background:#030712;

    display:flex;
    flex-direction:column;     
    justify-content:space-between; 
}


.story-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.customer-story::after{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(2,6,23,.95) 20%,
        rgba(2,6,23,.75) 45%,
        rgba(2,6,23,.2) 70%,
        transparent
    );
}

.story-content{
    position:relative;
    z-index:2;

    max-width:520px;
    height:100%;

    display:flex;
    flex-direction:column;
}


.story-tag{
    font-size:12px;
    letter-spacing:2px;
    color:#9BA6B2;
    font-weight:600;
}

.story-content h3{
    font-size:28px;
    margin:14px 0;
    color:#E6EDF3;
}

.story-link{
    display:inline-block;
    margin-bottom:180px;
    color:white;
    text-decoration:none;
    font-weight:500;
}


.story-stats{
    display:flex;
    gap:60px;

    margin-top:auto;   
}




.story-stats strong{
    display:block;
    font-size:52px;
    line-height: 1.3;
    color:white;
}

.story-stats span{
    color:#9BA6B2;
    font-size:14px;
}

.logo-row-1{
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap:10px;
    margin-top: 40px;
    align-items:center;
    justify-items:center;
    
}

.customers{
    width:100%;
    background:#000000;
    padding:100px 0;
    font-family: 'Inter', sans-serif;
}

.customers-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}


.customers-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px auto;
}

.customers-tag{
    color:#22c55e;
    font-size:12px;
    letter-spacing:2px;
    font-weight:600;
    display:block;
    margin-bottom:14px;
}

.customers-header h2{
    color:#ffffff;
    font-size:42px;
    font-weight:600;
    margin-bottom:18px;
}

.customers-header p{
    color:#94a3b8;
    font-size:16px;
    line-height:1.6;
}




.customers-grid{
    display:grid;
    grid-auto-flow: column;      
    grid-auto-columns: 350px;    
    gap:28px;
       
     
}

body::-webkit-scrollbar{
    display:none;
}



.customer-card{
    cursor:pointer;
}

.customer-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:16px;
    transition:transform .35s ease, box-shadow .35s ease;
}

.customer-card:hover img{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.customer-card h3{
    color:#cbd5e1;
    font-size:15px;
    font-weight:500;
    line-height:1.6;
    margin-bottom:14px;
}

.customer-card a{
    text-decoration:none;
    color:#e2e8f0;
    font-size:14px;
    font-weight:500;
    transition:color .25s;
}

.customer-card a:hover{
    color:#ffffff;
}




.customers-nav{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:55px;
}

.nav-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    border:none;
    background:#0f172a;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:all .25s;
}

.nav-btn:hover{
    background:#1e293b;
}



.customers-cta{
    margin-top:140px;
    text-align:center;
    color:#fff;
}

.customers-cta h2{
    font-size:38px;
    font-weight:600;
    line-height:1.2;
    margin-bottom:18px;
}

.customers-cta p{
    color:#c8d1df;
    font-size:17px;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:90px;
}

.btn-primary{
    background:#ffffff;
    color:#000;
    border:none;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
    cursor:pointer;
}

.btn-primary:hover{
    background:#f0f0f0;
}

.btn-secondary{
    background:transparent;
    color:#fff;
    border:1px solid #2a2a2a;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
    cursor:pointer;
}
.btn-secondary:hover{
    background:rgba(255,255,255,0.1);
}

.cta-features{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;
}

.cta-feature{
    max-width:260px;
}

.cta-feature h3{
    margin-top:18px;
    font-size:20px;
    font-weight:600;
}

.cta-feature p{
    margin:10px 0 24px;
    color:#94a3b8;
    font-size:15px;
}

.cta-feature a{
    color:#22c55e;
    text-decoration:none;
    font-weight:500;
}

.icon-box{
    width:64px;
    height:64px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 18px;

    background:#000000;
    border:1px solid rgba(148,163,184,0.15);

    box-shadow:
        inset 0 0 12px rgba(34,197,94,0.08),
        0 8px 30px rgba(0,0,0,0.6);
}

.icon-box svg{
    width:40px;
    height:40px;

    color:#22c55e;    
}


.divider{
    width:1px;
    height:140px;
    background:#1e293b;
}

.footer{
    background:#202020;
    color:#cbd5e1;
    padding:90px 0 40px;
    border:2px solid rgba(148,163,184,0.08);
    font-family:'Inter',sans-serif;
    border-top:1px solid rgba(148,163,184,0.08);
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 24px;
}


.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:40px;
    border-bottom:1px solid rgba(148,163,184,0.08);
}

.footer-logo{
    font-size:22px;
    font-weight:600;
    color:#e2e8f0;
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-dot{
    width:12px;
    height:12px;
    background:#22c55e;
    border-radius:50%;
}

.footer-socials a{
    color:#94a3b8;
    margin-left:18px;
    text-decoration:none;
    font-size:23px;
}


.footer-grid{
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:60px;
    padding:50px 0;
    border-bottom:1px solid rgba(148,163,184,0.08);
}

.footer-col h4{
    font-size:12px;
    letter-spacing:1.6px;
    color:#64748b;
    margin-bottom:18px;
}

.footer-col a{
    display:block;
    text-decoration:none;
    color:#eef0f3;
    font-size:14px;
    margin-bottom:12px;
    transition:.2s;
}

.footer-col a:hover{
    color:#ffffff;
}


.footer-security{
    display:flex;
    align-items:center;
    gap:30px;
    padding:40px 0;
    border-bottom:1px solid rgba(148,163,184,0.08);
}

.footer-security span{
    color:#eef0f3;
    font-size:14px;
}

.security-badge{
    width:70px;
    height:70px;
    border-radius:50%;
    border:1px solid rgba(148,163,184,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    text-align:center;
    color:#eef0f3;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:28px;
}

.system-status{
    background:#2e2e2e;
  
    color:#e1f0e9;
    padding:6px 14px;
    border-radius:999px;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:8px;
}

.copyright{
    color:#94a3b8;
    font-size:14px;
}

.status-dot{
    width:8px;
    height:8px;
    background:#22c55e;
    border-radius:50%;
}

.theme-icons{
    display:flex;
    align-items:center;
    
}

.theme-icons span{
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1f1f20;                 
     color: #ffffff;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
    transition:0.25s;
}

