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

body{
    background:#050816;
    font-family:Arial, sans-serif;
    color:#fff;
    overflow-x:hidden;
}

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

.starchar-hero{
    position:relative;
    padding:120px 0;
    background:
    radial-gradient(circle at top left,#3b82f650,transparent 35%),
    radial-gradient(circle at bottom right,#9333ea40,transparent 35%),
    #050816;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
    background-size:50px 50px;
}

.hero-grid{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    background:#172554;
    border:1px solid #3b82f6;
    border-radius:50px;
    color:#93c5fd;
    margin-bottom:25px;
    font-size:14px;
}

.hero-left h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-left h1 span{
    background:linear-gradient(to right,#38bdf8,#a855f7);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    font-size:18px;
    line-height:1.9;
    color:#cbd5e1;
    margin-bottom:35px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.hero-buttons a{
    text-decoration:none;
    padding:16px 35px;
    border-radius:60px;
    font-weight:bold;
    transition:0.3s;
}

.btn-primary{
    background:linear-gradient(to right,#3b82f6,#9333ea);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid #334155;
    color:#fff;
}

.btn-outline:hover{
    border-color:#3b82f6;
}

.hero-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:22px 28px;
    border-radius:20px;
    backdrop-filter:blur(12px);
}

.stat-box h3{
    font-size:28px;
    margin-bottom:5px;
}

.stat-box span{
    color:#94a3b8;
    font-size:14px;
}

.hero-right{
    position:relative;
}

.glass-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border-radius:30px;
}

.main-card{
    padding:30px;
    height:520px;
    position:relative;
}

.card-top{
    display:flex;
    gap:10px;
    margin-bottom:30px;
}

.card-top span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#475569;
}

.dashboard-preview{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.preview-box{
    background:linear-gradient(135deg,#1e293b,#334155);
    border-radius:20px;
    height:120px;
}

.preview-box.large{
    height:180px;
}

.preview-box.small{
    height:80px;
}

.preview-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.floating-card{
    position:absolute;
    background:#111827;
    padding:16px 24px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.card-one{
    top:-20px;
    right:-20px;
}

.card-two{
    bottom:-20px;
    left:-20px;
}

.features-section{
    padding:120px 0;
}

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

.section-title span{
    color:#60a5fa;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    margin:15px 0;
}

.section-title p{
    color:#94a3b8;
}

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

.feature-card{
    background:linear-gradient(145deg,#0f172a,#111827);
    padding:40px 35px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#3b82f6;
}

.feature-icon{
    font-size:48px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.feature-card p{
    line-height:1.8;
    color:#94a3b8;
}

.about-section{
    padding:120px 0;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
    height:450px;
}

.about-glow{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,#3b82f6,#9333ea);
    border-radius:30px;
    filter:blur(60px);
    opacity:0.4;
}

.about-card{
    position:relative;
    background:#111827;
    border-radius:30px;
    padding:60px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.08);
}

.about-card h3{
    font-size:42px;
    margin-bottom:20px;
}

.about-card p{
    color:#cbd5e1;
    line-height:1.9;
}

.about-content span{
    color:#60a5fa;
    letter-spacing:2px;
}

.about-content h2{
    font-size:56px;
    margin:20px 0;
    line-height:1.2;
}

.about-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.about-content ul{
    list-style:none;
}

.about-content ul li{
    margin-bottom:18px;
    color:#e2e8f0;
}

.cta-section{
    padding:120px 0;
}

.cta-box{
    background:linear-gradient(135deg,#1e3a8a,#6b21a8);
    padding:80px 40px;
    text-align:center;
    border-radius:35px;
}

.cta-box h2{
    font-size:56px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    color:#dbeafe;
    margin-bottom:35px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#111827;
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-weight:bold;
}

@media(max-width:991px){

.hero-grid,
.about-wrapper{
    grid-template-columns:1fr;
}

.hero-left h1,
.about-content h2,
.cta-box h2{
    font-size:46px;
}

.main-card{
    height:auto;
}

.hero-right{
    margin-top:40px;
}

.card-one,
.card-two{
    position:relative;
    inset:auto;
    margin-top:20px;
}

}

@media(max-width:768px){

.hero-left h1{
    font-size:38px;
}

.section-title h2,
.about-content h2,
.cta-box h2{
    font-size:34px;
}

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

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

.about-card{
    padding:40px 30px;
}

}
</style>