/* ===== VOICE AGENTS (VA6) ===== */
:root {
    --ink: #1a1029;
    --muted: rgba(26, 16, 41, .62);
    --p1: #7c3aed;
    --p2: #a78bfa;
}

.va6 {
    position: relative;
    padding: 54px 18px 64px;
    overflow: hidden;
    min-height: 100vh;
    /* Ensure full height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Moving background */
.va6-bg {
    position: absolute;
    inset: -30% -30%;
    background:
        radial-gradient(closest-side at 25% 30%, rgba(167, 139, 250, .20), transparent 62%),
        radial-gradient(closest-side at 70% 35%, rgba(124, 58, 237, .18), transparent 64%),
        radial-gradient(closest-side at 55% 80%, rgba(255, 255, 255, .30), transparent 62%),
        linear-gradient(115deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .05));
    filter: blur(22px) saturate(1.05);
    opacity: .95;
    animation: va6-bgMove 7.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes va6-bgMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(16px, -10px) scale(1.02);
    }
}

.va6-hero {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

/* ===== HERO CORE ===== */
.va6-core {
    width: min(720px, 94vw);
    height: 320px;
    margin: 0 auto 18px;
    position: relative;
    overflow: visible;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translateZ(0);
    perspective: 900px;
    animation: va6-float 4.1s ease-in-out infinite;
}

@keyframes va6-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.va6-canvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: .95;
}

.va6-coreGlass {
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .40) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .14) 55%,
            transparent 70%);
    transform: translateX(-34%);
    opacity: .0;
    mix-blend-mode: screen;
    animation: va6-sheen 3.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes va6-sheen {
    0% {
        opacity: 0;
        transform: translateX(-34%);
    }

    18% {
        opacity: .85;
    }

    55% {
        opacity: .22;
    }

    100% {
        opacity: 0;
        transform: translateX(34%);
    }
}

.va6-coreRing {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: conic-gradient(from 0deg,
            rgba(124, 58, 237, .0),
            rgba(124, 58, 237, .52),
            rgba(167, 139, 250, .38),
            rgba(124, 58, 237, .0));
    opacity: .75;
    mix-blend-mode: multiply;
    animation: va6-spin 2.8s linear infinite;
}

.va6-coreRing2 {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, .16);
    box-shadow: inset 0 0 26px rgba(124, 58, 237, .10);
    opacity: .65;
    animation: va6-spin 6.4s linear infinite reverse;
}

@keyframes va6-spin {
    0% {
        transform: rotate(0deg);
    }

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

/* ===== AMBIENT GLOW ===== */
.va6-ambient {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(167, 139, 250, 0.25) 0%,
            rgba(124, 58, 237, 0.1) 40%,
            transparent 70%);
    filter: blur(40px);
    animation: va6-ambientPulse 4s ease-in-out infinite;
}

@keyframes va6-ambientPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* ===== AI HEAD AVATAR ===== */
.va6-avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.va6-head {
    width: 160px;
    height: 180px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(240, 235, 250, 0.9) 50%,
            rgba(220, 210, 240, 0.85) 100%);
    border-radius: 80px 80px 65px 65px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.2),
        0 0 0 1px rgba(124, 58, 237, 0.1),
        inset 0 -20px 40px rgba(167, 139, 250, 0.1);
    animation: va6-headFloat 3s ease-in-out infinite;
}

@keyframes va6-headFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Eyes */
.va6-eyes {
    display: flex;
    gap: 36px;
    margin-top: -10px;
}

.va6-eye {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1029 0%, #3d2960 100%);
    box-shadow:
        0 0 20px rgba(124, 58, 237, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: va6-eyeBlink 4s ease-in-out infinite;
}

.va6-eye:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes va6-eyeBlink {

    0%,
    45%,
    55%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.1);
    }
}

/* Mouth / Speaking area */
.va6-mouth {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 24px;
}

.va6-mouth-wave {
    width: 6px;
    border-radius: 3px;
    background: linear-gradient(to top,
            rgba(124, 58, 237, 0.9),
            rgba(167, 139, 250, 0.7));
    animation: va6-speak 0.6s ease-in-out infinite;
}

