.card-wrap {
    --purple: #c9b8f5;
    --pink: #f5b8d8;
    --orange: #f5d4b8;
    --teal: #b8e8e0;
    --yellow: #f5f0b8;
    --blue: #b8d4f5;
    --green: #b8f5c9;
}

.scene-layer {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* ── Carousel ── */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 6px 0;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: scroll 22s linear infinite;
}

.carousel-track.reverse {
    animation: scroll-reverse 26s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

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

.app-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e5ea;
    border-radius: 14px;
    padding: 8px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
    color: #1c1c1e;
}

.app-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.app-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* ── Center section ── */
.center-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.main-logo {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3f51b5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.main-logo-inner img {
    width: 50px;
    height: 50px;
}

.pulse-ring {
    position: absolute;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: pulse-out 3s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}

.pulse-ring:nth-child(1) {
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.9s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1.8s;
}

@keyframes pulse-out {
    0% {
        transform: scale(1);
        opacity: 0.9;
        border: 3px solid rgba(63, 81, 181, 0.8);
        box-shadow: 0 0 12px rgba(63, 81, 181, 0.8);
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        /* ← grand expand */
        opacity: 0;
        border: 1.5px solid rgba(63, 81, 181, 0);
        box-shadow: 0 0 0px rgba(63, 81, 181, 0);
    }
}

/* ── Tagline ── */
.tagline {
    margin-top: 10px;
    text-align: center;
}

.tagline h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1c1c1e;
    margin-bottom: 8px;
}

.tagline p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
    max-width: 340px;
}

/* ── Mic widget ── */
.mic-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e5ea;
    border-radius: 40px;
    padding: 10px 22px;
}

.mic-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3f51b5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    border: none;
    flex-shrink: 0;
}

.bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 26px;
}

.bar {
    width: 3px;
    border-radius: 2px;
    background: #3f51b5;
    animation: bar-anim 1.1s ease-in-out infinite;
    transform-origin: bottom;
}

.bar:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    height: 18px;
    animation-delay: 0.18s;
}

.bar:nth-child(3) {
    height: 24px;
    animation-delay: 0.36s;
}

.bar:nth-child(4) {
    height: 14px;
    animation-delay: 0.54s;
}

.bar:nth-child(5) {
    height: 8px;
    animation-delay: 0.72s;
}

@keyframes bar-anim {

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

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}



.page {
    padding: 20px;
    text-align: center;
    background-color: white;
    border-radius: 20px;
    border: 1px solid rgba(132, 140, 161, 0.283);
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
}

.badge {
    font-size: 1rem;
    color: var(--accent);
    margin-top: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;

}

.page h2 {
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.page .sub {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    margin: 0 auto 0px;
    line-height: 1.7;
}

.page .stage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: min-content;
}

.page .col-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.page .col-btns.left {
    align-items: flex-end;
}

.page .col-btns.right {
    align-items: flex-start;
}


/* Décalage horizontal pour épouser la courbure du globe */
.page .col-btns.left .lang-btn:nth-child(1) {
    transform: translateX(20px);
}

.page .col-btns.left .lang-btn:nth-child(2) {
    transform: translateX(8px);
}

.page .col-btns.left .lang-btn:nth-child(3) {
    transform: translateX(8px);
}

.page .col-btns.left .lang-btn:nth-child(4) {
    transform: translateX(20px);
}

.page .col-btns.right .lang-btn:nth-child(1) {
    transform: translateX(-20px);
}

.page .col-btns.right .lang-btn:nth-child(2) {
    transform: translateX(-8px);
}

.page .col-btns.right .lang-btn:nth-child(3) {
    transform: translateX(-8px);
}

.page .col-btns.right .lang-btn:nth-child(4) {
    transform: translateX(-20px);
}

.page .col-btns.left .lang-btn:nth-child(1):hover {
    transform: translateX(20px) scale(1.04);
}

.page .col-btns.left .lang-btn:nth-child(2):hover {
    transform: translateX(8px) scale(1.04);
}

.page .col-btns.left .lang-btn:nth-child(3):hover {
    transform: translateX(8px) scale(1.04);
}

.page .col-btns.left .lang-btn:nth-child(4):hover {
    transform: translateX(20px) scale(1.04);
}

.page .col-btns.right .lang-btn:nth-child(1):hover {
    transform: translateX(-20px) scale(1.04);
}

.page .col-btns.right .lang-btn:nth-child(2):hover {
    transform: translateX(-8px) scale(1.04);
}

.page .col-btns.right .lang-btn:nth-child(3):hover {
    transform: translateX(-8px) scale(1.04);
}

.page .col-btns.right .lang-btn:nth-child(4):hover {
    transform: translateX(-20px) scale(1.04);
}

.page .lang-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, .04);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
    position: relative;
}

.page .lang-btn:hover {
    background: rgba(0, 0, 0, .07);
    transform: scale(1.04);
}

.page .lang-btn.active {
    background: var(--accent);
    color: #fff;
}

.page .lang-btn.active .play-ico {
    background: rgba(255, 255, 255, .12);
}

