/* ==========================================================================
   Voxtral Studio — "Sendetechnik-Terminal"
   Bernstein auf Anthrazit. Dichte Information, harte Kanten.
   ========================================================================== */

/* Self-hosted fonts (latin subset, no CDN at runtime). Files sit flat in
   web/static/ because the app only serves /static/{name} (one path
   segment, see internal/web/server.go).
   Archivo is a genuine variable font with both a wght (100–900) and a wdth
   (62–125) axis, so font-stretch below actually renders wider glyphs
   instead of silently doing nothing. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("/static/archivo-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/static/instrument-sans-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/jetbrains-mono-variable-latin.woff2") format("woff2");
}

:root {
  --ink:        #0B0B0C;
  --panel:      #141416;
  --panel-hi:   #1C1C20;
  --rule:       #2A2A30;
  --text:       #E8E4DC;
  --text-dim:   #8A867E;
  --amber:      #E08A1E;
  --amber-deep: #8A4F08;
  --signal:     #4ADE80;
  --alert:      #E5484D;

  --font-display: "Archivo", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; }

a { color: var(--amber); }

::selection { background: var(--amber-deep); color: var(--text); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--rule); border: 2px solid var(--ink); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* Focus — hard 1px amber ring, no glow, no transition */
:focus { outline: none; }
:focus-visible {
  outline: 1px solid var(--amber);
  outline-offset: 1px;
  transition: none;
}

/* -------------------------------------------------------------------------
   Kopfleiste
   ---------------------------------------------------------------------- */

.topbar {
  flex: 0 0 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
  z-index: 10;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 125%;
  letter-spacing: -0.02em;
  font-size: 19px;
  color: var(--text);
}

.wordmark-dim {
  color: var(--text-dim);
  font-weight: 800;
}

.conn-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.conn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.15);
  flex: 0 0 auto;
}

.conn-status-down { color: var(--alert); }

.conn-status-down .conn-dot {
  background: var(--alert);
  box-shadow: 0 0 0 2px rgba(229, 72, 77, 0.15);
}

/* -------------------------------------------------------------------------
   Layout — zweispaltig ab 900px, randnah, asymmetrisch
   ---------------------------------------------------------------------- */

.layout {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 0;
}

.col {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
}

.col-left {
  border-right: 1px solid var(--rule);
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.col-right {
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    overflow-y: auto;
  }
  .col { overflow-y: visible; }
  .col-left { border-right: none; border-bottom: 1px solid var(--rule); }
}

/* -------------------------------------------------------------------------
   Labels & Formularelemente
   ---------------------------------------------------------------------- */

.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 6px;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="file"],
select,
textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--rule);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 9px 11px;
  border-radius: 2px;
}

textarea#speak-text {
  font-family: var(--font-mono);
  font-size: 13.5px;
  resize: vertical;
  min-height: 200px;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  border-color: var(--amber);
}

input[type="file"] {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px;
  color: var(--text-dim);
}

input[type="file"]::file-selector-button {
  background: var(--panel-hi);
  color: var(--text);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 10px;
  cursor: pointer;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
                     linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: right 14px center, right 9px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 9px 0;
}

.checkbox-row input[type="checkbox"] {
  accent-color: var(--amber);
  width: 16px;
  height: 16px;
}

/* -------------------------------------------------------------------------
   Sprechformular
   ---------------------------------------------------------------------- */

.speak-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: -6px;
}

#char-counter {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

#char-counter.is-over {
  color: var(--alert);
}

.text-hint {
  font-size: 11.5px;
  color: var(--text-dim);
  text-align: right;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field-checkbox { display: flex; flex-direction: column; }

.action-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 12px 26px;
  border-radius: 2px;
  cursor: pointer;
}

