/* ==========================================================================
   Talk page — cinematic live AI consultation stage
   Header/nav use the shared site chrome from style.css (no overrides).
   ========================================================================== */

.talk-body {
  background: #081429;
}

.talk-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  padding: 48px 24px 56px;
  color: #e8ecf7;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(92, 74, 224, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 20%, rgba(245, 130, 32, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 35% at 8% 70%, rgba(62, 201, 164, 0.08), transparent 45%),
    #081429;
}

.talk-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.talk-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.talk-glow-a {
  width: 420px;
  height: 420px;
  left: 8%;
  top: 12%;
  background: rgba(92, 74, 224, 0.35);
}

.talk-glow-b {
  width: 360px;
  height: 360px;
  right: 6%;
  top: 28%;
  background: rgba(245, 130, 32, 0.22);
  animation-delay: -4s;
}

.talk-glow-c {
  width: 280px;
  height: 280px;
  left: 42%;
  bottom: 8%;
  background: rgba(98, 201, 164, 0.14);
  animation-delay: -7s;
}

.talk-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 20%, transparent 75%);
}

@keyframes glow-drift {
  to { transform: translate3d(18px, -22px, 0) scale(1.06); }
}

.talk-hero,
.talk-shell,
.ai-disclosure {
  position: relative;
  z-index: 1;
}

/* Hero — tight, orb-first */
.talk-hero {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.talk-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
}

.talk-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #a99eff 0%, #f5b06a 55%, #f58220 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Shell */
.talk-shell {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.talk-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.talk-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 12px 10px;
  background: transparent;
  color: rgba(232, 236, 247, 0.55);
  font: 600 13px Inter, sans-serif;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.talk-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.talk-tab.active {
  color: #fff;
  background: rgba(92, 74, 224, 0.28);
  box-shadow: inset 0 0 0 1px rgba(169, 158, 255, 0.28);
}

.talk-tab-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  opacity: 0.85;
}

.talk-tab-icon.type {
  width: 10px;
  height: 2px;
  border-radius: 2px;
  box-shadow: 0 3px 0 currentColor, 0 6px 0 currentColor;
  opacity: 0.7;
}

.talk-tab-icon.book,
.talk-tab-icon.mail {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  box-shadow: none;
  opacity: 0.7;
}

.talk-panel {
  display: none;
}

.talk-panel.active {
  display: block;
}

/* Voice stage */
.voice-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.78fr);
  min-height: 620px;
}

.voice-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 28px 40px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.voice-main::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 74, 224, 0.2), transparent 68%);
  pointer-events: none;
}

.voice-status {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(232, 236, 247, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.voice-status-dot,
.voice-status > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8a93aa;
}

.orb-wrap.listening .voice-status-dot,
.orb-wrap.listening ~ * .voice-status-dot {
  background: #62c9a4;
}

/* Orb */
.orb-wrap {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 260px;
  margin: 36px 0 22px;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(169, 158, 255, 0.18);
}

.ring-one { inset: 28px; }
.ring-two { inset: 12px; }
.ring-three {
  inset: -4px;
  border-color: rgba(245, 130, 32, 0.12);
}

.orb {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 28%, #c4bbff 0%, #7b6ef0 24%, #5c4ae0 52%, #24146a 100%);
  box-shadow:
    inset -18px -24px 40px rgba(13, 7, 54, 0.45),
    inset 14px 12px 28px rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 28px 80px rgba(92, 74, 224, 0.55);
  transition: transform 0.3s ease;
}

.orb-glow {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.42), transparent 48%);
}

.wave-bars {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 42px;
}

.wave-bars i {
  width: 4px;
  height: 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
}

.orb-wrap:hover .orb {
  transform: scale(1.04);
}

.orb-wrap:hover .ring-one,
.orb-wrap:hover .ring-two,
.orb-wrap:hover .ring-three {
  animation: ring-idle 2.4s ease-out infinite;
}

.orb-wrap.listening .orb {
  animation: orb-pulse 1.4s ease-in-out infinite;
}

.orb-wrap.listening .orb-ring {
  animation: ring-pulse 1.5s ease-out infinite;
}

.orb-wrap.listening .wave-bars i {
  animation: wave 0.8s ease-in-out infinite alternate;
}

.orb-wrap.listening .wave-bars i:nth-child(2),
.orb-wrap.listening .wave-bars i:nth-child(4) {
  animation-delay: 0.2s;
}

.orb-wrap.listening .wave-bars i:nth-child(3) {
  animation-delay: 0.4s;
}

.orb-wrap.thinking .orb {
  animation: think 2s linear infinite;
}

.orb-wrap.speaking .wave-bars i {
  animation: wave 0.45s ease-in-out infinite alternate;
}

.orb-wrap.speaking .wave-bars i:nth-child(2n) {
  animation-delay: 0.18s;
}

