/* --- VA Hero Universe --- */
.va-hero-universe {
    height: 100vh;
    background: #050505;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; justify-content: center;
}

/* Hexagonal Grid Background */
.hex-grid {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTI2IDBMMDUyIDE1VjQ1TDI2IDYwTDAgNDVWMTVMMjYgMFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgxNjAsIDMyLCAyNDAsIDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvc3ZnPg==');
    background-size: 52px 60px;
    z-index: 1;
}

/* The Synapse Core (Geometric) */
.synapse-core-container {
    position: absolute;
    width: 300px; height: 300px;
    z-index: 2;
    perspective: 1000px;
}

.core-geometry {
    width: 100%; height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCore 20s linear infinite;
}

.face {
    position: absolute;
    width: 150px; height: 150px;
    border: 2px solid var(--accent-purple);
    background: rgba(160, 32, 240, 0.05);
    top: 75px; left: 75px;
}

.f1 { transform: rotateY(0deg) translateZ(80px); }
.f2 { transform: rotateY(90deg) translateZ(80px); }
.f3 { transform: rotateX(90deg) translateZ(80px); }
.f4 { transform: rotateX(0deg) translateZ(-80px); }

@keyframes rotateCore {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.core-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.4) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* --- Content Styling --- */
.va-hero-content {
    text-align: center;
    z-index: 10;
}

.status-indicator {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 30px;
}

.pulse-green {
    width: 6px; height: 6px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse { 0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; } }

.va-mega-title {
    font-family: 'Audiowide', cursive;
    font-size: 5rem;
    color: white;
    line-height: 1.1;
}

.purple-glimmer {
    color: var(--accent-purple);
    text-shadow: 0 0 20px rgba(160, 32, 240, 0.5);
}

.va-hero-desc {
    max-width: 650px;
    margin: 30px auto;
    font-family: 'Space Mono', monospace;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.va-btn-primary {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: white;
    padding: 16px 40px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 2px;
    transition: 0.4s;
    cursor: pointer;
}

.va-btn-primary:hover {
    background: var(--accent-purple);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.4);
}
@media (max-width: 768px) {
    .va-mega-title { font-size: 2.5rem; }
    .synapse-core-container { transform: scale(0.6); }
    .va-hero-desc { font-size: 0.9rem; padding: 0 15px; }
}
/* --- Pipeline Section (White Theme) --- */
.va-pipeline-section {
    padding: 120px 0;
    background-color: #ffffff; /* 70% White */
    position: relative;
    overflow: hidden;
}

.pipeline-title {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: #111; /* 25% Black */
    margin-bottom: 20px;
}

.pipeline-subtitle {
    font-family: 'Space Mono', monospace;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* --- The Cards --- */
.pipeline-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 in a row on Large Screen */
    gap: 40px;
    margin-top: 80px;
}

.pipeline-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 40px;
    border-radius: 0 40px 0 40px; /* Unique high-end shape */
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.pipeline-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(160, 32, 240, 0.1);
}

.step-indicator {
    font-family: 'Audiowide', cursive;
    font-size: 5rem;
    color: rgba(160, 32, 240, 0.05); /* Very subtle purple number */
    position: absolute;
    top: 10px; right: 20px;
    z-index: 1;
}

.card-body { position: relative; z-index: 2; }

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-purple); /* 5% Purple */
    margin-bottom: 25px;
}

.pipeline-card h3 {
    font-family: 'Audiowide', cursive;
    color: #111;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.pipeline-card p {
    font-family: 'Space Mono', monospace;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.sop-tag {
    display: inline-block;
    background: #111;
    color: white;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
}

/* --- Responsive Logic --- */
@media (max-width: 1024px) {
    .pipeline-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .pipeline-card { padding: 30px; }
}
/* --- The Ops Matrix (Black Theme) --- */
.va-matrix-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
    color: white;
}

.matrix-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Large Screens */
    gap: 20px;
    margin-top: 60px;
    z-index: 2;
    position: relative;
}

.matrix-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    position: relative;
    transition: 0.4s;
}

.box-edge {
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--accent-purple);
    transition: 0.4s;
}

.matrix-box:hover {
    background: rgba(160, 32, 240, 0.03);
    border-color: rgba(160, 32, 240, 0.3);
    transform: translateY(-5px);
}

.matrix-box:hover .box-edge { width: 100%; }

.box-content i {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.box-content h3 {
    font-family: 'Audiowide', cursive;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.box-content ul {
    list-style: none;
    padding: 0;
}

.box-content ul li {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.box-content ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

/* --- Responsive Matrix --- */
@media (max-width: 1200px) {
    .matrix-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .matrix-grid { grid-template-columns: 1fr; }
    .matrix-mega-title { font-size: 2.5rem; }
}
/* --- The Quality Shield (White Theme) --- */
.va-shield-section {
    padding: 120px 0;
    background-color: #ffffff; /* 70% White */
    position: relative;
}

.shield-title {
    font-family: 'Audiowide', cursive;
    font-size: 3.2rem;
    color: #111; /* 25% Black */
}

.shield-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.shield-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

/* The "Active" middle card looks like it's scanning */
.active-shield {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(160, 32, 240, 0.08);
}

.shield-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 25px;
}

.shield-info h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 15px;
}

.shield-info p {
    font-family: 'Space Mono', monospace;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.status-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 4px;
    color: #888;
}

.purple-bg {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
}

/* Shield Pulse Animation */
.shield-pulse {
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent-purple);
    border-radius: 15px;
    animation: shieldGlow 2s infinite;
}

@keyframes shieldGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0; }
}

.shield-footer {
    margin-top: 60px;
    font-family: 'Space Mono', monospace;
    color: #999;
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .shield-grid { grid-template-columns: 1fr; }
    .shield-card { padding: 30px; }
}
.va-cta-section {
    padding: 100px 0 150px;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
}

.cta-terminal {
    background: #f1e5e5;
    border: 1px solid rgba(160, 32, 240, 0.3);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    background: rgba(86, 88, 88, 0.1);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(160, 32, 240, 0.2);
}

.terminal-header .dots {
    display: flex;
    gap: 8px;
}

.terminal-header .dots span {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(243, 8, 8, 0.2);
}

.terminal-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-purple);
    letter-spacing: 2px;
}

.cta-content {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Live Status Pulse */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.pulse {
    width: 8px; height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.status-text {
    color: #28a745;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: bold;
}

.cta-title {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: rgb(8, 8, 8);
    margin-bottom: 20px;
}

.cta-desc {
    font-family: 'Space Mono', monospace;
    color: #0f0f0f;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Calendly Button */
.calendly-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 1.1rem;
    transition: 0.4s;
    border: 2px solid white;
}

.calendly-btn:hover {
    background: transparent;
    color: rgb(17, 17, 17);
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.5);
    transform: translateY(-5px);
}

.btn-icon { margin-left: 15px; color: var(--accent-purple); }

.timezone-note {
    margin-top: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #555;
}

/* Decorative Background Glow */
.cta-glow-bg {
    position: absolute;
    bottom: -50%; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: var(--accent-purple);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 2rem; }
    .cta-content { padding: 40px 20px; }
}