/* ===========================
   DATAWINGS v0.1
=========================== */

:root{

    --bg:#08090b;
    --surface:#101216;
    --surface-2:#171a20;

    --text:#ffffff;
    --muted:#9aa3b2;

    --border:#252932;

    --accent:#7c5cff;
    --accent2:#9f7dff;

    --radius:18px;

    --shadow:
        0 10px 40px rgba(0,0,0,.35);

}

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Space Grotesk",sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.6;

}

a{

    color:inherit;

    text-decoration:none;

}

.container{

    width:min(1180px,92%);
    margin:auto;

}

/* ===========================
   HEADER
=========================== */

header{

    position:sticky;

    top:0;

    z-index:100;

    backdrop-filter:blur(18px);

    background:rgba(8,9,11,.78);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav{

    height:78px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:26px;

    font-weight:700;

    letter-spacing:-1px;

}

.logo-data{

    color:#cfd3db;

}

.logo-wings{

    color:white;

}

.logo-tech{

    background:linear-gradient(90deg,#7c5cff,#b48cff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

nav{

    display:flex;

    gap:34px;

}

nav a{

    color:var(--muted);

    transition:.25s;

}

nav a:hover{

    color:white;

}

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

.hero{

    padding:110px 0;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid rgba(124,92,255,.35);

    color:#cfc8ff;

    margin-bottom:28px;

}

.hero h1{

    font-size:68px;

    line-height:1.03;

    letter-spacing:-2px;

    margin-bottom:30px;

}

.hero p{

    font-size:20px;

    color:var(--muted);

    max-width:560px;

}

/* ===========================
BUTTONS
=========================== */

.buttons{

    margin-top:42px;

    display:flex;

    gap:18px;

}

.btn-primary{

    padding:16px 28px;

    border-radius:14px;

    background:linear-gradient(90deg,#7358ff,#9b7bff);

    color:white;

    font-weight:600;

    transition:.25s;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 35px rgba(124,92,255,.35);

}

.btn-secondary{

    padding:16px 28px;

    border-radius:14px;

    border:1px solid var(--border);

    color:white;

    transition:.25s;

}

.btn-secondary:hover{

    background:var(--surface);

}

/* ===========================
Dashboard
=========================== */

.dashboard{

    background:linear-gradient(
        180deg,
        #171a21,
        #0f1116);

    border:1px solid rgba(255,255,255,.05);

    border-radius:26px;

    padding:28px;

    box-shadow:var(--shadow);

}

.dashboard-header{

    display:flex;

    align-items:center;

    gap:12px;

    color:#d8d8d8;

    margin-bottom:30px;

}

.status-dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#3dff8b;

    box-shadow:0 0 12px #3dff8b;

}

.dashboard-card{

    background:var(--surface-2);

    border-radius:18px;

    padding:24px;

    margin-bottom:18px;

    border:1px solid rgba(255,255,255,.04);

}

.metric{

    color:var(--muted);

    margin-bottom:12px;

}

.value{

    font-size:42px;

    font-weight:700;

}

/* ===========================
SECTIONS
=========================== */

.section{

    padding:90px 0;

}

.section h2{

    font-size:46px;

    margin-bottom:50px;

    letter-spacing:-1px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}

.card{

    background:var(--surface);

    border-radius:22px;

    padding:34px;

    border:1px solid rgba(255,255,255,.05);

    transition:.25s;

}

.card:hover{

    transform:translateY(-6px);

    border-color:rgba(124,92,255,.35);

}

.card h3{

    font-size:26px;

    margin-bottom:18px;

}

.card p{

    color:var(--muted);

}

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

footer{

    border-top:1px solid rgba(255,255,255,.05);

    margin-top:70px;

}

.footer{

    height:100px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:var(--muted);

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:980px){

.hero-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr;

}

nav{

display:none;

}

.hero h1{

font-size:48px;

}

.dashboard{

margin-top:20px;

}

.buttons{

flex-direction:column;

}

}

/* ===========================
FADE ANIMATION
=========================== */

.hero,
.section,
.dashboard-card,
.card{

    opacity:0;

    transform:translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.visible{

    opacity:1;

    transform:translateY(0);

}