.voice-app-shell {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}

.voice-avatar-panel,
.voice-console-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.voice-avatar-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.voice-avatar-shell {
  width: 220px;
  height: 220px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.voice-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(23, 19, 31, 0.08);
  box-shadow: inset 0 0 40px rgba(255,255,255,.18), 0 0 40px rgba(124, 92, 255, .10);
}

.voice-avatar-core {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(180deg, #232936, #0f141c);
  display: grid;
  place-items: center;
}

.voice-avatar-face {
  width: 70px;
  height: 100px;
  border-radius: 38px 38px 30px 30px;
  background: linear-gradient(180deg, #dadfe6, #aab4c0);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  position: relative;
}

.voice-avatar-face::before,
.voice-avatar-face::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1a1f28;
}

.voice-avatar-face::before { left: 16px; }
.voice-avatar-face::after { right: 16px; }

.voice-status-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.voice-badge {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: #4739a7;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
}

.voice-badge.muted {
  color: var(--muted);
}

.voice-console-panel {
  padding: 24px;
}

.voice-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.voice-block {
  display: block;
  margin-bottom: 16px;
}

.voice-block span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .92rem;
}

.voice-console-panel textarea {
  width: 100%;
  resize: vertical;
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  color: var(--text);
  padding: 14px;
  font: inherit;
}

.voice-notes {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.45);
}

.voice-notes h3 {
  margin-top: 0;
  font-size: 1rem;
}

.voice-notes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.voice-notes li { margin-bottom: 8px; }

@media (max-width: 980px) {
  .voice-app-shell { grid-template-columns: 1fr; }
}
