/* ===================================================
   ANANTVYOM — AI Native ERP Platform
   Coming Soon / Beta Landing Page
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

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

:lang(hi), :lang(hi) * { font-family: 'Noto Sans Devanagari', Inter, sans-serif; line-height: 1.7; }

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#080d16;
    color:#ffffff;
    overflow-x:hidden;
}

/* Animated Background */
body::before{
    content:"";
    position:fixed;
    width:900px;
    height:900px;
    background:radial-gradient(circle,rgba(25,211,239,.16) 0%,transparent 70%);
    top:-300px;
    right:-300px;
    z-index:-2;
    animation:float1 12s ease-in-out infinite;
}

body::after{
    content:"";
    position:fixed;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(73,120,246,.09) 0%,transparent 70%);
    bottom:-250px;
    left:-250px;
    z-index:-2;
    animation:float2 14s ease-in-out infinite;
}

@keyframes float1{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(40px);}
}

@keyframes float2{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-35px);}
}

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

/* ========== Header ========== */
header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(8,13,22,.88);
    border-top:1px solid #19d3ef;
    border-bottom:1px solid rgba(255,255,255,.07);
    transition:.3s;
}

nav{
    height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:800;
    letter-spacing:2.5px;
    color:#19d3ef;
    text-decoration:none;
}

.logo-mark{
    display:block;
    height:26px;
    width:auto;
}

.erp-tools-mobile{
    display:none;
    padding:9px 15px;
    border:1px solid rgba(74,168,255,.4);
    border-radius:30px;
    color:#6fe8f7;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}

nav ul{
    display:flex;
    list-style:none;
    gap:32px;
}

nav a{
    text-decoration:none;
    color:rgba(255,255,255,.85);
    font-weight:500;
    font-size:15px;
    transition:.25s;
}

nav a:hover{
    color:#19d3ef;
}

/* ========== Hero ========== */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    position:relative;
    padding-top:72px;
}

.hero-content{
    z-index:2;
}

.tag{
    display:inline-block;
    padding:9px 20px;
    border-radius:40px;
    background:rgba(16,24,39,.9);
    color:#6fe8f7;
    margin-bottom:28px;
    border:1px solid rgba(25,211,239,.3);
    font-size:14px;
    font-weight:500;
    letter-spacing:.5px;
}

.hero h1{
    font-size:58px;
    line-height:1.15;
    max-width:880px;
    margin:0 auto 28px;
    font-weight:800;
    letter-spacing:-1px;
}

.subtitle{
    max-width:680px;
    margin:0 auto 40px;
    color:#a8b8cc;
    font-size:18px;
    line-height:1.75;
    font-weight:400;
}

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

.btn{
    display:inline-block;
    text-decoration:none;
    color:white;
    padding:15px 36px;
    border-radius:50px;
    background:linear-gradient(135deg,#2ac8eb,#5268f4);
    font-weight:600;
    font-size:15px;
    transition:.3s;
    border:none;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 40px rgba(0,100,255,.35);
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.25);
    color:#d0dce8;
}

.btn-outline:hover{
    border-color:#19d3ef;
    color:#19d3ef;
    box-shadow:none;
    background:rgba(74,168,255,.08);
}

.hero-glow{
    width:480px;
    height:480px;
    position:absolute;
    left:50%;
    top:45%;
    transform:translate(-50%,-50%);
    background:rgba(25,211,239,.16);
    filter:blur(130px);
    pointer-events:none;
}

/* ========== Sections ========== */
section{
    padding:110px 0;
}

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

.section-title h2{
    font-size:40px;
    margin-bottom:16px;
    font-weight:700;
}

.section-title p{
    color:#9eb0c4;
    font-size:17px;
}

/* ========== Features ========== */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
}

.feature-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:32px 28px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(33,150,255,.5);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.feature-icon{
    width:42px;
    height:42px;
    background:rgba(25,211,239,.14);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
    color:#19d3ef;
    margin-bottom:18px;
}

.feature-card h3{
    margin-bottom:10px;
    font-size:18px;
}

.feature-card p{
    color:#9eb0c4;
    font-size:14.5px;
    line-height:1.6;
}

/* ========== Modules ========== */
.module-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:16px;
}

.module-card{
    display:flex;
    flex-direction:column;
    gap:6px;
    background:rgba(255,255,255,.04);
    border-radius:14px;
    padding:22px 18px;
    text-align:center;
    transition:.3s;
    border:1px solid rgba(255,255,255,.07);
    color:#d0dce8;
}

.module-card strong{
    font-weight:650;
    font-size:15px;
}

