/* Hero section - Dark premium landing page */
.heroSection-a64edad {
    --hero-bg: #0d0d14;
    --hero-bg-secondary: #111118;
    --hero-primary: rgb(147, 197, 253);
    --hero-primary-light: rgb(200, 220, 255);
    --hero-text: rgba(255, 255, 255, 0.95);
    --hero-muted: rgba(255, 255, 255, 0.5);
    --hero-border: rgba(255, 255, 255, 0.1);
    --hero-gold: rgb(163, 138, 80);

    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: var(--hero-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

/* Subtle grid pattern */
.gridPattern-a64edad {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Content wrapper */
.contentWrapper-a64edad {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 48rem;
    gap: 1.5rem;
}

/* Pill badge */
.pillBadge-a64edad {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid var(--hero-border);
    backdrop-filter: blur(12px);
    position: relative;
}

.pingDot-a64edad {
    position: absolute;
    left: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--hero-primary);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pingDotStatic-a64edad {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--hero-primary);
}

.badgeText-a64edad {
    font-size: 0.875rem;
    color: var(--hero-muted);
    letter-spacing: 0.02em;
}

@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Logo section with glow effects */
.logoContainer-a64edad {
    position: relative;
    padding: 2rem;
    margin: 1rem 0;
}

.logoGlowOuter-a64edad {
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        ellipse at center,
        rgba(147, 197, 253, 0.25) 0%,
        transparent 70%
    );
    transform: scale(2.5);
    filter: blur(80px);
    animation: breathe 6s ease-in-out infinite;
    pointer-events: none;
}

.logoGlowMid-a64edad {
    position: absolute;
    inset: -30%;
    background: radial-gradient(
        ellipse at center,
        rgba(200, 220, 255, 0.35) 0%,
        transparent 65%
    );
    transform: scale(1.8);
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.logoGlowInner-a64edad {
    position: absolute;
    inset: -10%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    filter: blur(20px);
    pointer-events: none;
}

.logo-a64edad {
    position: relative;
    width: 600px;
    height: auto;
    color: var(--hero-text);
    z-index: 1;
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(2.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(2.7);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1.8);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.9);
    }
}

/* Headline */
.headline-a64edad {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 300;
    color: var(--hero-text);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.gradientText-a64edad {
    background: linear-gradient(
        90deg,
        rgb(147, 197, 253) 0%,
        rgb(200, 220, 255) 50%,
        rgb(147, 197, 253) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Description */
.description-a64edad {
    font-size: 1.125rem;
    color: var(--hero-muted);
    line-height: 1.7;
    max-width: 36rem;
    margin: 0;
}

/* Form container */
.formContainer-a64edad {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 28rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .formContainer-a64edad {
        flex-direction: row;
    }
}

/* Email input with glass effect */
.emailInput-a64edad {
    flex: 1;
    height: 3.5rem;
    padding: 0 1.25rem;
    background: rgba(30, 30, 40, 0.2);
    border: 1px solid var(--hero-border);
    border-radius: 0.75rem;
    backdrop-filter: blur(24px);
    color: var(--hero-text);
    font-size: 1rem;
    transition: all 0.5s ease;
    outline: none;
}

.emailInput-a64edad::placeholder {
    color: var(--hero-muted);
}

.emailInput-a64edad:focus {
    border-color: rgba(147, 197, 253, 0.3);
    background: rgba(30, 30, 40, 0.3);
    box-shadow: 0 0 30px rgba(147, 197, 253, 0.1);
}

/* Request button */
.requestButton-a64edad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.5rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-primary-light) 100%);
    border: none;
    border-radius: 0.75rem;
    color: #0d0d14;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.requestButton-a64edad:hover,
.requestButtonHovered-a64edad {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(147, 197, 253, 0.3);
}

.buttonText-a64edad {
    transition: transform 0.3s ease;
}

.buttonArrow-a64edad {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.requestButton-a64edad:hover .buttonArrow-a64edad,
.requestButtonHovered-a64edad .buttonArrow-a64edad {
    transform: translateX(4px);
}

/* Equitativa section positioning */
.equitativaSection-a64edad {
    margin-top: 3rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.equitativaSection-a64edad:hover {
    opacity: 1;
}

/* Bottom gradient fade */
.bottomGradient-a64edad {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--hero-bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .heroSection-a64edad {
        padding: 1.5rem;
    }

    .contentWrapper-a64edad {
        gap: 1.25rem;
    }

    .logoContainer-a64edad {
        padding: 1rem;
    }

    .logo-a64edad {
        max-width: 280px;
    }

    .description-a64edad {
        font-size: 1rem;
    }

    .emailInput-a64edad,
    .requestButton-a64edad {
        width: 100%;
    }
}

/* Success/Error messages */
.successMessage-a64edad {
    color: #4ade80;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.errorMessage-a64edad {
    color: #f87171;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Disabled states */
.emailInput-a64edad:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.requestButton-a64edad:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
