/* ======================================= */
/* ABOUT PAGE - 3D/4D COSMIC DESIGN */
/* ======================================= */


/* ======================================= */
/* HAMBURGER MENU - MOBILE ONLY */
/* ======================================= */

/* Hide hamburger on desktop */
.hamburger-menu {
    display: none;
}

.mobile-nav {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* Tablet and Mobile Styles */
@media (max-width: 992px) {
    /* Hide desktop navigation and CTA */
    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: block;
        z-index: 1001;
    }

    .hamburger-btn {
        width: 48px;
        height: 48px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 0;
        position: relative;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .hamburger-btn span {
        width: 30px;
        height: 2px;
        background: var(--white);
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        display: block;
    }

    /* Hamburger Animation - Active State (X shape) */
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--accent);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--accent);
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 2000;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 30px 25px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(110, 231, 183, 0.1);
        overflow-y: auto;
    }

    .mobile-nav.active {
        right: 0;
    }

    /* Mobile Nav Header */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .mobile-logo i {
        color: var(--accent);
    }

    .mobile-close-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        font-size: 1.3rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-close-btn:hover {
        background: var(--accent);
        color: var(--black);
        transform: rotate(90deg);
    }

    /* Mobile Navigation Links */
    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .mobile-nav-links li {
        margin-bottom: 5px;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .mobile-nav.active .mobile-nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-links a {
        display: block;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 500;
        padding: 15px 20px;
        border-radius: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .mobile-nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(110, 231, 183, 0.1), transparent);
        transition: width 0.3s ease;
        z-index: -1;
    }

    .mobile-nav-links a:hover {
        color: var(--accent);
        padding-left: 30px;
    }

    .mobile-nav-links a:hover::before {
        width: 100%;
    }

    .mobile-nav-links a.active {
        color: var(--accent);
        background: rgba(110, 231, 183, 0.1);
        border-left: 3px solid var(--accent);
    }

    /* Mobile CTA Button */
    .mobile-cta-container {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-cta {
        width: 100%;
        background: linear-gradient(135deg, var(--accent), #a8e6cf);
        color: var(--black);
        border: none;
        padding: 16px 30px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px -5px rgba(110, 231, 183, 0.3);
    }

    .mobile-nav-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px -8px rgba(110, 231, 183, 0.5);
    }

    /* Mobile Social Links */
    .mobile-nav-social {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 40px;
    }

    .mobile-nav-social a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .mobile-nav-social a:hover {
        background: var(--accent);
        color: var(--black);
        transform: translateY(-5px) rotate(360deg);
    }

    /* Overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 576px) {
    .mobile-nav {
        width: 90%;
        padding: 20px 15px;
    }

    .mobile-logo {
        font-size: 1.5rem;
    }

    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 12px 15px;
    }

    .mobile-nav-cta {
        padding: 14px 25px;
        font-size: 1.1rem;
    }

    .mobile-nav-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Landscape Mode */
@media (max-width: 896px) and (orientation: landscape) {
    .mobile-nav {
        padding: 15px 20px;
        overflow-y: auto;
    }

    .mobile-nav-header {
        margin-bottom: 20px;
    }

    .mobile-nav-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mobile-cta-container {
        grid-column: span 2;
    }

    .mobile-nav-links a {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* Page Header with Video Hero */
.page-header {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    isolation: isolate;
}

/* Video Background */
.page-header-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2) saturate(1.3);
    transform: scale(1.01);
    transition: transform 30s ease;
}

/* Video Fallback Image */
.page-header-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.page-header:hover .page-header-video {
    transform: scale(1.1);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%),
        radial-gradient(circle at 20% 30%, rgba(110,231,183,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(110,231,183,0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Video Placeholder Notice */
.video-placeholder-notice {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.8);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
    z-index: 20;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: none;
    animation: noticePulse 2s ease-in-out infinite;
}

.video-placeholder-notice i {
    margin-right: 8px;
    animation: iconWiggle 2s ease-in-out infinite;
}

@keyframes noticePulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); background: rgba(110,231,183,0.2); }
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* 3D Floating Orbs */
.page-header .cosmic-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(110,231,183,0.2), rgba(110,231,183,0.05));
    border: 1px solid rgba(110,231,183,0.2);
    box-shadow: 0 0 50px rgba(110,231,183,0.2);
    animation: orbFloat 25s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.page-header .orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    filter: blur(10px);
}

