.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: 520px;
    margin: 0 calc(clamp(16px, 4vw, 40px) * -1) 18px;
    padding: clamp(44px, 7vw, 78px) clamp(24px, 6vw, 72px);
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 52%, rgba(154, 38, 170, 0.34), transparent 28%),
        linear-gradient(135deg, #171717 0%, #2d2c2b 52%, #f6f2ed 52%, #ffffff 100%);
    box-shadow: 0 24px 68px rgba(33, 31, 28, 0.16);
}

.eyebrow {
    color: #d94df0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero h1 {
    color: #ffffff;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.hero .lead {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-actions .button-link {
    min-width: 154px;
    background: #9a26aa;
}

.hero-actions .button-link:hover {
    background: #7f1d8f;
}

.hero-actions .button-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hero-actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-media {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    align-self: stretch;
    min-height: 380px;
}

.hero-logo {
    width: 100%;
    max-width: 390px;
    max-height: 460px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    filter: none;
    transition: transform 220ms ease;
}

.hero-logo:hover {
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
}

.hero-stats a {
    display: block;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 4px solid #9a26aa;
    border-radius: 8px;
    background: rgba(28, 28, 30, 0.88);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    backdrop-filter: blur(12px);
}

.hero-stats a:hover {
    border-color: rgba(154, 38, 170, 0.52);
    box-shadow: 0 22px 52px rgba(154, 38, 170, 0.18);
    transform: translateY(-3px);
}

.hero-stats strong {
    display: block;
    color: #d94df0;
    font-size: 34px;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

@media (max-width: 760px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 34px 20px;
        background:
            radial-gradient(circle at 50% 42%, rgba(154, 38, 170, 0.3), transparent 36%),
            linear-gradient(180deg, #171717 0%, #303030 100%);
    }

    .hero-logo {
        max-width: min(100%, 310px);
    }

    .hero-media {
        min-height: 300px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}
