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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0c0c;
    color: #fafafa;
    -webkit-font-smoothing: antialiased;
}

.hero {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 36rem;
}

.greetings {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.05em;
}

.greetings > span {
    display: inline-block;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        color: #fafafa;
        text-shadow: 0 0 20px rgba(236, 72, 153, 0.4), 0 0 40px rgba(236, 72, 153, 0.2);
    }
    50% {
        color: #f472b6;
        text-shadow: 0 0 24px rgba(236, 72, 153, 0.5), 0 0 48px rgba(236, 72, 153, 0.25);
    }
}

.greetings > span:nth-child(1) { animation-delay: 0s; }
.greetings > span:nth-child(2) { animation-delay: 0.1s; }
.greetings > span:nth-child(3) { animation-delay: 0.2s; }
.greetings > span:nth-child(4) { animation-delay: 0.3s; }
.greetings > span:nth-child(5) { animation-delay: 0.4s; }

.description {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    font-weight: 500;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fafafa;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid rgba(244, 114, 182, 0.5);
    border-radius: 9999px;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.cta:hover {
    border-color: #f472b6;
    background: rgba(244, 114, 182, 0.08);
    transform: translateY(-1px);
}

.cta:active {
    transform: translateY(0);
}

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

    .greetings {
        gap: 0.02em;
    }

    .description {
        margin-bottom: 1.5rem;
    }
}
