*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#071018;
    color:white;
    overflow-x:hidden;
}

.navbar{
    position:fixed;
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(7,16,24,0.75);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:#22d3ee;
    letter-spacing:3px;
}

nav a{
    margin:0 15px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

nav a:hover{
    color:#22d3ee;
}

.launch-btn{
    background:linear-gradient(to right,#06b6d4,#0891b2);
    border:none;
    padding:14px 26px;
    border-radius:12px;
    color:white;
    cursor:pointer;
}

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 8%;
    background:
    radial-gradient(circle at top left,#0e7490 0%,transparent 30%),
    radial-gradient(circle at bottom right,#164e63 0%,transparent 30%),
    #071018;
}

.hero-content{
    max-width:950px;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border:1px solid #22d3ee;
    border-radius:30px;
    color:#67e8f9;
    margin-bottom:25px;
}

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

.hero p{
    color:#bae6fd;
    font-size:20px;
    margin-bottom:40px;
}

.hero-actions button{
    padding:15px 28px;
    margin:10px;
    border:none;
    border-radius:12px;
    cursor:pointer;
}

.secondary{
    background:transparent;
    border:1px solid #22d3ee !important;
    color:#67e8f9;
}

.about,
.products,
.analytics,
.roadmap{
    padding:120px 8%;
}

.about-grid,
.product-grid,
.metric-grid,
.roadmap-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.about-card,
.product-card,
.metric-card,
.roadmap-card{
    background:#0d1722;
    padding:35px;
    border-radius:24px;
    border:1px solid rgba(34,211,238,0.1);
    transition:0.3s;
}

.about-card:hover,
.product-card:hover,
.metric-card:hover,
.roadmap-card:hover{
    transform:translateY(-8px);
    border:1px solid #22d3ee;
}

.metric-card h1{
    font-size:48px;
    margin-bottom:15px;
    color:#67e8f9;
}

footer{
    padding:70px;
    text-align:center;
    background:#050b12;
}
