/* ===============================================
   ABOUT US PAGE SPECIFIC STYLES - LIGHT THEME
=============================================== */

:root {
    --about-bg-deep: #ffffff;
    --about-bg-dark: #F1F5F2;
    /* Matches --fg-50 */
    --about-bg-card: #ffffff;
    --electric-blue: #10b981;
    /* Emerald Green */
    --electric-cyan: #34d399;
    /* Mint Green */
    --electric-violet: #3b82f6;
    /* Azure Blue (Gradient end) */
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-glow: rgba(16, 185, 129, 0.05);
    /* Emerald Glow */
    --text-gradient: linear-gradient(135deg, #09120E 0%, #2D5A43 100%);
    /* Forest Green Gradient */
    --accent-gradient: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
    /* Emerald to Blue */
    --button-glow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.3);
    --button-glow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.3);
    --text-primary-p: #475569;
}


html {
    /* scroll-snap-type: y mandatory; REMOVED to allow smooth sticky stacking */
    scroll-behavior: smooth;
}

.about-page-wrapper {
    background-color: var(--about-bg-deep);
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Global Neural Background */
.neural-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    /* Subtler for light mode */
}

.about-section {
    position: relative;
    z-index: 1;
    padding: 20px 0 60px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SECTION 1: HERO */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 900px;
}

.hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #000000;
}

@keyframes textShine {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.3);
    }
}

.hero-p {
    font-size: 1.25rem;
    color: var(--text-primary-p);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-badge {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.trust-badge i {
    color: var(--electric-blue);
}

.trust-badge:hover {
    background: #ffffff;
    border-color: var(--electric-blue);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 46px;
    background: var(--accent-gradient);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 1.1rem;
    box-shadow: var(--button-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: all 0.6s;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.45), 0 15px 40px rgba(59, 130, 246, 0.35);
    filter: brightness(1.1);
}

.primary-cta:hover::before {
    left: 100%;
}



































/* SECTION 2: THE DILEMMA */
/* SECTION 2: THE DILEMMA */
/* Stacking Slider Logic:
   All 3 sections are sticky at top:0.
   Because they are sequential in DOM, 
   Section 2 will slide UP over Section 1.
   Section 3 will slide UP over Section 2.
   This creates the "deck of cards" stacking effect.
*/
.dilemma-section,
.glass-box-bg-section,
.team-section {
    padding: 0;
    min-height: 100vh;
    background-color: var(--about-bg-dark);
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for depth */
    transition: transform 0.1s linear;
    /* Smoothness */
}

.dilemma-section {
    z-index: 10;
}

.glass-box-bg-section {
    z-index: 20;
}

.team-section {
    z-index: 30;
}

/* Ensure subsequent sections scroll OVER the sticky stack */
.stat-section,
.mission-section,
.final-cta-section {
    position: relative;
    z-index: 40;
    /* Higher than the sticky stack */
    background-color: var(--about-bg-deep);
    /* Ensure opacity */
}

.dilemma-section::before,
.glass-box-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.risk-text {
    color: #ef4444;
    position: relative;
    display: inline-block;
    animation: riskPulse 3s infinite;
}

@keyframes riskPulse {

    0%,
    100% {
        text-shadow: 0 0 0px rgba(239, 68, 68, 0);
    }

    50% {
        text-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    }
}

.warning-glow,
.safe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.warning-glow {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
}

.safe-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.glass-container {
    background: #ffffff;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 32px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.glass-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(16, 185, 129, 0.05),
            transparent);
    transform: skewX(-25deg);
    animation: scan 6s infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.glass-container:hover {
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}

.glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(10%, 10%) scale(1.2);
        opacity: 0.8;
    }
}

.section-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: #0f172a;
}

.section-p {
    color: var(--text-primary-p);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.solution-eyebrow {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #10b981;
    margin-bottom: 24px;
    display: block;
}



























































.dilemma-section::before,
.glass-box-bg-section::before,
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}



.line-1 {
    top: 20%;
    right: 10%;
}

.modern-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-bottom: 80px;
}

.commitment-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.commitment-card:hover {
    transform: translateY(-15px);
    border-color: var(--electric-blue);
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(16, 185, 129, 0.12);
}

.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 20px;
    background: #f8fafc;
}

.card-icon-wrapper i {
    font-size: 2.2rem;
    z-index: 2;
    color: #1e293b;
    transition: all 0.3s ease;
}

.commitment-card:hover .card-icon-wrapper i {
    color: var(--electric-blue);
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.green-glow {
    background: rgba(16, 185, 129, 0.3);
}

.violet-glow {
    background: rgba(59, 130, 246, 0.3);
}

.cyan-glow {
    background: rgba(34, 211, 238, 0.3);
}

.commitment-card:hover .icon-glow {
    opacity: 1;
}

.commitment-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.commitment-card p {
    color: var(--text-primary-p);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.card-meta {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-blue);
    margin-top: auto;
    background: rgba(16, 185, 129, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
}

.team-hiring-box {
    background: #09120E;
    border-radius: 40px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.team-hiring-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.hiring-text h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hiring-text p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin: 0;
}

.dark-btn {
    background: #ffffff !important;
    color: #09120E !important;
    white-space: nowrap;
}

.dark-btn:hover {
    background: var(--electric-blue) !important;
    color: #fff !important;
    border-color: var(--electric-blue) !important;
}

.hiring-content-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hiring-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #10b981;
}

@media (max-width: 1024px) {
    .modern-team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-hiring-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .hiring-content-flex {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modern-team-grid {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 80px 0;
    }
}

























/* SECTION 5: WHY NOW - MARKET URGENCY */

.mission-section {
    padding: 60px 0;
}

.stat-section {
    text-align: center;
    padding: 60px 0;
    background-color: #f8fafc;
    /* Subtle light gray for contrast */
}

.stat-number {
    font-size: clamp(80px, 15vw, 150px);
    font-weight: 900;
    font-weight: 900;
    /* Use the same gradient as hero text for consistency */
    background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6, #10b981);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(16, 185, 129, 0.2));
    /* slightly stronger shadow */
    animation: textGradientFlow 4s linear infinite, statPulse 4s ease-in-out infinite;
    line-height: 1;
}

.stat-pill-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0;
    /* center horizontally, margin top */
    padding: 60px 40px;
    background: #fff;
    border-radius: 60px;
    /* Large radius for pill effect */
    border: 3px solid transparent;
    /* Transparent border for gradient trick */
    background-image: linear-gradient(#fff, #fff), var(--accent-gradient);
    /* Inner bg white, outer bg gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    /* Clip inner to padding box, outer to border box */
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.05);
    /* subtle colored shadow */
    text-align: center;
}

.stat-pill-box h3 {
    color: #0f172a;
}

@keyframes statPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.stat-description {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: center;
    letter-spacing: -0.01em;
}

.highlight-risk {
    color: #ef4444;
    /* Red for risk/purgatory */
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 4px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 4px;
}

.highlight-value {
    color: #10b981;
    /* Green for value/success */
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 4px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
}
















/* SECTION 6: MISSION & COMMITMENT */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* SECTION 7: CONVERSION */
.final-cta-section {
    padding: 60px 0;
}

.conversion-card {
    text-align: center;
    padding: 80px 40px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 46px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(16, 185, 129, 0.1),
            transparent);
    transition: all 0.6s;
}

.secondary-cta:hover::before {
    left: 100%;
}

.secondary-cta:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}

/* ANIMATIONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes lineScan {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        opacity: 0;
    }
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .approach-text {
        text-align: center !important;
    }

    .approach-text .primary-cta {
        margin: 0 auto;
    }
}