/* ── Terminal ── */
.term-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--app-glass-bg);
  border: 1px solid var(--app-glass-border);
  backdrop-filter: var(--app-glass-blur);
  -webkit-backdrop-filter: var(--app-glass-blur);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
}

.term-output { flex: 1; overflow-y: auto; padding: 10px; line-height: 1.78; word-break: break-all; color: #4ade80; }
.term-welcome { color: #93c5fd; margin-bottom: 3px; }
.term-hint { color: rgba(255,255,255,0.28); }
.term-cmd { color: rgba(255,255,255,0.62); }
.term-out { color: #4ade80; }
.term-err { color: #f87171; }
.term-input-row { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.term-prompt { color: #93c5fd; white-space: nowrap; flex-shrink: 0; }
.tin { flex: 1; background: transparent; border: none; outline: none; color: #4ade80; font-family: inherit; font-size: inherit; caret-color: #4ade80; user-select: text; }