.page-header .orb-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: 5%;
    animation-delay: -8s;
    filter: blur(20px);
    border-color: rgba(255,255,255,0.1);
}

.page-header .orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: -15s;
    filter: blur(5px);
}

/* 4D Spiral Nebula */
.page-header .nebula {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(110,231,183,0.1), 
        transparent, 
        rgba(110,231,183,0.1), 
        transparent, 
        rgba(110,231,183,0.1), 
        transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: nebulaSpin 40s linear infinite;
    z-index: 0;
    opacity: 0.3;
}

/* Shooting Stars */
.page-header .shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: rotate(45deg);
    animation: shootStar 8s linear infinite;
    z-index: 0;
    opacity: 0;
}

.page-header .star-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.page-header .star-2 {
    top: 50%;
    left: -10%;
    animation-delay: -3s;
    width: 200px;
}

.page-header .star-3 {
    top: 80%;
    left: -10%;
    animation-delay: -6s;
    width: 120px;
}

/* Floating Particles - Cosmic Dust */
.page-header .cosmic-dust {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    animation: dustFloat 20s infinite linear;
    z-index: 0;
    opacity: 0.3;
    box-shadow: 0 0 20px var(--accent);
}

.page-header .dust-1 { top: 15%; left: 10%; animation-delay: 0s; }
.page-header .dust-2 { top: 25%; left: 80%; animation-delay: -2s; width: 5px; height: 5px; }
.page-header .dust-3 { top: 45%; left: 30%; animation-delay: -4s; }
.page-header .dust-4 { top: 65%; left: 70%; animation-delay: -6s; width: 4px; height: 4px; }
.page-header .dust-5 { top: 75%; left: 40%; animation-delay: -8s; }
.page-header .dust-6 { top: 35%; left: 60%; animation-delay: -10s; width: 6px; height: 6px; }
.page-header .dust-7 { top: 85%; left: 20%; animation-delay: -12s; }
.page-header .dust-8 { top: 55%; left: 90%; animation-delay: -14s; width: 4px; height: 4px; }

.page-header-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    animation: cosmicReveal 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 30%, #a8e6cf 70%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(110, 231, 183, 0.5);
    animation: titlePulse 4s ease-in-out infinite;
}

.page-header-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 60px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.about-content p:hover {
    transform: translateX(10px);
    background: rgba(110,231,183,0.05);
    border-left: 3px solid var(--accent);
}

/* Founders Section */
.founders-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    position: relative;
    overflow: hidden;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.founder-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: founderFloatIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

.founder-card:nth-child(1) { animation-delay: 0.2s; }
.founder-card:nth-child(2) { animation-delay: 0.4s; }

.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(110,231,183,0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.founder-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(110,231,183,0.1), transparent, rgba(110,231,183,0.1), transparent);
    animation: founderRotate 15s linear infinite;
    z-index: -1;
}

.founder-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 40px 60px -20px rgba(110,231,183,0.5);
}

.founder-card:hover::before {
    opacity: 1;
}

/* Founder Image Container with placeholder */
.founder-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent), var(--white));
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(110,231,183,0.4);
    animation: founderImagePulse 3s ease-in-out infinite;
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Actual image styling */
.founder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.5s ease;
}

.founder-placeholder-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: var(--accent);
    padding: 20px;
}

.founder-placeholder-initials {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(110,231,183,0.12);
    border: 1px solid rgba(110,231,183,0.35);
    box-shadow: 0 10px 24px rgba(110,231,183,0.12);
}

.founder-placeholder-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.75);
}

/* When image is loaded and valid, hide icon */
.founder-image[src]:not([src=""]) {
    display: block;
}

.founder-image[src]:not([src=""]) ~ .founder-placeholder-content {
    display: none;
}

