/* ========================= */
/* GLOBAL */
/* ========================= */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    background: #060c18;
    color: #e6edf3;
}

/* LINKS */
a {
    text-decoration: none;
    color: #c9d1d9;
    transition: 0.2s;
}

a:hover {
    color: #2f81f7;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: rgba(6, 12, 24, 0.6);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 70px;
}

/* NAV LINKS */
nav {
    display: flex;
}

nav a {
    margin-left: 25px;
    font-size: 14px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #e6edf3;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
    text-align: center;
    padding: 100px 20px 80px;
    background: radial-gradient(circle at top, #0b1a35, #060c18);
}

.hero h1 {
    font-size: 44px;
    max-width: 850px;
    margin: auto;
    line-height: 1.3;
}

.hero p {
    margin-top: 20px;
    color: #9aa4b2;
}

.tagline {
    margin-top: 25px;
    font-size: 14px;
    color: #2f81f7;
}

/* HERO BADGES */
.hero-badges {
    margin-top: 25px;
}

.hero-badges span {
    display: inline-block;
    border: 1px solid #1f2a44;
    padding: 6px 12px;
    margin: 5px;
    font-size: 12px;
    color: #9aa4b2;
    border-radius: 20px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.button-group {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    margin: 8px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

.btn-primary {
    background: #2f81f7;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1f6feb;
}

.btn-secondary {
    border: 1px solid #2f81f7;
    color: #2f81f7;
}

.btn-secondary:hover {
    background: #2f81f7;
    color: #ffffff;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    font-size: 14px;
    color: #9aa4b2;
    flex-wrap: wrap;
}

.stats div {
    text-align: center;
}

.stats strong {
    font-size: 18px;
    color: #2f81f7;
}

/* ========================= */
/* CONTENT */
/* ========================= */

.container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* CARD */
.card {
    background: #0b162b;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #1f2a44;
    transition: 0.25s;
}

.card:hover {
    border-color: #2f81f7;
    transform: translateY(-4px);
}

.card h3 {
    margin-top: 0;
    color: #2f81f7;
}

.card p {
    font-size: 14px;
}

/* ========================= */
/* TEXT */
/* ========================= */

h2 {
    color: #2f81f7;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 12px;
}

ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

p, li {
    line-height: 1.8;
    color: #c9d1d9;
}

/* DIVIDER */
hr {
    margin: 40px 0;
    border: 0.5px solid #1f2a44;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
    text-align: center;
    padding: 40px;
    color: #8b949e;
    border-top: 1px solid #1f2a44;
    margin-top: 40px;
    font-size: 14px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .logo {
        height: 55px;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* MENU */
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #060c18;
        border-top: 1px solid #1f2a44;
        z-index: 1000;
    }

    nav a {
        margin: 0;
        padding: 14px;
        text-align: center;
        border-bottom: 1px solid #1f2a44;
    }

    /* HERO */
    .hero {
        padding: 70px 15px 50px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .tagline {
        font-size: 13px;
    }

    /* BUTTON STACK */
    .button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 90%;
    }

    /* STATS STACK */
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}