@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,100;0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- Hero ---- */

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-image: url('./assets/dots.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-gradient {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
    background: linear-gradient(180deg, #000 23%, rgba(0, 0, 0, 0) 87%, #000 97%);
}

.purple-bg-grad {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    height: 120px;
    width: 120px;
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
    border-radius: 50%;
}

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

/* ---- Wordmark ---- */

.wordmark {
    width: 220px;
    height: auto;
    margin-bottom: 3.25rem;
    border-radius: 12px;
    opacity: 0.92;
}

/* ---- Heading ---- */

.hero-title {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 90px;
}

.hero-title-sub {
    font-weight: 100;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    text-transform: none;
}

/* ---- Description ---- */

.hero-description {
    margin-top: 2rem;
    max-width: 450px;
    font-size: 1.125rem;
    padding: 0.5rem;
    text-align: center;
    color: #fff;
}

/* ---- Coming Soon ---- */

.coming-soon-wrap {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-badge {
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: default;
    user-select: none;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Responsive: 375×667 target ---- */

@media (max-width: 480px) {
    .hero-bg-gradient {
        padding: 2rem 1.5rem;
    }

    .wordmark {
        width: 140px;
        margin-bottom: 2.25rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-description {
        margin-top: 1.25rem;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .coming-soon-wrap {
        margin-top: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .wordmark {
        width: 180px;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}