.btn-primary:hover { background: #ef9a2e; }
.btn-primary:active { background: var(--amber-deep); }
.btn-primary:disabled,
.btn-primary[disabled] { background: var(--amber-deep); color: var(--panel); cursor: default; }

.btn-secondary {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 4px;
}

.btn-secondary:hover { background: rgba(224, 138, 30, 0.08); }

.synth-status {
  font-size: 11.5px;
  color: var(--text-dim);
  min-height: 1em;
}

/* -------------------------------------------------------------------------
   Pegelleiste — das Herzstück
   ---------------------------------------------------------------------- */

.levels-wrap {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}

.levels-bar {
  height: 46px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  opacity: 0.32;
  transition: opacity 160ms ease;
}

.levels-bar.htmx-request { opacity: 1; }

.level-bar {
  flex: 1 1 auto;
  min-width: 2px;
  max-width: 6px;
  height: 100%;
  background: var(--amber-deep);
  transform: scaleY(0.12);
  transform-origin: bottom;
  border-radius: 1px 1px 0 0;
}

.levels-bar.htmx-request .level-bar {
  background: var(--amber);
  animation: level-pulse 900ms ease-in-out infinite;
}

@keyframes level-pulse {
  0%   { transform: scaleY(0.12); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.12); }
}

/* Versetzte Verzögerung je Balken — 48 Stück, ~19ms Schritt */
.levels-bar.htmx-request .level-bar:nth-child(1)  { animation-delay: 0ms; }
.levels-bar.htmx-request .level-bar:nth-child(2)  { animation-delay: 19ms; }
.levels-bar.htmx-request .level-bar:nth-child(3)  { animation-delay: 38ms; }
.levels-bar.htmx-request .level-bar:nth-child(4)  { animation-delay: 57ms; }
.levels-bar.htmx-request .level-bar:nth-child(5)  { animation-delay: 76ms; }
.levels-bar.htmx-request .level-bar:nth-child(6)  { animation-delay: 95ms; }
.levels-bar.htmx-request .level-bar:nth-child(7)  { animation-delay: 114ms; }
.levels-bar.htmx-request .level-bar:nth-child(8)  { animation-delay: 133ms; }
.levels-bar.htmx-request .level-bar:nth-child(9)  { animation-delay: 152ms; }
.levels-bar.htmx-request .level-bar:nth-child(10) { animation-delay: 171ms; }
.levels-bar.htmx-request .level-bar:nth-child(11) { animation-delay: 190ms; }
.levels-bar.htmx-request .level-bar:nth-child(12) { animation-delay: 209ms; }
.levels-bar.htmx-request .level-bar:nth-child(13) { animation-delay: 228ms; }
.levels-bar.htmx-request .level-bar:nth-child(14) { animation-delay: 247ms; }
.levels-bar.htmx-request .level-bar:nth-child(15) { animation-delay: 266ms; }
.levels-bar.htmx-request .level-bar:nth-child(16) { animation-delay: 285ms; }
.levels-bar.htmx-request .level-bar:nth-child(17) { animation-delay: 304ms; }
.levels-bar.htmx-request .level-bar:nth-child(18) { animation-delay: 323ms; }
.levels-bar.htmx-request .level-bar:nth-child(19) { animation-delay: 342ms; }
.levels-bar.htmx-request .level-bar:nth-child(20) { animation-delay: 361ms; }
.levels-bar.htmx-request .level-bar:nth-child(21) { animation-delay: 380ms; }
.levels-bar.htmx-request .level-bar:nth-child(22) { animation-delay: 399ms; }
.levels-bar.htmx-request .level-bar:nth-child(23) { animation-delay: 418ms; }
.levels-bar.htmx-request .level-bar:nth-child(24) { animation-delay: 437ms; }
.levels-bar.htmx-request .level-bar:nth-child(25) { animation-delay: 456ms; }
.levels-bar.htmx-request .level-bar:nth-child(26) { animation-delay: 475ms; }
.levels-bar.htmx-request .level-bar:nth-child(27) { animation-delay: 494ms; }
.levels-bar.htmx-request .level-bar:nth-child(28) { animation-delay: 513ms; }
.levels-bar.htmx-request .level-bar:nth-child(29) { animation-delay: 532ms; }
.levels-bar.htmx-request .level-bar:nth-child(30) { animation-delay: 551ms; }
.levels-bar.htmx-request .level-bar:nth-child(31) { animation-delay: 570ms; }
.levels-bar.htmx-request .level-bar:nth-child(32) { animation-delay: 589ms; }
.levels-bar.htmx-request .level-bar:nth-child(33) { animation-delay: 608ms; }
.levels-bar.htmx-request .level-bar:nth-child(34) { animation-delay: 627ms; }
.levels-bar.htmx-request .level-bar:nth-child(35) { animation-delay: 646ms; }
.levels-bar.htmx-request .level-bar:nth-child(36) { animation-delay: 665ms; }
.levels-bar.htmx-request .level-bar:nth-child(37) { animation-delay: 684ms; }
.levels-bar.htmx-request .level-bar:nth-child(38) { animation-delay: 703ms; }
.levels-bar.htmx-request .level-bar:nth-child(39) { animation-delay: 722ms; }
.levels-bar.htmx-request .level-bar:nth-child(40) { animation-delay: 741ms; }
.levels-bar.htmx-request .level-bar:nth-child(41) { animation-delay: 760ms; }
.levels-bar.htmx-request .level-bar:nth-child(42) { animation-delay: 779ms; }
.levels-bar.htmx-request .level-bar:nth-child(43) { animation-delay: 798ms; }
.levels-bar.htmx-request .level-bar:nth-child(44) { animation-delay: 817ms; }
.levels-bar.htmx-request .level-bar:nth-child(45) { animation-delay: 836ms; }
.levels-bar.htmx-request .level-bar:nth-child(46) { animation-delay: 855ms; }
.levels-bar.htmx-request .level-bar:nth-child(47) { animation-delay: 874ms; }
.levels-bar.htmx-request .level-bar:nth-child(48) { animation-delay: 893ms; }