.va6-mouth-wave:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.va6-mouth-wave:nth-child(2) {
    height: 20px;
    animation-delay: 0.15s;
}

.va6-mouth-wave:nth-child(3) {
    height: 14px;
    animation-delay: 0.3s;
}

@keyframes va6-speak {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1.3);
    }
}

/* Head outer ring */
.va6-head-ring {
    position: absolute;
    width: 220px;
    height: 240px;
    border-radius: 110px 110px 90px 90px;
    border: 2px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.1);
    animation: va6-ringPulse 2s ease-in-out infinite;
}

@keyframes va6-ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* ===== SPEECH WAVES (emanating from head) ===== */
.va6-speech {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.va6-speech-wave {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(124, 58, 237, 0.6),
            rgba(167, 139, 250, 0.4),
            rgba(124, 58, 237, 0.6),
            transparent);
    animation: va6-speechWave 1.5s ease-in-out infinite;
}

.va6-speech-wave:nth-child(1) {
    animation-delay: 0s;
    width: 80px;
}

.va6-speech-wave:nth-child(2) {
    animation-delay: 0.2s;
    width: 100px;
    opacity: 0.7;
}

.va6-speech-wave:nth-child(3) {
    animation-delay: 0.4s;
    width: 120px;
    opacity: 0.4;
}

@keyframes va6-speechWave {

    0%,
    100% {
        transform: scaleX(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scaleX(1.2);
        opacity: 1;
    }
}

/* ===== FLOATING PARTICLES ===== */
.va6-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.va6-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.5);
    animation: va6-particleFloat 6s ease-in-out infinite;
}

.va6-particles span:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.va6-particles span:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.va6-particles span:nth-child(3) {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.va6-particles span:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 0.5s;
}

.va6-particles span:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-delay: 1.5s;
    width: 6px;
    height: 6px;
}

.va6-particles span:nth-child(6) {
    top: 50%;
    right: 8%;
    animation-delay: 2.5s;
    width: 6px;
    height: 6px;
}

@keyframes va6-particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

/* ===== TEXT ===== */
.va6-title {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 950;
    font-size: clamp(54px, 6.2vw, 92px);
    letter-spacing: -0.04em;
    color: var(--ink);
    text-shadow: 0 16px 40px rgba(26, 16, 41, .12);
    position: relative;
}

.va6-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: min(720px, 88vw);
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent,
            rgba(124, 58, 237, .28),
            rgba(167, 139, 250, .22),
            rgba(124, 58, 237, .28),
            transparent);
    box-shadow: 0 18px 70px rgba(124, 58, 237, .12);
    opacity: .9;
}

.va6-sub {
    margin: 26px auto 0;
    max-width: 900px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

/* Pills */
.va6-pills {
    margin: 16px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 980px;
}

.va6-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, .16);
    background: rgba(255, 255, 255, .70);
    color: rgba(26, 16, 41, .76);
    font-weight: 900;
    letter-spacing: .01em;
    box-shadow: 0 14px 40px rgba(26, 16, 41, .06);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.va6-pill::after {
    content: "";
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .50) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .16) 55%,
            transparent 70%);
    opacity: 0;
    transform: translateX(-24%);
    pointer-events: none;
}

.va6-pill:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(124, 58, 237, .26);
    box-shadow: 0 22px 70px rgba(26, 16, 41, .10);
}

.va6-pill:hover::after {
    opacity: .95;
    animation: va6-shine .75s ease-out 1;
}

@keyframes va6-shine {
    0% {
        transform: translateX(-30%);
        opacity: 0;
    }

    20% {
        opacity: .95;
    }

    100% {
        transform: translateX(30%);
        opacity: 0;
    }
}

/* ===== FEATURE CARDS ===== */
.va6-grid {
    max-width: 1120px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 2;
}

.va6-card {
    position: relative;
    border-radius: 22px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(124, 58, 237, .14);
    box-shadow: 0 18px 55px rgba(26, 16, 41, .06);
    backdrop-filter: blur(10px);
    padding: 18px 18px 16px;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.va6-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, .24);
    box-shadow: 0 30px 90px rgba(26, 16, 41, .10);
}

