
/* --- AGENT CARDS V2 (Holographic Tech) --- */
.agent-card-v2 {
    background: #050505;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 420px;
}

/* Scanline Effect */
.agent-card-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
    background-size: 100% 4px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Hover Glow */
.agent-card-v2:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.1);
    transform: translateY(-5px);
}

.agent-card-v2:nth-child(2):hover { border-color: var(--accent-2); box-shadow: 0 0 30px rgba(85, 0, 255, 0.1); }
.agent-card-v2:nth-child(3):hover { border-color: var(--accent-3); box-shadow: 0 0 30px rgba(255, 0, 85, 0.1); }
.agent-card-v2:nth-child(4):hover { border-color: #fff; box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); }

/* Header */
.ac-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.ac-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 1px;
}

.ac-status {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    box-shadow: 0 0 5px #333;
    transition: all 0.3s;
}

.agent-card-v2:hover .ac-status {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}
.agent-card-v2:nth-child(2):hover .ac-status { background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.agent-card-v2:nth-child(3):hover .ac-status { background: var(--accent-3); box-shadow: 0 0 10px var(--accent-3); }
.agent-card-v2:nth-child(4):hover .ac-status { background: #fff; box-shadow: 0 0 10px #fff; }

/* Visual Core */
.ac-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ac-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.5s;
    position: relative;
}

.ac-circle::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px dashed #444;
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.agent-card-v2:hover .ac-circle {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}
.agent-card-v2:nth-child(2):hover .ac-circle { border-color: var(--accent-2); color: var(--accent-2); }
.agent-card-v2:nth-child(3):hover .ac-circle { border-color: var(--accent-3); color: var(--accent-3); }
.agent-card-v2:nth-child(4):hover .ac-circle { border-color: #fff; color: #fff; }

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

/* Content */
.ac-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: -1px;
}

.ac-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    text-align: center;
    color: #888;
    margin-bottom: 20px;
    height: 40px; /* Fixed height for alignment */
}

/* Data Grid */
.ac-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #222;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}

.ac-data-item {
    background: #0a0a0a;
    padding: 10px;
    text-align: center;
}

.ac-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: #555;
    display: block;
    margin-bottom: 2px;
}

.ac-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

/* Hover Data Reveal */
.agent-card-v2:hover .ac-value { color: var(--accent); }
.agent-card-v2:nth-child(2):hover .ac-value { color: var(--accent-2); }
.agent-card-v2:nth-child(3):hover .ac-value { color: var(--accent-3); }
.agent-card-v2:nth-child(4):hover .ac-value { color: #fff; }

/* --- FEATURE CARDS V2 --- */
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card-v2 {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-v2:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.fc-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.feature-card-v2:hover .fc-icon {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent);
}

.fc-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fc-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
}