@media (prefers-reduced-motion: reduce) {
  .levels-bar.htmx-request .level-bar {
    animation: none;
    transform: scaleY(0.55);
  }
}

/* -------------------------------------------------------------------------
   Banner / Fehler
   ---------------------------------------------------------------------- */

.banner {
  padding: 10px 14px;
  border: 1px solid var(--alert);
  background: rgba(229, 72, 77, 0.08);
  color: var(--text);
  font-size: 13px;
  border-radius: 2px;
}

.banner-error::before {
  content: "✕ ";
  color: var(--alert);
  font-family: var(--font-mono);
}

/* -------------------------------------------------------------------------
   Ergebnisliste
   ---------------------------------------------------------------------- */

.results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-row {
  border: 1px solid var(--rule);
  background: var(--panel);
  padding: 14px 16px;
  border-radius: 2px;
  animation: result-enter 180ms ease-out;
}

@keyframes result-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .result-row { animation: none; }
}

.result-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.result-voice {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--amber);
}

.result-time {
  font-size: 11.5px;
  color: var(--text-dim);
  white-space: nowrap;
}

.result-text {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13.5px;
  overflow-wrap: anywhere;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 40px;
  margin-bottom: 10px;
}

.waveform .bar {
  flex: 1 1 auto;
  min-width: 1px;
  max-width: 4px;
  height: calc(1% * var(--level, 8));
  min-height: 2px;
  background: var(--amber);
  border-radius: 1px 1px 0 0;
}

.waveform-unavailable {
  height: 40px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.result-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.result-controls audio {
  height: 32px;
  flex: 1 1 220px;
  min-width: 180px;
}

.result-download {
  font-size: 11.5px;
  color: var(--text-dim);
  text-decoration: none;
  border: 1px solid var(--rule);
  padding: 6px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.result-download:hover { color: var(--amber); border-color: var(--amber-deep); }

.result-usage {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-dim);
}

.result-error {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--alert);
  font-size: 13px;
}

.result-error-label { color: var(--alert); font-size: 11px; letter-spacing: 0.08em; }

/* -------------------------------------------------------------------------
   Stimmenliste
   ---------------------------------------------------------------------- */

.voices-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
}

.voices-filter {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--ink);
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--rule);
}

.voice-search-input { font-family: var(--font-mono); font-size: 13px; }

.voice-list {
  overflow-y: auto;
  flex: 1 1 auto;
}

