/* Divergence Hero Block - Front-end Styles */
:root {
    --dhb-primary: #773DFF;
    --dhb-secondary: #FC8AC8;
    --dhb-dark: #1E004B;
    --dhb-gradient: linear-gradient(135deg, #773DFF 0%, #FC8AC8 100%);
}

.divergence-hero-wrapper #hero {
    min-height: 100vh;
    padding: 110px 4% 80px;
    display: flex;
    align-items: center;
    background: var(--dhb-dark);
    position: relative;
    overflow: hidden;
}

.divergence-hero-wrapper .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.divergence-hero-wrapper .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: dhbBlobFloat 8s ease-in-out infinite;
}

.divergence-hero-wrapper .hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--dhb-primary);
    top: -150px;
    right: -100px;
}

.divergence-hero-wrapper .hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--dhb-secondary);
    bottom: -50px;
    left: 25%;
    animation-delay: -4s;
}

@keyframes dhbBlobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.04); }
}

.divergence-hero-wrapper .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.divergence-hero-wrapper .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(119, 61, 255, 0.18);
    border: 1px solid rgba(119, 61, 255, 0.35);
    color: #c4a8ff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.divergence-hero-wrapper .hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.divergence-hero-wrapper .gradient-text {
    background: var(--dhb-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divergence-hero-wrapper .hero-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.divergence-hero-wrapper .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.divergence-hero-wrapper .btn-primary {
    background: var(--dhb-gradient);
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.divergence-hero-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 61, 255, 0.35);
}

.divergence-hero-wrapper .btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.divergence-hero-wrapper .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.divergence-hero-wrapper .hero-visual {
    display: flex;
    justify-content: center;
}

.divergence-hero-wrapper .hero-mockup {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    animation: dhbBlobFloat 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .divergence-hero-wrapper .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .divergence-hero-wrapper .hero-actions {
        justify-content: center;
    }

    .divergence-hero-wrapper #hero {
        padding: 80px 4% 60px;
        min-height: auto;
    }
}
