/* Vision Section */
.vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.vision-statement {
    width: calc(33.33% - 20px);
    background-color: rgba(26, 26, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vision-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.5);
}

.vision-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple));
}

.vision-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vision-content {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.team-member {
    background-color: rgba(26, 26, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.5);
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-member:hover::after {
    opacity: 1;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 163, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 163, 255, 0.5);
}

.avatar-initials {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.member-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-glow {
    opacity: 1;
}

.member-info {
    flex: 1;
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.member-title {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.member-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.member-expand {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 163, 255, 0.2);
    border: 1px solid rgba(0, 163, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member:hover .member-expand {
    background-color: rgba(0, 163, 255, 0.4);
    transform: rotate(45deg);
}

/* Team Detail Modal */
.team-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    background-color: rgba(18, 18, 26, 0.95);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 5px;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.5);
    animation: modalAppear 0.5s ease forwards;
}

@keyframes modalAppear {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff3c3c;
}

/* Tech Moat */
.tech-moat {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.moat-item {
    width: calc(33.33% - 20px);
    background-color: rgba(18, 18, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.moat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.5);
}

.moat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: rgba(0, 163, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 163, 255, 0.3);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.model-icon {
    background-image: url('../images/model_icon.png');
}

.integration-icon {
    background-image: url('../images/integration_icon.png');
}

.data-icon {
    background-image: url('../images/data_icon.png');
}

.moat-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.moat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Cost Advantage */
.cost-advantage {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.cost-chart-container {
    flex: 1;
    height: 250px;
}

.cost-highlight {
    width: 200px;
    background-color: rgba(0, 163, 255, 0.1);
    border-left: 3px solid var(--accent-blue);
    padding: 20px;
    margin-left: 20px;
    border-radius: 0 5px 5px 0;
}

.highlight-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
    text-align: center;
}

.highlight-label {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: center;
}

.highlight-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Social Value */
.social-value-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.social-value-item {
    width: calc(25% - 20px);
    background-color: rgba(18, 18, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.5);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: rgba(0, 163, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 163, 255, 0.3);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.labor-icon {
    background-image: url('../images/labor_icon.png');
}

.elderly-icon {
    background-image: url('../images/elderly_icon.png');
}

.disability-icon {
    background-image: url('../images/disability_icon.png');
}

.esg-icon {
    background-image: url('../images/esg_icon.png');
}

.value-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Timeline */
.timeline-container {
    margin: 40px 0;
    position: relative;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple));
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 44px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    border: 2px solid var(--text-primary);
    z-index: 2;
}

.timeline-item.future .timeline-dot {
    background-color: var(--accent-purple);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.timeline-content {
    background-color: rgba(26, 26, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(26, 26, 38, 0.8);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.timeline-item.future .timeline-content h3 {
    color: var(--accent-purple);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
    }
    
    .vision-statement {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .moat-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .cost-advantage {
        flex-direction: column;
    }
    
    .cost-highlight {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .social-value-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}
