/* --- Core Styling Variables --- */
:root {
    --bg-dark-base: #0a0a0c;
    --bg-slate-panel: #111115;
    --text-pure: #ffffff;
    --text-muted: #9ca3af;
    --accent-indigo: #6366f1;
    --accent-purple: #a855f7;
    --border-soft: rgba(255, 255, 255, 0.05);
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Document Initialization Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--text-pure);
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Container Layout Framework --- */
.about-page-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Splitted uniform dual-pane layout */
    width: 90%;
    max-width: 1440px;
    background: var(--bg-slate-panel);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* --- Left Pane: Cinematic Media Frame --- */
.about-media-pane {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    background-color: #000;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratios safe and crisp */
    object-position: center;
    transform: scale(1);
    will-change: transform;
    /* Soft fallback smooth animation easing rules */
    transition: transform 0.6s var(--transition-premium);
}

/* Vignette Mask Gradient to gently blend graphic edges into dark layouts */
.media-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(17,17,21,0) 70%, rgba(17,17,21,0.85) 100%),
                linear-gradient(to bottom, rgba(17,17,21,0.2), rgba(17,17,21,0.4));
    z-index: 2;
    pointer-events: none;
}

/* Floating Status Pill Component inside the Image Container */
.media-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.media-floating-badge p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-indigo);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-indigo);
}

/* --- Right Pane: Typography Copywriting Workspace --- */
.about-content-pane {
    padding: 5rem 4.5rem;
    display: flex;
    align-items: center;
}

.content-wrapper { width: 100%; }

/* Meta Tag Styles */
.section-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.dash {
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--accent-indigo), var(--accent-purple));
    display: inline-block;
}

.meta-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-indigo);
    letter-spacing: 1.5px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.text-glow {
    /* 1. Core Gradient Properties */
    background: linear-gradient(135deg, #a5b4fc, #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;                 /* ADDED: Standard property for full browser compliance */
    -webkit-text-fill-color: transparent;
    color: transparent;                    /* ADDED: Fallback for older legacy browsers */

    /* 2. The Glow Effect Fix */
    /* Standard text-shadow breaks gradient clips. Using drop-shadow filter forces the 
       browser to cast a luminous glow around the final clipped gradient shape. */
    filter: drop-shadow(0 0 12px rgba(165, 180, 252, 0.65)) 
            drop-shadow(0 0 4px rgba(233, 213, 255, 0.4));
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 2.5rem 0;
}

/* Corporate Pillar Stack Styles */
.about-details-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 3rem;
}

.detail-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.block-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    padding: 10px;
    border-radius: 12px;
    line-height: 1;
}

.block-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.block-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Call-to-Action Controls Footer Row */
.about-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.4);
}

.btn-about-text {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.btn-about-text:hover {
    color: var(--accent-indigo);
    transform: translateX(4px);
}

/* --- Responsive Layout Breakpoints Adaptive Conversions --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; width: 92%; }
    .about-media-pane { min-height: 400px; }
    .about-content-pane { padding: 3.5rem 2.5rem; }
    .about-title { font-size: 2.2rem; }
    .media-overlay-gradient {
        background: linear-gradient(to bottom, rgba(17,17,21,0) 60%, rgba(17,17,21,0.9) 100%);
    }
}

@media (max-width: 640px) {
    .about-page-container { padding: 20px 0; }
    .about-grid { border-radius: 16px; }
    .about-media-pane { min-height: 280px; }
    .about-content-pane { padding: 2.5rem 1.5rem; }
    .about-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .btn-about-primary { width: 100%; text-align: center; }
}