.hero {
    position: relative;
    padding-top: var(--space-xl);
}

.hero::before {
    content: '';
    position: absolute;
    right: 8%;
    top: -60px;
    width: 180px;
    height: 180px;
    border: 18px solid rgba(0, 217, 255, 0.18);
    transform: rotate(45deg);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 0;
    height: 0;
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    border-top: 220px solid rgba(255, 190, 11, 0.18);
    z-index: 0;
}

.hero__layout {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero__content {
    width: 100%;
    max-width: none;
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    margin-bottom: var(--space-xxs);
}

.hero__content::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -50px;
    width: 120px;
    height: 120px;
    border: 6px solid rgba(255, 46, 99, 0.35);
    border-radius: 50%;
    z-index: -1;
}

.hero__title {
    position: relative;
    padding-bottom: var(--space-xxs);
}

.hero__title::after {
    content: '';
    position: absolute;
    bottom: -0.65rem;
    left: 12px;
    width: clamp(180px, 45%, 320px);
    height: 12px;
    background: var(--color-primary);
    clip-path: polygon(0 0, 97% 0, 100% 100%, 3% 100%);
}

.hero__title::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -28px;
    width: 68px;
    height: 68px;
    border: 4px solid var(--color-yellow);
    transform: rotate(45deg);
}

.hero__lead {
    margin-top: var(--space-xs);
    color: rgba(232, 232, 232, 0.82);
}

.hero__actions {
    margin-top: var(--space-sm);
}

.hero__badge-group {
    margin-top: var(--space-xs);
}

.hero__media {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-card {
    --u-card-bevel: var(--shape-card-bevel-lg);
    background: var(--color-surface);
    border-color: #ffffff;
    border-right-width: 8px;
    box-shadow: var(--shadow-primary);
    padding: var(--space-sm);
    width: 100%;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -18px;
    right: 68px;
    width: 90px;
    height: 8px;
    background: var(--color-cyan);
}

.hero-card::after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: 80px;
    width: 10px;
    height: 110px;
    background: var(--color-yellow);
}

.hero-card__badge {
    margin-bottom: var(--space-xxs);
    color: #ffffff;
}

.hero-card__media {
    border: 3px solid var(--color-border-strong);
    overflow: auto;
    max-height: clamp(320px, 60vh, 520px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45);
    background: var(--color-background-strong);
}

.hero-card__media::-webkit-scrollbar {
    width: 10px;
}

.hero-card__media::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.hero-card__media::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 12px;
}

.hero-card__image {
    display: block;
    width: 100%;
}

.hero-card__body {
    --u-stack-gap: 0.45rem;
}

.hero-card__title {
    margin: 0;
}

.hero-card__summary {
    margin: 0;
    color: rgba(232, 232, 232, 0.78);
}

.hero-card__list-item {
    color: inherit;
}

@media (min-width: 768px) {
    .hero__layout {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hero__content {
        max-width: 720px;
    }

}


@media (min-width: 1025px) {
    .hero__layout {
        flex-wrap: nowrap;
    }
    
    .hero__media {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .hero__content::after,
    .hero__title::before {
        display: none;
    }

    .hero__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero::before,
    .hero::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero__layout {
        text-align: center;
    }
}

