/* =========================================
   HERO WIDGETS
   ========================================= */

.base-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0 4rem;
    position: relative;
    z-index: 10;
    text-align: center;
    background: radial-gradient(circle 150% 80% at 50% 0%, rgba(248, 250, 252, 0.08) 0%, rgba(248, 250, 252, 0.02) 30%, transparent 65%),
                radial-gradient(ellipse 130% 100% at 50% 100%, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 45%, rgba(2, 6, 23, 0.2) 75%, transparent 100%),
                radial-gradient(ellipse 110% 90% at 50% 50%, rgba(2, 6, 23, 0.4) 0%, transparent 60%),
                var(--color-background);
    border-radius: 1.5rem;
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.base-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(2, 6, 23, 0.15) 25%,
        rgba(2, 6, 23, 0.45) 55%,
        rgba(2, 6, 23, 0.8) 85%,
        rgba(2, 6, 23, 0.9) 100%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .base-hero {
        flex-direction: row;
        text-align: left;
        padding: 2px 0 5rem;
        gap: 50px;
    }
}

.base-hero-content {
    flex: 1;
    max-width: 600px;
    padding: 3px;
}

.base-hero-visual {
    flex: 0 0 auto;
    position: relative;
    perspective: 1000px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-hero-image-wrapper {
    position: relative;
    transform: rotateY(-5px) rotateX(2px);
    transition: transform 0.5s ease;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: inline-block;
}

.base-hero-image-wrapper:hover {
    transform: rotateY(-2px) rotateX(1px);
}

.base-hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

@media (min-width: 1024px) {
    .base-hero-image {
        max-height: 420px;
    }
}

.base-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Badge specific to hero usually */
.base-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(15, 118, 110, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 2rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.base-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
}