/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Force remove all subscription input styles */
.subscription-section input,
.subscription-section .card-element,
.subscription-section .payment-form input,
.subscription-section .payment-form .card-element,
#subscribe input,
#subscribe .card-element {
    all: unset !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
    transform: none !important;
    min-height: auto !important;
    line-height: inherit !important;
    vertical-align: baseline !important;
    box-sizing: content-box !important;
    display: inline-block !important;
    position: static !important;
    z-index: auto !important;
    overflow: visible !important;
    resize: none !important;
    cursor: text !important;
}

/* ===== ABOUT HERO ===== */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.about-hero .hero-title {
    margin-bottom: 1.5rem;
}

.about-hero .hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 700px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02));
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-stats .stat-item {
    text-align: center;
}

.mission-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.mission-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-card {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sphere);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover::before {
    opacity: 0.1;
}

.mission-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 1rem 3rem rgba(0, 212, 255, 0.1);
}

.mission-card .card-icon {
    width: 100px;
    height: 100px;
    background: var(--grok-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sphere);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 0.1;
}

.value-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 1rem 3rem rgba(0, 212, 255, 0.1);
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    background: var(--grok-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-color);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 122, 0.02));
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grok-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--grok-gradient);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--background-color);
    z-index: 2;
}

.timeline-content {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--glass-border);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--glass-border) transparent transparent;
    transform: translateY(-50%);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0.5rem 2rem rgba(0, 212, 255, 0.1);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sphere);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 0.1;
}

.team-member:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 1rem 3rem rgba(0, 212, 255, 0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--grok-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: var(--text-color);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.member-social .social-link:hover {
    background: var(--grok-gradient);
    border-color: transparent;
    transform: translateY(-0.25rem);
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(255, 0, 122, 0.03));
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--grok-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: #000;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.founder-bio h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-bio h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.founder-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-bio p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.founder-expertise {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card-background);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.expertise-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.expertise-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.founder-contact {
    margin-top: 2rem;
}

.founder-contact .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--glass-border) transparent transparent;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-expertise {
        grid-template-columns: 1fr;
    }
    
    .founder-avatar {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .mission-section,
    .values-section,
    .timeline-section,
    .team-section {
        padding: 4rem 0;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 2rem;
    }
    
    .photo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* ===== ANIMATION OVERRIDES ===== */
.timeline-item[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(2rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ===== HOVER EFFECTS ===== */
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.team-member:hover .photo-placeholder {
    transform: scale(1.05);
}

.mission-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

/* ===== GLOW EFFECTS ===== */
.timeline-marker {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.value-card:hover .value-icon {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.team-member:hover .photo-placeholder {
    box-shadow: 0 0 30px rgba(255, 0, 122, 0.3);
}
