/*
 * GENIAL HERO SECTION - Pacmora-Inspired Dark + Lime Green
 * Dark hero with big bold typography and geometric visuals
 */

/* ========================================
   BASE HERO
   ======================================== */
.genial-hero {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
}

.min-vh-65 {
    min-height: 65vh;
}

/* Grid background */
.genial-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(211, 255, 82, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 255, 82, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 100%);
}

/* Ambient glow at top-right */
.genial-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 255, 82, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* ========================================
   BADGE (trust line)
   ======================================== */
.genial-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.genial-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D3FF52;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(211, 255, 82, 0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(211, 255, 82, 0); }
}

/* ========================================
   HEADLINE
   ======================================== */
.genial-hero__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.0;
    color: #ffffff;
    margin: 0 0 28px 0;
    letter-spacing: -2px;
    font-style: italic;
}

.genial-hero__title--accent {
    color: #D3FF52;
}

/* ========================================
   SUBTITLE
   ======================================== */
.genial-hero__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 460px;
    margin-bottom: 40px;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.genial-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.genial-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.genial-hero__btn--primary {
    background: #D3FF52;
    color: #000000;
    border: 2px solid #D3FF52;
}

.genial-hero__btn--primary:hover {
    background: #c4f038;
    border-color: #c4f038;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(211, 255, 82, 0.3);
    transform: translateY(-2px);
}

.genial-hero__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.genial-hero__btn--outline:hover {
    border-color: #D3FF52;
    color: #D3FF52;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ========================================
   RIGHT SIDE VISUAL
   ======================================== */
.genial-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 450px;
}

.genial-hero__visual-box {
    position: relative;
    width: 420px;
    height: 420px;
}

.genial-hero__visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Geometric shapes */
.genial-hero__shape {
    position: absolute;
    border: 2px solid rgba(211, 255, 82, 0.4);
}

.genial-hero__shape--1 {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    transform: rotate(15deg);
    animation: float-shape1 8s ease-in-out infinite;
}

.genial-hero__shape--2 {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border-color: rgba(211, 255, 82, 0.15);
    animation: float-shape2 10s ease-in-out infinite;
}

.genial-hero__shape--3 {
    width: 160px;
    height: 160px;
    border-radius: 4px;
    transform: rotate(-30deg);
    border-color: rgba(211, 255, 82, 0.25);
    animation: float-shape3 6s ease-in-out infinite;
}

.genial-hero__glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(211, 255, 82, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes float-shape1 {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(20deg) translateY(-15px); }
}

@keyframes float-shape2 {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes float-shape3 {
    0%, 100% { transform: rotate(-30deg) translateX(0); }
    50% { transform: rotate(-25deg) translateX(10px); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Center label */
.genial-hero__visual-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.genial-hero__visual-label {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #D3FF52;
    letter-spacing: 6px;
    text-shadow: 0 0 40px rgba(211, 255, 82, 0.3);
}

.genial-hero__visual-sublabel {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    margin-top: 8px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .genial-hero {
        padding: 40px 0 50px;
    }
    .genial-hero__title {
        font-size: clamp(36px, 8vw, 56px);
        letter-spacing: -1px;
    }
    .genial-hero__subtitle {
        font-size: 15px;
    }
    .min-vh-65 {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .genial-hero {
        padding: 30px 0 40px;
    }
    .genial-hero__title {
        font-size: 36px;
    }
    .genial-hero__btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .genial-hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