.empty-hint {
  padding: 18px 20px;
  color: var(--text-dim);
  font-size: 13px;
}

.voice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 80ms ease;
}

.voice-row:hover { background: var(--panel-hi); }

.voice-row:has(.voice-radio:checked) {
  background: var(--panel-hi);
  box-shadow: inset 2px 0 0 var(--amber);
}

.voice-row:has(.voice-radio:focus-visible) {
  outline: 1px solid var(--amber);
  outline-offset: -1px;
}

.voice-radio {
  accent-color: var(--amber);
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin: 0;
}

.voice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-color, var(--amber));
  flex: 0 0 auto;
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--rule);
}

.voice-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 auto;
  min-width: 0;
}

.voice-name {
  font-weight: 600;
  color: var(--text);
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voice-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.voice-gender, .voice-lang {
  font-size: 10.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.voice-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 96px;
  justify-content: flex-end;
}

.emotion-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

.voice-actions {
  display: flex;
  gap: 4px;
  flex: 0 0 auto;
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--text-dim);
  width: 24px;
  height: 24px;
  font-size: 10px;
  line-height: 1;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover { background: var(--panel-hi); color: var(--amber); border-color: var(--amber-deep); }

.voice-sample-btn.is-playing { color: var(--amber); border-color: var(--amber-deep); }

.voice-delete-btn:hover { color: var(--alert); border-color: var(--alert); }

/* -------------------------------------------------------------------------
   Stimme anlegen
   ---------------------------------------------------------------------- */

.voice-create {
  border-top: 1px solid var(--rule);
  padding: 14px 20px 22px;
}

.voice-create summary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  padding: 6px 0;
  list-style: none;
}

.voice-create summary::-webkit-details-marker { display: none; }

.voice-create summary::before {
  content: "▸ ";
  color: var(--amber);
}

.voice-create[open] summary::before { content: "▾ "; }

.voice-create summary:hover { color: var(--text); }

.voice-create-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.consent-note {
  font-size: 11.5px;
  color: var(--text-dim);
  border-left: 2px solid var(--amber-deep);
  padding: 6px 10px;
  margin: 0;
}

.mono { font-family: var(--font-mono); }

/* ------------------------------------------------------- Schlüssel-Panel */
/* Der API-Schlüssel liegt ausschließlich im Browser. Das Panel ist bewusst
   Teil der Kopfzone und nicht ein modaler Dialog: es soll erreichbar sein,
   ohne die Arbeit zu unterbrechen. */

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
}

.btn-ghost:hover {
  color: var(--amber);
  border-color: var(--amber-deep);
  background: rgba(224, 138, 30, 0.06);
}

.key-panel {
  display: none;
  border-bottom: 1px solid var(--rule);
  background: var(--panel-hi);
}

.key-panel-open { display: block; }

.key-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  padding: 22px;
}

@media (max-width: 900px) {
  .key-panel-inner { grid-template-columns: 1fr; gap: 20px; }
}

.key-panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.key-panel-note {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 62ch;
}

.key-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.key-input-row input[type="password"],
.key-input-row input[type="text"] {
  flex: 1 1 260px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.key-input-row .btn-primary,
.key-input-row .btn-ghost { flex: 0 0 auto; }

.key-status {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--text-dim);
  min-height: 1.2em;
}

.key-status.is-error { color: var(--alert); }

.key-panel-help {
  border-left: 1px solid var(--rule);
  padding-left: 24px;
}

@media (max-width: 900px) {
  .key-panel-help { border-left: 0; border-top: 1px solid var(--rule); padding: 18px 0 0; }
}

.key-help-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin: 0 0 10px;
  font-weight: 400;
}

.key-help-steps {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text);
}

.key-help-steps li { margin-bottom: 3px; }
.key-help-steps em { color: var(--text-dim); font-style: normal; }

.key-help-foot {
  margin: 14px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-dim);
}

.banner-key {
  border-color: var(--amber-deep);
  background: rgba(224, 138, 30, 0.07);
}

.banner-key::before {
  content: "→ ";
  color: var(--amber);
  font-family: var(--font-mono);
}
