/* ====================================
   REVOLUTIONARY ENHANCEMENTS
   ==================================== */

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.8) 100%);
}

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Enhanced Hero Content */
.hero-reveal {
    position: relative;
    z-index: 2;
}

.hero-title-line {
    display: block;
    opacity: 1 !important;
    transform: none !important;
}

/* Magnetic Buttons */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 60px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    overflow: hidden;
    cursor: none;
    transition: var(--transition-butter);
    will-change: transform;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.btn-magnetic:hover .btn-glow {
    transform: translate(-50%, -50%) scale(2);
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-magnetic:hover .btn-icon {
    transform: translateX(5px);
}

/* Modern Stats */
.hero-stats-modern {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    min-width: 200px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Mouse Scroll Indicator */
.mouse-scroll {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ====================================
   PHILOSOPHY SECTION - SPLIT SCREEN
   ==================================== */
/* ===================================
   PHILOSOPHY SECTION - HORIZONTAL SCROLL
   =================================== */

.philosophy-section {
    padding: 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.philosophy-intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    position: relative;
}

.philosophy-main-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 2rem 0;
    max-width: 1000px;
}

.philosophy-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 800px;
    margin-top: 2rem;
    line-height: 1.6;
}

.philosophy-horizontal-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.philosophy-horizontal-scroll {
    display: flex;
    width: fit-content;
    gap: 0;
}

.principle-card-modern {
    position: relative;
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.principle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.principle-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.principle-card-modern:hover .principle-bg img {
    transform: scale(1.05);
}

.principle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 14, 33, 0.92), rgba(13, 14, 33, 0.85));
    z-index: 2;
    transition: background 0.8s ease;
}

.principle-card-modern:hover .principle-overlay {
    background: linear-gradient(135deg, rgba(13, 14, 33, 0.88), rgba(13, 14, 33, 0.80));
}

.principle-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--spacing-xl);
    text-align: center;
}

.principle-number-large {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.principle-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.principle-text-large {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.principle-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-pill {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-pill:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-3px);
}

.final-card .principle-content {
    max-width: 600px;
}

.cta-button-modern {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--primary-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    margin-top: 2rem;
}

.cta-button-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ====================================
   INNOVATION LAB SECTION
   ==================================== */
.innovation-lab {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.innovation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.innovation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 50%, var(--bg-primary) 100%);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.innovation-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.innovation-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-butter);
    cursor: none;
}

.innovation-card:hover {
    transform: translateY(-15px);
    border-color: rgba(102, 126, 234, 0.5);
}

.innovation-icon {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.innovation-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.innovation-card:hover .innovation-icon img {
    transform: scale(1.15);
}

.innovation-content {
    padding: 2rem;
}

.innovation-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.innovation-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.innovation-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #667eea;
    font-weight: 600;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.innovation-card:hover .card-glow {
    opacity: 1;
}

/* ====================================
   IMPACT SECTION
   ==================================== */
.impact-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.metric-card {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-butter);
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.metric-visual {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.metric-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.metric-card:hover .metric-visual img {
    transform: scale(1.2);
}

.metric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}

.metric-content {
    padding: 2rem;
    text-align: center;
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.metric-suffix {
    display: inline-block;
    font-size: 2rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.metric-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ====================================
   MANIFESTO SECTION
   ==================================== */
.manifesto-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.manifesto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.manifesto-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.manifesto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 70%);
}

.manifesto-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-statements {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.manifesto-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
}

.manifesto-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.3);
    min-width: 80px;
}

.manifesto-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    flex: 1;
}

.manifesto-cta {
    margin-top: 4rem;
}

.manifesto-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.btn-primary-large {
    padding: 2rem 4rem;
    font-size: 1.5rem;
    border-radius: 80px;
    margin-bottom: 2rem;
}

.manifesto-locations {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.manifesto-locations span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .philosophy-intro {
        padding: var(--spacing-lg);
    }
    
    .principle-content {
        padding: var(--spacing-lg);
    }
    
    .principle-number-large {
        font-size: 6rem;
    }
    
    .feature-pill {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .innovation-grid,
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .manifesto-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .manifesto-text {
        font-size: 1.25rem;
    }
    
    .btn-primary-large {
        padding: 1.5rem 2.5rem;
        font-size: 1.25rem;
    }
}
