.hero-neon-burst {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/hero13.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    overflow: hidden;
    margin-top: 5%;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    padding: var(--space-8) var(--container-padding);
    aspect-ratio: 16/9;
    min-height: 500px;
}

@media screen and (max-width: 480px) {
    .hero-neon-burst {
        aspect-ratio: 4/3;
        min-height: 650px;
        padding: var(--space-6) var(--container-padding);
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        margin-top: 3%;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-neon-burst {
        aspect-ratio: 3/2;
        min-height: 650px;
        padding: var(--space-10) var(--container-padding);
        border-top-left-radius: 80px;
        border-top-right-radius: 80px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-neon-burst {
        aspect-ratio: 16/9;
        margin-top: 10%;
        min-height: 600px;
        padding: var(--space-12) var(--container-padding);
    }
}

@media screen and (min-width: 1025px) {
    .hero-neon-burst {
        aspect-ratio: 21/9;
        min-height: 700px;
        margin-top: 7%;
        max-height: 90vh;
        padding: var(--space-12) var(--container-padding);
    }
}

.hero-content {
    margin-top: -6% !important;
}

@media screen and (min-width: 1440px) {
    .hero-neon-burst {
        aspect-ratio: 21/9;
        min-height: 900px;
        max-height: 105vh;
        margin-top: 5%;
    }
}

.hero-neon-burst .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    padding: var(--space-8) 10%;
}

@media screen and (max-width: 768px) {
    .hero-neon-burst .container {
        padding: var(--space-6) 5%;
    }
}

@media screen and (min-width: 1024px) {
    .hero-neon-burst .container {
        padding: var(--space-12) 15%;
        transform: translateY(-5%);
    }
}

@media screen and (min-width: 1440px) {
    .hero-neon-burst .container {
        padding: var(--space-16) 20%;
        transform: translateY(-3%);
    }
}

.hero-headline-animated {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: var(--fw-black);
    text-transform: uppercase;
    line-height: var(--lh-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .hero-headline-animated {
        font-size: clamp(2.5rem, 12vw, 1.8rem);
        margin-bottom: var(--space-4);
        line-height: 0.9;
    }
}

@media screen and (max-width: 375px) {
    .hero-headline-animated {
        font-size: clamp(3rem, 15vw, 2rem);
        line-height: 0.85;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-headline-animated {
        font-size: clamp(2.25rem, 6vw, 2rem);
        margin-bottom: var(--space-6);
    }
}

@media screen and (min-width: 769px) {
    .hero-headline-animated {
        font-size: clamp(3rem, 5vw, 6rem);
        margin-bottom: var(--space-8);
        line-height: 1;
    }
}

@media screen and (min-width: 1440px) {
    .hero-headline-animated {
        font-size: clamp(4rem, 6vw, 6rem);
        line-height: 1;
    }
}

@media screen and (min-width: 1920px) {
    .hero-headline-animated {
        font-size: clamp(5rem, 7vw, 6rem);
        line-height: 1;
    }
}

.headline-word {
    display: block;
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .headline-word {
        white-space: normal;
        word-break: break-word;
    }
}

.headline-word.highlight {
    color: var(--brand-yellow-primary);
    text-shadow: 2px 2px 0px var(--brand-red-primary);
}

@media screen and (min-width: 768px) {
    .headline-word.highlight {
        text-shadow: 3px 3px 0px var(--brand-red-primary);
    }
}

.char {
    display: inline-block;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: popIn 0.6s var(--ease-back) forwards;
    animation-delay: calc(var(--delay) * 50ms);
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-neon-burst .hero-subheadline,
.hero-neon-burst .hero-cta-group {
    opacity: 0;
    animation: popIn 1s var(--ease-out) forwards;
}

.hero-neon-burst .hero-subheadline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin: 0 auto var(--space-8) auto;
    max-width: 600px;
    animation-delay: calc(30 * 50ms);
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .hero-neon-burst .hero-subheadline {
        font-size: clamp(0.875rem, 3vw, 1.125rem);
        margin-bottom: var(--space-6);
        max-width: 100%;
    }
}

.hero-neon-burst .hero-cta-group {
    animation-delay: calc(32 * 50ms);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

@media screen and (min-width: 768px) {
    .hero-neon-burst .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-6);
    }
}

.hero-neon-burst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero13.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .hero-neon-burst::before {
        background-size: cover;
        background-position: center center;
    }
}

@media screen and (min-width: 1920px) {
    .hero-neon-burst {
        max-height: 115vh;
    }
}