.page .lang-btn.active .play-ico svg {
    fill: #fff;
}

.page .lang-btn.active::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid var(--accent-light);
    opacity: 0;
    animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.page .play-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.page .play-ico svg {
    width: 9px;
    height: 9px;
    fill: var(--text-dark);
    margin-left: 1px;
    transition: fill .2s;
}

.page #chartdiv>div>div:nth-child(1)>div>canvas.am5-layer-0 {}

.page #chartdiv>div>div:nth-child(1)>div>canvas.am5-layer-30 {
    display: none !important;
}


.page .flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.page .flag {
    font-size: 17px;
    line-height: 1;
}

/* Globe container */
.page #chartdiv {
    width: 350px;
    height: 300px;
    padding: 0;
}






.card-wrap {
    background: #fff;
    border-radius: 25px;
    padding: 30px 20px;
    width: 100%;
    height: 500px;
    border: 1px solid rgba(132, 140, 161, 0.283);
    margin-top: 35px;
}

.card-wrap h3 {
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.card-wrap .desc {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    margin: 0 auto 0px;
    line-height: 1.7;
}

/* ── Original voice pill ── */

.card-wrap .origin-pill-wrap {
    display: flex;
    justify-content: center;
}

.card-wrap .origin-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8eaf0;
    border-radius: 999px;
    padding: 6px 30px 6px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 15px 0;
    max-width: 300px;
}

.card-wrap .origin-pill .flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(132, 140, 161, 0.283);
}

.card-wrap .origin-pill span {
    color: #888;
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 2px;
}

/* ── Carousel stage ── */
.card-wrap .stage {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wrap .variant-card {
    position: absolute;
    width: 200px;
    aspect-ratio: 1;
    border-radius: 16px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1),
        opacity .45s cubic-bezier(.4, 0, .2, 1),
        z-index 0s .22s;
    cursor: pointer;
    user-select: none;
    will-change: transform, opacity;
}

.card-wrap .variant-card.active {
    z-index: 10;
    transform: translateX(0) scale(1);
    opacity: 1;
    cursor: default;
}

.card-wrap .variant-card.prev {
    z-index: 5;
    transform: translateX(-88px) scale(.82);
    opacity: .55;
}

.card-wrap .variant-card.next {
    z-index: 5;
    transform: translateX(88px) scale(.82);
    opacity: .55;
}

.card-wrap .variant-card.hidden {
    z-index: 1;
    transform: translateX(0) scale(.65);
    opacity: 0;
    pointer-events: none;
}

.card-wrap .variant-card.prev:hover {
    opacity: .75;
    transform: translateX(-84px) scale(.84);
}

.card-wrap .variant-card.next:hover {
    opacity: .75;
    transform: translateX(84px) scale(.84);
}

.card-wrap .card-quote {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, .7);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin: 0px 0 12px;
}

.card-wrap .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-wrap .wave-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 18px;
    opacity: 0;
    transition: opacity .3s;
}

.card-wrap .variant-card.active .wave-bars {
    opacity: 1;
}

.card-wrap .wave-bars .b {
    width: 2.5px;
    border-radius: 2px;
    background: rgba(0, 0, 0, .35);
    animation: wave .9s ease-in-out infinite;
}

.card-wrap .b:nth-child(1) {
    height: 6px;
    animation-delay: 0s
}

.card-wrap .b:nth-child(2) {
    height: 12px;
    animation-delay: .15s
}

.card-wrap .b:nth-child(3) {
    height: 16px;
    animation-delay: .3s
}

.card-wrap .b:nth-child(4) {
    height: 10px;
    animation-delay: .45s
}

.card-wrap .b:nth-child(5) {
    height: 6px;
    animation-delay: .6s
}

.card-wrap .b:nth-child(6) {
    height: 4px;
    animation-delay: .75s
}

@keyframes wave {

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

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}

.card-wrap .play-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0px 15px;
    height: 25px;
    border-radius: 8px;
    background: rgba(220, 228, 220, 0.477);
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #111;
    cursor: pointer;
    font-weight: 500;
    transition: background .2s, color .2s;
}

.card-wrap .play-btn:hover {
    background: rgba(220, 228, 220, 0.7);
    color: #111;
}

.card-wrap .play-btn svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

/* ── Nav arrows ── */
.card-wrap .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background .2s;
}

.card-wrap .nav-btn:hover {
    background: rgba(0, 0, 0, .12);
}

.card-wrap .nav-btn svg {
    width: 14px;
    height: 14px;
    stroke: rgba(0, 0, 0, .5);
    fill: none;
}

.card-wrap .nav-prev {
    left: 0;
}

.card-wrap .nav-next {
    right: 0;
}

/* ── Dots ── */
.card-wrap .dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.2rem;
}

.card-wrap .dot-item {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    transition: background .3s, transform .3s;
    cursor: pointer;
}

.card-wrap .dot-item.active {
    background: #555;
    transform: scale(1.3);
}




.capabilities-voice {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0;
    gap: 30px;
    width: 100%;
}


