.hero{
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1{
    max-width: 100%;
    margin: 0 0 3rem;
    font-size: var(--font-size-xxl);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    background: var(--text-fifthly);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle{
    margin: 0 0 3rem;
    font-size: 2.25rem;
    color: var(--text-primary, #1b2125);
    font-weight: 700;

    animation: fadeInUp 0.6s ease-out forwards;
}

.microcopy{
    margin: 0 0 var(--space-xxl);
    color: var(--text-secondary, #9aa5ad);
    font-weight: 500;
    font-size: var(--font-size-xl);
    line-height: 120%;

    animation: fadeInUp 0.6s ease-out forwards;
}


.cta-buttons{
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.btn.btn-primary.btn-lg{
    padding: var(--space-md) 1.75rem;
    border-radius: 5px;
    font-size: var(--font-size-xxl);
    font-weight: 600;
    color: #FFFFFF;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    box-shadow: 2px 2px 10px 3px #ffffff33;
    background: radial-gradient(167.66% 167.66% at 50% 50%, #2FBED2 0%, #18626C 100%);
}
.btn.btn-primary.btn-lg i{ margin-left: 8px; }

.hero-visual{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 42px;
    position: relative;
}

.chat-bubble{
    position: relative;
    margin: 0 auto;
    padding: 1rem 12.5rem 1rem 1rem;
    border-radius: 15px 15px 15px 0;
    color: var(--text-primary);
    background: var(--accent-primary-hover);
    background-clip: padding-box, border-box;
    box-shadow: 2px 2px 10px 3px #ffffff33;
}

.chat-bubble::before{
    content:"";
    position:absolute; inset: 2px 2px auto 2px;
    height: 46%;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(to bottom, rgba(255,255,255,.18), rgba(255,255,255,0));
    pointer-events: none;
}

.chat-header{ display: contents; }
.ai-name{ display: none; }

.ai-avatar{
    position: absolute;
    left: -70px;
    bottom: -55px;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, var(--accent-primary, #38d5e6), #20b9c9);
}

.chat-content p{
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: 500;
    color: #ffffff;
    line-height: 120%;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