@keyframes orb-pulse {
  50% { transform: scale(1.06); filter: saturate(1.15); }
}

@keyframes ring-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  100% { transform: scale(1.14); opacity: 0; }
}

@keyframes ring-idle {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 0.15; }
}

@keyframes wave {
  to { height: 34px; }
}

@keyframes think {
  50% { filter: hue-rotate(22deg) brightness(1.08); }
}

.voice-copy {
  z-index: 1;
  max-width: 460px;
  text-align: center;
}

.voice-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.voice-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(232, 236, 247, 0.62);
}

.voice-controls {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.voice-controls button {
  border: 0;
  cursor: pointer;
  font: 600 13px Inter, sans-serif;
}

.round-control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.round-control:hover {
  background: rgba(180, 35, 24, 0.85);
  color: #fff;
}

.start-control {
  position: relative;
  height: 48px;
  border-radius: 999px;
  padding: 0 26px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #5c4ae0 0%, #7b5ce8 55%, #f58220 160%);
  box-shadow:
    0 10px 32px rgba(92, 74, 224, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start-control:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(92, 74, 224, 0.5);
}

.start-control:disabled {
  opacity: 0.7;
  cursor: default;
}

.start-pulse {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #86efd0;
  box-shadow: 0 0 0 0 rgba(134, 239, 208, 0.55);
  animation: start-ping 1.8s ease-out infinite;
}

.start-control:disabled .start-pulse {
  animation: none;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

@keyframes start-ping {
  70%, 100% { box-shadow: 0 0 0 10px rgba(134, 239, 208, 0); }
}

.voice-hint {
  margin: 22px 0 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(232, 236, 247, 0.38);
  text-align: center;
}

/* Transcript rail */
.live-summary {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-head span:first-child {
  display: block;
  color: #a99eff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-head h3 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
}

.transcript-dot {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: #5a647c;
}

.transcript-dot.connected {
  background: #38b892;
  box-shadow: 0 0 0 5px rgba(56, 184, 146, 0.16);
}

.transcript-dot.error {
  background: #d24b42;
}

.summary-empty {
  margin: auto;
  max-width: 200px;
  text-align: center;
  color: rgba(232, 236, 247, 0.45);
}

.summary-empty-orb {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(145deg, #7b6ef0, #3a2a9a);
  box-shadow: 0 10px 30px rgba(92, 74, 224, 0.35);
}

.summary-empty p,
.summary-empty > span + p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.transcript-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  overflow: auto;
  max-height: 380px;
}

.transcript-entry {
  font-size: 12px;
  line-height: 1.45;
}

.transcript-entry b {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a99eff;
}

.transcript-entry.ai b {
  color: #f5b06a;
}

.transcript-entry p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 4px 14px 14px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 236, 247, 0.88);
}

.transcript-entry.ai p {
  background: rgba(245, 130, 32, 0.1);
  border-color: rgba(245, 130, 32, 0.18);
}

.transcript-entry.interim {
  opacity: 0.55;
}

.transcript-lab {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.transcript-lab summary {
  cursor: pointer;
  color: rgba(232, 236, 247, 0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  list-style: none;
}

.transcript-lab summary::-webkit-details-marker {
  display: none;
}

.transcript-lab[open] summary {
  color: rgba(232, 236, 247, 0.7);
  margin-bottom: 12px;
}

.transcript-test label {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 236, 247, 0.45);
}

.transcript-test > div {
  display: flex;
  gap: 7px;
}

.transcript-test input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font: 11px Inter, sans-serif;
  outline: 0;
}

.transcript-test input:focus {
  border-color: rgba(169, 158, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(92, 74, 224, 0.2);
}

.transcript-test button {
  border: 0;
  border-radius: 10px;
  padding: 0 12px;
  background: var(--accent);
  color: #fff;
  font: 700 11px Inter, sans-serif;
  cursor: pointer;
}

.transcript-test small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: rgba(232, 236, 247, 0.38);
}

/* Text chat */
.text-chat {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
}

.chat-log {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0 20px;
}

.chat-message {
  display: flex;
  gap: 10px;
  max-width: 78%;
}

.chat-message span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5c4ae0, #7b5ce8);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.chat-message p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 4px 16px 16px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 236, 247, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message.user span {
  display: none;
}

.chat-message.user p {
  background: linear-gradient(135deg, rgba(92, 74, 224, 0.55), rgba(245, 130, 32, 0.35));
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px 4px 16px 16px;
}

.chat-composer {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.chat-composer input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  background: transparent;
  color: #fff;
  font: 14px Inter, sans-serif;
}

.chat-composer input::placeholder {
  color: rgba(232, 236, 247, 0.35);
}

.chat-composer button {
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, #5c4ae0, #7b5ce8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* Simple panels */
.simple-panel {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 28px;
}

.simple-panel h2 {
  margin: 16px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: #fff;
}

.simple-panel p {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(232, 236, 247, 0.6);
  line-height: 1.6;
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(92, 74, 224, 0.2);
  border: 1px solid rgba(169, 158, 255, 0.25);
  color: #c4bbff;
  font-size: 26px;
}

.ai-disclosure {
  max-width: 640px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(232, 236, 247, 0.35);
}

/* Mic control */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mic-control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.mic-control:not(:disabled):hover {
  background: rgba(92, 74, 224, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(92, 74, 224, 0.28);
}

.mic-control:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mic-control:focus-visible {
  outline: 2px solid #a99eff;
  outline-offset: 3px;
}

.mic-control:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  background: #0c1a3d;
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.16s;
}

.mic-control:not(:disabled):hover:after,
.mic-control:focus-visible:after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mic-glyph {
  width: 6px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.mic-glyph:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 9px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  transform: translateX(-50%);
}

.mic-glyph:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 1.5px;
  height: 3px;
  background: currentColor;
  transform: translateX(-50%);
  box-shadow: -2.5px 3px 0 -0.25px currentColor, 2.5px 3px 0 -0.25px currentColor;
}

.mic-control.muted {
  background: #b42318;
  color: #fff;
  border-color: transparent !important;
  box-shadow: 0 7px 20px rgba(180, 35, 24, 0.35);
}

.mic-control.muted .mic-glyph:after {
  width: 1.5px;
  height: 16px;
  top: -4px;
  transform: translateX(-50%) rotate(-42deg);
  box-shadow: 0 0 0 1.5px #b42318;
  background: #fff;
}

/* Audio-reactive orb */
.orb-wrap.audio-reactive .orb,
.orb-wrap.audio-reactive .orb-ring,
.orb-wrap.audio-reactive .wave-bars i {
  animation: none !important;
}

.orb-wrap.audio-reactive .orb {
  transform: scale(calc(1 + var(--voice-level, 0) * 0.16));
  filter: saturate(calc(1 + var(--voice-level, 0) * 0.55)) brightness(calc(1 + var(--voice-level, 0) * 0.08));
  transition: transform 70ms linear, filter 100ms linear;
}

.orb-wrap.audio-reactive .ring-one {
  transform: scale(calc(1 + var(--voice-level, 0) * 0.18));
  opacity: calc(0.22 + var(--voice-level, 0) * 0.55);
  transition: transform 90ms linear, opacity 120ms linear;
}

.orb-wrap.audio-reactive .ring-two {
  transform: scale(calc(1 + var(--voice-level, 0) * 0.28));
  opacity: calc(0.12 + var(--voice-level, 0) * 0.35);
  transition: transform 120ms linear, opacity 150ms linear;
}

.orb-wrap.audio-reactive .ring-three {
  transform: scale(calc(1 + var(--voice-level, 0) * 0.36));
  opacity: calc(0.08 + var(--voice-level, 0) * 0.28);
  transition: transform 140ms linear, opacity 160ms linear;
}

.orb-wrap.audio-reactive .wave-bars i {
  height: calc(7px + var(--bar-level, 0) * 30px);
  transition: height 55ms linear;
}

.orb-wrap.audio-reactive.user-speaking .orb {
  background: radial-gradient(circle at 35% 27%, #9ef2dc 0%, #44c6ad 28%, #277ca7 62%, #173b71 100%);
  box-shadow:
    inset -18px -22px 38px rgba(5, 47, 68, 0.32),
    inset 12px 10px 27px rgba(255, 255, 255, 0.28),
    0 22px 68px rgba(45, 191, 169, 0.42);
}

.orb-wrap.audio-reactive.ai-speaking .orb {
  background: radial-gradient(circle at 35% 27%, #ffc27d 0%, #f58220 27%, #8e4ee8 62%, #321477 100%);
  box-shadow:
    inset -18px -22px 38px rgba(50, 20, 119, 0.35),
    inset 12px 10px 27px rgba(255, 255, 255, 0.3),
    0 22px 70px rgba(245, 130, 32, 0.4);
}

/* Footer on talk page */
.talk-body footer {
  background: #06101f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .talk-page {
    padding: 28px 14px 40px;
  }

  .talk-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .talk-tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 11px 14px;
  }

  .voice-stage {
    grid-template-columns: 1fr;
  }

  .voice-main {
    border-right: 0;
    padding: 36px 16px 28px;
  }

  .live-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 280px;
  }

  .orb-wrap {
    width: 220px;
    height: 220px;
  }

  .orb {
    width: 148px;
    height: 148px;
  }
}

@media (max-width: 600px) {
  .talk-hero h1 {
    font-size: 1.4rem;
  }

  .voice-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .orb-ring,
  .wave-bars i,
  .talk-glow,
  .talk-eyebrow i,
  .start-pulse {
    animation: none !important;
    transition: none !important;
  }
}

.transcript-status {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: #8e96ab;
  font-size: 10px;
  text-align: center;
}
