@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================
   RESET
========================= */

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


html,
body {
    width: 100%;
    height: 100%;
}


body {
    font-family: "Inter", sans-serif;
    background: #050509;
    color: white;
    overflow: hidden;
}


/* =========================
   THREE.JS CANVAS
========================= */

#bg {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -5;
}


/* =========================
   BACKGROUND
========================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(90, 70, 255, 0.08),
            transparent 45%
        );

    pointer-events: none;

    z-index: -4;
}


.background-glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: -3;
}


.glow-1 {
    top: -250px;
    left: -200px;

    background: rgba(96, 76, 255, 0.25);
}


.glow-2 {
    right: -250px;
    bottom: -250px;

    background: rgba(0, 200, 255, 0.15);
}


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

.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;

    position: relative;
}


.content {
    width: 100%;
    max-width: 900px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    animation: fadeUp 1.2s ease forwards;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.logo img {
    width: 75px;
    height: 75px;

    object-fit: contain;

    display: block;

    margin-bottom: 8px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;

    color: white;
}

/* =========================
   BADGE
========================= */

.badge {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

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

    border-radius: 100px;

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

    backdrop-filter: blur(10px);

    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;
    font-weight: 500;

    margin-bottom: 25px;
}


.badge-dot {
    width: 6px;
    height: 6px;

    background: #7cfc9a;

    border-radius: 50%;

    box-shadow: 0 0 10px #7cfc9a;
}


/* =========================
   HEADING
========================= */

h1 {
    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.95;

    letter-spacing: -6px;

    font-weight: 800;

    margin-bottom: 25px;
}


h1 span {
    background: linear-gradient(
        90deg,
        #8b7cff,
        #c09cff,
        #6ddcff
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================
   DESCRIPTION
========================= */

.description {
    color: rgba(255, 255, 255, 0.58);

    font-size: 16px;

    line-height: 1.7;

    max-width: 600px;

    margin-bottom: 30px;
}


/* =========================
   LAUNCH DATE
========================= */

.launch-date {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
}


.launch-date span {
    font-size: 10px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.4);
}


.launch-date strong {
    font-size: 13px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.9);
}


/* =========================
   COUNTDOWN
========================= */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 5px;
}


.time-card {
    width: 145px;
    height: 125px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    border-radius: 20px;

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

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

    backdrop-filter: blur(20px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease,
                border-color 0.3s ease;
}


.time-card:hover {
    transform: translateY(-8px);

    border-color: rgba(139, 124, 255, 0.5);
}


.time-card span {
    font-size: 48px;

    font-weight: 700;

    letter-spacing: -3px;

    line-height: 1;
}


.time-card small {
    margin-top: 10px;

    font-size: 9px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.4);
}


.separator {
    font-size: 25px;

    color: rgba(255, 255, 255, 0.25);

    margin-bottom: 15px;
}


/* =========================
   BOTTOM
========================= */

.bottom-text {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 10px;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.35);

    letter-spacing: 1px;
}


.line {
    width: 35px;
    height: 1px;

    background: rgba(255, 255, 255, 0.2);
}


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

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   MOBILE
========================= */

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

@media (max-width: 700px) {

    body {
        overflow: hidden;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
        padding: 15px;
    }

    .content {
        transform: scale(0.85);
        transform-origin: center center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo span {
        font-size: 20px;
    }

    .badge {
        margin-bottom: 18px;
        padding: 7px 12px;
    }

    h1 {
        font-size: 50px;
        letter-spacing: -3px;
        margin-bottom: 18px;
    }

    .description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .launch-date {
        margin-bottom: 15px;
    }

    .countdown {
        gap: 5px;
    }

    .time-card {
        width: 75px;
        height: 85px;
    }

    .time-card span {
        font-size: 27px;
    }

    .time-card small {
        font-size: 7px;
    }

    .separator {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .bottom-text {
        margin-top: 25px;
        font-size: 9px;
    }
}


/* Small-height screens */

@media (max-height: 700px) {

    .content {
        transform: scale(0.75);
    }

}


/* Very small screens */

@media (max-height: 600px) {

    .content {
        transform: scale(0.68);
    }

}