/* About Page Styles - The Interface */

.about-hero {
    background-color: #111;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #333;
}

.interface-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.timeline-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

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

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-node {
    position: absolute;
    left: -49px;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-year {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #475569;
    line-height: 1.6;
}

/* Team Interface */
.team-section {
    background: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid #e2e8f0;
}

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

.user-card {
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
}

.user-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #f8fafc;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.user-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #0f172a;
}

.user-role {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.skill-bar-container {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: var(--color-primary);
    width: 0;
    transition: width 1s ease 0.5s;
    /* Animate on load if possible */
}

/* Simulate animation on hover for now */
.user-card:hover .skill-bar {
    width: 80% !important;
    /* Force animation for demo */
}