.release-contract-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(245 166 35 / 0.34);
  border-radius: 0.55rem;
  background: rgb(10 10 10 / 0.68);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}
.release-contract-note strong { color: var(--color-primary); text-transform: uppercase; }
.voice-anchor-suite {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgb(14 13 12 / 0.86);
}
.voice-anchor-suite__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.voice-anchor-suite__title {
  margin: 0 0 var(--space-2);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
}
.voice-anchor-suite__copy {
  max-width: 66ch;
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.voice-anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}
.voice-anchor-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: center;
  min-width: 0;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.voice-anchor-card button {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface-offset);
  color: var(--color-text-faint);
}
.voice-anchor-card button:disabled { cursor: not-allowed; opacity: 0.72; }
.voice-anchor-card strong, .voice-anchor-card span, .voice-anchor-card small { display: block; }
.voice-anchor-card strong {
  color: var(--color-text);
  font-family: var(--font-display);
  text-transform: uppercase;
}
.voice-anchor-card span {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}
.voice-anchor-card small {
  margin-top: 0.2rem;
  color: var(--color-text-faint);
  line-height: 1.35;
}
.chat-review-banner {
  position: sticky;
  top: 0;
  z-index: 500;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgb(245 166 35 / 0.38);
  background: #18130c;
  color: var(--color-text-muted);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.45;
}
.chat-review-banner strong { color: var(--color-primary); }
@media (max-width: 900px) {
  .voice-anchor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .voice-anchor-suite { padding: var(--space-5); }
  .voice-anchor-suite__head { display: block; }
  .voice-anchor-grid { grid-template-columns: 1fr; }
}
