
body {
    height: 100svh;
    margin: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(76, 87, 28, 0.8), transparent 50%),
        radial-gradient(circle at 80% 135%, rgba(82, 29, 72, 0.8), transparent 50%),
        radial-gradient(circle at center, #0b2b3e, #060c12);
    overflow: hidden;
    position: relative;
    z-index: 2;
    text-align: center;
    align-content: center !important;
}

.greet {
    font-family: "aktiv-grotesk-extended", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(2rem, 8vw, 4rem);
    color: transparent;
    background: radial-gradient(#fff, #c0cfd3);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 4s ease-in-out infinite;
}

.tagline {
    font-family: "aktiv-grotesk-extended", sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.2em;
    animation: fadeIn 2s ease-out;
}

.stars-container {
    position: absolute;
}

span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 6px rgba(255, 255, 255, 0.1), 0 0 12px rgba(255, 255, 255, 0.1);
    animation: animate 3s linear infinite;
    opacity: 0;
}

span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}


/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes animate {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}