/* =========================================
   ABOUT PAGE STYLES (HYBRID THEME)
========================================= */

/* --- 1. Manifesto Hero (New) --- */
.aboutManifestoHero {
    width: 100%;
    min-height: 85vh;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-glow-effect {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(69, 63, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.manifestoContainer {
    width: 90%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.manifesto-badge {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #040053;
    margin-bottom: 30px;
    border: 1px solid rgba(4, 0, 83, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #453fff;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(69, 63, 255, 0.4);
    animation: pulse-blue 2s infinite;
}

.aboutManifestoHero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    color: #010008;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -2px;
}

.aboutManifestoHero p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- New: Text Marquee Section --- */
.textMarqueeSection {
    width: 100%;
    padding: 40px 0;
    background: #010008;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.marqueeTrack {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
}

.marqueeTrack span {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 30px;
    letter-spacing: 1px;
}

.marqueeTrack i {
    color: #453fff;
    font-size: 1.2rem;
}

/* --- 2. Vision & Mission Section (Revamped) --- */
.visionMissionSection {
    width: 100%;
    padding: 140px 0;
    background: #fcfcfc; /* Very subtle off-white */
    position: relative;
    overflow: hidden;
}

.vmContainer {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.vm-Wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 60px;
}

.vm-CenterLine {
    width: 1px;
    background: rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    transform-origin: top;
}

.vm-Block {
    width: 50%;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.vm-HugeNum {
    font-size: 12rem;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: -60px;
    left: 0;
    line-height: 1;
    z-index: -1;
    font-family: "Host Grotesk", sans-serif;
}

.vm-Label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #453fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.vm-Block h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #010101;
    margin-bottom: 25px;
}

.vm-Block p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    max-width: 90%;
}

/* --- 2. Founder Section --- */
.founderSection {
    width: 100%;
    padding: 140px 0;
    background: #fff;
}

.founderContainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.founderImage {
    width: 45%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.founderImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founderContent {
    width: 50%;
}

.founder-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 20px;
}

.founderContent h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #010008;
    margin-bottom: 30px;
}

.founder-body p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-sig {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.founder-sig h4 {
    font-size: 1.2rem;
    color: #010008;
    margin-bottom: 5px;
}

.founder-sig small {
    color: #666;
    font-size: 0.9rem;
}

.signature-svg {
    width: 180px;
    height: auto;
    margin-top: 15px;
    display: block;
}

.signature-path {
    fill: none;
    stroke: #040053;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- 3. The System (Growth Circuit) --- */
.systemSection {
    width: 100%;
    padding: 120px 0;
    background: #020020;
    position: relative;
    overflow: hidden;
}

.sys-Header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.sys-Header h2 {
    font-size: 3.5rem;
    color: #fff;
}

.sys-Timeline-Wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

/* The Beam */
.sys-Beam-Track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.sys-Beam-Bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* JS will animate this */
    background: linear-gradient(180deg, #453fff 0%, #00F0FF 50%, #453fff 100%);
    background-size: 100% 200%;
    box-shadow: 0 0 15px #453fff;
    animation: beamFlow 2s linear infinite;
}

@keyframes beamFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

/* Rows */
.sys-Row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
}

.sys-Row:last-child {
    margin-bottom: 0;
}

.sys-Card {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.sys-Card:hover {
    border-color: #453fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.sys-Card.left { text-align: right; margin-right: auto; }
.sys-Card.right { text-align: left; margin-left: auto; }

.sys-Connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #020020;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s;
}

.sys-Connector.active {
    border-color: #00F0FF;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    background: #00F0FF;
}

.sys-Connector.active::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.6);
    animation: connectorPulse 1.5s infinite;
}

.sys-Num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
}
.sys-Card.left .sys-Num { left: 20px; }
.sys-Card.right .sys-Num { right: 20px; }

.sys-Card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.sys-Card p {
    color: #aaa;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* --- New: Core Values (Interactive) --- */
.coreValuesSection {
    width: 100%;
    padding: 140px 0;
    background: #f8f9ff;
    position: relative;
}

.cv-Container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cv-Header {
    margin-bottom: 60px;
}

.cv-Header h2 {
    font-size: 3rem;
    color: #010101;
}

.cv-List {
    position: relative;
    z-index: 2;
}

.cv-Item {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
}

.cv-Item:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cv-Item:hover {
    padding-left: 20px;
}

.cv-Num {
    font-size: 1.2rem;
    color: #453fff;
    font-weight: 600;
    margin-right: 40px;
}

.cv-Item h3 {
    font-size: 2.5rem;
    color: #010101;
    flex: 1;
    transition: 0.3s;
}

.cv-Item p {
    font-size: 1.1rem;
    color: #666;
    max-width: 300px;
}

.cv-HoverImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.cv-HoverImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 4. Culture Section (Masonry) --- */
.cultureSection {
    width: 100%;
    padding: 120px 0;
    background: #fff;
}

.cultureContainer {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cultureHeader {
    width: 40%;
}

.cultureHeader h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #010101;
    margin-bottom: 20px;
}

.cultureHeader p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.cultureGrid {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cultureItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.item-2 {
    margin-top: 40px; /* Offset for masonry look */
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(69, 63, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(69, 63, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(69, 63, 255, 0); }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes connectorPulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 300%; height: 300%; opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .aboutManifestoHero h1 {
        font-size: 3rem;
    }
    
    .aboutManifestoHero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    /* Global Padding Reduction for Mobile */
    .visionMissionSection, .founderSection, .systemSection, .coreValuesSection, .cultureSection {
        padding: 80px 0;
    }
    
    .aboutManifestoHero {
        min-height: auto;
        padding: 160px 0 100px 0;
    }

    /* Founder */
    .founderContainer {
        flex-direction: column;
        gap: 40px;
    }

    .founderImage, .founderContent {
        width: 100%;
    }

    .founderImage {
        height: 400px;
    }

    .founderContent h2 {
        font-size: 2.2rem;
    }

    /* System Section Mobile */
    .sys-Row { margin-bottom: 60px; }
    .sys-Beam-Track { left: 15px; transform: none; }
    .sys-Connector { left: 15px; transform: none; }
    .sys-Card { 
        width: 82%; 
        margin-left: 45px !important; 
        margin-right: 0 !important;
        text-align: left !important; 
        padding: 30px 25px;
    }
    /* Force number to right on mobile for consistency */
    .sys-Card.left .sys-Num, .sys-Card.right .sys-Num { left: auto; right: 20px; top: 20px; font-size: 2.5rem; }

    /* Culture */
    
    /* Values Mobile */
    .cv-Item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cv-Item h3 { font-size: 1.8rem; }
    .cv-Item p { max-width: 100%; }
    .cv-HoverImage { display: none; } /* Disable hover effect on mobile */
    
    /* Culture */
    .cultureContainer {
        flex-direction: column;
    }
    .cultureHeader, .cultureGrid {
        width: 100%;
    }

    /* Vision Mission */
    .vm-Wrapper {
        flex-direction: column;
        gap: 80px;
    }
    .vm-CenterLine {
        display: none;
    }
    .vm-Block {
        width: 100%;
        padding: 0;
    }
    .vm-HugeNum {
        font-size: 8rem;
        top: -40px;
    }
    .vm-Block h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .aboutManifestoHero h1 { font-size: 2.5rem; }
    .vm-Block h2, .sys-Header h2, .founderContent h2, .cv-Header h2, .cultureHeader h2 {
        font-size: 2rem;
    }
}