/* About Page Specific Styles */

.about-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.team-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    border-radius: 24px;
    padding: 64px 32px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Human Card Style */
.team-card.human {
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.team-card.human:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--purple-300);
}

.human-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FEF3C7;
    color: #D97706;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* AI Card Style */
.team-card.ai {
    background: #0f172a;
    /* Dark background for AI */
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: white;
}

.team-card.ai:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-500);
}

.ai-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-400);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-wrapper.human-avatar {
    background: linear-gradient(135deg, #FFDEE9 0%, #B5FFFC 100%);
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.avatar-wrapper.ai-avatar {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

/* Scanline effect for AI cards */
.team-card.ai::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(139, 92, 246, 0.03) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 0;
}

.member-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card.ai .member-name {
    color: white;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.team-card.human .member-role {
    color: var(--purple-600);
}

.team-card.ai .member-role {
    color: var(--cyan-400);
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
}

.team-card.human .member-bio {
    color: var(--gray-600);
}

.team-card.ai .member-bio {
    color: var(--gray-400);
}

/* AI Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-500);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Tech Stack Pucks for AI */
.tech-stack {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.tech-badge {
    font-size: 10px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mission Section */
.mission-section {
    background: var(--gray-900);
    color: white;
    padding: var(--section-padding);
    text-align: center;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.4;
    font-family: var(--font-display);
}

.highlight-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}