/* If image fails to load, show icon */
.founder-image[src=""],
.founder-image:not([src]) {
    display: none;
}

.founder-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110,231,183,0.2), transparent 70%);
    animation: placeholderGlow 4s ease-in-out infinite;
    z-index: 0;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 25px 0;
}

.founder-tag {
    background: rgba(110,231,183,0.1);
    border: 1px solid rgba(110,231,183,0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.founder-tag:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(110,231,183,0.4);
}

.founder-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.founder-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.05);
}

.founder-social a:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-8px) rotateY(180deg);
    box-shadow: 0 15px 30px -10px var(--accent);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.process-step {
    text-align: center;
    padding: 50px 30px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: stepFloatIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110,231,183,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover {
    transform: translateY(-15px) rotateX(3deg) rotateY(3deg) scale(1.05);
    border-color: rgba(110,231,183,0.3);
    box-shadow: 0 30px 50px -20px rgba(110,231,183,0.3);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #a8e6cf);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 30px -10px var(--accent);
    animation: stepNumberPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--white);
}

.process-step p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Image instruction text */
.image-instruction {
    text-align: center;
    margin-top: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    backdrop-filter: blur(5px);
}

.image-instruction i {
    color: var(--accent);
    margin-right: 8px;
}

/* Animations */
@keyframes cosmicReveal {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 40px rgba(110,231,183,0.3);
    }
    50% {
        text-shadow: 0 0 100px rgba(110,231,183,0.7);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-40px) translateX(30px) scale(1.2);
    }
    50% {
        transform: translateY(30px) translateX(-20px) scale(0.9);
    }
    75% {
        transform: translateY(-20px) translateX(-30px) scale(1.1);
    }
}

@keyframes nebulaSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.3);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

@keyframes shootStar {
    0% {
        transform: rotate(45deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    30% {
        opacity: 0.8;
    }
    50% {
        transform: rotate(45deg) translateX(300px);
        opacity: 0;
    }
    100% {
        transform: rotate(45deg) translateX(300px);
        opacity: 0;
    }
}

@keyframes dustFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(120px, -80px) scale(2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-60px, 100px) scale(1.5);
        opacity: 0.3;
    }
    75% {
        transform: translate(80px, 60px) scale(2.5);
        opacity: 0.5;
    }
}

@keyframes founderFloatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes founderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes founderImagePulse {
    0%, 100% {
        box-shadow: 0 20px 40px -10px rgba(110,231,183,0.4);
    }
    50% {
        box-shadow: 0 30px 60px -5px rgba(110,231,183,0.7);
    }
}

@keyframes placeholderGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes stepFloatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stepNumberPulse {
    0%, 100% {
        box-shadow: 0 15px 30px -10px var(--accent);
    }
    50% {
        box-shadow: 0 25px 50px -5px var(--accent);
    }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .founders-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .page-header {
        height: 70vh;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .founders-grid {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 60vh;
        min-height: 500px;
    }
    
    .page-header .cosmic-orb {
        opacity: 0.1;
    }
    
    .page-header .nebula {
        width: 500px;
        height: 500px;
    }
    
    .page-header-content p {
        padding: 15px 20px;
        font-size: 0.95rem;
        backdrop-filter: blur(5px);
    }
    
    .video-placeholder-notice {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step {
        padding: 40px 20px;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .founder-image-container {
        width: 160px;
        height: 160px;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 50vh;
        min-height: 450px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .video-placeholder-notice {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .founder-image-container {
        width: 140px;
        height: 140px;
    }
    
    .founder-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .image-instruction {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

/* Landscape Mode */
@media (max-width: 896px) and (orientation: landscape) {
    .page-header {
        height: 100vh;
        min-height: 500px;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .process-step:hover,
    .founder-card:hover {
        transform: translateY(-5px);
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .page-header .cosmic-orb,
    .page-header .nebula,
    .page-header .shooting-star,
    .page-header .cosmic-dust,
    .founder-card::after,
    .founder-image-placeholder::before,
    .process-step,
    .founder-card,
    .video-placeholder-notice {
        animation: none;
    }
}