.vp-wrap {
    background: #fff;
    border-radius: 25px;
    padding: 30px 20px 20px;
    width: 100%;
    height: 500px;
    border: 1px solid rgba(132, 140, 161, 0.283);
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.vp-wrap h3 {
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.vp-desc {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 15px;
}

.vp-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.vp-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    width: 150px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .2s, color .2s;
    font-family: 'Sora', sans-serif
}

.vp-tab.active {
    background: #111;
    color: #fff
}

.vp-tab.inactive {
    background: rgba(0, 0, 0, .05);
    color: #777
}

.vp-tab.inactive:hover {
    background: rgba(0, 0, 0, .09)
}

.vp-tab-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%
}

.vp-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: auto;
    align-self: flex-end;
}

.vp-panel {
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 12px 14px 14px;
    background: #fff
}

.vp-panel:first-child {
    border-radius: 12px 0 0 12px;
    border-right: none
}

.vp-panel:last-child {
    border-radius: 0 12px 12px 0
}

.vp-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.vp-panel-label {
    font-size: 10px;
    font-family: 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #aaa
}

.vp-play-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .03);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0
}

.vp-play-circle:hover {
    background: #111
}

.vp-play-circle:hover svg {
    fill: #fff
}

.vp-play-circle svg {
    width: 12px;
    height: 12px;
    fill: #aaa;
    margin-left: 1px
}

.vp-waveform {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 2px
}

.vp-bar {
    flex: 1;
    border-radius: 2px;
    background: rgba(0, 0, 0, .1);
    transition: background .2s
}

.vp-playing .vp-bar {
    background: #e07a5f;
    animation: vp-wave .7s ease-in-out infinite alternate
}

.vp-playing .vp-bar:nth-child(2n) {
    animation-delay: .1s
}

.vp-playing .vp-bar:nth-child(3n) {
    animation-delay: .2s
}

.vp-playing .vp-bar:nth-child(4n) {
    animation-delay: .3s
}

.vp-playing .vp-bar:nth-child(5n) {
    animation-delay: .05s
}

@keyframes vp-wave {
    0% {
        transform: scaleY(.3)
    }

    100% {
        transform: scaleY(1)
    }
}

.vp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px
}

.vp-info-label {
    font-size: 0.8rem;
    color: #bbb
}

.vr-info {
    background-color: #6666801d;
    font-size: 0.9rem;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 0px;
    color: #6a6a6a;
    margin-bottom: 20px;
}

.vr-info svg {
    align-self: flex-start;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #555555a8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
}

.vp-info-badge {
    font-size: 0.8rem;
    font-family: 'DM Mono', monospace;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 500
}

.vp-badge-basic {
    background: #e1f5ee;
    color: #0f6e56
}

.vp-badge-adv {
    background: #eeedfe;
    color: #534ab7
}


.et-wrap {
    margin-top: 35px;
    background: #fff;
    border-radius: 20px;  
    border-radius: 25px;
    padding: 30px 20px;
    width: 100%;
    height: min-content;
    border: 1px solid rgba(132, 140, 161, 0.283);
}

.et-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.et-right h3 {
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.et-right p {
    text-align: left;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 15px;
}

.et-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.et-stage {
    position: relative;
    height: 200px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center
}

.et-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    flex-shrink: 0
}

.et-nav-btn:hover {
    background: rgba(0, 0, 0, .1)
}

.et-nav-btn svg {
    width: 14px;
    height: 14px;
    stroke: rgba(0, 0, 0, .5);
    fill: none
}

.et-card {
    position: absolute;
    width: 200px;
    aspect-ratio: 1;
    border-radius: 16px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .4s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    user-select: none
}

.et-card.active {
    z-index: 30;
    transform: none;
    opacity: 1;
    cursor: default
}

.et-card.prev {
    z-index: 20;
    transform: translateX(-90px) scale(.8);
    opacity: .6
}

.et-card.next {
    z-index: 20;
    transform: translateX(90px) scale(.8);
    opacity: .6
}

.et-card.hidden {
    z-index: 10;
    transform: scale(.65);
    opacity: 0;
    pointer-events: none
}

.et-card.prev:hover {
    opacity: .75
}

.et-card.next:hover {
    opacity: .75
}

.et-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .75);
    flex: 1
}

.et-play-btn {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0px 15px;
    height: 25px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.373);
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #111;
    cursor: pointer;
    font-weight: 500;
    transition: background .15s;
    margin-top: 12px;
}

.et-play-btn:hover {
    background: rgba(220, 228, 220, 0.7);
    color: #111;
}

.et-play-btn svg {
    width: 10px;
    height: 10px;
    fill: #333
}

.et-voices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

.et-voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .15s;
    font-family: 'Sora', sans-serif
}

.et-voice-btn.active {
    background: #111;
    color: #fff
}

.et-voice-btn.inactive {
    background: rgba(0, 0, 0, .05);
    color: #666
}

.et-voice-btn.inactive:hover {
    background: rgba(0, 0, 0, .09)
}

.et-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}