.va6-cardTop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.va6-card h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: .02em;
    font-weight: 950;
    color: rgba(26, 16, 41, .90);
    text-transform: uppercase;
}

.va6-card p {
    margin: 0;
    color: rgba(26, 16, 41, .70);
    line-height: 1.65;
    font-size: 15px;
    text-align: left;
}

/* Mini animated icons */
.va6-miniIcon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(124, 58, 237, .08);
    border: 1px solid rgba(124, 58, 237, .14);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 22px rgba(124, 58, 237, .08);
}

.va6-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(124, 58, 237, .55);
    display: inline-block;
    margin: 0 2px;
    animation: va6-dot 1.2s ease-in-out infinite;
}

.va6-dot:nth-child(2) {
    animation-delay: .15s;
    opacity: .75;
}

.va6-dot:nth-child(3) {
    animation-delay: .30s;
    opacity: .55;
}

@keyframes va6-dot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.va6-miniWave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 10px;
}

.va6-miniWave span {
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, .55);
    animation: va6-bars 1.1s ease-in-out infinite;
}

.va6-miniWave span:nth-child(2) {
    animation-delay: .1s;
    height: 14px;
    opacity: .8;
}

.va6-miniWave span:nth-child(3) {
    animation-delay: .2s;
    height: 18px;
    opacity: .65;
}

.va6-miniWave span:nth-child(4) {
    animation-delay: .3s;
    height: 14px;
    opacity: .8;
}

.va6-miniWave span:nth-child(5) {
    animation-delay: .4s;
    height: 10px;
    opacity: .55;
}

@keyframes va6-bars {

    0%,
    100% {
        transform: scaleY(.8);
    }

    50% {
        transform: scaleY(1.45);
    }
}

.va6-miniPulse::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(124, 58, 237, .55);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, .22);
    animation: va6-pulse 1.2s ease-in-out infinite;
    display: block;
}

@keyframes va6-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, .22);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(124, 58, 237, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
        transform: scale(1);
    }
}

.va6-miniLink::before {
    content: "";
    width: 22px;
    height: 12px;
    border: 2px solid rgba(124, 58, 237, .55);
    border-radius: 999px;
    transform: rotate(-12deg);
    display: block;
    animation: va6-link 1.8s ease-in-out infinite;
    display: flex !important;
}

@keyframes va6-link {

    0%,
    100% {
        transform: rotate(-12deg) translateY(0);
        opacity: .75;
    }

    50% {
        transform: rotate(8deg) translateY(-2px);
        opacity: 1;
    }
}

/* Card shine */
.va6-cardFx {
    position: absolute;
    inset: -30% -30%;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, .50) 45%,
            rgba(167, 139, 250, .18) 50%,
            rgba(255, 255, 255, .16) 55%,
            transparent 70%);
    opacity: 0;
    transform: translateX(-24%);
    pointer-events: none;
}

.va6-card:hover .va6-cardFx {
    opacity: .95;
    animation: va6-shine .75s ease-out 1;
}

/* CTA */
.va6-ctaRow {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.va6-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, .22);
    color: rgba(26, 16, 41, .88);
    font-weight: 950;
    letter-spacing: .02em;
    text-decoration: none;
    box-shadow: 0 26px 80px rgba(124, 58, 237, .14);
    transition: transform .18s ease, box-shadow .18s ease;
}

.va6-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 36px 110px rgba(124, 58, 237, .20);
}

@media (max-width: 980px) {
    .va6-core {
        height: 280px;
    }

    .va6-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    .va6-bg,
    .va6-core,
    .va6-coreGlass,
    .va6-coreRing,
    .va6-coreRing2,
    .va6-nucleus-arc,
    .va6-orbit,
    .va6-soundwave span,
    .va6-dot,
    .va6-miniWave span,
    .va6-miniPulse::before,
    .va6-miniLink::before {
        animation: none !important;
    }
}