/**
 * =====================================================================================
 * HELLA 3D MANAGEMENT SUITE: ABOUT PAGE STYLESHEET
 * =====================================================================================
 * @file        about.css
 * @description Optimized stylesheet for value proposition grids and company story layouts.
 * @version     1.0.0
 * @cleared     Jul 5, 2026
 * * ARCHITECTURE OVERVIEW:
 * 1. CSS Grid & Flexbox: Utilizes responsive CSS Grid for value props and Flexbox 
 * for the story section to ensure perfect wrapping on all screen sizes.
 * 2. Performance Overrides: Pauses global background blob animations, replacing 
 * them with isolated, localized keyframes (e.g., float-slow) for specific imagery.
 * 3. Liquid Glassmorphism: Applies standard backdrop-filter logic to story containers.
 * =====================================================================================
 */

.smooth-scroll { scroll-behavior: smooth; }

/* --- 1. PERFORMANCE OVERRIDES & BACKGROUND --- */
.h3d-liquid-bg {
    isolation: isolate; 
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.h3d-liquid-bg .blob {
    animation: none !important;
    transition: none !important;
    transform: translate3d(0, 0, 0); 
}

.page-main-content {
    position: relative;
    z-index: 10; 
    padding-top: 80px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* --- 2. ABOUT HERO SECTION --- */
.about-hero {
    text-align: center;
    max-width: 1000px;
    width: calc(100% - 40px);
    margin: 0 auto 5rem auto;
}

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-hero h1 span { color: #ff3b3b; }

.about-hero p {
    font-size: 1.25rem;
    color: #b0b0b0;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* --- 3. VALUE PROPOSITION GRID --- */
.about-grid-container {
    max-width: 1400px;
    width: calc(100% - 40px);
    margin: 0 auto 8rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-card {
    background-color: var(--glass-bg);
    background-image: var(--glass-noise);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 59, 59, 0.4);
}

.about-icon {
    width: 64px;
    height: 64px;
    color: #ff3b3b;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* --- 4. THE STORY SECTION --- */
.story-section {
    max-width: 1400px;
    width: calc(100% - 40px);
    margin: 0 auto 6rem auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    background-color: var(--glass-bg);
    background-image: var(--glass-noise);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 32px;
    padding: 5rem;
}

.story-content { flex: 1; }

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.15rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content p strong {
    color: #ffffff;
    font-weight: 600;
}

.story-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    /* Mild floating animation */
    animation: float-slow 8s ease-in-out infinite; 
}

@keyframes float-slow { 
    0% { transform: translateY(0px); } 
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0px); } 
}

/* --- 5. RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .about-grid-container { gap: 1.5rem; }
    .story-section { gap: 3rem; padding: 4rem; }
}

@media (max-width: 968px) {
    .about-hero h1 { font-size: 3rem; }
    .about-grid-container { grid-template-columns: 1fr; max-width: 600px; }
    .story-section { flex-direction: column-reverse; padding: 3rem 2rem; gap: 3rem; text-align: center; }
}

@media (max-width: 600px) {
    .about-hero h1 { font-size: 2.5rem; }
    .about-hero p { font-size: 1rem; }
    .story-content h2 { font-size: 2rem; }
    .story-content p { font-size: 1rem; }
}