/* About Page - Hero Section */

/* ======= Hero Section ======= */
.about-hero {
    position: relative;
    color: var(--color-text-primary);
    padding: 10rem 0 8rem;
    overflow: hidden;
    margin-top: -82px;
    padding-top: 16rem;
    background-color: var(--color-background);
}

.cyber-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 178, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridPulse 4s infinite alternate;
    z-index: 1;
}

@keyframes gridPulse {
    0% {
        opacity: 0.5;
        background-size: 20px 20px;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
        background-size: 22px 22px;
    }
}

.hero-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    color: var(--color-text-primary);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding-bottom: 0.5rem;
}

/* Text gradient styling to match products page */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-secondary);
}

.highlight-text {
    color: var(--color-accent);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 178, 0.5);
}

.hero-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 3rem auto 0;
    perspective: 1000px;
    z-index: 2;
}

.cyber-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: center;
    animation: rotateCube 15s infinite linear;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 178, 0.1);
    border: 1px solid rgba(0, 255, 178, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 178, 0.2) inset;
    backface-visibility: visible;
}

.cube-face.front {
    transform: translateZ(100px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(100px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(100px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(100px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

.cube-face::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(0, 255, 178, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 178, 0.1);
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 255, 178, 0.05),
        rgba(0, 255, 178, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
}

.cube-face::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 255, 178, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 178, 0.5);
}

@keyframes rotateCube {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

/* Subtle hero overlay for about section */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 178, 0.1) 0%, transparent 70%);
    z-index: 1;
} 