/* Brutalist-Glassmorphism Hero Styles - Pure CSS */
.hero-brutalist {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    font-family: 'Aspekta', -apple-system, system-ui, sans-serif;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layer 2: Dark overlay for contrast */
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.55);
    z-index: 10;
}

/* Layer 3-5: UI Elements & Layout */
.hero-content-wrapper {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 0 5%;
    margin-top: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

/* Left Section Typography & Structure */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-weight: 800;
    font-size: 72px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.neon-accent {
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.hero-subtitle {
    font-weight: 500;
    font-size: 20px;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Brutalist Buttons */
.btn-brutalist-primary,
.btn-brutalist-secondary {
    border: 2px solid #00d9ff;
    background: transparent;
    color: #f5f5f5;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    transition: all 0.3s ease;
}

.btn-brutalist-primary:hover,
.btn-brutalist-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.15);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
    transform: scale(1.05);
}

.btn-brutalist-secondary {
    border-color: #ff006e;
}

.btn-brutalist-secondary:hover {
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.15);
    text-shadow: 0 0 8px rgba(255, 0, 110, 0.5);
    transform: scale(1.05);
}

/* Right Section - Bento Grid */
.hero-right .bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Glassmorphism Cards */
.bento-card {
    position: relative;
    border: 2px solid #00d9ff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.35);
    border-color: #fff;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
    margin-top: 0;
}

.bento-micro {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
    margin: 0;
}

/* Base fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animations for Framer-Motion like delay */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.35s;
}

.delay-4 {
    animation-delay: 0.5s;
}

.delay-5 {
    animation-delay: 0.65s;
}

.delay-6 {
    animation-delay: 0.8s;
}

/* Mobile Breakpoints */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-brutalist-primary,
    .btn-brutalist-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-right .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content-wrapper {
        height: auto;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}