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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, #0066d6 0%, transparent 35%),
        linear-gradient(135deg, #0057B8, #00152e);

    color: white;

    font-family: Arial, sans-serif;

    min-height: 100vh;
}


/* NAVBAR */

.navbar {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 7%;

    position: sticky;

    top: 0;

    z-index: 100;

    background: rgba(0, 31, 63, 0.75);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
}


.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {

    display: flex;

    gap: 30px;
}


.nav-links a {

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: 0.2s;
}


.nav-links a:hover {

    color: #FFCD00;
}


/* HERO */

.hero {

    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255, 205, 0, 0.12);

    border-radius: 50%;

    filter: blur(80px);

    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {

    0% {
        transform: translate(-200px, -100px);
    }

    50% {
        transform: translate(200px, 100px);
    }

    100% {
        transform: translate(-200px, -100px);
    }

}

.hero-content {

    max-width: 900px;
    position: relative;
    z-index: 1;
}


.eyebrow {

    color: #FFCD00;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 20px;
}


.hero h1 {

    font-size: clamp(70px, 13vw, 150px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: 8px;

    color: #FFCD00;

    text-shadow:

        0 0 20px rgba(255,205,0,0.4),

        0 0 50px rgba(255,205,0,0.2);
}


.subtitle {

    font-size: clamp(20px, 4vw, 38px);

    margin-top: 30px;

    letter-spacing: 5px;
}


.hero p {

    font-size: 22px;

    margin: 25px 0 35px;

    color: #d8e8ff;
}


/* BUTTONS */

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


button,
.secondary-button {

    display: inline-block;

    background: #FFCD00;

    color: #0057B8;

    border: none;

    padding: 16px 30px;

    font-size: 16px;

    font-weight: 900;

    border-radius: 40px;

    cursor: pointer;

    text-decoration: none;

    transition: 0.25s;
}


button:hover,
.secondary-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(255,205,0,0.3);
}


.secondary-button {

    background: transparent;

    color: white;

    border: 2px solid rgba(255,255,255,0.4);
}


.secondary-button:hover {

    border-color: #FFCD00;

    color: #FFCD00;

    box-shadow: none;
}


/* SECTIONS */

.section {

    max-width: 1100px;

    margin: auto;

    padding: 100px 25px;

    text-align: center;
}


.section h2 {

    color: #FFCD00;

    font-size: clamp(30px, 5vw, 50px);

    margin-bottom: 20px;
}


.section-description {

    color: #c8d8ec;

    margin-bottom: 40px;
}


/* STATS */

.stats {

    display: grid;

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

    gap: 20px;

    margin-top: 40px;
}


.stat-card {

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 20px;

    padding: 30px;

    backdrop-filter: blur(10px);

    transition: 0.25s;
}


.stat-card:hover {

    transform: translateY(-5px);

    border-color: #FFCD00;
}


.stat-label {

    display: block;

    color: #9fb7d2;

    font-size: 13px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.stat-value {

    display: block;

    font-size: 32px;

    font-weight: 900;
}


.positive {

    display: block;

    color: #45e38a;

    margin-top: 5px;

    font-weight: bold;
}


.demo-warning {

    margin-top: 30px;

    font-size: 14px;

    color: #ffdd70;
}


/* FEATURES */

.feature-grid {

    display: grid;

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

    gap: 20px;

    margin-top: 50px;
}


.feature-card {

    background: rgba(255,255,255,0.06);

    padding: 35px;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.1);

    font-size: 40px;
}


.feature-card h3 {

    font-size: 22px;

    margin: 15px 0 10px;

    color: #FFCD00;
}


.feature-card p {

    font-size: 16px;

    color: #c8d8ec;
}


/* ROADMAP */

.roadmap {

    max-width: 700px;

    margin: 50px auto 0;

    text-align: left;
}


.roadmap-item {

    display: flex;

    gap: 25px;

    padding: 25px;

    margin-bottom: 15px;

    background: rgba(255,255,255,0.06);

    border-radius: 15px;

    border-left: 4px solid #426b94;
}


.roadmap-item.completed {

    border-left-color: #45e38a;
}


.roadmap-number {

    font-size: 25px;

    font-weight: 900;

    color: #FFCD00;
}


.roadmap-item h3 {

    margin-bottom: 5px;
}


.roadmap-item p {

    font-size: 16px;

    color: #a9bfd8;
}


/* COMING SOON */

.coming-soon {

    text-align: center;

    padding: 120px 20px;

    background:

        linear-gradient(

            rgba(0,87,184,0.8),

            rgba(0,31,63,0.9)

        );
}


.coming-soon h2 {

    color: #FFCD00;

    font-size: 50px;

    margin-bottom: 20px;
}


.coming-soon p {

    color: #c8d8ec;

    font-size: 20px;
}


/* FOOTER */

footer {

    text-align: center;

    padding: 40px;

    color: #8fa7c0;

    font-size: 14px;
}

/* HERO LOGO */

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: floatLogo 4s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(255, 205, 0, 0.25),
        0 0 80px rgba(255, 205, 0, 0.15);
}

@keyframes floatLogo {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/* COMMUNITY */

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.community-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.25s;
}

.community-card:hover {
    transform: translateY(-6px);
    border-color: #FFCD00;
}

.community-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.community-card h3 {
    color: #FFCD00;
    margin-bottom: 10px;
    font-size: 22px;
}

.community-card p {
    color: #c8d8ec;
    line-height: 1.6;
}

.community-note {
    margin-top: 40px;
    color: #9fb7d2;
    font-size: 15px;
}

/* MOBILE */

@media (max-width: 700px) {

    .community-grid {
    grid-template-columns: 1fr;
    }

    .nav-links {

        display: none;
    }


    .stats {

        grid-template-columns: 1fr;
    }


    .feature-grid {

        grid-template-columns: 1fr;
    }


    .hero {

        min-height: 70vh;
    }


    .hero h1 {

        letter-spacing: 3px;
    }


    .section {

        padding: 70px 20px;
    }

}