.module-card span{
    color:#8a9bb0;
    font-size:12px;
    line-height:1.5;
}

.module-card:hover{
    transform:translateY(-5px);
    background:rgba(25,211,239,.08);
    border-color:rgba(25,211,239,.4);
}

.module-card:hover strong{
    color:#6fe8f7;
}

/* ========== Status ========== */
.status-box{
    text-align:center;
    padding:55px 40px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    max-width:720px;
    margin:0 auto;
}

.status-badge{
    display:inline-block;
    padding:7px 16px;
    border-radius:30px;
    background:rgba(25,211,239,.14);
    color:#6fe8f7;
    font-size:13px;
    font-weight:600;
    margin-bottom:22px;
    border:1px solid rgba(74,168,255,.3);
}

.status-box h2{
    font-size:32px;
    margin-bottom:14px;
}

.status-desc{
    color:#9eb0c4;
    font-size:16px;
    line-height:1.7;
    margin-bottom:36px;
}

.progress-wrap{
    max-width:480px;
    margin:0 auto 32px;
}

.progress{
    width:100%;
    height:12px;
    background:#152132;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:10px;
}

.progress-fill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#2ac8eb,#5268f4);
    border-radius:50px;
    transition:width 1.6s cubic-bezier(.22,1,.36,1);
}

.progress-info{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#8a9bb0;
}

.progress-percent{
    color:#19d3ef;
    font-weight:600;
}

.status-points{
    display:flex;
    flex-wrap:wrap;
    gap:12px 28px;
    justify-content:center;
    margin-top:8px;
}

.point{
    font-size:14px;
    color:#a8b8cc;
}

/* ========== Contact ========== */
.contact-box{
    text-align:center;
    max-width:560px;
    margin:0 auto;
}

.contact-box h2{
    font-size:34px;
    margin-bottom:16px;
}

.contact-box p{
    color:#9eb0c4;
    font-size:16px;
    line-height:1.7;
    margin-bottom:24px;
}

.email-link{
    display:inline-block;
    color:#6fe8f7;
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.email-link:hover{
    color:#7fe6f5;
}

/* ========== Contact strip ========== */
.erp-contact-strip{
    border-top:1px solid rgba(255,255,255,.07);
    border-bottom:1px solid rgba(255,255,255,.07);
    background:rgba(255,255,255,.02);
}

.erp-contact-strip-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    padding:15px 0;
    text-align:center;
    color:#9eb0c4;
    font-size:12.5px;
}

.erp-contact-strip-inner a{
    color:#19d3ef;
    font-weight:700;
    text-decoration:none;
}

.erp-contact-strip-inner a:hover{
    text-decoration:underline;
}

/* ========== Footer ========== */
footer{
    padding:50px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.07);
}

footer h3{
    color:#19d3ef;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:8px;
}

footer p{
    color:#7a8fa8;
    font-size:14px;
    margin:4px 0;
}

footer a{
    color:#9eb0c4;
    text-decoration:none;
}

footer a:hover{
    color:#19d3ef;
}

.erp-india-badge{
    display:inline-flex;
    margin:10px auto 0;
    font-size:11.5px !important;
    color:#7a8fa8;
}

.copy{
    margin-top:12px !important;
    font-size:13px !important;
}

/* ========== Loader ========== */
#loader{
    position:fixed;
    inset:0;
    background:#080d16;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:opacity .5s, visibility .5s;
}

.loader-logo{
    font-size:42px;
    font-weight:800;
    color:#19d3ef;
    letter-spacing:6px;
    margin-bottom:28px;
}

.loader-bar{
    width:180px;
    height:3px;
    background:#1a2535;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:18px;
}

.loader-bar-fill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#2ac8eb,#5268f4);
    animation:loadBar .5s ease forwards;
}

@keyframes loadBar{
    to{width:100%;}
}

.loader-text{
    color:#7a94b0;
    font-size:14px;
}

/* ========== Animations ========== */
.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ========== Responsive ========== */
@media(max-width:900px){
    .hero h1{
        font-size:38px;
    }
    .subtitle{
        font-size:16px;
    }
    nav ul{
        display:none;
    }
    .erp-tools-mobile{
        display:inline-flex;
    }
    .section-title h2{
        font-size:30px;
    }
    .status-box{
        padding:40px 24px;
    }
    .status-box h2{
        font-size:26px;
    }
}

@media(max-width:600px){
    .hero h1{
        font-size:32px;
    }
    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
    .btn{
        width:100%;
        max-width:260px;
        text-align:center;
    }
}
