/* ==========================================
   TAGLINE SECTION
   ========================================== */

.tagline-section {
    padding-inline: 48px;
    text-align: center;
}

.tagline-inner {
    min-height: 286px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: var(--dark-text);
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 120%;
    letter-spacing: -0.03em;
}

.tagline-typed {
    display: inline-flex;
    align-items: baseline;
    min-height: 1.2em;
}

.tagline-gradient {
    background: linear-gradient(192.4deg, #6322ff 2.8%, #b080e3 59.2%, #fecfbd 96.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-cursor {
    display: inline-block;
    color: #8249f2;
    animation: blink 0.75s step-end infinite;
    transition: opacity 0.6s ease;
    font-weight: 400;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media (max-width: 1344px) {
    .tagline-section {
        padding-inline: 16px;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tagline-inner {
        min-height: 0;
        flex-direction: column;
        white-space: normal;
        font-size: 48px;
    }
}

@media (max-width: 650px) {
    .tagline-section{
        padding-top: 48px!important;
        min-height: auto;
        padding-bottom: 10px;
    }

    .tagline-inner {
        font-size: 28px;
    }
}
